From 77c19e3184c643379deef3ba591d60c2924eb74b Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:05:32 -0400 Subject: [PATCH 01/70] Result of yarn add vuetify --- webapp/.browserslistrc | 4 + webapp/.editorconfig | 5 + webapp/.eslintrc.js | 14 + webapp/.gitignore | 23 + webapp/README.md | 44 + webapp/index.html | 16 + webapp/package.json | 31 + webapp/public/favicon.ico | Bin 0 -> 15406 bytes webapp/src/App.vue | 11 + webapp/src/assets/logo.png | Bin 0 -> 11955 bytes webapp/src/assets/logo.svg | 6 + webapp/src/components/HelloWorld.vue | 75 ++ webapp/src/layouts/default/Default.vue | 9 + webapp/src/layouts/default/View.vue | 9 + webapp/src/main.ts | 20 + webapp/src/plugins/index.ts | 20 + webapp/src/plugins/vuetify.ts | 26 + webapp/src/plugins/webfontloader.ts | 15 + webapp/src/router/index.ts | 26 + webapp/src/views/Home.vue | 7 + webapp/src/vite-env.d.ts | 7 + webapp/tsconfig.json | 25 + webapp/tsconfig.node.json | 9 + webapp/vite.config.ts | 38 + webapp/yarn.lock | 1536 ++++++++++++++++++++++++ 25 files changed, 1976 insertions(+) create mode 100644 webapp/.browserslistrc create mode 100644 webapp/.editorconfig create mode 100644 webapp/.eslintrc.js create mode 100644 webapp/.gitignore create mode 100644 webapp/README.md create mode 100644 webapp/index.html create mode 100644 webapp/package.json create mode 100644 webapp/public/favicon.ico create mode 100644 webapp/src/App.vue create mode 100644 webapp/src/assets/logo.png create mode 100644 webapp/src/assets/logo.svg create mode 100644 webapp/src/components/HelloWorld.vue create mode 100644 webapp/src/layouts/default/Default.vue create mode 100644 webapp/src/layouts/default/View.vue create mode 100644 webapp/src/main.ts create mode 100644 webapp/src/plugins/index.ts create mode 100644 webapp/src/plugins/vuetify.ts create mode 100644 webapp/src/plugins/webfontloader.ts create mode 100644 webapp/src/router/index.ts create mode 100644 webapp/src/views/Home.vue create mode 100644 webapp/src/vite-env.d.ts create mode 100644 webapp/tsconfig.json create mode 100644 webapp/tsconfig.node.json create mode 100644 webapp/vite.config.ts create mode 100644 webapp/yarn.lock diff --git a/webapp/.browserslistrc b/webapp/.browserslistrc new file mode 100644 index 0000000000..dc3bc09a24 --- /dev/null +++ b/webapp/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/webapp/.editorconfig b/webapp/.editorconfig new file mode 100644 index 0000000000..7053c49a04 --- /dev/null +++ b/webapp/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/webapp/.eslintrc.js b/webapp/.eslintrc.js new file mode 100644 index 0000000000..5f3949bd8a --- /dev/null +++ b/webapp/.eslintrc.js @@ -0,0 +1,14 @@ +module.exports = { + root: true, + env: { + node: true, + }, + extends: [ + 'plugin:vue/vue3-essential', + 'eslint:recommended', + '@vue/eslint-config-typescript', + ], + rules: { + 'vue/multi-word-component-names': 'off', + }, +} diff --git a/webapp/.gitignore b/webapp/.gitignore new file mode 100644 index 0000000000..403adbc1e5 --- /dev/null +++ b/webapp/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/webapp/README.md b/webapp/README.md new file mode 100644 index 0000000000..50b30e02e3 --- /dev/null +++ b/webapp/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/webapp/index.html b/webapp/index.html new file mode 100644 index 0000000000..e448c235ce --- /dev/null +++ b/webapp/index.html @@ -0,0 +1,16 @@ + + + + + + + + Vuetify 3 + + + +
+ + + + diff --git a/webapp/package.json b/webapp/package.json new file mode 100644 index 0000000000..724e9ada9e --- /dev/null +++ b/webapp/package.json @@ -0,0 +1,31 @@ +{ + "name": "webapp", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vue-tsc --noEmit && vite build", + "preview": "vite preview", + "lint": "eslint . --fix --ignore-path .gitignore" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "roboto-fontface": "*", + "vue": "^3.2.0", + "vue-router": "^4.0.0", + "vuetify": "^3.0.0", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@babel/types": "^7.21.4", + "@types/node": "^18.15.0", + "@types/webfontloader": "^1.6.35", + "@vitejs/plugin-vue": "^3.2.0", + "@vue/eslint-config-typescript": "^11.0.0", + "eslint": "^8.0.0", + "eslint-plugin-vue": "^9.0.0", + "typescript": "^5.0.0", + "vite": "^4.2.0", + "vite-plugin-vuetify": "^1.0.0", + "vue-tsc": "^1.2.0" + } +} diff --git a/webapp/public/favicon.ico b/webapp/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..8fb9f91b3aab4eec0c76ffc5342528033c61e247 GIT binary patch literal 15406 zcmeHO3v5%@8NNVarCoU?zSqezmT6npu}xxXJJhY(x=s~hQ>SSYYSncU&|(|9Y?QVX z@}TB1G8mASM;tRKYgJkrAW)&g7${B%c>oE7;)O>NNO_bu4G-IdNB({PbTkJL{ZGDJe2DLL+vq#sL?l$jZPe_*I2y@|4sBRjso zUy`aUlJo$60})6B%aMKN&yMG1Qvjth%4dDy{HM^34) z&_TyGJg3UC{J|n2-wr)LDYwhNWBH4VL-JgYz;erTEKiMF20`|$Cf~GysBU40j@&)u zboK>@(yL25%R|RmS~6@99bG>PviV`j>&k~M@~J%cn{`uCzUOyY^23rlWt6DH=aut3 zlZo^g63xIXwP(4)hgT<|I>hSGqh7YbLP$jL+%p0>vM2Su?wmOV;-uyLFww=KN5Ox{j<% zmi}mZc22bZyxbmI!x+Ch3+qsk+#YbHJ{CdQjDh~;LRJB63Pq&~p

*N){PEn7FA;EAwj=|b_AUGw z{Eb1Zt8`N8chL?vjkw~yAvg~N+W_qV|N7U7a3HGfPY0GBqUxOaLJzPO2|Qz7H&yF{ z!Y@7SbxH$-YlpxgCaImE$Fk6T4dUMU!=a+u##*PZb&m9d@{VbA<&v z;n*Hvm#Nt5zF}Ud{=9#v%+3;8${f~WV?Q`CFATe5JXp$wT(q1TOU7#0jK6PDXZ)(1 zOSF4N3hStRA?+K$*ZctH(lRF!KFSL%W20hM6%Rz+k9We?_C36J>PVG2%Y`27X;nW+ z*x`6oe7S`dXABgw#vFYvuM;-c|L9ua=7z9?9B!cL=Fyiz34xz{6kpCd?PeyG2V7mkg!!m@d$btKgDK_Ib zt|Qt#$Am-fZ&{xA0GOAnn8Ue+QQBY3NiO*vfvd{5lsp3L_K5f@hhj{}^Nk#us4?p+ ztOM)g!1L3Ff(Tk8KQe4khoQS4_&0;4zo|FQr(iM%k4L+U*z zff0J2FQWxM*K?>u4d$6_8R>l`cK8U+!w`A!D@A2^2+L%A~GSv8* z(uV!wgkD)YqY(1-;X}j zv4?n}%=LOp! z;8GgCC~I2q%*#5{$kpuKJ6-ET*}o#)Z>p>vQsxF25{?c6CQ5()gsGtn{Ul`*ykb!bDMnnlGUdfYdn+9lsY%+pJ_Z_xHs+imH? z!L`+luUT1yv*4C1Z&<#Qlui*r2~lxBI`sAm+}oX{s=OcRf9A0%Q^56>8DC==kKtgy z>D-TeE@f3uu4&Y?ZVVlM3wLg~Z>Y}xfNE|1MIAijELQN`Y2<45F5=t5>wtYuk>yuH zXEJj-vN;uZD0|537U$Eq5Oek?f#JlNGq{dN(qiDuxO185eWG@Tuk1zKUsCs)MAVm# zZTvIN+Wl0&MDXYQF#3{qXA$(Ft>uw;>&qkE2f#n|`-?1D`gl8Gqj+=j77qvaV7#CH z-mDV$x0TsBRP5B|jZ%mFQ}FDv4Rn5l$yl(|`Q7Oe;~u+P58Qvv*6uy)7U=EIpPM-5 zPv}(pkwc!Zx3$@4;Y){)0d2tO5v#db4**wJ~;d2`ShTX zw|GaKwMoD4ydIzqSN(;l&j_8}$q^eYga7tU+}ZvgxyO*m1UDkuojePFZ zG`-$PpE1`DpyrLMO}R7wCfu3t6Y|B7d%f_n+{8^32;HSdS9&hVGwt*sUYr-!%%`a~|XP)!GJa zaPfvq9vz7{ms4}`U~qpQ+@r?~G$CeSuOWUWWPj8xrxoKsi%ALkMoN~Re@yeI<`b#& zQakqh?^Bfdlv*~90r${a#kP)=j;z5r;Qua|_8~6ciamnnhpFd84r{fjgNVx%{UgRa z5XnEKlf}cZ&elidYgP}Qi}Z0^o$C^y%G~k#_Qp8=1^BDy6=xQN&GlMeiCUK;x&F$^ zjA44c!M?-)Y1kOO--Oix|DE7=F!d?WE|oc-P;ICUYO&YsIA3qS68`^+SoxzLDfxQ- z)V%&7_{XQaWqV^?8s0=b5Yxwfs(L2+kBDu`F4FIF*gxGfML8AK#-01US-npCiqalZ z?M~DOWA<^ZR|~P;79^A!*A-C1sshAC6<~Z9P|a%vs7IcNOJh792S@Vc$sCItcXG)K z1Fn?E#hswKujQD~WT#qpf3`ix0(EL{#By^?PeQ2& + + + + + + + + diff --git a/webapp/src/assets/logo.png b/webapp/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..a5f23ae7bff64954cf3537377a9f99306baf083d GIT binary patch literal 11955 zcmd6Ni9eKI^#7gJGKPulg;G%xiD=PGd&*jhP(($RY!y;H&uF0{l@?o>HdMBj2_-WU zNeh(_F{45yOO~6)1Q=?HBxq?7z}sB>)eS zX_8$O02XYpTeH$Nn$X+k6gjP_RPeX^z|cl2Yy0C`%k3^z#7&pBl;8Ed>bUL7pLv7R z6W014JxNhW@JjXCeXZg}#GXB2moGgZ_(`#Ou?&nUCg$zmsv3Xoj7bwQKX%vaiyIO? z86DLj?XyWG9Ns%o7xRAn*ge^bgdgipfcE@<^A+f`+mR>sKJ-efbO9(E zUaqO#{4M!gQ>Emm+h|>u3SJs1DO?hNToWIvqpIOS`jT%Uk7n0;wKs3);uG&)iMaiW z42@3$1li}%73SD=>Gs3DkumeZ(hj})J_6P`bPG8mIUj{f#s@0AbH4E`#H@}=-la`W z*u-6V5+J4|1lMME>4E(_7k=r-a@s6UONw$AHLHXEdyf4jQ(1c*F zHX0VCGG13c_-7ZhVu;e1xZ~-O*zV`wu73WG?8he3+^K-fpOZbBGjhjX!#qkpY$}^2 z4DKV~SN+$Aj>^@wcz4v@ZyvOj2#vbRjlahsRjv5BL?s}SnD`cA&Y<(5bo6RrO`Jvx znD!<=I9mzuY3JM~`gZl}NmlSWoZubDU0tboo)y#DPzA~P3Y5;^TRwUm8zx+<*<Lup&B5dj3P;M2pm*yn?)%cf z*jta-^OmWv_5}lD61#!eu~1K9rlYlQ_q%3GH}RsGO}p3iEeCx6>e|ZecI;X;6&>VB zykbrS%t6FrbVSFgrVUEtVt>TR8qf{Wd+$-?>Wp`X>I{2#LbG~P}J-H+N z;0nz?@he1Q{Kuw>g(h-=q2ku)A9~n*3%N=Fl1p2%Eb~4P_~C3;&>lBbxzzgTs1Qex zq`Z%A?^Y*;;_JE0)|41Jb$vXMP`>b?bobG_f0sLcC$Yvg?K;_DdRPzkyYjke4!FGRLEZC_p=-#}d@k>7aa6%OS8+zy zn>xzCrbsR?JYNZPdK;S}_0F_4-_Hpq+9F+aEHx0D$onB;5~uwypWanbFKNY&1vgk7*t?{kcTWNt+PUAcde2^Cz<5|&5#cei;2B5J8-OEgrc*Y@tsfPlItbJ5t(>);7UJuPnU*TcLc zQhNR*4kP1F_8ooa9{)1c+iuHODte#&A!)wd#qtBU9}zft6b~Xhw{J|eqI|S&eQykY zuo27dSOk{VAL^X#KWItbVl4{@?n3A``TNL9G`s**Qn-Gsj6<$?0O znVV=8JT+>=ruvd#ynUn7@{V^v7|342<^TLUP?+4(BB(YT9q_*Vwc^l##+^;FSJ8nomv2*=A+c%V>FpWlpU!Ky zoELOoWUZhJERCmp-=X*F8Nnyo(}2xSD0w7(0>;~pBYp=(obXy#QCE5-?M`NonC^pUh@_-k%~bVtg9 z3j~&0g!o2sD1Pp$Y>)B>b@$GZZ`5ag-^TOM{uQKzU4EJ?b$G!*565g3>vs17;nbiG ztCi=y+WP%0+_-b=#5tm3n+TA5Ayl>&6;R0%78n@!J!2l^9airdia!&C*#0Fi0S(nP zPyV~a@!~^@{OjOyChGa0#>@zRF6YnN{< z9_xlao2Coq&l$2Ev)%}|Im`)lJTh9CMZ@TuU9=^S8YN!KkBH4K5co6mwjR8de-DN# zXN4=4-Vuj*2(YA@qkpv>z}u?HNIg6A9u@ez(`GSpU+R~36du~s>$Gp6?it*`BUJvh z$7FonU0ndvRiA=0e>SGloZI+b>A>|Q7bmncss8+!y^v4)jxz7+wCgVLf{^bGDqxSnc@K`}*9>L_Z-Snf z>$T_#mub?pR@Va9oc-7$uo)qtt4-@w8ZaH7+l33q+%|6(FJlux&KpsG{_rfYQVHy* znb#cDJEyAHj_LYzvU)=h-Q=&8$X3gn)PyZ1Em`E52?Tz}b#(t9}&AH4cz-A=^iO!jXZV4tFUS(QjRWMrDio84Hv^_8gY5XJ4xIX^` zls`flCbfjPOLM=d?h!D5F*T#J9%dCG6?8XdobvFYeNDr?Mm-nZ z;qqvsQ44bOrG%U}E6VQ=J>flqA!XA*%y^ZCk3by57zwp?82&19qi6%AldfW2%|C!; zTC|-MJ1o^7371{LeDK7GuuusYrybh>qoYC@I9|LWOPX|>=#68Aj`!-sbq5z~ppQ;y zNp#hR|4SMiZT-ma-uY9TumZW5R{d_UrmkgqjZl!wkpuqGPQVk@IqD(_mJFJ#+>tn} z-h?%@iQE*jfbZ2ibLbXh*7L?-WcWyPvCo@eR+#Y_L#Hel)0}AKsY!sa!~>Gr1OvOD zEM9YG@!0xam0h)~l(D2Uz91~(jRr@#VAN@>P;bGQ^@g>b=^s4Qw!tmaMgux660%q6 zO|oy5(^uo{r*pywoQ_&HVTlRtt=K&S5@YTsd`MjQXXC7!+F)9xErAx^hC6M*o8nsZ zg<16wb2oKBE@eUWLEI(9YyX*5dj`y2w&d0vBn~sjPJdBL zlE-G)f9Z%wh538VQv&}pG15eZyePZ}p`wQa@})aGkg10TR6ay-dB?5P+PXV_!d>)t zd$*X&|KcpYfBLe+^9rW!p@Gn;rfBM#EpUT6fzX+j2^r|@B-oyB|6@E>Jnw?gf)hQ< zcmIalH>ZPB#S~TfyaYP`+tjR4-o^oyT^7=2nSs+m<_Qm<*?k>#P#Cm+@(@32JTi;r zlgE{N@ENOKYYQ%olAUSG)q3zMTWcs_*ZoKb?1fcSo33KS=(mjUwv9V1R*^?YL%XQ>Z;h?QjUu0TU#g%59b^#Z z7Dj}*b!t$x%I9{Ge~1%Wul3~|S7d#T;A3p}g=qg`6d$KJi%D@Q?v*RURx5$kowkGq zqSIJhKOPB#vPKadD!OG>_wG$I+lWP2)`bh0nP742O=sV?g=BfBE9nO|nX8ldb89^~ zNsAa8K-l6ySuTxdxrmqPlK9&DcUVcaNbF#+*Jn=(1g&}?qHYdc&$pJWnnecpBP)1y zSJ!r@|CM3J=ClSHxcFVD;`^7tnJv>sziy??QIU%~*YiB$BA{k+lH7g<70OEB+)m-x{Yq5g|Cy@gBROfAc27MDdtKPx4EWt{XHs7oj_ zVFg4yvm202Ybyn@)5v|=0=zDJxC~dV;61uPs5frq6@OH7tp?_#Vv5#}P6hVL?+nf& z_a)Ar|5XA+@~I)r{}nL5Ro|~*0Nh`%uIiTZj9Ag4T zpL@oM31x@A0^@pOi$EfqYb25+N$V+LPrFaQ2S1BMQ4Y>K(iNxH^v0J->yimRgyMF~ ziqAy3ZRQGGUdiola{Db&u>lpOoZLqHp~kmc0Jq)DA{dmd?+p!C0yM>ZjScbxvu-^T zHL1NlM@I#T!CS(yMeeG>USmB881jn*(t9$sMm^>ba|Kh!4*y`O7=z$>25J;8fm^X>l%dd+rB)Aufz zcnt-Gl^@7WyHC-%5aJSWp7z6dEN7&bH}*WryGUyus%IgUJ~Nqz6ig%%I0|+#o}8yF z;S3VrMW$YoTf7~bL3F&(dyy8QVXn&)BiRLu(D=kdcmQAZxeX#bHX44+u!OPwCnwpKpAVD~j4Dol?OhpKkGf1fM$m z=>A^MEvDwbBSBv9Z#uRe8vHPmB%}o*bUzS~+U4Oh-)o?MXwNk+Z`VNRR+JBkQ(mVE z)E9Mxu-oN`ek(})&)Ab=yBoNRYgZ%k*ym&=RL-WKM^^%-8$J%2zUz^*&+`XR44)p) z=NwZ4*KUcLl&Pr3B!3QnJh$CF=cyCeru=`zIdY3oKi5sH_V^TmvsNaP`LZ(k z(Go6`ybpTw8NBhz?WM`-bUSTH?D}6B>lWDh{fOgCx#9$_*}eQa_3;@3XAdM$#X$Cq zNLTp!`XUbU9Bqb65+@Hl}(+GBcNFmO#v>)Pld z*lLMG-hEeN_1Hg{(%H+?RRYsx>Q~h;Hcn&=(^v^FlHKCHtVE7;@XM>Hs|WQervoag zOs9U;Xx7k_K-LyFemc>LwXC9Yw!&9KXU_;^_x`WK2$0i8HPTjadHWZF1Hm%Q+idW; zTiU%;mlk+|5J0cs^}&g}JW7NU>(&_p%YPu$uX`z%r}1|nG>N;Uf~jH-q79a~wXdzy z;3&Yh*^$=Zv+J(3VjgQjk?Hop&2fmH4;Wx=r#&VUGdQ9$BoL9mM8p1y`sJv=>Fd+L z2{JKg@189oGKlurP)pRcE0_p;=&a%szP~q5R+Ot6bpnwc5PDtXL03n8%ojk224^3 z8wM7P4W?lWOLNP%Jyyb8#68M6V6jng1{s&l-k8)9?>FGbv$U>7&1Xn@G_pYY#pw$o z+j+@aVEK&f`j>V^EIFqxRBTw3kIf+lHaZj@2yLi zJ=S#R&YqQqxzd5Q?aCCY@rxL<0LAzc#Mea4jKRAMBY9}9`6F+G{w28rP^SA@1? z;m|_2Mxy70?yo&}JnOsHh4vP@KlM^OkWAog%Wn1>6!kNyfU^JjzFdl<-=sLdDe9&x z6Ygz&f`r~N8qg!5sv$77Zx%hfvAo~A=YNE`P;M2V&$%T7SlDhHH&M@ zW?tDwK5KGna7Q3=*c=#Ny!~!J!E!nkwgcK1FLl!VUWV`nMBW*$O2yK-F94_JoynX> zF_9*r4&6W|#mb&XCbeYw+mLhTG+>W+0q4EZPAo$%%gUOl^D8J{dPjlF6u2)22VsEx zsstSS6fVm&3qW@L8iL67Y!pA~BK~xmz?$Jk3xYOqOMY(^zKl>`m znLV1sd*09ty7LjAIIX3Z5&yacDQt@R?}9 zhJ8W({JEjDJS)b}9)@!xc8Ln7W6mk@zsh63ssX3DNW;A+gk8Rk@QyQ{!pInSzHC|l zX7P}gI=^&#hMHu{IRdK`f+{7w?9capc{j26?iclws(#024`}w_F?;UXDPVJ70Zt|) z)+dsw&Sx7c9|35<+$(gx7Zf?gh*S#@2OzsXEAZe%X#y8R zJi3$y&0gWH@vd767q(X$?A`lGl5HTb1lU^b8YN){^*MC(zBEKyV;S)$Jf*f6i9?o# zQTd7X`0Hy!v2h0GfIQ3YP4WAada32X0IKu6*<(3Wb$*(&m_{S9ShcZ4jXcW4LxPr8 z=?ukEVb+uwHzBhTfAqR{P6e+B-rm*d+4&$dZ9Zpc2J2T0K06LM45ifCNnFV*l2|Bp z+&8}Kz+tWPmq}bMFKK;W2XCG;ThZrW=BWN0DhlW%_A`r|&i&RvMLla2zs^!wL2%{5 zTy76nvGL=0G1zgGX#B6%B%Kx#53A2eVTPWOGECYE(2~R`<*2A#N?i`B^D@VaEqX$LaA6 zoU1gD?SNC=U?$$J1!it;B!+NV92#Nq7qYXiAFl&MgURP2`xqpBfL3!x@dSd4~g32$(Rn8nWi{OZfGML2O%CZrK}0lv?fDxR+GfK zeGk&hUGc-mUamV$JY>Oil1=5Gl_^#;*vXrs+em!04=Hb4Mwl$-(tbG-Lm3j9Tqu6) z;Vip}xPXOV&0DDc#(xzLJm0)UnHALA|8WB96hem>x6YM9???EzsX1>_udmH+7iP^K z(^S;~uVfP-r-`U(JEceodwy$p?}J-H!94@5U~mq$*VA6DgbFOIjFPG)?`0{UJ5q)Z z*6YV19lHR-O&lB1UG{#ta$preH(T7%C=p)Z$HLU@d(1?hMn_e-%xQjrb+^pOr&i@u z43o6n8YaQCQJgja}^tp6|16%3>go-B6^0%zf^(BR}KN?@Lff)Y_8P=2FLA zGvx=@KtPD&fXZcaz`6L{LrC)khEnhHkSA*m--I9!io&OZOLykX9*f_o1)S}mJQ?({ zl>4Vo!cYHH0-BQVz4}`h0?tEEHwV1)K(rHj*@0WZ3`D|DcPpWZLjAoJ08J|!w0;=# zeuHTI;ZLtcda`65o{)=Yz438CwY3O)hrO{61?9MG%ZA(;^w_@_o0|mZ2huQ1yh#b9 z!j|z{`|p*!HN9plE)3&$rMvW$K*B0*7_pkyjOU>;O&%X(4h)pZ__wLYDCWz&y2_BZ z@dQu-n}i8NnBUZjR-UX!m_{PNnhWK~XgSuKaZSDv>iQxE6`V+F@h&6k1DU*V2P6=; zwGorY)|&jGqfks#-qZq&`SAEDE}EhP9yjVicAE}|W=)zkcUoJ0g5&06ZpOpf8V(daD~aR4M|GO#>=P zyGY>kxppkX2^i(}<1$`~@kCD*5zze&nEA}x{Wuw~x1@sHk$=g$GS|luyzQOCWm+Z? zK;Z0Z$wt&=*AZgP#aX{-_2w49`E-lEW0(r=iYHqJA^|iKXn?V07pye`ArU~&0-QQ{ zHnWP74U1cf{cR3g$`e zbiN*!c>snI2A}Y$Yp-1Ss5o{$U;9sI(;McnxfC8zHH;P zAP^aVzAGF2>~>L|x0{$*^<0|My+#2JE6c8|=Y<F3!=}Mg7=)=r1Njk24>ky0L-MncEPBLp5x7(R(tWFQbOg6n@nAv*Z#E1Iuci!)_qz~o@> zuPx#J+5W`DL7d9}6P5;1Z4Ivtfko1qlc6P{_;m!2npFJVCeaWy?ItAlx%+p;kRA5fPzPh|o3n|E4@}J7%DFLnJrS3=BXpVO4kQIOHD&5e8UyAbZ=}cnR1ZU_{P{h8JCbCOZsU@Z{4c97&3+<>Wm?A&yy1ogY(^#av>Hu``bT`_M z>wtMM1%sVTn}xt&qf=I`h9|%e3`n6fZbD}m(?e;ydwVjjSc3&)uUeVDYv~M^XJrqb z8A5gQ)NQ$B=sxq325js#Kwm^mQ~q(bF&XCuqYM}-Yx3bS^CsyVQZE%aAb4Nx6EMXO z0M$N)pI&cX;i?i6{M1z-TQ6XwcQWb#6>xsQ^C`15j+$vB{;;yM)0Dsmzy@x)nqrUR zrXIviyv%*kkv;-cE@LfNVQ6rq6HD&OmDZ)0HLNm)usy=321O3NNAT`4#Ag}__MX2i3S{T+yMg)V+j1aRLDERnZdc=La3~>p_#_LGjKVd6 zc~$2~+p8+G`*GDj1iYDpEo=8Nx}~HoMFfz&@Q_1&UUn0H`j-NFS_`0aVSSWKS)9`` zk){6Sj!4e_6#$vAPT!J_VOeK7@MXfO(3rVjZ3$I5K=lVb;0XqEm<=SuFlvM3o)rOZtZPiKR@Fhji!i1rkcD&FeEh@I?V{poWE8nDELmbv3tr|E^mi$DX0E_pxz zUF%H4_F9F4;B>)M5V;FXwr=z99NKm{b}Xm+_KN?Kp1CF!_z;{_I#;myfrCxuCI@ed ziio!4?E(#-EqHu+e*zQ)iI#KCu_L2YXtmB_qn&U2gw{& zX*f;*xr9-2WeNE`s54Js ziP6cN47vLGfhddi-|nj_{HGz8xQIy}@Dx5^t(PZwRx^scxu(d{h5M;d;=xh>az(4; zGyd_++gGv^?U#RfYV`|Ybj_}AmRm?BYL-gkh5Ge+vXKIffQtj6w9Hs(R;xoC!itqW zqSV9Z@1{97B6{%g-^iDa!NDsafDR442@gXDI#@#m_>SIwpLbzN7WFfsadNBjDP3;u z>D?3F5Ug^|09=y~qn*zlS}r-OzpCpL2$&9UW)D7L1s#9dxxf5AvZP=Cry?A?0FyEE zwudl}gidC>`svUn!vzd2SJSX+zE5%_2Rtk~|YI1eZUzyOc-F?T*fx-J$mD<_!h zw~l=$oPcH706#_WwfWJ_MU2$C10q5W^vD=!R&)ho&wJ|vA51nv*;W`(CqHhzBN`?AV zz+V&?$iCb(nFR+_NI*FISy!w~ylxlh5yPzq_I9@fat{0tA__MXW^ zOgi8Lz@;!Q|Jzmjr3b1fnExVj9>n{`5)YsK%gT*}mquXnBRz#fXa3+5)rZ_h$<1zN znNKhQK$deIX5-Hg=C8W2b|yzl z7qAxjHQnCz=>^h&fi}3fD#*(^1(X)Mcw7s%VB~&Q1CZM!)ZmX`M$@nq_fNg-H9!Ln z8h7_81l-dIX#0X2!BfyxF!PW(cRhqBMj$K<7!X>(%hdT}x|4in(Ld+2&7DbP;=hzE zXlS}k6@8oippdt4!VCr{5tg^|2@6NsG@^Z_f)R%k05%T*`SueJ;m3%-uWD;}J`>_7 zwqISe^rGj}bC9rFOwUpt^857EKUa-(^TT}M9*c<;A{4uWk6KpY;v8~pA$C9Dl; z0yYsi$Nz%X_E{!ik#^umnao2C}_hPwKFnOI=a2FQ6@Dnt0P_(ng zpppEo`IKWvhoHbPfK6Z)88+d^W-sd%_$4djuO~|t)&RUr9s=W7%XVzPl=m1m@X4&H zaBzbR8luOs#KAZC#=M%ol#x5N?3LgtWILC%&9vosh+S2l0vZ5uFeRMJGVx>c2Y(7e zp(AI)LTXLdmq(gG5JOE+AF<&1AzGu + + + + + diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue new file mode 100644 index 0000000000..646a50866a --- /dev/null +++ b/webapp/src/components/HelloWorld.vue @@ -0,0 +1,75 @@ + + + diff --git a/webapp/src/layouts/default/Default.vue b/webapp/src/layouts/default/Default.vue new file mode 100644 index 0000000000..57ada2fdaa --- /dev/null +++ b/webapp/src/layouts/default/Default.vue @@ -0,0 +1,9 @@ + + + diff --git a/webapp/src/layouts/default/View.vue b/webapp/src/layouts/default/View.vue new file mode 100644 index 0000000000..8e9e4143c3 --- /dev/null +++ b/webapp/src/layouts/default/View.vue @@ -0,0 +1,9 @@ + + + diff --git a/webapp/src/main.ts b/webapp/src/main.ts new file mode 100644 index 0000000000..f11674d696 --- /dev/null +++ b/webapp/src/main.ts @@ -0,0 +1,20 @@ +/** + * main.ts + * + * Bootstraps Vuetify and other plugins then mounts the App` + */ + +// Components +import App from './App.vue' + +// Composables +import { createApp } from 'vue' + +// Plugins +import { registerPlugins } from '@/plugins' + +const app = createApp(App) + +registerPlugins(app) + +app.mount('#app') diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts new file mode 100644 index 0000000000..a26ebe73b2 --- /dev/null +++ b/webapp/src/plugins/index.ts @@ -0,0 +1,20 @@ +/** + * plugins/index.ts + * + * Automatically included in `./src/main.ts` + */ + +// Plugins +import { loadFonts } from './webfontloader' +import vuetify from './vuetify' +import router from '../router' + +// Types +import type { App } from 'vue' + +export function registerPlugins (app: App) { + loadFonts() + app + .use(vuetify) + .use(router) +} diff --git a/webapp/src/plugins/vuetify.ts b/webapp/src/plugins/vuetify.ts new file mode 100644 index 0000000000..c276519a4a --- /dev/null +++ b/webapp/src/plugins/vuetify.ts @@ -0,0 +1,26 @@ +/** + * plugins/vuetify.ts + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import '@mdi/font/css/materialdesignicons.css' +import 'vuetify/styles' + +// Composables +import { createVuetify } from 'vuetify' + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +export default createVuetify({ + theme: { + themes: { + light: { + colors: { + primary: '#1867C0', + secondary: '#5CBBF6', + }, + }, + }, + }, +}) diff --git a/webapp/src/plugins/webfontloader.ts b/webapp/src/plugins/webfontloader.ts new file mode 100644 index 0000000000..0cf56148c1 --- /dev/null +++ b/webapp/src/plugins/webfontloader.ts @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.ts + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts new file mode 100644 index 0000000000..65353daa99 --- /dev/null +++ b/webapp/src/router/index.ts @@ -0,0 +1,26 @@ +// Composables +import { createRouter, createWebHistory } from 'vue-router' + +const routes = [ + { + path: '/', + component: () => import('@/layouts/default/Default.vue'), + children: [ + { + path: '', + name: 'Home', + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), + }, + ], + }, +] + +const router = createRouter({ + history: createWebHistory(process.env.BASE_URL), + routes, +}) + +export default router diff --git a/webapp/src/views/Home.vue b/webapp/src/views/Home.vue new file mode 100644 index 0000000000..7646ab78c7 --- /dev/null +++ b/webapp/src/views/Home.vue @@ -0,0 +1,7 @@ + + + diff --git a/webapp/src/vite-env.d.ts b/webapp/src/vite-env.d.ts new file mode 100644 index 0000000000..323c78a6cd --- /dev/null +++ b/webapp/src/vite-env.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import type { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +} diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json new file mode 100644 index 0000000000..aa6f0fddef --- /dev/null +++ b/webapp/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "Node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ESNext", "DOM"], + "skipLibCheck": true, + "noEmit": true, + "paths": { + "@/*": [ + "src/*" + ] + } + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }], + "exclude": ["node_modules"] +} diff --git a/webapp/tsconfig.node.json b/webapp/tsconfig.node.json new file mode 100644 index 0000000000..9d31e2aed9 --- /dev/null +++ b/webapp/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts new file mode 100644 index 0000000000..17bac022bd --- /dev/null +++ b/webapp/vite.config.ts @@ -0,0 +1,38 @@ +// Plugins +import vue from '@vitejs/plugin-vue' +import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' + +// Utilities +import { defineConfig } from 'vite' +import { fileURLToPath, URL } from 'node:url' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + template: { transformAssetUrls } + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + ], + define: { 'process.env': {} }, + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)) + }, + extensions: [ + '.js', + '.json', + '.jsx', + '.mjs', + '.ts', + '.tsx', + '.vue', + ], + }, + server: { + port: 3000, + }, +}) diff --git a/webapp/yarn.lock b/webapp/yarn.lock new file mode 100644 index 0000000000..67220eb44d --- /dev/null +++ b/webapp/yarn.lock @@ -0,0 +1,1536 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/helper-string-parser@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" + integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== + +"@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/parser@^7.20.15", "@babel/parser@^7.21.3": + version "7.21.8" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" + integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== + +"@babel/types@^7.21.4": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" + integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== + dependencies: + "@babel/helper-string-parser" "^7.21.5" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + +"@esbuild/android-arm64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz#4aa8d8afcffb4458736ca9b32baa97d7cb5861ea" + integrity sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw== + +"@esbuild/android-arm@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.18.tgz#74a7e95af4ee212ebc9db9baa87c06a594f2a427" + integrity sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw== + +"@esbuild/android-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.18.tgz#1dcd13f201997c9fe0b204189d3a0da4eb4eb9b6" + integrity sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg== + +"@esbuild/darwin-arm64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz#444f3b961d4da7a89eb9bd35cfa4415141537c2a" + integrity sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ== + +"@esbuild/darwin-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz#a6da308d0ac8a498c54d62e0b2bfb7119b22d315" + integrity sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A== + +"@esbuild/freebsd-arm64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz#b83122bb468889399d0d63475d5aea8d6829c2c2" + integrity sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA== + +"@esbuild/freebsd-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz#af59e0e03fcf7f221b34d4c5ab14094862c9c864" + integrity sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew== + +"@esbuild/linux-arm64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz#8551d72ba540c5bce4bab274a81c14ed01eafdcf" + integrity sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ== + +"@esbuild/linux-arm@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz#e09e76e526df4f665d4d2720d28ff87d15cdf639" + integrity sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg== + +"@esbuild/linux-ia32@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz#47878860ce4fe73a36fd8627f5647bcbbef38ba4" + integrity sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ== + +"@esbuild/linux-loong64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz#3f8fbf5267556fc387d20b2e708ce115de5c967a" + integrity sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ== + +"@esbuild/linux-mips64el@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz#9d896d8f3c75f6c226cbeb840127462e37738226" + integrity sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA== + +"@esbuild/linux-ppc64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz#3d9deb60b2d32c9985bdc3e3be090d30b7472783" + integrity sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ== + +"@esbuild/linux-riscv64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz#8a943cf13fd24ff7ed58aefb940ef178f93386bc" + integrity sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA== + +"@esbuild/linux-s390x@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz#66cb01f4a06423e5496facabdce4f7cae7cb80e5" + integrity sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw== + +"@esbuild/linux-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz#23c26050c6c5d1359c7b774823adc32b3883b6c9" + integrity sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA== + +"@esbuild/netbsd-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz#789a203d3115a52633ff6504f8cbf757f15e703b" + integrity sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg== + +"@esbuild/openbsd-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz#d7b998a30878f8da40617a10af423f56f12a5e90" + integrity sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA== + +"@esbuild/sunos-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz#ecad0736aa7dae07901ba273db9ef3d3e93df31f" + integrity sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg== + +"@esbuild/win32-arm64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz#58dfc177da30acf956252d7c8ae9e54e424887c4" + integrity sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg== + +"@esbuild/win32-ia32@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz#340f6163172b5272b5ae60ec12c312485f69232b" + integrity sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw== + +"@esbuild/win32-x64@0.17.18": + version "0.17.18" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz#3a8e57153905308db357fd02f57c180ee3a0a1fa" + integrity sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg== + +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.4.0": + version "4.5.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" + integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== + +"@eslint/eslintrc@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" + integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.5.2" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.40.0": + version "8.40.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" + integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== + +"@humanwhocodes/config-array@^0.11.8": + version "0.11.8" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" + integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/sourcemap-codec@^1.4.13": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@mdi/font@7.0.96": + version "7.0.96" + resolved "https://registry.yarnpkg.com/@mdi/font/-/font-7.0.96.tgz#9853c222623072f5575b4039c8c195ea929b61fc" + integrity sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/node@^18.15.0": + version "18.16.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.8.tgz#fcd9bd0a793aba2701caff4aeae7c988d4da6ce5" + integrity sha512-p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA== + +"@types/semver@^7.3.12": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== + +"@types/webfontloader@^1.6.35": + version "1.6.35" + resolved "https://registry.yarnpkg.com/@types/webfontloader/-/webfontloader-1.6.35.tgz#c9cedff2995c61ee9b2064714e7f7d7763ac50bd" + integrity sha512-IJlrsiDWq6KghQ7tPlL5tcwSUyOxLDceT+AFUY7Ylj0Fcv3/h3QkANqQxZ0B5mEpEKxhTw76vDmvrruSMV9n9Q== + +"@typescript-eslint/eslint-plugin@^5.59.1": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" + integrity sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== + dependencies: + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/type-utils" "5.59.5" + "@typescript-eslint/utils" "5.59.5" + debug "^4.3.4" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/parser@^5.59.1": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" + integrity sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== + dependencies: + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" + integrity sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== + dependencies: + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" + +"@typescript-eslint/type-utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" + integrity sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== + dependencies: + "@typescript-eslint/typescript-estree" "5.59.5" + "@typescript-eslint/utils" "5.59.5" + debug "^4.3.4" + tsutils "^3.21.0" + +"@typescript-eslint/types@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" + integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== + +"@typescript-eslint/typescript-estree@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" + integrity sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== + dependencies: + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" + integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" + eslint-scope "^5.1.1" + semver "^7.3.7" + +"@typescript-eslint/visitor-keys@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" + integrity sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== + dependencies: + "@typescript-eslint/types" "5.59.5" + eslint-visitor-keys "^3.3.0" + +"@vitejs/plugin-vue@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" + integrity sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw== + +"@volar/language-core@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" + integrity sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ== + dependencies: + "@volar/source-map" "1.4.1" + +"@volar/source-map@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.4.1.tgz#e3b561775c742508e5e1f28609a4787c98056715" + integrity sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA== + dependencies: + muggle-string "^0.2.2" + +"@volar/typescript@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.4.1.tgz#a013419e6f029155e5467443f3ab72815da608b5" + integrity sha512-phTy6p9yG6bgMIKQWEeDOi/aeT0njZsb1a/G1mrEuDsLmAn24Le4gDwSsGNhea6Uhu+3gdpUZn2PmZXa+WG2iQ== + dependencies: + "@volar/language-core" "1.4.1" + +"@volar/vue-language-core@1.6.4": + version "1.6.4" + resolved "https://registry.yarnpkg.com/@volar/vue-language-core/-/vue-language-core-1.6.4.tgz#b1d695861945e63c65ff4e74609b07cb06772b7c" + integrity sha512-1o+cAtN2DIDNAX/HS8rkjZc8wTMTK+zCab/qtYbvEVlmokhZiDrQeoD9/l0Ug7YCNg+mVuMNHKNBY7pX8U2/Jw== + dependencies: + "@volar/language-core" "1.4.1" + "@volar/source-map" "1.4.1" + "@vue/compiler-dom" "^3.3.0-beta.3" + "@vue/compiler-sfc" "^3.3.0-beta.3" + "@vue/reactivity" "^3.3.0-beta.3" + "@vue/shared" "^3.3.0-beta.3" + minimatch "^9.0.0" + muggle-string "^0.2.2" + vue-template-compiler "^2.7.14" + +"@volar/vue-typescript@1.6.4": + version "1.6.4" + resolved "https://registry.yarnpkg.com/@volar/vue-typescript/-/vue-typescript-1.6.4.tgz#9358e2c7cdb5bdc3ef05926084be4bb6cd3673f7" + integrity sha512-qKwgP0KVQR/aaH/SN3AP7RB8NnXPWDn3tjyXP6IT6etxkDeZLBLsXWUD9KMak/RvV1DgbXDuz4F9yuZlbt29rA== + dependencies: + "@volar/typescript" "1.4.1" + "@volar/vue-language-core" "1.6.4" + +"@vue/compiler-core@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.2.tgz#39567bd15c7f97add97bfc4d44e814df36eb797b" + integrity sha512-CKZWo1dzsQYTNTft7whzjL0HsrEpMfiK7pjZ2WFE3bC1NA7caUjWioHSK+49y/LK7Bsm4poJZzAMnvZMQ7OTeg== + dependencies: + "@babel/parser" "^7.21.3" + "@vue/shared" "3.3.2" + estree-walker "^2.0.2" + source-map-js "^1.0.2" + +"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.3.0-beta.3": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz#2012ef4879375a4ca4ee68012a9256398b848af2" + integrity sha512-6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw== + dependencies: + "@vue/compiler-core" "3.3.2" + "@vue/shared" "3.3.2" + +"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.3.0-beta.3": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz#d6467acba8446655bcee7e751441232e5ddebcbf" + integrity sha512-jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ== + dependencies: + "@babel/parser" "^7.20.15" + "@vue/compiler-core" "3.3.2" + "@vue/compiler-dom" "3.3.2" + "@vue/compiler-ssr" "3.3.2" + "@vue/reactivity-transform" "3.3.2" + "@vue/shared" "3.3.2" + estree-walker "^2.0.2" + magic-string "^0.30.0" + postcss "^8.1.10" + source-map-js "^1.0.2" + +"@vue/compiler-ssr@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.2.tgz#75ac4ccafa2d78c91d2e257ad243c86409493cc4" + integrity sha512-K8OfY5FQtZaSOJHHe8xhEfIfLrefL/Y9frv4k4NsyQL3+0lRKxr9QuJhfdBDjkl7Fhz8CzKh63mULvmOfx3l2w== + dependencies: + "@vue/compiler-dom" "3.3.2" + "@vue/shared" "3.3.2" + +"@vue/devtools-api@^6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" + integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== + +"@vue/eslint-config-typescript@^11.0.0": + version "11.0.3" + resolved "https://registry.yarnpkg.com/@vue/eslint-config-typescript/-/eslint-config-typescript-11.0.3.tgz#c720efa657d102cd2945bc54b4a79f35d57f6307" + integrity sha512-dkt6W0PX6H/4Xuxg/BlFj5xHvksjpSlVjtkQCpaYJBIEuKj2hOVU7r+TIe+ysCwRYFz/lGqvklntRkCAibsbPw== + dependencies: + "@typescript-eslint/eslint-plugin" "^5.59.1" + "@typescript-eslint/parser" "^5.59.1" + vue-eslint-parser "^9.1.1" + +"@vue/reactivity-transform@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.2.tgz#e1991d52d7ecefb65b214d8a3385a9dbe2cca74c" + integrity sha512-iu2WaQvlJHdnONrsyv4ibIEnSsuKF+aHFngGj/y1lwpHQtalpVhKg9wsKMoiKXS9zPNjG9mNKzJS9vudvjzvyg== + dependencies: + "@babel/parser" "^7.20.15" + "@vue/compiler-core" "3.3.2" + "@vue/shared" "3.3.2" + estree-walker "^2.0.2" + magic-string "^0.30.0" + +"@vue/reactivity@3.3.2", "@vue/reactivity@^3.3.0-beta.3": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.2.tgz#c4ddc5087039070c0c11810f6bc1aa59c99f0cb5" + integrity sha512-yX8C4uTgg2Tdj+512EEMnMKbLveoITl7YdQX35AYgx8vBvQGszKiiCN46g4RY6/deeo/5DLbeUUGxCq1qWMf5g== + dependencies: + "@vue/shared" "3.3.2" + +"@vue/runtime-core@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.2.tgz#7c89b30c44ad42a3256806a1e37c3cd18500d6d5" + integrity sha512-qSl95qj0BvKfcsO+hICqFEoLhJn6++HtsPxmTkkadFbuhe3uQfJ8HmQwvEr7xbxBd2rcJB6XOJg7nWAn/ymC5A== + dependencies: + "@vue/reactivity" "3.3.2" + "@vue/shared" "3.3.2" + +"@vue/runtime-dom@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.2.tgz#b0bf7ce3fa9c181049ce783a0e13480a4f350c4b" + integrity sha512-+drStsJT+0mtgHdarT7cXZReCcTFfm6ptxMrz0kAW5hms6UNBd8Q1pi4JKlncAhu+Ld/TevsSp7pqAZxBBoGng== + dependencies: + "@vue/runtime-core" "3.3.2" + "@vue/shared" "3.3.2" + csstype "^3.1.1" + +"@vue/server-renderer@3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.2.tgz#31dce9f76380762fc42df77f6f974c4098f179e6" + integrity sha512-QCwh6OGwJg6GDLE0fbQhRTR6tnU+XDJ1iCsTYHXBiezCXAhqMygFRij7BiLF4ytvvHcg5kX9joX5R5vP85++wg== + dependencies: + "@vue/compiler-ssr" "3.3.2" + "@vue/shared" "3.3.2" + +"@vue/shared@3.3.2", "@vue/shared@^3.3.0-beta.3": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.2.tgz#774cd9b4635ce801b70a3fc3713779a5ef5d77c3" + integrity sha512-0rFu3h8JbclbnvvKrs7Fe5FNGV9/5X2rPD7KmOzhLSUAiQH5//Hq437Gv0fR5Mev3u/nbtvmLl8XgwCU20/ZfQ== + +"@vuetify/loader-shared@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz#0f63a3d41b6df29a2db1ff438aa1819b237c37a3" + integrity sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g== + dependencies: + find-cache-dir "^3.3.2" + upath "^2.0.1" + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.8.0: + version "8.8.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" + integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cross-spawn@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + +de-indent@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" + integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== + +debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +esbuild@^0.17.5: + version "0.17.18" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.18.tgz#f4f8eb6d77384d68cd71c53eb6601c7efe05e746" + integrity sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== + optionalDependencies: + "@esbuild/android-arm" "0.17.18" + "@esbuild/android-arm64" "0.17.18" + "@esbuild/android-x64" "0.17.18" + "@esbuild/darwin-arm64" "0.17.18" + "@esbuild/darwin-x64" "0.17.18" + "@esbuild/freebsd-arm64" "0.17.18" + "@esbuild/freebsd-x64" "0.17.18" + "@esbuild/linux-arm" "0.17.18" + "@esbuild/linux-arm64" "0.17.18" + "@esbuild/linux-ia32" "0.17.18" + "@esbuild/linux-loong64" "0.17.18" + "@esbuild/linux-mips64el" "0.17.18" + "@esbuild/linux-ppc64" "0.17.18" + "@esbuild/linux-riscv64" "0.17.18" + "@esbuild/linux-s390x" "0.17.18" + "@esbuild/linux-x64" "0.17.18" + "@esbuild/netbsd-x64" "0.17.18" + "@esbuild/openbsd-x64" "0.17.18" + "@esbuild/sunos-x64" "0.17.18" + "@esbuild/win32-arm64" "0.17.18" + "@esbuild/win32-ia32" "0.17.18" + "@esbuild/win32-x64" "0.17.18" + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-plugin-vue@^9.0.0: + version "9.12.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.12.0.tgz#3174eaaedc143bf7b392b3defa3f18889606bb73" + integrity sha512-xH8PgpDW2WwmFSmRfs/3iWogef1CJzQqX264I65zz77jDuxF2yLy7+GA2diUM8ZNATuSl1+UehMQkb5YEyau5w== + dependencies: + "@eslint-community/eslint-utils" "^4.3.0" + natural-compare "^1.4.0" + nth-check "^2.0.1" + postcss-selector-parser "^6.0.9" + semver "^7.3.5" + vue-eslint-parser "^9.0.1" + xml-name-validator "^4.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1, eslint-scope@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" + integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" + integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== + +eslint@^8.0.0: + version "8.40.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.40.0.tgz#a564cd0099f38542c4e9a2f630fa45bf33bc42a4" + integrity sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.4.0" + "@eslint/eslintrc" "^2.0.3" + "@eslint/js" "8.40.0" + "@humanwhocodes/config-array" "^0.11.8" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.0" + eslint-visitor-keys "^3.4.1" + espree "^9.5.2" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-sdsl "^4.1.4" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + +espree@^9.3.1, espree@^9.5.2: + version "9.5.2" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" + integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esquery@^1.4.0, esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-cache-dir@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.19.0: + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + dependencies: + type-fest "^0.20.2" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +js-sdsl@^4.1.4: + version "4.4.0" + resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" + integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +magic-string@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" + integrity sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.13" + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" + integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== + dependencies: + brace-expansion "^2.0.1" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +muggle-string@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.2.2.tgz#786aa53fea1652c61c6a59e1f839292b262bc72a" + integrity sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg== + +nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +natural-compare-lite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +postcss-selector-parser@^6.0.9: + version "6.0.12" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" + integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss@^8.1.10, postcss@^8.4.23: + version "8.4.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" + integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +roboto-fontface@*: + version "0.10.0" + resolved "https://registry.yarnpkg.com/roboto-fontface/-/roboto-fontface-0.10.0.tgz#7eee40cfa18b1f7e4e605eaf1a2740afb6fd71b0" + integrity sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g== + +rollup@^3.21.0: + version "3.21.6" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" + integrity sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== + optionalDependencies: + fsevents "~2.3.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +semver@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: + version "7.5.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" + integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== + dependencies: + lru-cache "^6.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typescript@^5.0.0: + version "5.0.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" + integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== + +upath@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" + integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +vite-plugin-vuetify@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" + integrity sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw== + dependencies: + "@vuetify/loader-shared" "^1.7.1" + debug "^4.3.3" + upath "^2.0.1" + +vite@^4.2.0: + version "4.3.5" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.5.tgz#3871fe0f4b582ea7f49a85386ac80e84826367d9" + integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== + dependencies: + esbuild "^0.17.5" + postcss "^8.4.23" + rollup "^3.21.0" + optionalDependencies: + fsevents "~2.3.2" + +vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz#b011a5520ea7c24cadc832c8552122faaccfd2e6" + integrity sha512-tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ== + dependencies: + debug "^4.3.4" + eslint-scope "^7.1.1" + eslint-visitor-keys "^3.3.0" + espree "^9.3.1" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^7.3.6" + +vue-router@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.0.tgz#558f31978a21ce3accf5122ffdf2cec34a5d2517" + integrity sha512-c+usESa6ZoWsm4PPdzRSyenp5A4dsUtnDJnrI03fY1IpIihA9TK3x5ffgkFDpjhLJZewsXoKURapNLFdZjuqTg== + dependencies: + "@vue/devtools-api" "^6.5.0" + +vue-template-compiler@^2.7.14: + version "2.7.14" + resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz#4545b7dfb88090744c1577ae5ac3f964e61634b1" + integrity sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ== + dependencies: + de-indent "^1.0.2" + he "^1.2.0" + +vue-tsc@^1.2.0: + version "1.6.4" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.6.4.tgz#ca4e931e9d3b9c55cd7a0f551bc0c9536edb6386" + integrity sha512-8rg8S1AhRJ6/WriENQEhyqH5wsxSxuD5iaD+QnkZn2ArZ6evlhqfBAIcVN8mfSyCV9DeLkQXkOSv/MaeJiJPAQ== + dependencies: + "@volar/vue-language-core" "1.6.4" + "@volar/vue-typescript" "1.6.4" + semver "^7.3.8" + +vue@^3.2.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.2.tgz#407f0057a7a154d836b66f94ce81779d0c2cafbc" + integrity sha512-98hJcAhyDwZoOo2flAQBSPVYG/o0HA9ivIy2ktHshjE+6/q8IMQ+kvDKQzOZTFPxvnNMcGM+zS2A00xeZMA7tA== + dependencies: + "@vue/compiler-dom" "3.3.2" + "@vue/compiler-sfc" "3.3.2" + "@vue/runtime-dom" "3.3.2" + "@vue/server-renderer" "3.3.2" + "@vue/shared" "3.3.2" + +vuetify@^3.0.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.2.4.tgz#e31e23305b23d2a08ccbb845e295ff07d4c1a71f" + integrity sha512-Lj3fXSTY/lLXpuzAM0n2B/9o7WKpHsqv2USanXyFVXbePsl9kx7XY4HPrMqTDEYRlY9AyMjF9ilTbkQ8IovPmQ== + +webfontloader@^1.0.0: + version "1.6.28" + resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" + integrity sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ== + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +xml-name-validator@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From f6bf9a0993e986ce6ad9a48f2fb234de3f03cace Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:06:59 -0400 Subject: [PATCH 02/70] Installed Storybook JS --- webapp/.eslintrc.js | 14 +- webapp/.storybook/main.ts | 17 + webapp/.storybook/preview.ts | 15 + webapp/package.json | 15 +- webapp/src/stories/Button.stories.ts | 52 + webapp/src/stories/Button.vue | 48 + webapp/src/stories/Header.stories.ts | 42 + webapp/src/stories/Header.vue | 37 + webapp/src/stories/Introduction.mdx | 213 + webapp/src/stories/Page.stories.ts | 34 + webapp/src/stories/Page.vue | 73 + webapp/src/stories/assets/code-brackets.svg | 1 + webapp/src/stories/assets/colors.svg | 1 + webapp/src/stories/assets/comments.svg | 1 + webapp/src/stories/assets/direction.svg | 1 + webapp/src/stories/assets/flow.svg | 1 + webapp/src/stories/assets/plugin.svg | 1 + webapp/src/stories/assets/repo.svg | 1 + webapp/src/stories/assets/stackalt.svg | 1 + webapp/src/stories/button.css | 30 + webapp/src/stories/header.css | 32 + webapp/src/stories/page.css | 69 + webapp/yarn.lock | 5594 ++++++++++++++++++- 23 files changed, 6206 insertions(+), 87 deletions(-) create mode 100644 webapp/.storybook/main.ts create mode 100644 webapp/.storybook/preview.ts create mode 100644 webapp/src/stories/Button.stories.ts create mode 100644 webapp/src/stories/Button.vue create mode 100644 webapp/src/stories/Header.stories.ts create mode 100644 webapp/src/stories/Header.vue create mode 100644 webapp/src/stories/Introduction.mdx create mode 100644 webapp/src/stories/Page.stories.ts create mode 100644 webapp/src/stories/Page.vue create mode 100644 webapp/src/stories/assets/code-brackets.svg create mode 100644 webapp/src/stories/assets/colors.svg create mode 100644 webapp/src/stories/assets/comments.svg create mode 100644 webapp/src/stories/assets/direction.svg create mode 100644 webapp/src/stories/assets/flow.svg create mode 100644 webapp/src/stories/assets/plugin.svg create mode 100644 webapp/src/stories/assets/repo.svg create mode 100644 webapp/src/stories/assets/stackalt.svg create mode 100644 webapp/src/stories/button.css create mode 100644 webapp/src/stories/header.css create mode 100644 webapp/src/stories/page.css diff --git a/webapp/.eslintrc.js b/webapp/.eslintrc.js index 5f3949bd8a..289ea73165 100644 --- a/webapp/.eslintrc.js +++ b/webapp/.eslintrc.js @@ -1,14 +1,10 @@ module.exports = { root: true, env: { - node: true, + node: true }, - extends: [ - 'plugin:vue/vue3-essential', - 'eslint:recommended', - '@vue/eslint-config-typescript', - ], + extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript', 'plugin:storybook/recommended'], rules: { - 'vue/multi-word-component-names': 'off', - }, -} + 'vue/multi-word-component-names': 'off' + } +}; \ No newline at end of file diff --git a/webapp/.storybook/main.ts b/webapp/.storybook/main.ts new file mode 100644 index 0000000000..a7a37c66ac --- /dev/null +++ b/webapp/.storybook/main.ts @@ -0,0 +1,17 @@ +import type { StorybookConfig } from "@storybook/vue3-vite"; +const config: StorybookConfig = { + stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], + addons: [ + "@storybook/addon-links", + "@storybook/addon-essentials", + "@storybook/addon-interactions", + ], + framework: { + name: "@storybook/vue3-vite", + options: {}, + }, + docs: { + autodocs: "tag", + }, +}; +export default config; diff --git a/webapp/.storybook/preview.ts b/webapp/.storybook/preview.ts new file mode 100644 index 0000000000..f119b17208 --- /dev/null +++ b/webapp/.storybook/preview.ts @@ -0,0 +1,15 @@ +import type { Preview } from "@storybook/vue3"; + +const preview: Preview = { + parameters: { + actions: { argTypesRegex: "^on[A-Z].*" }, + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/, + }, + }, + }, +}; + +export default preview; diff --git a/webapp/package.json b/webapp/package.json index 724e9ada9e..9a70e8bbe1 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -5,7 +5,9 @@ "dev": "vite", "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", - "lint": "eslint . --fix --ignore-path .gitignore" + "lint": "eslint . --fix --ignore-path .gitignore", + "storybook": "storybook dev -p 6006", + "build-storybook": "storybook build" }, "dependencies": { "@mdi/font": "7.0.96", @@ -17,12 +19,23 @@ }, "devDependencies": { "@babel/types": "^7.21.4", + "@storybook/addon-essentials": "^7.0.11", + "@storybook/addon-interactions": "^7.0.11", + "@storybook/addon-links": "^7.0.11", + "@storybook/blocks": "^7.0.11", + "@storybook/testing-library": "^0.0.14-next.2", + "@storybook/vue3": "^7.0.11", + "@storybook/vue3-vite": "^7.0.11", "@types/node": "^18.15.0", "@types/webfontloader": "^1.6.35", "@vitejs/plugin-vue": "^3.2.0", "@vue/eslint-config-typescript": "^11.0.0", "eslint": "^8.0.0", + "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.0.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "storybook": "^7.0.11", "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", diff --git a/webapp/src/stories/Button.stories.ts b/webapp/src/stories/Button.stories.ts new file mode 100644 index 0000000000..c414d4a7b0 --- /dev/null +++ b/webapp/src/stories/Button.stories.ts @@ -0,0 +1,52 @@ +import type { Meta, StoryObj } from '@storybook/vue3'; + +import Button from './Button.vue'; + +// More on how to set up stories at: https://storybook.js.org/docs/vue/writing-stories/introduction +const meta = { + title: 'Example/Button', + component: Button, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], + argTypes: { + size: { control: 'select', options: ['small', 'medium', 'large'] }, + backgroundColor: { control: 'color' }, + onClick: { action: 'clicked' }, + }, + args: { primary: false }, // default value +} satisfies Meta; + +export default meta; +type Story = StoryObj; +/* + *👇 Render functions are a framework specific feature to allow you control on how the component renders. + * See https://storybook.js.org/docs/vue/api/csf + * to learn how to use render functions. + */ +export const Primary: Story = { + args: { + primary: true, + label: 'Button', + }, +}; + +export const Secondary: Story = { + args: { + primary: false, + label: 'Button', + }, +}; + +export const Large: Story = { + args: { + label: 'Button', + size: 'large', + }, +}; + +export const Small: Story = { + args: { + label: 'Button', + size: 'small', + }, +}; diff --git a/webapp/src/stories/Button.vue b/webapp/src/stories/Button.vue new file mode 100644 index 0000000000..2e1ee0ee22 --- /dev/null +++ b/webapp/src/stories/Button.vue @@ -0,0 +1,48 @@ + + + \ No newline at end of file diff --git a/webapp/src/stories/Header.stories.ts b/webapp/src/stories/Header.stories.ts new file mode 100644 index 0000000000..8626c1f529 --- /dev/null +++ b/webapp/src/stories/Header.stories.ts @@ -0,0 +1,42 @@ +import type { Meta, StoryObj } from '@storybook/vue3'; + +import MyHeader from './Header.vue'; + +const meta = { + /* 👇 The title prop is optional. + * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ + title: 'Example/Header', + component: MyHeader, + render: (args: any) => ({ + components: { MyHeader }, + setup() { + return { args }; + }, + template: '', + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout + layout: 'fullscreen', + }, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const LoggedIn: Story = { + args: { + user: { + name: 'Jane Doe', + }, + }, +}; + +export const LoggedOut: Story = { + args: { + user: null, + }, +}; diff --git a/webapp/src/stories/Header.vue b/webapp/src/stories/Header.vue new file mode 100644 index 0000000000..b716db02b3 --- /dev/null +++ b/webapp/src/stories/Header.vue @@ -0,0 +1,37 @@ + + + + diff --git a/webapp/src/stories/Introduction.mdx b/webapp/src/stories/Introduction.mdx new file mode 100644 index 0000000000..ff7fc71fbf --- /dev/null +++ b/webapp/src/stories/Introduction.mdx @@ -0,0 +1,213 @@ +import { Meta } from '@storybook/blocks'; +import Code from './assets/code-brackets.svg'; +import Colors from './assets/colors.svg'; +import Comments from './assets/comments.svg'; +import Direction from './assets/direction.svg'; +import Flow from './assets/flow.svg'; +import Plugin from './assets/plugin.svg'; +import Repo from './assets/repo.svg'; +import StackAlt from './assets/stackalt.svg'; + + + + + +# Welcome to Storybook + +Storybook helps you build UI components in isolation from your app's business logic, data, and context. +That makes it easy to develop hard-to-reach states. Save these UI states as **stories** to revisit during development, testing, or QA. + +Browse example stories now by navigating to them in the sidebar. +View their code in the `stories` directory to learn how they work. +We recommend building UIs with a [**component-driven**](https://componentdriven.org) process starting with atomic components and ending with pages. + +

Configure
+ + + +
Learn
+ + + +
+ TipEdit the Markdown in{' '} + stories/Introduction.stories.mdx +
diff --git a/webapp/src/stories/Page.stories.ts b/webapp/src/stories/Page.stories.ts new file mode 100644 index 0000000000..e998801581 --- /dev/null +++ b/webapp/src/stories/Page.stories.ts @@ -0,0 +1,34 @@ +import type { Meta, StoryObj } from '@storybook/vue3'; +import { within, userEvent } from '@storybook/testing-library'; +import MyPage from './Page.vue'; + +const meta = { + title: 'Example/Page', + component: MyPage, + render: () => ({ + components: { MyPage }, + template: '', + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout + layout: 'fullscreen', + }, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +// More on interaction testing: https://storybook.js.org/docs/vue/writing-tests/interaction-testing +export const LoggedIn: Story = { + play: async ({ canvasElement }: any) => { + const canvas = within(canvasElement); + const loginButton = await canvas.getByRole('button', { + name: /Log in/i, + }); + await userEvent.click(loginButton); + }, +}; + +export const LoggedOut: Story = {}; diff --git a/webapp/src/stories/Page.vue b/webapp/src/stories/Page.vue new file mode 100644 index 0000000000..6a6e5eb1a4 --- /dev/null +++ b/webapp/src/stories/Page.vue @@ -0,0 +1,73 @@ + + + diff --git a/webapp/src/stories/assets/code-brackets.svg b/webapp/src/stories/assets/code-brackets.svg new file mode 100644 index 0000000000..73de947760 --- /dev/null +++ b/webapp/src/stories/assets/code-brackets.svg @@ -0,0 +1 @@ +illustration/code-brackets \ No newline at end of file diff --git a/webapp/src/stories/assets/colors.svg b/webapp/src/stories/assets/colors.svg new file mode 100644 index 0000000000..17d58d516e --- /dev/null +++ b/webapp/src/stories/assets/colors.svg @@ -0,0 +1 @@ +illustration/colors \ No newline at end of file diff --git a/webapp/src/stories/assets/comments.svg b/webapp/src/stories/assets/comments.svg new file mode 100644 index 0000000000..6493a139f5 --- /dev/null +++ b/webapp/src/stories/assets/comments.svg @@ -0,0 +1 @@ +illustration/comments \ No newline at end of file diff --git a/webapp/src/stories/assets/direction.svg b/webapp/src/stories/assets/direction.svg new file mode 100644 index 0000000000..65676ac272 --- /dev/null +++ b/webapp/src/stories/assets/direction.svg @@ -0,0 +1 @@ +illustration/direction \ No newline at end of file diff --git a/webapp/src/stories/assets/flow.svg b/webapp/src/stories/assets/flow.svg new file mode 100644 index 0000000000..8ac27db403 --- /dev/null +++ b/webapp/src/stories/assets/flow.svg @@ -0,0 +1 @@ +illustration/flow \ No newline at end of file diff --git a/webapp/src/stories/assets/plugin.svg b/webapp/src/stories/assets/plugin.svg new file mode 100644 index 0000000000..29e5c690c0 --- /dev/null +++ b/webapp/src/stories/assets/plugin.svg @@ -0,0 +1 @@ +illustration/plugin \ No newline at end of file diff --git a/webapp/src/stories/assets/repo.svg b/webapp/src/stories/assets/repo.svg new file mode 100644 index 0000000000..f386ee902c --- /dev/null +++ b/webapp/src/stories/assets/repo.svg @@ -0,0 +1 @@ +illustration/repo \ No newline at end of file diff --git a/webapp/src/stories/assets/stackalt.svg b/webapp/src/stories/assets/stackalt.svg new file mode 100644 index 0000000000..9b7ad27435 --- /dev/null +++ b/webapp/src/stories/assets/stackalt.svg @@ -0,0 +1 @@ +illustration/stackalt \ No newline at end of file diff --git a/webapp/src/stories/button.css b/webapp/src/stories/button.css new file mode 100644 index 0000000000..dc91dc7637 --- /dev/null +++ b/webapp/src/stories/button.css @@ -0,0 +1,30 @@ +.storybook-button { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-weight: 700; + border: 0; + border-radius: 3em; + cursor: pointer; + display: inline-block; + line-height: 1; +} +.storybook-button--primary { + color: white; + background-color: #1ea7fd; +} +.storybook-button--secondary { + color: #333; + background-color: transparent; + box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; +} +.storybook-button--small { + font-size: 12px; + padding: 10px 16px; +} +.storybook-button--medium { + font-size: 14px; + padding: 11px 20px; +} +.storybook-button--large { + font-size: 16px; + padding: 12px 24px; +} diff --git a/webapp/src/stories/header.css b/webapp/src/stories/header.css new file mode 100644 index 0000000000..d9a70528a3 --- /dev/null +++ b/webapp/src/stories/header.css @@ -0,0 +1,32 @@ +.storybook-header { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + padding: 15px 20px; + display: flex; + align-items: center; + justify-content: space-between; +} + +.storybook-header svg { + display: inline-block; + vertical-align: top; +} + +.storybook-header h1 { + font-weight: 700; + font-size: 20px; + line-height: 1; + margin: 6px 0 6px 10px; + display: inline-block; + vertical-align: top; +} + +.storybook-header button + button { + margin-left: 10px; +} + +.storybook-header .welcome { + color: #333; + font-size: 14px; + margin-right: 10px; +} diff --git a/webapp/src/stories/page.css b/webapp/src/stories/page.css new file mode 100644 index 0000000000..098dad1185 --- /dev/null +++ b/webapp/src/stories/page.css @@ -0,0 +1,69 @@ +.storybook-page { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 24px; + padding: 48px 20px; + margin: 0 auto; + max-width: 600px; + color: #333; +} + +.storybook-page h2 { + font-weight: 700; + font-size: 32px; + line-height: 1; + margin: 0 0 4px; + display: inline-block; + vertical-align: top; +} + +.storybook-page p { + margin: 1em 0; +} + +.storybook-page a { + text-decoration: none; + color: #1ea7fd; +} + +.storybook-page ul { + padding-left: 30px; + margin: 1em 0; +} + +.storybook-page li { + margin-bottom: 8px; +} + +.storybook-page .tip { + display: inline-block; + border-radius: 1em; + font-size: 11px; + line-height: 12px; + font-weight: 700; + background: #e7fdd8; + color: #66bf3c; + padding: 4px 12px; + margin-right: 10px; + vertical-align: top; +} + +.storybook-page .tip-wrapper { + font-size: 13px; + line-height: 20px; + margin-top: 40px; + margin-bottom: 40px; +} + +.storybook-page .tip-wrapper svg { + display: inline-block; + height: 12px; + width: 12px; + margin-right: 4px; + vertical-align: top; + margin-top: 3px; +} + +.storybook-page .tip-wrapper svg path { + fill: #1ea7fd; +} diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 67220eb44d..6580b44389 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2,22 +2,996 @@ # yarn lockfile v1 +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@aw-web-design/x-default-browser@1.4.88": + version "1.4.88" + resolved "https://registry.yarnpkg.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz#33d869cb2a537cd6d2a8369d4dc8ea4988d4be89" + integrity sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA== + dependencies: + default-browser-id "3.0.0" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" + integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": + version "7.21.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" + integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== + +"@babel/core@^7.11.6", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.20.2", "@babel/core@~7.21.0": + version "7.21.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" + integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.5" + "@babel/helper-compilation-targets" "^7.21.5" + "@babel/helper-module-transforms" "^7.21.5" + "@babel/helpers" "^7.21.5" + "@babel/parser" "^7.21.8" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + +"@babel/generator@^7.21.5", "@babel/generator@~7.21.1": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" + integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== + dependencies: + "@babel/types" "^7.21.5" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz#817f73b6c59726ab39f6ba18c234268a519e5abb" + integrity sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g== + dependencies: + "@babel/types" "^7.21.5" + +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" + integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== + dependencies: + "@babel/compat-data" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0": + version "7.21.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz#205b26330258625ef8869672ebca1e0dee5a0f02" + integrity sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-member-expression-to-functions" "^7.21.5" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.21.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-split-export-declaration" "^7.18.6" + semver "^6.3.0" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": + version "7.21.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz#a7886f61c2e29e21fd4aaeaf1e473deba6b571dc" + integrity sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.3.1" + semver "^6.3.0" + +"@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" + integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== + +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" + integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== + dependencies: + "@babel/template" "^7.20.7" + "@babel/types" "^7.21.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-member-expression-to-functions@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz#3b1a009af932e586af77c1030fba9ee0bde396c0" + integrity sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg== + dependencies: + "@babel/types" "^7.21.5" + +"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" + integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== + dependencies: + "@babel/types" "^7.21.4" + +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" + integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== + dependencies: + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-simple-access" "^7.21.5" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" + integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== + +"@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7", "@babel/helper-replace-supers@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz#a6ad005ba1c7d9bc2973dfde05a1bba7065dde3c" + integrity sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg== + dependencies: + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-member-expression-to-functions" "^7.21.5" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + +"@babel/helper-simple-access@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" + integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== + dependencies: + "@babel/types" "^7.21.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + "@babel/helper-string-parser@^7.21.5": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== -"@babel/helper-validator-identifier@^7.19.1": +"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== -"@babel/parser@^7.20.15", "@babel/parser@^7.21.3": +"@babel/helper-validator-option@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" + integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== + +"@babel/helper-wrap-function@^7.18.9": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" + integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" + +"@babel/helpers@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" + integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + +"@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.21.4", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6", "@babel/parser@~7.21.2": version "7.21.8" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== -"@babel/types@^7.21.4": +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" + +"@babel/plugin-proposal-async-generator-functions@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" + integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-class-static-block@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d" + integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" + integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc" + integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.18.6": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107" + integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" + integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.20.0": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" + integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-arrow-functions@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz#9bb42a53de447936a57ba256fbf537fc312b6929" + integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + +"@babel/plugin-transform-async-to-generator@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" + integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== + dependencies: + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + +"@babel/plugin-transform-block-scoped-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-block-scoping@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02" + integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-classes@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665" + integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-split-export-declaration" "^7.18.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz#3a2d8bb771cd2ef1cd736435f6552fe502e11b44" + integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/template" "^7.20.7" + +"@babel/plugin-transform-destructuring@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401" + integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-flow-strip-types@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5" + integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-flow" "^7.18.6" + +"@babel/plugin-transform-for-of@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz#e890032b535f5a2e237a18535f56a9fdaa7b83fc" + integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + +"@babel/plugin-transform-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + dependencies: + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-member-expression-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-modules-amd@^7.20.11": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc" + integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== + dependencies: + "@babel/helper-module-transforms" "^7.21.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-simple-access" "^7.21.5" + +"@babel/plugin-transform-modules-systemjs@^7.20.11": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-object-super@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" + +"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" + integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-property-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx@^7.19.0": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz#bd98f3b429688243e4fa131fe1cbb2ef31ce6f38" + integrity sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/plugin-syntax-jsx" "^7.21.4" + "@babel/types" "^7.21.5" + +"@babel/plugin-transform-regenerator@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz#576c62f9923f94bcb1c855adc53561fd7913724e" + integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + regenerator-transform "^0.15.1" + +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-shorthand-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-spread@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" + integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + +"@babel/plugin-transform-sticky-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-template-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typescript@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b" + integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-typescript" "^7.20.0" + +"@babel/plugin-transform-unicode-escapes@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz#1e55ed6195259b0e9061d81f5ef45a9b009fb7f2" + integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + +"@babel/plugin-transform-unicode-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/preset-env@^7.20.2", "@babel/preset-env@~7.21.0": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.21.5.tgz#db2089d99efd2297716f018aeead815ac3decffb" + integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg== + dependencies: + "@babel/compat-data" "^7.21.5" + "@babel/helper-compilation-targets" "^7.21.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7" + "@babel/plugin-proposal-async-generator-functions" "^7.20.7" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.21.0" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.20.7" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.21.0" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.21.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.20.0" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-transform-arrow-functions" "^7.21.5" + "@babel/plugin-transform-async-to-generator" "^7.20.7" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.21.0" + "@babel/plugin-transform-classes" "^7.21.0" + "@babel/plugin-transform-computed-properties" "^7.21.5" + "@babel/plugin-transform-destructuring" "^7.21.3" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.21.5" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.20.11" + "@babel/plugin-transform-modules-commonjs" "^7.21.5" + "@babel/plugin-transform-modules-systemjs" "^7.20.11" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.21.3" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.21.5" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.20.7" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.21.5" + "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.21.5" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" + semver "^6.3.0" + +"@babel/preset-flow@^7.13.13": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.21.4.tgz#a5de2a1cafa61f0e0b3af9b30ff0295d38d3608f" + integrity sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-transform-flow-strip-types" "^7.21.0" + +"@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-typescript@^7.13.0": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz#68292c884b0e26070b4d66b202072d391358395f" + integrity sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-syntax-jsx" "^7.21.4" + "@babel/plugin-transform-modules-commonjs" "^7.21.5" + "@babel/plugin-transform-typescript" "^7.21.3" + +"@babel/register@^7.13.16": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.21.0.tgz#c97bf56c2472e063774f31d344c592ebdcefa132" + integrity sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw== + dependencies: + clone-deep "^4.0.1" + find-cache-dir "^2.0.0" + make-dir "^2.1.0" + pirates "^4.0.5" + source-map-support "^0.5.16" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" + integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/template@^7.18.10", "@babel/template@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/traverse@^7.20.5", "@babel/traverse@^7.21.5", "@babel/traverse@~7.21.2": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" + integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== + dependencies: + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.5" + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.21.5" + "@babel/types" "^7.21.5" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6", "@babel/types@~7.21.2": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== @@ -26,6 +1000,21 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@discoveryjs/json-ext@^0.5.3": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@emotion/use-insertion-effect-with-fallbacks@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" + integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== + "@esbuild/android-arm64@0.17.18": version "0.17.18" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz#4aa8d8afcffb4458736ca9b32baa97d7cb5861ea" @@ -168,6 +1157,11 @@ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== +"@fal-works/esbuild-plugin-global-externals@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4" + integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ== + "@humanwhocodes/config-array@^0.11.8": version "0.11.8" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" @@ -187,16 +1181,137 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@jridgewell/sourcemap-codec@^1.4.13": +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/schemas@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" + integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== + dependencies: + "@sinclair/typebox" "^0.25.16" + +"@jest/transform@^29.3.1": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" + integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + +"@jest/types@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" + integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== + dependencies: + "@jest/schemas" "^29.4.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== +"@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@juggle/resize-observer@^3.3.1": + version "3.4.0" + resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" + integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== + "@mdi/font@7.0.96": version "7.0.96" resolved "https://registry.yarnpkg.com/@mdi/font/-/font-7.0.96.tgz#9853c222623072f5575b4039c8c195ea929b61fc" integrity sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w== +"@mdx-js/react@^2.1.5": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3" + integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g== + dependencies: + "@types/mdx" "^2.0.0" + "@types/react" ">=16" + +"@ndelangen/get-tarball@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz#87c7aef2df4ff4fbdbab6ac9ed32cee142c4b1a3" + integrity sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ== + dependencies: + gunzip-maybe "^1.4.2" + pump "^3.0.0" + tar-fs "^2.1.1" + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -218,26 +1333,1011 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@types/json-schema@^7.0.9": +"@sinclair/typebox@^0.25.16": + version "0.25.24" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" + integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== + +"@storybook/addon-actions@7.0.11": version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.0.11.tgz#359f964036d50bc498b5dcd58e0a592dffb5e1bb" + integrity sha512-kh5z6L5r5BOWVt0+xZgdMZjDJQkJIVcAOxahRS9MwWkw0NDpXjcPS7HsVXZ1DlnnzhfjLFr0BXadVdcc2FLj7A== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + dequal "^2.0.2" + lodash "^4.17.21" + polished "^4.2.2" + prop-types "^15.7.2" + react-inspector "^6.0.0" + telejson "^7.0.3" + ts-dedent "^2.0.0" + uuid "^9.0.0" + +"@storybook/addon-backgrounds@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.11.tgz#d7c76db94c8e4a318419a1617d905e1911cee899" + integrity sha512-kj0LQ1F9Z/6lWQ9d+crgWQKl8fgBXuTo/X3M36GTOf8kEEMGtb1Y71EjOfszwvvgK5GPmvFhOVYQL/D2/VbrHw== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + memoizerific "^1.11.3" + ts-dedent "^2.0.0" + +"@storybook/addon-controls@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.0.11.tgz#989602be818a2b70f6df5cdd181586813b3b29f4" + integrity sha512-ZmzSEBQLEW6vhvemUFFmMD4rA/fYTe8LJ+iahx1RnE7cV4CuyRJ23wlxL21WYHpkhbYdZMlJDTlvDS8GHthIQw== + dependencies: + "@storybook/blocks" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/manager-api" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + lodash "^4.17.21" + ts-dedent "^2.0.0" + +"@storybook/addon-docs@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-7.0.11.tgz#5b05f9d25e819443fab58c565ff2f31cfa37886e" + integrity sha512-WmNEQSiFJrjf47VtQg8uOb5q8M5V4MaolhV9zsN6GSTViduY2P7ti+Fk7ZE6QyO1Yy9Vm4WJLPz/vLcfW73IHw== + dependencies: + "@babel/core" "^7.20.2" + "@babel/plugin-transform-react-jsx" "^7.19.0" + "@jest/transform" "^29.3.1" + "@mdx-js/react" "^2.1.5" + "@storybook/blocks" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/csf-plugin" "7.0.11" + "@storybook/csf-tools" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/mdx2-csf" "^1.0.0" + "@storybook/node-logger" "7.0.11" + "@storybook/postinstall" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/react-dom-shim" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + fs-extra "^11.1.0" + remark-external-links "^8.0.0" + remark-slug "^6.0.0" + ts-dedent "^2.0.0" + +"@storybook/addon-essentials@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-7.0.11.tgz#2f7aa6b117b7da4170980ab9aa0bcdf66f407708" + integrity sha512-46nIoGJXC0clbjgE4Y0xUW9eT1h4uvDXugb2Z79m5L+KvmRk+J0/rqiRpHz5Gou9iFLxAFCRT9Y3BUP2zOXTZQ== + dependencies: + "@storybook/addon-actions" "7.0.11" + "@storybook/addon-backgrounds" "7.0.11" + "@storybook/addon-controls" "7.0.11" + "@storybook/addon-docs" "7.0.11" + "@storybook/addon-highlight" "7.0.11" + "@storybook/addon-measure" "7.0.11" + "@storybook/addon-outline" "7.0.11" + "@storybook/addon-toolbars" "7.0.11" + "@storybook/addon-viewport" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/manager-api" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@storybook/preview-api" "7.0.11" + ts-dedent "^2.0.0" + +"@storybook/addon-highlight@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-7.0.11.tgz#459e4e8f18169b31d8180c4683e1a5389e7ca9f5" + integrity sha512-5nElNxnWAO9Oqr4J8A1vJRhe1zbr9n2hOKMWR4UAqF2CAel5qwPFT6ierGW/k/ymui7pz9wxdxawTr8yTpyQWg== + dependencies: + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/preview-api" "7.0.11" + +"@storybook/addon-interactions@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-interactions/-/addon-interactions-7.0.11.tgz#4d0dfa27aba2d9f470131fce2176ed904f7ec860" + integrity sha512-mIcv64Yo1z6Mmj/5/Ulyk2peFeUNT3YcZ5oqsq29MdQf3V4xJz+9KYaLHr8eZn2VpjsKtc0Hq21BUp/FIduYQg== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/instrumenter" "7.0.11" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + jest-mock "^27.0.6" + polished "^4.2.2" + ts-dedent "^2.2.0" + +"@storybook/addon-links@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-7.0.11.tgz#a3109b2fccea331551b8ccbe730b2b8e5b0a54d3" + integrity sha512-6UpRCs3lIYN0V+0kP+VHChc836sJN/n35OVnfZNd/lRBzewBmuOW6s7Hy2iNZtYg1vWlXR2/wOFzljkkjiWtSQ== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/router" "7.0.11" + "@storybook/types" "7.0.11" + prop-types "^15.7.2" + ts-dedent "^2.0.0" + +"@storybook/addon-measure@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-7.0.11.tgz#5154a7d0b3a55c609dffeeb1e120cfeb3d19afd1" + integrity sha512-u6yNwgjXr6AcJibKi9NqBn75WsYBtHrgmGX3/ZIPQ20dYIiRHXRKu2lcTfSeA2drz0b1SDPN4gqMlOKm1ly6mw== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/types" "7.0.11" + +"@storybook/addon-outline@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-7.0.11.tgz#54c1fb76d0580803cb9fb08236f3d666dd0e260c" + integrity sha512-Ftld7dkVHPKo1CbBwJ7X4HNQUAqLhdV/mOB+Tswfvb+niSkFspAaK4ChQoYVsDaLwF7Kmn6jh8ACRTaDvIbN8g== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/types" "7.0.11" + ts-dedent "^2.0.0" + +"@storybook/addon-toolbars@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.0.11.tgz#8072ef59fb2a9501f08ddf709ec049d4f54b79d8" + integrity sha512-rPd7Ph7fEvWdDWBLQ6GUOEsw+W3FIyqkXl8UEckypE+qILNwZj4C9g8GhaLK65N8aEl3lIO/myx6mUjvySiODA== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + +"@storybook/addon-viewport@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-7.0.11.tgz#7964d1fd2aab891d058013183f9a52359ef4e936" + integrity sha512-O2Wu/jWSFDvvjP2ERc3wXbRuKvfM3Ttj8MJQZ0FphPwIxe1zSSAA5jk3mhXmEyIJfAe+upyAhV9EqIs8+L6kLg== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + memoizerific "^1.11.3" + prop-types "^15.7.2" + +"@storybook/blocks@7.0.11", "@storybook/blocks@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.0.11.tgz#6329dda62b972e17322a3368fce2e25b42810a08" + integrity sha512-WfqRnKLk3Ke9Pr9G7BrtGJZKuOj32WxbQUbPlCi9oVysYQm69hgcO3+MTft96ur62p8e7gcoIFKrhFi0x4rXiw== + dependencies: + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/components" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/docs-tools" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + "@types/lodash" "^4.14.167" + color-convert "^2.0.1" + dequal "^2.0.2" + lodash "^4.17.21" + markdown-to-jsx "^7.1.8" + memoizerific "^1.11.3" + polished "^4.2.2" + react-colorful "^5.1.2" + telejson "^7.0.3" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + +"@storybook/builder-manager@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.0.11.tgz#a611e3e6ed28d7f93186991b1213816d26082583" + integrity sha512-ifSZzdC0CItMRPkEYxEziHpTfZO8JWVBIhaOrhT1TDvSameCFXa91yv9djMu9fBnJkfLsj9lyV9OjEyy7NN3uQ== + dependencies: + "@fal-works/esbuild-plugin-global-externals" "^2.1.2" + "@storybook/core-common" "7.0.11" + "@storybook/manager" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@types/ejs" "^3.1.1" + "@types/find-cache-dir" "^3.2.1" + "@yarnpkg/esbuild-plugin-pnp" "^3.0.0-rc.10" + browser-assert "^1.2.1" + ejs "^3.1.8" + esbuild "^0.17.0" + esbuild-plugin-alias "^0.2.1" + express "^4.17.3" + find-cache-dir "^3.0.0" + fs-extra "^11.1.0" + process "^0.11.10" + util "^0.12.4" + +"@storybook/builder-vite@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/builder-vite/-/builder-vite-7.0.11.tgz#de6f175b6db4a8e79d0fdb14f61ba7c5fdaae6c4" + integrity sha512-qFT2WDJexbcxJjLD7k/whEiHbqIZ0wsHFfiGX5JyTEba4a7UTQ6a6yDCUb1KuLnyUOa056FwEag9ghw3WRowmA== + dependencies: + "@storybook/channel-postmessage" "7.0.11" + "@storybook/channel-websocket" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/csf-plugin" "7.0.11" + "@storybook/mdx2-csf" "^1.0.0" + "@storybook/node-logger" "7.0.11" + "@storybook/preview" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/types" "7.0.11" + browser-assert "^1.2.1" + es-module-lexer "^0.9.3" + express "^4.17.3" + fs-extra "^11.1.0" + glob "^8.1.0" + glob-promise "^6.0.2" + magic-string "^0.27.0" + remark-external-links "^8.0.0" + remark-slug "^6.0.0" + rollup "^2.25.0 || ^3.3.0" + +"@storybook/channel-postmessage@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-7.0.11.tgz#f71213dee292a06a6a7f8c0518fd3f52f261792e" + integrity sha512-6ARow3o2thnXLO4i3+tluHAPqqSrB30U/Oxg3JqC5/2FJin3UFBOMCj04V7FPUN8jQfZpERoYgiUYE9JddT39g== + dependencies: + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + qs "^6.10.0" + telejson "^7.0.3" + +"@storybook/channel-websocket@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/channel-websocket/-/channel-websocket-7.0.11.tgz#c9b5b68e37e3d8d699081805d80ec6580adfb532" + integrity sha512-AeoOFDA0Rkf4Jx5PgX76tlehUYbC0AHDA63ZLVol9O/P4ch2Ju5cxsiFv0brdcnv4t2ibNZkqFdsrut9O/wacg== + dependencies: + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/global" "^5.0.0" + telejson "^7.0.3" + +"@storybook/channels@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-7.0.11.tgz#c753d37ade4b85bf5cb5a8ebaf81d535f21ee547" + integrity sha512-1cVgju7ViN7GDeUNUS5hp3GZLT2EgxgXj7zuGbCZwsF8lFsM0IWeXma8TV0UfcBiyQjP4edYRmUn0vy6CMc/WA== + +"@storybook/cli@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.0.11.tgz#5554ceda9163a136de88663c77bdf18184ae20ca" + integrity sha512-qe2jxFs7bT/9vgLo41u+OikWCUPjinL7+3Mo88Fa/kFsKMQ3AB/UuKKJ3atJEeTjfZapnB/OU9Y7V9shAcju7g== + dependencies: + "@babel/core" "^7.20.2" + "@babel/preset-env" "^7.20.2" + "@ndelangen/get-tarball" "^3.0.7" + "@storybook/codemod" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/core-server" "7.0.11" + "@storybook/csf-tools" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@storybook/telemetry" "7.0.11" + "@storybook/types" "7.0.11" + "@types/semver" "^7.3.4" + boxen "^5.1.2" + chalk "^4.1.0" + commander "^6.2.1" + cross-spawn "^7.0.3" + detect-indent "^6.1.0" + envinfo "^7.7.3" + execa "^5.0.0" + express "^4.17.3" + find-up "^5.0.0" + fs-extra "^11.1.0" + get-npm-tarball-url "^2.0.3" + get-port "^5.1.1" + giget "^1.0.0" + globby "^11.0.2" + jscodeshift "^0.14.0" + leven "^3.1.0" + prettier "^2.8.0" + prompts "^2.4.0" + puppeteer-core "^2.1.1" + read-pkg-up "^7.0.1" + semver "^7.3.7" + shelljs "^0.8.5" + simple-update-notifier "^1.0.0" + strip-json-comments "^3.0.1" + tempy "^1.0.1" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + +"@storybook/client-logger@7.0.11", "@storybook/client-logger@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.0.11.tgz#0210ec715be79a930f9d17ebff62b73fb7104337" + integrity sha512-3p+vXogcwPI9/9PgjqhJSzJsbcJUnvVyZ4rM4sQhwbXQkMjwl2j/LjI86zuYbQe9yQpKND1Yc4HPJd24225H/Q== + dependencies: + "@storybook/global" "^5.0.0" + +"@storybook/codemod@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-7.0.11.tgz#160e811aae572e0915d90a464a8d7f476219e810" + integrity sha512-BRELZzEUqsZ3KOVrTEikjaYPy9M4+sU4XfV4wWeZ6N6rUdWy+Db2C+tL3lqPVYYocoYmwAxab/dLdbcGp4/Evg== + dependencies: + "@babel/core" "~7.21.0" + "@babel/preset-env" "~7.21.0" + "@babel/types" "~7.21.2" + "@storybook/csf" "^0.1.0" + "@storybook/csf-tools" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@storybook/types" "7.0.11" + cross-spawn "^7.0.3" + globby "^11.0.2" + jscodeshift "^0.14.0" + lodash "^4.17.21" + prettier "^2.8.0" + recast "^0.23.1" + +"@storybook/components@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-7.0.11.tgz#4d710869014b369d347fcc3f9e41a5ecf352b036" + integrity sha512-U8JyhFppGTv7ul3gofQqIzlrAx1NEF0ckTMAwtbE6ke4AIbcoPvpWwwH5EoLR1cAVwoNjYeah/pVdG9IZSlyJA== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + memoizerific "^1.11.3" + use-resize-observer "^9.1.0" + util-deprecate "^1.0.2" + +"@storybook/core-client@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-7.0.11.tgz#05909f7d6561bd0c3dbdad9d95ce386fff782de5" + integrity sha512-ALm4hpGa9cnhKAc6TbRPRV32cwH0I2F6vUYduVrDd/yq8a/o2rJQwvNOr7dJiakTWI/3IACeSlQMuStYqS8r+w== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/preview-api" "7.0.11" + +"@storybook/core-common@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.0.11.tgz#2f6ba1d3ed424de6f4738e0de31119ecae3d7d57" + integrity sha512-orVhH92V9lwtwu3Cv78ys26vrRZXsKYGtTGdWPv/K3G0ihIKY6JgV2wJOGNH+urY2pmno1ALOkv1FvtwkKIxsA== + dependencies: + "@storybook/node-logger" "7.0.11" + "@storybook/types" "7.0.11" + "@types/node" "^16.0.0" + "@types/pretty-hrtime" "^1.0.0" + chalk "^4.1.0" + esbuild "^0.17.0" + esbuild-register "^3.4.0" + file-system-cache "^2.0.0" + find-up "^5.0.0" + fs-extra "^11.1.0" + glob "^8.1.0" + glob-promise "^6.0.2" + handlebars "^4.7.7" + lazy-universal-dotenv "^4.0.0" + picomatch "^2.3.0" + pkg-dir "^5.0.0" + pretty-hrtime "^1.0.3" + resolve-from "^5.0.0" + ts-dedent "^2.0.0" + +"@storybook/core-events@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.0.11.tgz#9d11fc7c7f60f3450fd379476fd7ef9c7c7d556f" + integrity sha512-azEjQMpMx61h4o11OV8l78ab6Jxiwc5nlbqEUa1FVCupyRKFxrbK7zovmWyVL3cTllCSiJf4v3o/MadtuH4lcw== + +"@storybook/core-server@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.0.11.tgz#bf27d793f6b8b1b03e15b2beac599e2c1c49130a" + integrity sha512-lBt24X6MDYdVv68y77qzYwlTOAfJF4grJ8/f4VYOgU0EWxf++IyCwAnsXDrpvatIhiikCtMllnUq5U+QlEgcLg== + dependencies: + "@aw-web-design/x-default-browser" "1.4.88" + "@discoveryjs/json-ext" "^0.5.3" + "@storybook/builder-manager" "7.0.11" + "@storybook/core-common" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/csf-tools" "7.0.11" + "@storybook/docs-mdx" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/manager" "7.0.11" + "@storybook/node-logger" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/telemetry" "7.0.11" + "@storybook/types" "7.0.11" + "@types/detect-port" "^1.3.0" + "@types/node" "^16.0.0" + "@types/node-fetch" "^2.5.7" + "@types/pretty-hrtime" "^1.0.0" + "@types/semver" "^7.3.4" + better-opn "^2.1.1" + boxen "^5.1.2" + chalk "^4.1.0" + cli-table3 "^0.6.1" + compression "^1.7.4" + detect-port "^1.3.0" + express "^4.17.3" + fs-extra "^11.1.0" + globby "^11.0.2" + ip "^2.0.0" + lodash "^4.17.21" + node-fetch "^2.6.7" + open "^8.4.0" + pretty-hrtime "^1.0.3" + prompts "^2.4.0" + read-pkg-up "^7.0.1" + semver "^7.3.7" + serve-favicon "^2.5.0" + telejson "^7.0.3" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + watchpack "^2.2.0" + ws "^8.2.3" + +"@storybook/csf-plugin@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.0.11.tgz#23c12e11f4f72f2b6be946a604152abaa4d99b7a" + integrity sha512-TL52rXruFf8kuw4y9CFfPUoF5KWYXaoxy3zStTognY+kZpDr424JJO/IHYFNp72YVZ1pygeOdZnGCKCDlw5vUQ== + dependencies: + "@storybook/csf-tools" "7.0.11" + unplugin "^0.10.2" + +"@storybook/csf-tools@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-7.0.11.tgz#93bd1cf80e50ff787de3731c9975adb15c58a2f2" + integrity sha512-hW2Mw/EZ+sCwFByR1FCaElw3LqIh2/wRGVg/zJk36L9Y1vPkpneZU+Gdy5rds2hBCCYXYkJpcVKemky15Z1HJg== + dependencies: + "@babel/generator" "~7.21.1" + "@babel/parser" "~7.21.2" + "@babel/traverse" "~7.21.2" + "@babel/types" "~7.21.2" + "@storybook/csf" "^0.1.0" + "@storybook/types" "7.0.11" + fs-extra "^11.1.0" + recast "^0.23.1" + ts-dedent "^2.0.0" + +"@storybook/csf@^0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6" + integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw== + dependencies: + lodash "^4.17.15" + +"@storybook/csf@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.0.tgz#62315bf9704f3aa4e0d4d909b9033833774ddfbe" + integrity sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ== + dependencies: + type-fest "^2.19.0" + +"@storybook/docs-mdx@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz#33ba0e39d1461caf048b57db354b2cc410705316" + integrity sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg== + +"@storybook/docs-tools@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/docs-tools/-/docs-tools-7.0.11.tgz#106e0048140f3f9a240788e6dee296be4ae16a38" + integrity sha512-irHZ4hYRA5HGCCtYHoLdb4j5NlfXgn9JWXXnWb4+6LaLanDQSFTGz+H4+qnet6nBEzXuzNWlsY/Wg18AYOZOfg== + dependencies: + "@babel/core" "^7.12.10" + "@storybook/core-common" "7.0.11" + "@storybook/preview-api" "7.0.11" + "@storybook/types" "7.0.11" + "@types/doctrine" "^0.0.3" + doctrine "^3.0.0" + lodash "^4.17.21" + +"@storybook/global@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed" + integrity sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ== + +"@storybook/instrumenter@7.0.11", "@storybook/instrumenter@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.0.11.tgz#801a90b9cceb131bcd3a3efd0c394aea5fc66eb2" + integrity sha512-sBwV0AGN2DrJTMWGRZHU/HvjRFF0HJ1ynnwnVqT2n1q2oi/8Xa3xYit5bvcyMGStnXdfo38nRKuKZQ6UrNXEug== + dependencies: + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/preview-api" "7.0.11" + +"@storybook/manager-api@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-7.0.11.tgz#3ade5e8189017584a159b7f8a54bf3a86d29cbc7" + integrity sha512-xR7/h0EGGaUBPSpQ7vuEq6B//wKM9vKqOqvZ4xMsebxw0b2cf1GYAm1Z2rR9n+fMXJEiPvVzGcuZd9jekGf2mQ== + dependencies: + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/router" "7.0.11" + "@storybook/theming" "7.0.11" + "@storybook/types" "7.0.11" + dequal "^2.0.2" + lodash "^4.17.21" + memoizerific "^1.11.3" + semver "^7.3.7" + store2 "^2.14.2" + telejson "^7.0.3" + ts-dedent "^2.0.0" + +"@storybook/manager@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.0.11.tgz#a45d0794501aac1a83d8ef9f29b7f2a67d019d2e" + integrity sha512-TvY+A3guncE6nGYBZ5fbodPaQGpO9FWUg2u1lPqjnMwecZCVZZomkWSMFpPsjanl5C7Q8j7ol/g8MnQg9V53MQ== + +"@storybook/mdx2-csf@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz#97f6df04d0bf616991cc1005a073ac004a7281e5" + integrity sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw== + +"@storybook/node-logger@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.0.11.tgz#cc0bfddeb52484c6cded5c717d3bd8c6357071b0" + integrity sha512-N28h8aU5QglfaaM/wjpk0e7AAX8f1KBQXKArnRePHeK9M5L6w/BQQ5BcRAhcvQKZ6eOpHyADaRMHqxCxkY8qmw== + dependencies: + "@types/npmlog" "^4.1.2" + chalk "^4.1.0" + npmlog "^5.0.1" + pretty-hrtime "^1.0.3" + +"@storybook/postinstall@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.0.11.tgz#447d0090e0b301ae42fdbb5f2f9dab2e20d4ef6c" + integrity sha512-bUKMQyu0LowxcxX7eO7TJYcs9WPeMfM6Ls2DTfExy7nU/z9EBfPlbXb7lXrMo4mdrHU1Cb+nGi8ZNiMwhggbqA== + +"@storybook/preview-api@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-7.0.11.tgz#a70453374bebb9e828646ecdd5d3ff548a4558c9" + integrity sha512-w86kKnoH46xmhoi+i0V2bPiuoKnjUhEtSHXtIOEM+gJCfrKECWzrlDVCu+fh2xv38uf7zrJcQSJg9Vmpsmiasw== + dependencies: + "@storybook/channel-postmessage" "7.0.11" + "@storybook/channels" "7.0.11" + "@storybook/client-logger" "7.0.11" + "@storybook/core-events" "7.0.11" + "@storybook/csf" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/types" "7.0.11" + "@types/qs" "^6.9.5" + dequal "^2.0.2" + lodash "^4.17.21" + memoizerific "^1.11.3" + qs "^6.10.0" + synchronous-promise "^2.0.15" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + +"@storybook/preview@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.0.11.tgz#1bd08e91daa16ca92aa3ab0a86b2126e3318d435" + integrity sha512-xsWyTggxCoSDJ+E0yNcVrShL/y8g8Tnx+3niVve9dTypa5QhcNWhJC1kZAi42F+WjQAmolJMWBpk9auCasuY7A== + +"@storybook/react-dom-shim@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.0.11.tgz#2474bc0cbe0e81758ca3909683a277cf98751710" + integrity sha512-G7fdaIdDlED6m7f4c+5adXLb5LCaSv3aWrW1mL+pwaFboFzUMR5VAF4XwVFadYgasLZRxcrPdWRY1AZ+y6/dlw== + +"@storybook/router@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.0.11.tgz#517497f03e675f06675deb77e106ccd3fa84f718" + integrity sha512-yOboVh3iNEno4QG2XYj/2ly7w8wzckeUWl7q6s/kkHUQbiEgrAhxTTLezSLn7LlhaaiCzvYH1GEZZFzpGHHDkg== + dependencies: + "@storybook/client-logger" "7.0.11" + memoizerific "^1.11.3" + qs "^6.10.0" + +"@storybook/telemetry@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/telemetry/-/telemetry-7.0.11.tgz#a821e5c8af5e2acc73364db95baf0d25531c7cb4" + integrity sha512-7zE5PkudTwMQ1iF0vs8/TowpLph79765IA1cJT08ngGhzD+mZW9s9ePp2LI/l4U/JTe01LexcIlVAuXKkI7I0g== + dependencies: + "@storybook/client-logger" "7.0.11" + "@storybook/core-common" "7.0.11" + chalk "^4.1.0" + detect-package-manager "^2.0.1" + fetch-retry "^5.0.2" + fs-extra "^11.1.0" + isomorphic-unfetch "^3.1.0" + nanoid "^3.3.1" + read-pkg-up "^7.0.1" + +"@storybook/testing-library@^0.0.14-next.2": + version "0.0.14-next.2" + resolved "https://registry.yarnpkg.com/@storybook/testing-library/-/testing-library-0.0.14-next.2.tgz#458e6c7623118e24826ba73b80db0a887f3f57e8" + integrity sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg== + dependencies: + "@storybook/client-logger" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0" + "@storybook/instrumenter" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0" + "@testing-library/dom" "^8.3.0" + "@testing-library/user-event" "^13.2.1" + ts-dedent "^2.2.0" + +"@storybook/theming@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.0.11.tgz#e84907d1268d91a43c0fe9f5281b3b0350916ced" + integrity sha512-wJtqHJBtIK1/HXXeanOAeUQEZfKBNn/qonq82BmHKb+Js+IGtnKW9upDQkzYa0oDD5IskBavN+LpQkT6ECjEYQ== + dependencies: + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" + "@storybook/client-logger" "7.0.11" + "@storybook/global" "^5.0.0" + memoizerific "^1.11.3" + +"@storybook/types@7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/types/-/types-7.0.11.tgz#b4b0dfd68cf1558f10b30616997c55f37aff8c41" + integrity sha512-VOnef/u/HvYbk6LxWkwMlu31VD1ly6BTyHDOMUfYas03uNflX1KldGooWphmXVFrkkoLJoF5V4wsTShHSizi2A== + dependencies: + "@storybook/channels" "7.0.11" + "@types/babel__core" "^7.0.0" + "@types/express" "^4.7.0" + file-system-cache "^2.0.0" + +"@storybook/vue3-vite@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/vue3-vite/-/vue3-vite-7.0.11.tgz#fe627073fe338b94d6acdf51018417156d1c9926" + integrity sha512-TWZSZ+uoXaRmlyL6R7FInmaAwlfH2WEZmzwckiiCxOFgmSNe/QBXhqddij8uvVhAUcrjkbWjvo/K0KEiR2f8Hw== + dependencies: + "@storybook/builder-vite" "7.0.11" + "@storybook/core-server" "7.0.11" + "@storybook/vue3" "7.0.11" + "@vitejs/plugin-vue" "^4.0.0" + magic-string "^0.27.0" + vue-docgen-api "^4.40.0" + +"@storybook/vue3@7.0.11", "@storybook/vue3@^7.0.11": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@storybook/vue3/-/vue3-7.0.11.tgz#a617932f927d68a28283c3c98bc3cf6643b30768" + integrity sha512-KPw9hImQ9Z0MX++7udXtz3HiKxPlrtiCCwO3df0w6A0K8BA6ieeMNFJ9DYWhnKv4yK4qLU5LnHWKKhgeGTcRyg== + dependencies: + "@storybook/core-client" "7.0.11" + "@storybook/docs-tools" "7.0.11" + "@storybook/global" "^5.0.0" + "@storybook/preview-api" "7.0.11" + "@storybook/types" "7.0.11" + ts-dedent "^2.0.0" + type-fest "2.19.0" + +"@testing-library/dom@^8.3.0": + version "8.20.0" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6" + integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^5.0.1" + aria-query "^5.0.0" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.4.4" + pretty-format "^27.0.2" + +"@testing-library/user-event@^13.2.1": + version "13.5.0" + resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295" + integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg== + dependencies: + "@babel/runtime" "^7.12.5" + +"@types/aria-query@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc" + integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q== + +"@types/babel__core@^7.0.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" + integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*": + version "7.18.5" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" + integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== + dependencies: + "@babel/types" "^7.3.0" + +"@types/body-parser@*": + version "1.19.2" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" + integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.35" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/detect-port@^1.3.0": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@types/detect-port/-/detect-port-1.3.2.tgz#8c06a975e472803b931ee73740aeebd0a2eb27ae" + integrity sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g== + +"@types/doctrine@^0.0.3": + version "0.0.3" + resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.3.tgz#e892d293c92c9c1d3f9af72c15a554fbc7e0895a" + integrity sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA== + +"@types/ejs@^3.1.1": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9" + integrity sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g== + +"@types/express-serve-static-core@^4.17.33": + version "4.17.34" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz#c119e85b75215178bc127de588e93100698ab4cc" + integrity sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express@^4.7.0": + version "4.17.17" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" + integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/find-cache-dir@^3.2.1": + version "3.2.1" + resolved "https://registry.yarnpkg.com/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz#7b959a4b9643a1e6a1a5fe49032693cc36773501" + integrity sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw== + +"@types/glob@^8.0.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" + integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== + dependencies: + "@types/minimatch" "^5.1.2" + "@types/node" "*" + +"@types/graceful-fs@^4.1.3": + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" + integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== +"@types/lodash@^4.14.167": + version "4.14.194" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" + integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== + +"@types/mdx@^2.0.0": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.5.tgz#9a85a8f70c7c4d9e695a21d5ae5c93645eda64b1" + integrity sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg== + +"@types/mime-types@^2.1.0": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@types/mime-types/-/mime-types-2.1.1.tgz#d9ba43490fa3a3df958759adf69396c3532cf2c1" + integrity sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw== + +"@types/mime@*": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + +"@types/mime@^1": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" + integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== + +"@types/minimatch@^5.1.2": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== + +"@types/node-fetch@^2.5.7": + version "2.6.3" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80" + integrity sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "20.1.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.1.3.tgz#bc8e7cd8065a5fc355a3a191a68db8019c58bc00" + integrity sha512-NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA== + +"@types/node@^16.0.0": + version "16.18.29" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.29.tgz#4b5e19b078513fa5e828b98aede649525e5d1750" + integrity sha512-cal+XTYF4JBwG82kw3m9ktTOyUj7GXcO9i2o+t49y/OF+3asYfpHqTROF1UbV91e71g/UB5wNeL5hfqPthzp8Q== + "@types/node@^18.15.0": version "18.16.8" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.8.tgz#fcd9bd0a793aba2701caff4aeae7c988d4da6ce5" integrity sha512-p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA== -"@types/semver@^7.3.12": +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + +"@types/npmlog@^4.1.2": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.4.tgz#30eb872153c7ead3e8688c476054ddca004115f6" + integrity sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ== + +"@types/pretty-hrtime@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz#72a26101dc567b0d68fd956cf42314556e42d601" + integrity sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/qs@*", "@types/qs@^6.9.5": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/range-parser@*": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== + +"@types/react@>=16": + version "18.2.6" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" + integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== + +"@types/semver@^7.3.12", "@types/semver@^7.3.4": version "7.5.0" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== +"@types/send@*": + version "0.17.1" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" + integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + +"@types/serve-static@*": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d" + integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ== + dependencies: + "@types/mime" "*" + "@types/node" "*" + +"@types/unist@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== + "@types/webfontloader@^1.6.35": version "1.6.35" resolved "https://registry.yarnpkg.com/@types/webfontloader/-/webfontloader-1.6.35.tgz#c9cedff2995c61ee9b2064714e7f7d7763ac50bd" integrity sha512-IJlrsiDWq6KghQ7tPlL5tcwSUyOxLDceT+AFUY7Ylj0Fcv3/h3QkANqQxZ0B5mEpEKxhTw76vDmvrruSMV9n9Q== +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^16.0.0": + version "16.0.5" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3" + integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ== + dependencies: + "@types/yargs-parser" "*" + +"@types/yargs@^17.0.8": + version "17.0.24" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" + integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== + dependencies: + "@types/yargs-parser" "*" + "@typescript-eslint/eslint-plugin@^5.59.1": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" @@ -300,7 +2400,7 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.59.5": +"@typescript-eslint/utils@5.59.5", "@typescript-eslint/utils@^5.45.0": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== @@ -327,6 +2427,11 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" integrity sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw== +"@vitejs/plugin-vue@^4.0.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" + integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== + "@volar/language-core@1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" @@ -381,7 +2486,7 @@ estree-walker "^2.0.2" source-map-js "^1.0.2" -"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.3.0-beta.3": +"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.2.0", "@vue/compiler-dom@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz#2012ef4879375a4ca4ee68012a9256398b848af2" integrity sha512-6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw== @@ -389,7 +2494,7 @@ "@vue/compiler-core" "3.3.2" "@vue/shared" "3.3.2" -"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.3.0-beta.3": +"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.2.0", "@vue/compiler-sfc@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz#d6467acba8446655bcee7e751441232e5ddebcbf" integrity sha512-jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ== @@ -483,16 +2588,61 @@ find-cache-dir "^3.3.2" upath "^2.0.1" +"@yarnpkg/esbuild-plugin-pnp@^3.0.0-rc.10": + version "3.0.0-rc.15" + resolved "https://registry.yarnpkg.com/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz#4e40e7d2eb28825c9a35ab9d04c363931d7c0e67" + integrity sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA== + dependencies: + tslib "^2.4.0" + +accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== +acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + acorn@^8.8.0: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +address@^1.0.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + +agent-base@5: + version "5.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" + integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== + +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -503,39 +2653,282 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ansi-align@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" + integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== + dependencies: + string-width "^4.1.0" + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^4.1.0: +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +app-root-dir@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" + integrity sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g== + +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== +aria-query@^5.0.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + array-union@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== +assert-never@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" + integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== -brace-expansion@^1.1.7: +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +ast-types@0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" + integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== + dependencies: + tslib "^2.0.1" + +ast-types@^0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.16.1.tgz#7a9da1617c9081bc121faafe91711b4c8bb81da2" + integrity sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg== + dependencies: + tslib "^2.0.1" + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^3.2.3: + version "3.2.4" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +babel-core@^7.0.0-bridge.0: + version "7.0.0-bridge.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" + integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-polyfill-corejs2@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.3" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" + integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + core-js-compat "^3.25.1" + +babel-plugin-polyfill-regenerator@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" + integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + +babel-walk@3.0.0-canary-5: + version "3.0.0-canary-5" + resolved "https://registry.yarnpkg.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11" + integrity sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw== + dependencies: + "@babel/types" "^7.9.6" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +better-opn@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6" + integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA== + dependencies: + open "^7.0.3" + +big-integer@^1.6.44: + version "1.6.51" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" + integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +boxen@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" + integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== + dependencies: + ansi-align "^3.0.0" + camelcase "^6.2.0" + chalk "^4.1.0" + cli-boxes "^2.2.1" + string-width "^4.2.2" + type-fest "^0.20.2" + widest-line "^3.1.0" + wrap-ansi "^7.0.0" + +bplist-parser@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + +brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== @@ -550,19 +2943,108 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2: +braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" +browser-assert@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/browser-assert/-/browser-assert-1.2.1.tgz#9aaa5a2a8c74685c2ae05bfe46efd606f068c200" + integrity sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ== + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + integrity sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ== + dependencies: + pako "~0.2.0" + +browserslist@^4.21.3, browserslist@^4.21.5: + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== + dependencies: + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-crc32@~0.2.3: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -chalk@^4.0.0: +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001449: + version "1.0.30001486" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" + integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -570,6 +3052,78 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +character-parser@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" + integrity sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== + dependencies: + is-regex "^1.0.3" + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +ci-info@^3.2.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-boxes@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" + integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== + +cli-table3@^0.6.1: + version "0.6.3" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" + integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -577,22 +3131,136 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +colorette@^2.0.19: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -cross-spawn@^7.0.2: +concat-stream@^1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +console-control-strings@^1.0.0, console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +constantinople@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151" + integrity sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw== + dependencies: + "@babel/parser" "^7.6.0" + "@babel/types" "^7.6.1" + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +core-js-compat@^3.25.1: + version "3.30.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b" + integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA== + dependencies: + browserslist "^4.21.5" + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -601,12 +3269,17 @@ cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" +crypto-random-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -csstype@^3.1.1: +csstype@^3.0.2, csstype@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== @@ -616,18 +3289,134 @@ de-indent@^1.0.2: resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== -debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: +debug@2.6.9, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" +deep-equal@^2.0.5: + version "2.2.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" + integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + es-get-iterator "^1.1.3" + get-intrinsic "^1.2.0" + is-arguments "^1.1.1" + is-array-buffer "^3.0.2" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== +default-browser-id@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" + integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== + dependencies: + bplist-parser "^0.2.0" + untildify "^4.0.0" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +defu@^6.1.2: + version "6.1.2" + resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.2.tgz#1217cba167410a1765ba93893c6dbac9ed9d9e5c" + integrity sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ== + +del@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" + integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== + dependencies: + globby "^11.0.1" + graceful-fs "^4.2.4" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.2" + p-map "^4.0.0" + rimraf "^3.0.2" + slash "^3.0.0" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +dequal@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-indent@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +detect-package-manager@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/detect-package-manager/-/detect-package-manager-2.0.1.tgz#6b182e3ae5e1826752bfef1de9a7b828cffa50d8" + integrity sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A== + dependencies: + execa "^5.1.1" + +detect-port@^1.3.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" + integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== + dependencies: + address "^1.0.1" + debug "4" + dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -642,7 +3431,120 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -esbuild@^0.17.5: +doctypes@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" + integrity sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== + +dom-accessibility-api@^0.5.9: + version "0.5.16" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" + integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== + +dotenv-expand@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" + integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A== + +dotenv@^16.0.0: + version "16.0.3" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" + integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== + +duplexify@^3.5.0, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +ejs@^3.1.8: + version "3.1.9" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" + integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== + dependencies: + jake "^10.8.5" + +electron-to-chromium@^1.4.284: + version "1.4.392" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.392.tgz#57ec91fa02393ab32e46df6925ef309642a44680" + integrity sha512-TXQOMW9tnhIms3jGy/lJctLjICOgyueZFJ1KUtm6DTQ+QpxX3p7ZBwB6syuZ9KBuT5S4XX7bgY1ECPgfxKUdOg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +envinfo@^7.7.3: + version "7.8.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-get-iterator@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + +es-module-lexer@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +esbuild-plugin-alias@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz#45a86cb941e20e7c2bc68a2bea53562172494fcb" + integrity sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ== + +esbuild-register@^3.4.0: + version "3.4.2" + resolved "https://registry.yarnpkg.com/esbuild-register/-/esbuild-register-3.4.2.tgz#1e39ee0a77e8f320a9790e68c64c3559620b9175" + integrity sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q== + dependencies: + debug "^4.3.4" + +esbuild@^0.17.0, esbuild@^0.17.5: version "0.17.18" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.18.tgz#f4f8eb6d77384d68cd71c53eb6601c7efe05e746" integrity sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== @@ -670,11 +3572,36 @@ esbuild@^0.17.5: "@esbuild/win32-ia32" "0.17.18" "@esbuild/win32-x64" "0.17.18" +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +eslint-plugin-storybook@^0.6.12: + version "0.6.12" + resolved "https://registry.yarnpkg.com/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.12.tgz#7bdb3392bb03bebde40ed19accfd61246e9d6301" + integrity sha512-XbIvrq6hNVG6rpdBr+eBw63QhOMLpZneQVSooEDow8aQCWGCk/5vqtap1yxpVydNfSxi3S/3mBBRLQqKUqQRww== + dependencies: + "@storybook/csf" "^0.0.1" + "@typescript-eslint/utils" "^5.45.0" + requireindex "^1.1.0" + ts-dedent "^2.2.0" + eslint-plugin-vue@^9.0.0: version "9.12.0" resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.12.0.tgz#3174eaaedc143bf7b392b3defa3f18889606bb73" @@ -764,6 +3691,11 @@ espree@^9.3.1, espree@^9.5.2: acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" +esprima@^4.0.0, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + esquery@^1.4.0, esquery@^1.4.2: version "1.5.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" @@ -798,6 +3730,78 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +execa@^5.0.0, execa@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +express@^4.17.3: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extract-zip@^1.6.6: + version "1.7.0" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" + integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== + dependencies: + concat-stream "^1.6.2" + debug "^2.6.9" + mkdirp "^0.5.4" + yauzl "^2.10.0" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -814,7 +3818,7 @@ fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -831,6 +3835,25 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fd-slicer@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" + integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== + dependencies: + pend "~1.2.0" + +fetch-retry@^5.0.2: + version "5.0.5" + resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.5.tgz#61079b816b6651d88a022ebd45d51d83aa72b521" + integrity sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A== + file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" @@ -838,6 +3861,21 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" +file-system-cache@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-2.1.1.tgz#25bb4019f7d62b458f4bed45452b638e41f6412b" + integrity sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg== + dependencies: + fs-extra "^11.1.0" + ramda "^0.28.0" + +filelist@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -845,7 +3883,29 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -find-cache-dir@^3.3.2: +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-cache-dir@^3.0.0, find-cache-dir@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== @@ -854,7 +3914,14 @@ find-cache-dir@^3.3.2: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-up@^4.0.0: +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -883,17 +3950,146 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +flow-parser@0.*: + version "0.206.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef" + integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-extra@^11.1.0: + version "11.1.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: +fsevents@^2.3.2, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -glob-parent@^5.1.2: +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gauge@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" + integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + object-assign "^4.1.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-npm-tarball-url@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz#67dff908d699e9e2182530ae6e939a93e5f8dfdb" + integrity sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw== + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-port@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" + integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +giget@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" + integrity sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A== + dependencies: + colorette "^2.0.19" + defu "^6.1.2" + https-proxy-agent "^5.0.1" + mri "^1.2.0" + node-fetch-native "^1.0.2" + pathe "^1.1.0" + tar "^6.1.13" + +github-slugger@^1.0.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" + integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== + +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -907,7 +4103,19 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^7.1.3: +glob-promise@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-6.0.2.tgz#7c7f2a223e3aaa8f7bd7ff5f24d0ab2352724b31" + integrity sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ== + dependencies: + "@types/glob" "^8.0.0" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -919,6 +4127,22 @@ glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + globals@^13.19.0: version "13.20.0" resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" @@ -926,7 +4150,7 @@ globals@^13.19.0: dependencies: type-fest "^0.20.2" -globby@^11.1.0: +globby@^11.0.1, globby@^11.0.2, globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -938,21 +4162,152 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + grapheme-splitter@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" +gunzip-maybe@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz#b913564ae3be0eda6f3de36464837a9cd94b98ac" + integrity sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw== + dependencies: + browserify-zlib "^0.1.4" + is-deflate "^1.0.0" + is-gzip "^1.0.0" + peek-stream "^1.1.0" + pumpify "^1.3.3" + through2 "^2.0.3" + +handlebars@^4.7.7: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + +has-bigints@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-sum@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" + integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== + he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +https-proxy-agent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" + integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== + dependencies: + agent-base "5" + debug "4" + +https-proxy-agent@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + ignore@^5.2.0: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" @@ -971,6 +4326,11 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -979,43 +4339,398 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +internal-slot@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +ip@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-absolute-url@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" + integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + +is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.11.0: + version "2.12.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" + integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-deflate@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-deflate/-/is-deflate-1.0.0.tgz#c862901c3c161fb09dac7cdc7e784f80e98f2f14" + integrity sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ== + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-expression@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab" + integrity sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A== + dependencies: + acorn "^7.1.1" + object-assign "^4.1.1" + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" +is-gzip@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" + integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== + +is-map@^2.0.1, is-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-path-inside@^3.0.3: +is-path-cwd@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-promise@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + +is-regex@^1.0.3, is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-set@^2.0.1, is-set@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.3: + version "1.1.10" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" + integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +isomorphic-unfetch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" + integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== + dependencies: + node-fetch "^2.6.1" + unfetch "^4.2.0" + +istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +jake@^10.8.5: + version "10.8.5" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.1" + minimatch "^3.0.4" + +jest-haste-map@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" + integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== + dependencies: + "@jest/types" "^29.5.0" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + jest-worker "^29.5.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + +jest-mock@^27.0.6: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" + integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== + dependencies: + "@jest/types" "^27.5.1" + "@types/node" "*" + +jest-regex-util@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" + integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== + +jest-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" + integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-worker@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" + integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== + dependencies: + "@types/node" "*" + jest-util "^29.5.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + js-sdsl@^4.1.4: version "4.4.0" resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== +js-stringify@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" + integrity sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -1023,6 +4738,46 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jscodeshift@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" + integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA== + dependencies: + "@babel/core" "^7.13.16" + "@babel/parser" "^7.13.16" + "@babel/plugin-proposal-class-properties" "^7.13.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-transform-modules-commonjs" "^7.13.8" + "@babel/preset-flow" "^7.13.13" + "@babel/preset-typescript" "^7.13.0" + "@babel/register" "^7.13.16" + babel-core "^7.0.0-bridge.0" + chalk "^4.1.2" + flow-parser "0.*" + graceful-fs "^4.2.4" + micromatch "^4.0.4" + neo-async "^2.5.0" + node-dir "^0.1.17" + recast "^0.21.0" + temp "^0.8.4" + write-file-atomic "^2.3.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -1033,6 +4788,52 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jstransformer@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" + integrity sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== + dependencies: + is-promise "^2.0.0" + promise "^7.0.1" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-universal-dotenv@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz#0b220c264e89a042a37181a4928cdd298af73422" + integrity sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg== + dependencies: + app-root-dir "^1.0.2" + dotenv "^16.0.0" + dotenv-expand "^10.0.0" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -1041,6 +4842,19 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + locate-path@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" @@ -1055,16 +4869,35 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lodash@^4.17.21: +lodash@^4.17.15, lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -1072,6 +4905,23 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" +lru-cache@^8.0.3: + version "8.0.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-8.0.5.tgz#983fe337f3e176667f8e567cfcce7cb064ea214e" + integrity sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA== + +lz-string@^1.4.4: + version "1.5.0" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" + integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== + +magic-string@^0.27.0: + version "0.27.0" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz#e4a3413b4bab6d98d2becffd48b4a257effdbbf3" + integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.13" + magic-string@^0.30.0: version "0.30.0" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" @@ -1079,6 +4929,14 @@ magic-string@^0.30.0: dependencies: "@jridgewell/sourcemap-codec" "^1.4.13" +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + make-dir@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" @@ -1086,11 +4944,67 @@ make-dir@^3.0.2: dependencies: semver "^6.0.0" +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-or-similar@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" + integrity sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg== + +markdown-to-jsx@^7.1.8: + version "7.2.0" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" + integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== + +mdast-util-definitions@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" + integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== + dependencies: + unist-util-visit "^2.0.0" + +mdast-util-to-string@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" + integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memoizerific@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a" + integrity sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog== + dependencies: + map-or-similar "^1.5.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" @@ -1099,13 +5013,47 @@ micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" -minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@^2.1.25, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.0.3: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + minimatch@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" @@ -1113,17 +5061,79 @@ minimatch@^9.0.0: dependencies: brace-expansion "^2.0.1" +minimist@^1.2.5, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +minipass@^3.0.0: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +mkdirp@^0.5.4: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mri@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" + integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + muggle-string@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.2.2.tgz#786aa53fea1652c61c6a59e1f839292b262bc72a" integrity sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg== -nanoid@^3.3.6: +nanoid@^3.3.1, nanoid@^3.3.6: version "3.3.6" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== @@ -1138,6 +5148,77 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.5.0, neo-async@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +node-dir@^0.1.17: + version "0.1.17" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== + dependencies: + minimatch "^3.0.2" + +node-fetch-native@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.1.1.tgz#b8977dd7fe6c5599e417301ed3987bca787d3d6f" + integrity sha512-9VvspTSUp2Sxbl+9vbZTlFGq9lHwE8GDVVekxx6YsNd1YH59sb3Ba8v3Y3cD8PkLNcileGGcA21PFjVl0jzDaw== + +node-fetch@^2.6.1, node-fetch@^2.6.7: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== + +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" + integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + dependencies: + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^3.0.0" + set-blocking "^2.0.0" + nth-check@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" @@ -1145,13 +5226,82 @@ nth-check@^2.0.1: dependencies: boolbase "^1.0.0" -once@^1.3.0: +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-is@^1.0.1, object-is@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^7.0.3: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + +open@^8.4.0: + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -1164,7 +5314,7 @@ optionator@^0.9.1: type-check "^0.4.0" word-wrap "^1.2.3" -p-limit@^2.2.0: +p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== @@ -1178,6 +5328,13 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-locate@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" @@ -1192,11 +5349,23 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -1204,6 +5373,26 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -1214,75 +5403,593 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +pathe@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" + integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== + +peek-stream@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" + integrity sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA== + dependencies: + buffer-from "^1.0.0" + duplexify "^3.5.0" + through2 "^2.0.3" + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pirates@^4.0.4, pirates@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + pkg-dir@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: - find-up "^4.0.0" + find-up "^4.0.0" + +pkg-dir@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" + integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + dependencies: + find-up "^5.0.0" + +polished@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" + integrity sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ== + dependencies: + "@babel/runtime" "^7.17.8" + +postcss-selector-parser@^6.0.9: + version "6.0.12" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" + integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss@^8.1.10, postcss@^8.4.23: + version "8.4.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" + integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier@^2.8.0: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + +pretty-format@^27.0.2: + version "27.5.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + +pretty-hrtime@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + integrity sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + +progress@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise@^7.0.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +prompts@^2.4.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +proxy-from-env@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +pug-attrs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41" + integrity sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA== + dependencies: + constantinople "^4.0.1" + js-stringify "^1.0.2" + pug-runtime "^3.0.0" + +pug-code-gen@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce" + integrity sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg== + dependencies: + constantinople "^4.0.1" + doctypes "^1.1.0" + js-stringify "^1.0.2" + pug-attrs "^3.0.0" + pug-error "^2.0.0" + pug-runtime "^3.0.0" + void-elements "^3.1.0" + with "^7.0.0" + +pug-error@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5" + integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ== + +pug-filters@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e" + integrity sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A== + dependencies: + constantinople "^4.0.1" + jstransformer "1.0.0" + pug-error "^2.0.0" + pug-walk "^2.0.0" + resolve "^1.15.1" + +pug-lexer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5" + integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== + dependencies: + character-parser "^2.2.0" + is-expression "^4.0.0" + pug-error "^2.0.0" + +pug-linker@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708" + integrity sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw== + dependencies: + pug-error "^2.0.0" + pug-walk "^2.0.0" + +pug-load@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662" + integrity sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ== + dependencies: + object-assign "^4.1.1" + pug-walk "^2.0.0" + +pug-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260" + integrity sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw== + dependencies: + pug-error "^2.0.0" + token-stream "1.0.0" + +pug-runtime@^3.0.0, pug-runtime@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7" + integrity sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg== + +pug-strip-comments@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e" + integrity sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ== + dependencies: + pug-error "^2.0.0" + +pug-walk@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe" + integrity sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ== + +pug@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/pug/-/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535" + integrity sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw== + dependencies: + pug-code-gen "^3.0.2" + pug-filters "^4.0.0" + pug-lexer "^5.0.1" + pug-linker "^4.0.0" + pug-load "^3.0.0" + pug-parser "^6.0.0" + pug-runtime "^3.0.1" + pug-strip-comments "^2.0.0" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +puppeteer-core@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-2.1.1.tgz#e9b3fbc1237b4f66e25999832229e9db3e0b90ed" + integrity sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w== + dependencies: + "@types/mime-types" "^2.1.0" + debug "^4.1.0" + extract-zip "^1.6.6" + https-proxy-agent "^4.0.0" + mime "^2.0.3" + mime-types "^2.1.25" + progress "^2.0.1" + proxy-from-env "^1.0.0" + rimraf "^2.6.1" + ws "^6.1.0" + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +qs@^6.10.0: + version "6.11.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.1.tgz#6c29dff97f0c0060765911ba65cbc9764186109f" + integrity sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +ramda@^0.28.0: + version "0.28.0" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.28.0.tgz#acd785690100337e8b063cab3470019be427cc97" + integrity sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA== + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react-colorful@^5.1.2: + version "5.6.1" + resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.6.1.tgz#7dc2aed2d7c72fac89694e834d179e32f3da563b" + integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== + +react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-inspector@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-6.0.1.tgz#1a37f0165d9df81ee804d63259eaaeabe841287d" + integrity sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg== + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +recast@^0.21.0: + version "0.21.5" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" + integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== + dependencies: + ast-types "0.15.2" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +recast@^0.23.1: + version "0.23.2" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.23.2.tgz#d3dda3e8f0a3366860d7508c00e34a338ac52b41" + integrity sha512-Qv6cPfVZyMOtPszK6PgW70pUgm7gPlFitAPf0Q69rlOA0zLw2XdDcNmPbVGYicFGT9O8I7TZ/0ryJD+6COvIPw== + dependencies: + assert "^2.0.0" + ast-types "^0.16.1" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" -postcss-selector-parser@^6.0.9: - version "6.0.12" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" - integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-transform@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" -postcss@^8.1.10, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== +regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" + call-bind "^1.0.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" -punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== +remark-external-links@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345" + integrity sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA== + dependencies: + extend "^3.0.0" + is-absolute-url "^3.0.0" + mdast-util-definitions "^4.0.0" + space-separated-tokens "^1.0.0" + unist-util-visit "^2.0.0" + +remark-slug@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.1.0.tgz#0503268d5f0c4ecb1f33315c00465ccdd97923ce" + integrity sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ== + dependencies: + github-slugger "^1.0.0" + mdast-util-to-string "^1.0.0" + unist-util-visit "^2.0.0" -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +requireindex@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" + integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.15.1: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +rimraf@^2.6.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -1290,12 +5997,19 @@ rimraf@^3.0.2: dependencies: glob "^7.1.3" +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + roboto-fontface@*: version "0.10.0" resolved "https://registry.yarnpkg.com/roboto-fontface/-/roboto-fontface-0.10.0.tgz#7eee40cfa18b1f7e4e605eaf1a2740afb6fd71b0" integrity sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g== -rollup@^3.21.0: +"rollup@^2.25.0 || ^3.3.0", rollup@^3.21.0: version "3.21.6" resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" integrity sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== @@ -1309,7 +6023,39 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -semver@^6.0.0: +safe-buffer@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +"semver@2 || 3 || 4 || 5", semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -1321,6 +6067,68 @@ semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: dependencies: lru-cache "^6.0.0" +semver@~7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" + integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serve-favicon@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" + integrity sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA== + dependencies: + etag "~1.8.1" + fresh "0.5.2" + ms "2.1.1" + parseurl "~1.3.2" + safe-buffer "5.1.1" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -1333,6 +6141,41 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-update-notifier@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" + integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg== + dependencies: + semver "~7.0.0" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -1343,18 +6186,131 @@ source-map-js@^1.0.2: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -strip-ansi@^6.0.1: +source-map-support@^0.5.16: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +space-separated-tokens@^1.0.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" + integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.13" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" + integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + +store2@^2.14.2: + version "2.14.2" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.14.2.tgz#56138d200f9fe5f582ad63bc2704dbc0e4a45068" + integrity sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w== + +storybook@^7.0.11: + version "7.0.11" + resolved "https://registry.yarnpkg.com/storybook/-/storybook-7.0.11.tgz#b13876720de6920d11ea7360e8de85c01b23a4ce" + integrity sha512-3MdQ90doYuGZpC052zyMnWLIK1GqyPrYN0sCkGyiNAO8wdxcuCG8jHK2s4b1I/yWLCGv03jCjoc6w9F5iRcrHw== + dependencies: + "@storybook/cli" "7.0.11" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -1362,11 +6318,113 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +synchronous-promise@^2.0.15: + version "2.0.17" + resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.17.tgz#38901319632f946c982152586f2caf8ddc25c032" + integrity sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g== + +tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +tar@^6.1.13: + version "6.1.14" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.14.tgz#e87926bec1cfe7c9e783a77a79f3e81c1cfa3b66" + integrity sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +telejson@^7.0.3: + version "7.1.0" + resolved "https://registry.yarnpkg.com/telejson/-/telejson-7.1.0.tgz#1ef7a0dd57eeb52cde933126f61bcc296c170f52" + integrity sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA== + dependencies: + memoizerific "^1.11.3" + +temp-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" + integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== + +temp@^0.8.4: + version "0.8.4" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + +tempy@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-1.0.1.tgz#30fe901fd869cfb36ee2bd999805aa72fbb035de" + integrity sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w== + dependencies: + del "^6.0.0" + is-stream "^2.0.0" + temp-dir "^2.0.0" + type-fest "^0.16.0" + unique-string "^2.0.0" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +through2@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -1379,11 +6437,41 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +token-stream@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4" + integrity sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-dedent@^2.0.0, ts-dedent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" + integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + +ts-map@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/ts-map/-/ts-map-1.0.3.tgz#1c4d218dec813d2103b7e04e4bcf348e1471c1ff" + integrity sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w== + tslib@^1.8.1: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== +tslib@^2.0.1, tslib@^2.4.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -1398,21 +6486,149 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" +type-fest@2.19.0, type-fest@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + +type-fest@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" + integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + typescript@^5.0.0: version "5.0.4" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== +uglify-js@^3.1.4: + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== + +unfetch@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" + integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +unique-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + dependencies: + crypto-random-string "^2.0.0" + +unist-util-is@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== + +unist-util-visit-parents@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" + integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + +unist-util-visit@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" + integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + unist-util-visit-parents "^3.0.0" + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +unplugin@^0.10.2: + version "0.10.2" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-0.10.2.tgz#0f7089c3666f592cc448d746e39e7f41e9afb01a" + integrity sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA== + dependencies: + acorn "^8.8.0" + chokidar "^3.5.3" + webpack-sources "^3.2.3" + webpack-virtual-modules "^0.4.5" + +untildify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" + integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== + upath@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== +update-browserslist-db@^1.0.10: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -1420,11 +6636,52 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -util-deprecate@^1.0.2: +use-resize-observer@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/use-resize-observer/-/use-resize-observer-9.1.0.tgz#14735235cf3268569c1ea468f8a90c5789fc5c6c" + integrity sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow== + dependencies: + "@juggle/resize-observer" "^3.3.1" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== +util@^0.12.0, util@^0.12.4: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" + integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -1445,6 +6702,28 @@ vite@^4.2.0: optionalDependencies: fsevents "~2.3.2" +void-elements@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" + integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== + +vue-docgen-api@^4.40.0: + version "4.71.0" + resolved "https://registry.yarnpkg.com/vue-docgen-api/-/vue-docgen-api-4.71.0.tgz#c3d9031e0801c2315b7b11b91791b916f5bbb4fc" + integrity sha512-90uxlQ5VGJ42IxkZg8Tz9jb0eyFYaL+LyHhlNfkos66ODhGoKk22gA8XW1UjjSE7zMyQB7SvMBr6oaWEOorMJg== + dependencies: + "@babel/parser" "^7.21.4" + "@babel/types" "^7.21.4" + "@vue/compiler-dom" "^3.2.0" + "@vue/compiler-sfc" "^3.2.0" + ast-types "^0.16.1" + hash-sum "^2.0.0" + lru-cache "^8.0.3" + pug "^3.0.2" + recast "^0.23.1" + ts-map "^1.0.3" + vue-inbrowser-compiler-independent-utils "^4.69.0" + vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: version "9.2.1" resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz#b011a5520ea7c24cadc832c8552122faaccfd2e6" @@ -1458,6 +6737,11 @@ vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: lodash "^4.17.21" semver "^7.3.6" +vue-inbrowser-compiler-independent-utils@^4.69.0: + version "4.71.1" + resolved "https://registry.yarnpkg.com/vue-inbrowser-compiler-independent-utils/-/vue-inbrowser-compiler-independent-utils-4.71.1.tgz#dc6830b204f7cfdc30ffc4f31ba81b0c72c52136" + integrity sha512-K3wt3iVmNGaFEOUR4JIThQRWfqokxLfnPslD41FDZB2ajXp789+wCqJyGYlIFsvEQ2P61PInw6/ph5iiqg51gg== + vue-router@^4.0.0: version "4.2.0" resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.0.tgz#558f31978a21ce3accf5122ffdf2cec34a5d2517" @@ -1498,11 +6782,82 @@ vuetify@^3.0.0: resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.2.4.tgz#e31e23305b23d2a08ccbb845e295ff07d4c1a71f" integrity sha512-Lj3fXSTY/lLXpuzAM0n2B/9o7WKpHsqv2USanXyFVXbePsl9kx7XY4HPrMqTDEYRlY9AyMjF9ilTbkQ8IovPmQ== +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +watchpack@^2.2.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + webfontloader@^1.0.0: version "1.6.28" resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" integrity sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ== +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack-virtual-modules@^0.4.5: + version "0.4.6" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" + integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + dependencies: + is-map "^2.0.1" + is-set "^2.0.1" + is-weakmap "^2.0.1" + is-weakset "^2.0.1" + +which-typed-array@^1.1.2, which-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" + integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.10" + which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -1510,26 +6865,111 @@ which@^2.0.1: dependencies: isexe "^2.0.0" +wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + +with@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" + integrity sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w== + dependencies: + "@babel/parser" "^7.9.6" + "@babel/types" "^7.9.6" + assert-never "^1.2.1" + babel-walk "3.0.0-canary-5" + word-wrap@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== +write-file-atomic@^2.3.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + +ws@^6.1.0: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + dependencies: + async-limiter "~1.0.0" + +ws@^8.2.3: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + xml-name-validator@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== +xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yauzl@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" + integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.1.0" + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" From 23b7c1acbbeaf8e461e4384537ade21bb6dde2ce Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:07:57 -0400 Subject: [PATCH 03/70] Adding Cypress --- webapp/package.json | 1 + webapp/yarn.lock | 665 ++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 647 insertions(+), 19 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 9a70e8bbe1..cf170c3e01 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -30,6 +30,7 @@ "@types/webfontloader": "^1.6.35", "@vitejs/plugin-vue": "^3.2.0", "@vue/eslint-config-typescript": "^11.0.0", + "cypress": "^12.12.0", "eslint": "^8.0.0", "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.0.0", diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 6580b44389..b594b3036c 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -1005,6 +1005,38 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== +"@cypress/request@^2.88.10": + version "2.88.11" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047" + integrity sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + http-signature "~1.3.6" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + performance-now "^2.1.0" + qs "~6.10.3" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^8.3.2" + +"@cypress/xvfb@^1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a" + integrity sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q== + dependencies: + debug "^3.1.0" + lodash.once "^4.1.1" + "@discoveryjs/json-ext@^0.5.3": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" @@ -2234,6 +2266,11 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.1.3.tgz#bc8e7cd8065a5fc355a3a191a68db8019c58bc00" integrity sha512-NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA== +"@types/node@^14.14.31": + version "14.18.46" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.46.tgz#ffc5a96cbe4fb5af9d16ac08e50229de30969487" + integrity sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng== + "@types/node@^16.0.0": version "16.18.29" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.29.tgz#4b5e19b078513fa5e828b98aede649525e5d1750" @@ -2309,6 +2346,16 @@ "@types/mime" "*" "@types/node" "*" +"@types/sinonjs__fake-timers@8.1.1": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz#b49c2c70150141a15e0fa7e79cf1f92a72934ce3" + integrity sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g== + +"@types/sizzle@^2.3.2": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef" + integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== + "@types/unist@^2.0.0": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" @@ -2338,6 +2385,13 @@ dependencies: "@types/yargs-parser" "*" +"@types/yauzl@^2.9.1": + version "2.10.0" + resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" + integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== + dependencies: + "@types/node" "*" + "@typescript-eslint/eslint-plugin@^5.59.1": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" @@ -2660,6 +2714,18 @@ ansi-align@^3.0.0: dependencies: string-width "^4.1.0" +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -2702,6 +2768,11 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== +arch@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" + integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== + are-we-there-yet@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" @@ -2752,11 +2823,23 @@ asap@~2.0.3: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + assert-never@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + assert@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" @@ -2781,12 +2864,17 @@ ast-types@^0.16.1: dependencies: tslib "^2.0.1" +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-limiter@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async@^3.2.3: +async@^3.2.0, async@^3.2.3: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== @@ -2796,11 +2884,26 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + available-typed-arrays@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== + babel-core@^7.0.0-bridge.0: version "7.0.0-bridge.0" resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" @@ -2858,6 +2961,13 @@ base64-js@^1.3.1: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + better-opn@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6" @@ -2884,6 +2994,16 @@ bl@^4.0.3: inherits "^2.0.4" readable-stream "^3.4.0" +blob-util@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" + integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== + +bluebird@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + body-parser@1.20.1: version "1.20.1" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" @@ -2989,7 +3109,7 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -buffer@^5.5.0: +buffer@^5.5.0, buffer@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -3007,6 +3127,11 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +cachedir@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" + integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -3035,6 +3160,11 @@ caniuse-lite@^1.0.30001449: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3059,6 +3189,11 @@ character-parser@^2.2.0: dependencies: is-regex "^1.0.3" +check-more-types@^2.24.0: + version "2.24.0" + resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" @@ -3099,7 +3234,14 @@ cli-boxes@^2.2.1: resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== -cli-table3@^0.6.1: +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-table3@^0.6.1, cli-table3@~0.6.1: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== @@ -3108,6 +3250,14 @@ cli-table3@^0.6.1: optionalDependencies: "@colors/colors" "1.5.0" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -3146,12 +3296,12 @@ color-support@^1.1.2: resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== -colorette@^2.0.19: +colorette@^2.0.16, colorette@^2.0.19: version "2.0.20" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== -combined-stream@^1.0.8: +combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== @@ -3163,6 +3313,11 @@ commander@^6.2.1: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== +common-tags@^1.8.0: + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== + commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -3255,12 +3410,17 @@ core-js-compat@^3.25.1: dependencies: browserslist "^4.21.5" +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -3284,6 +3444,66 @@ csstype@^3.0.2, csstype@^3.1.1: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== +cypress@^12.12.0: + version "12.12.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.12.0.tgz#0da622a34c970d8699ca6562d8e905ed7ce33c77" + integrity sha512-UU5wFQ7SMVCR/hyKok/KmzG6fpZgBHHfrXcHzDmPHWrT+UUetxFzQgt7cxCszlwfozckzwkd22dxMwl/vNkWRw== + dependencies: + "@cypress/request" "^2.88.10" + "@cypress/xvfb" "^1.2.4" + "@types/node" "^14.14.31" + "@types/sinonjs__fake-timers" "8.1.1" + "@types/sizzle" "^2.3.2" + arch "^2.2.0" + blob-util "^2.0.2" + bluebird "^3.7.2" + buffer "^5.6.0" + cachedir "^2.3.0" + chalk "^4.1.0" + check-more-types "^2.24.0" + cli-cursor "^3.1.0" + cli-table3 "~0.6.1" + commander "^6.2.1" + common-tags "^1.8.0" + dayjs "^1.10.4" + debug "^4.3.4" + enquirer "^2.3.6" + eventemitter2 "6.4.7" + execa "4.1.0" + executable "^4.1.1" + extract-zip "2.0.1" + figures "^3.2.0" + fs-extra "^9.1.0" + getos "^3.2.1" + is-ci "^3.0.0" + is-installed-globally "~0.4.0" + lazy-ass "^1.6.0" + listr2 "^3.8.3" + lodash "^4.17.21" + log-symbols "^4.0.0" + minimist "^1.2.8" + ospath "^1.2.2" + pretty-bytes "^5.6.0" + proxy-from-env "1.0.0" + request-progress "^3.0.0" + semver "^7.3.2" + supports-color "^8.1.1" + tmp "~0.2.1" + untildify "^4.0.0" + yauzl "^2.10.0" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + +dayjs@^1.10.4: + version "1.11.7" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2" + integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ== + de-indent@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" @@ -3303,6 +3523,13 @@ debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: dependencies: ms "2.1.2" +debug@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -3461,6 +3688,14 @@ duplexify@^3.5.0, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" @@ -3495,6 +3730,13 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" +enquirer@^2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + envinfo@^7.7.3: version "7.8.1" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" @@ -3735,6 +3977,26 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== +eventemitter2@6.4.7: + version "6.4.7" + resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" + integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== + +execa@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + execa@^5.0.0, execa@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" @@ -3750,6 +4012,13 @@ execa@^5.0.0, execa@^5.1.1: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +executable@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" + integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== + dependencies: + pify "^2.2.0" + express@^4.17.3: version "4.18.2" resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" @@ -3787,11 +4056,22 @@ express@^4.17.3: utils-merge "1.0.1" vary "~1.1.2" -extend@^3.0.0: +extend@^3.0.0, extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== +extract-zip@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" + integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== + dependencies: + debug "^4.1.1" + get-stream "^5.1.0" + yauzl "^2.10.0" + optionalDependencies: + "@types/yauzl" "^2.9.1" + extract-zip@^1.6.6: version "1.7.0" resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" @@ -3802,6 +4082,16 @@ extract-zip@^1.6.6: mkdirp "^0.5.4" yauzl "^2.10.0" +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -3854,6 +4144,13 @@ fetch-retry@^5.0.2: resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.5.tgz#61079b816b6651d88a022ebd45d51d83aa72b521" integrity sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A== +figures@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" @@ -3962,6 +4259,11 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + form-data@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" @@ -3971,6 +4273,15 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" @@ -3995,6 +4306,16 @@ fs-extra@^11.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -4066,11 +4387,32 @@ get-port@^5.1.1: resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== +get-stream@^5.0.0, get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + get-stream@^6.0.0: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== +getos@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" + integrity sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q== + dependencies: + async "^3.2.0" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + giget@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" @@ -4138,6 +4480,13 @@ glob@^8.1.0: minimatch "^5.0.1" once "^1.3.0" +global-dirs@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" + integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== + dependencies: + ini "2.0.0" + globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -4275,6 +4624,15 @@ http-errors@2.0.0: statuses "2.0.1" toidentifier "1.0.1" +http-signature@~1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9" + integrity sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw== + dependencies: + assert-plus "^1.0.0" + jsprim "^2.0.2" + sshpk "^1.14.1" + https-proxy-agent@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" @@ -4291,6 +4649,11 @@ https-proxy-agent@^5.0.1: agent-base "6" debug "4" +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" @@ -4344,6 +4707,11 @@ inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, i resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +ini@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + internal-slot@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" @@ -4422,6 +4790,13 @@ is-callable@^1.1.3: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== +is-ci@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== + dependencies: + ci-info "^3.2.0" + is-core-module@^2.11.0: version "2.12.0" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" @@ -4483,6 +4858,14 @@ is-gzip@^1.0.0: resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== +is-installed-globally@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" + integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + dependencies: + global-dirs "^3.0.0" + is-path-inside "^3.0.2" + is-map@^2.0.1, is-map@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" @@ -4580,6 +4963,16 @@ is-typed-array@^1.1.10, is-typed-array@^1.1.3: gopd "^1.0.1" has-tostringtag "^1.0.0" +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + is-weakmap@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" @@ -4628,6 +5021,11 @@ isomorphic-unfetch@^3.1.0: node-fetch "^2.6.1" unfetch "^4.2.0" +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" @@ -4738,6 +5136,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + jscodeshift@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" @@ -4783,11 +5186,21 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + json5@^2.2.2: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" @@ -4802,6 +5215,16 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsprim@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d" + integrity sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + jstransformer@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" @@ -4820,6 +5243,11 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== +lazy-ass@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + lazy-universal-dotenv@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz#0b220c264e89a042a37181a4928cdd298af73422" @@ -4847,6 +5275,20 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +listr2@^3.8.3: + version "3.14.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" + integrity sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.16" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.5.1" + through "^2.3.8" + wrap-ansi "^7.0.0" + locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" @@ -4879,11 +5321,34 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== +lodash.once@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== + lodash@^4.17.15, lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -5018,7 +5483,7 @@ mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.25, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12, mime-types@^2.1.25, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== @@ -5061,7 +5526,7 @@ minimatch@^9.0.0: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.5, minimist@^1.2.6: +minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -5123,7 +5588,7 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3: +ms@2.1.3, ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -5202,7 +5667,7 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -npm-run-path@^4.0.1: +npm-run-path@^4.0.0, npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== @@ -5278,7 +5743,7 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.2: +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -5314,6 +5779,11 @@ optionator@^0.9.1: type-check "^0.4.0" word-wrap "^1.2.3" +ospath@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" + integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== + p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -5442,6 +5912,11 @@ pend@~1.2.0: resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -5452,6 +5927,11 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatc resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +pify@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + pify@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" @@ -5517,6 +5997,11 @@ prettier@^2.8.0: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +pretty-bytes@^5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + pretty-format@^27.0.2: version "27.5.1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" @@ -5578,11 +6063,21 @@ proxy-addr@~2.0.7: forwarded "0.2.0" ipaddr.js "1.9.1" +proxy-from-env@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" + integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== + proxy-from-env@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== +psl@^1.1.28: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + pug-attrs@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41" @@ -5711,7 +6206,7 @@ pumpify@^1.3.3: inherits "^2.0.3" pump "^2.0.0" -punycode@^2.1.0: +punycode@^2.1.0, punycode@^2.1.1: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== @@ -5746,6 +6241,13 @@ qs@^6.10.0: dependencies: side-channel "^1.0.4" +qs@~6.10.3: + version "6.10.5" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" + integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== + dependencies: + side-channel "^1.0.4" + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -5954,6 +6456,13 @@ remark-slug@^6.0.0: mdast-util-to-string "^1.0.0" unist-util-visit "^2.0.0" +request-progress@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" + integrity sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg== + dependencies: + throttleit "^1.0.0" + requireindex@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" @@ -5978,11 +6487,24 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.15.1: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +rfdc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" + integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== + rimraf@^2.6.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" @@ -5990,7 +6512,7 @@ rimraf@^2.6.1: dependencies: glob "^7.1.3" -rimraf@^3.0.2: +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -6023,6 +6545,13 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" +rxjs@^7.5.1: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + safe-buffer@5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" @@ -6033,12 +6562,12 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@5.2.1, safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3": +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -6060,7 +6589,7 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: +semver@^7.3.2, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: version "7.5.1" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== @@ -6181,6 +6710,24 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" @@ -6235,6 +6782,21 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +sshpk@^1.14.1: + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" @@ -6318,7 +6880,7 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.0.0: +supports-color@^8.0.0, supports-color@^8.1.1: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== @@ -6412,6 +6974,11 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +throttleit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" + integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== + through2@^2.0.3: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" @@ -6420,6 +6987,18 @@ through2@^2.0.3: readable-stream "~2.3.6" xtend "~4.0.1" +through@^2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tmp@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" @@ -6447,6 +7026,14 @@ token-stream@1.0.0: resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4" integrity sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg== +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + tr46@~0.0.3: version "0.0.3" resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" @@ -6467,7 +7054,7 @@ tslib@^1.8.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.1, tslib@^2.4.0: +tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== @@ -6479,6 +7066,18 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -6501,6 +7100,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -6664,6 +7268,11 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" @@ -6682,6 +7291,15 @@ vary@~1.1.2: resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -6899,6 +7517,15 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" From 6dbf9e188005267da079d00084d15a1e788853e0 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:09:36 -0400 Subject: [PATCH 04/70] Renaming package name in package.json --- webapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/package.json b/webapp/package.json index cf170c3e01..634fabd77b 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,5 +1,5 @@ { - "name": "webapp", + "name": "libretime-webapp", "version": "0.0.0", "scripts": { "dev": "vite", From ad52701382417813af835b42ec3f55f5f52c9b71 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:12:35 -0400 Subject: [PATCH 05/70] Adding Vitest --- webapp/package.json | 1 + webapp/yarn.lock | 313 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 310 insertions(+), 4 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 634fabd77b..73182296e6 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -40,6 +40,7 @@ "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", + "vitest": "^0.31.0", "vue-tsc": "^1.2.0" } } diff --git a/webapp/yarn.lock b/webapp/yarn.lock index b594b3036c..af6a1c299d 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2137,6 +2137,18 @@ "@types/connect" "*" "@types/node" "*" +"@types/chai-subset@^1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@types/chai-subset/-/chai-subset-1.3.3.tgz#97893814e92abd2c534de422cb377e0e0bdaac94" + integrity sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== + dependencies: + "@types/chai" "*" + +"@types/chai@*", "@types/chai@^4.3.4": + version "4.3.5" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.5.tgz#ae69bcbb1bebb68c4ac0b11e9d8ed04526b3562b" + integrity sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== + "@types/connect@*": version "3.4.35" resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" @@ -2486,6 +2498,50 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== +"@vitest/expect@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-0.31.0.tgz#37ab35d4f75c12826c204f2a0290e0c2e5ef1192" + integrity sha512-Jlm8ZTyp6vMY9iz9Ny9a0BHnCG4fqBa8neCF6Pk/c/6vkUk49Ls6UBlgGAU82QnzzoaUs9E/mUhq/eq9uMOv/g== + dependencies: + "@vitest/spy" "0.31.0" + "@vitest/utils" "0.31.0" + chai "^4.3.7" + +"@vitest/runner@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-0.31.0.tgz#ca830405ae4c2744ae5fb7fbe85df81b56430ebc" + integrity sha512-H1OE+Ly7JFeBwnpHTrKyCNm/oZgr+16N4qIlzzqSG/YRQDATBYmJb/KUn3GrZaiQQyL7GwpNHVZxSQd6juLCgw== + dependencies: + "@vitest/utils" "0.31.0" + concordance "^5.0.4" + p-limit "^4.0.0" + pathe "^1.1.0" + +"@vitest/snapshot@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-0.31.0.tgz#f59c4bcf0d03f1f494ee09286965e60a1e0cab64" + integrity sha512-5dTXhbHnyUMTMOujZPB0wjFjQ6q5x9c8TvAsSPUNKjp1tVU7i9pbqcKPqntyu2oXtmVxKbuHCqrOd+Ft60r4tg== + dependencies: + magic-string "^0.30.0" + pathe "^1.1.0" + pretty-format "^27.5.1" + +"@vitest/spy@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-0.31.0.tgz#98cb19046c0bd2673a73d6c90ee1533d1be82136" + integrity sha512-IzCEQ85RN26GqjQNkYahgVLLkULOxOm5H/t364LG0JYb3Apg0PsYCHLBYGA006+SVRMWhQvHlBBCyuByAMFmkg== + dependencies: + tinyspy "^2.1.0" + +"@vitest/utils@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.31.0.tgz#d0aae17150b95ebf7afdf4e5db8952ac21610ffa" + integrity sha512-kahaRyLX7GS1urekRXN2752X4gIgOGVX4Wo8eDUGUkTWlGpXzf5ZS6N9RUUS+Re3XEE8nVGqNyxkSxF5HXlGhQ== + dependencies: + concordance "^5.0.4" + loupe "^2.3.6" + pretty-format "^27.5.1" + "@volar/language-core@1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" @@ -2662,12 +2718,17 @@ acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== +acorn-walk@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + acorn@^7.1.1: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.8.0: +acorn@^8.8.0, acorn@^8.8.2: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== @@ -2850,6 +2911,11 @@ assert@^2.0.0: object-is "^1.0.1" util "^0.12.0" +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + ast-types@0.15.2: version "0.15.2" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" @@ -3004,6 +3070,11 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== +blueimp-md5@^2.10.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0" + integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w== + body-parser@1.20.1: version "1.20.1" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" @@ -3127,6 +3198,11 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +cac@^6.7.14: + version "6.7.14" + resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== + cachedir@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" @@ -3165,6 +3241,19 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== +chai@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51" + integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^4.1.2" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3189,6 +3278,11 @@ character-parser@^2.2.0: dependencies: is-regex "^1.0.3" +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" @@ -3358,6 +3452,20 @@ concat-stream@^1.6.2: readable-stream "^2.2.2" typedarray "^0.0.6" +concordance@^5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/concordance/-/concordance-5.0.4.tgz#9896073261adced72f88d60e4d56f8efc4bbbbd2" + integrity sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw== + dependencies: + date-time "^3.1.0" + esutils "^2.0.3" + fast-diff "^1.2.0" + js-string-escape "^1.0.1" + lodash "^4.17.15" + md5-hex "^3.0.1" + semver "^7.3.2" + well-known-symbols "^2.0.0" + console-control-strings@^1.0.0, console-control-strings@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" @@ -3499,6 +3607,13 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +date-time@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/date-time/-/date-time-3.1.0.tgz#0d1e934d170579f481ed8df1e2b8ff70ee845e1e" + integrity sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg== + dependencies: + time-zone "^1.0.0" + dayjs@^1.10.4: version "1.11.7" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2" @@ -3530,6 +3645,13 @@ debug@^3.1.0: dependencies: ms "^2.1.1" +deep-eql@^4.1.2: + version "4.1.3" + resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" + integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== + dependencies: + type-detect "^4.0.0" + deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -3967,7 +4089,7 @@ estree-walker@^2.0.2: resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== -esutils@^2.0.2: +esutils@^2.0.2, esutils@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== @@ -4097,6 +4219,11 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== +fast-diff@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + fast-glob@^3.2.9: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" @@ -4363,6 +4490,11 @@ gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" @@ -5111,6 +5243,11 @@ js-sdsl@^4.1.4: resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== +js-string-escape@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" + integrity sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg== + js-stringify@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" @@ -5206,6 +5343,11 @@ json5@^2.2.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jsonc-parser@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + jsonfile@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" @@ -5289,6 +5431,11 @@ listr2@^3.8.3: through "^2.3.8" wrap-ansi "^7.0.0" +local-pkg@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" + integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== + locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" @@ -5356,6 +5503,13 @@ loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +loupe@^2.3.1, loupe@^2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53" + integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== + dependencies: + get-func-name "^2.0.0" + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -5426,6 +5580,13 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== +md5-hex@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-3.0.1.tgz#be3741b510591434b2784d79e556eefc2c9a8e5c" + integrity sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw== + dependencies: + blueimp-md5 "^2.10.0" + mdast-util-definitions@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" @@ -5568,6 +5729,16 @@ mkdirp@^1.0.3: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== +mlly@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.2.1.tgz#cd50151f5712b651c5c379085157bcdff661133b" + integrity sha512-1aMEByaWgBPEbWV2BOPEMySRrzl7rIHXmQxam4DM8jVjalTQDjpN2ZKOLUrwyhfZQO7IXHml2StcHMhooDeEEQ== + dependencies: + acorn "^8.8.2" + pathe "^1.1.0" + pkg-types "^1.0.3" + ufo "^1.1.2" + mri@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" @@ -5798,6 +5969,13 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -5898,6 +6076,11 @@ pathe@^1.1.0: resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + peek-stream@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" @@ -5963,6 +6146,15 @@ pkg-dir@^5.0.0: dependencies: find-up "^5.0.0" +pkg-types@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" + integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== + dependencies: + jsonc-parser "^3.2.0" + mlly "^1.2.0" + pathe "^1.1.0" + polished@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" @@ -6002,7 +6194,7 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -pretty-format@^27.0.2: +pretty-format@^27.0.2, pretty-format@^27.5.1: version "27.5.1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== @@ -6688,6 +6880,11 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" +siginfo@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" + integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== + signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -6797,11 +6994,21 @@ sshpk@^1.14.1: safer-buffer "^2.0.2" tweetnacl "~0.14.0" +stackback@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" + integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== + statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== +std-env@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.3.3.tgz#a54f06eb245fdcfef53d56f3c0251f1d5c3d01fe" + integrity sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg== + stop-iteration-iterator@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" @@ -6866,6 +7073,13 @@ strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +strip-literal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-1.0.1.tgz#0115a332710c849b4e46497891fb8d585e404bd2" + integrity sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q== + dependencies: + acorn "^8.8.2" + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -6992,6 +7206,26 @@ through@^2.3.8: resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== +time-zone@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" + integrity sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA== + +tinybench@^2.4.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.5.0.tgz#4711c99bbf6f3e986f67eb722fed9cddb3a68ba5" + integrity sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA== + +tinypool@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.5.0.tgz#3861c3069bf71e4f1f5aa2d2e6b3aaacc278961e" + integrity sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ== + +tinyspy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.1.0.tgz#bd6875098f988728e6456cfd5ab8cc06498ecdeb" + integrity sha512-7eORpyqImoOvkQJCSkL0d0mB4NHHIFAy4b1u8PHdDa7SjGS2njzl6/lyGoZLm+eyYEtlUmFGE0rFj66SWxZgQQ== + tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -7085,6 +7319,11 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + type-fest@2.19.0, type-fest@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" @@ -7133,6 +7372,11 @@ typescript@^5.0.0: resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== +ufo@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" + integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== + uglify-js@^3.1.4: version "3.17.4" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" @@ -7300,6 +7544,18 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +vite-node@0.31.0: + version "0.31.0" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.31.0.tgz#8794a98f21b0cf2394bfd2aaa5fc85d2c42be084" + integrity sha512-8x1x1LNuPvE2vIvkSB7c1mApX5oqlgsxzHQesYF7l5n1gKrEmrClIiZuOFbFDQcjLsmcWSwwmrWrcGWm9Fxc/g== + dependencies: + cac "^6.7.14" + debug "^4.3.4" + mlly "^1.2.0" + pathe "^1.1.0" + picocolors "^1.0.0" + vite "^3.0.0 || ^4.0.0" + vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -7309,7 +7565,7 @@ vite-plugin-vuetify@^1.0.0: debug "^4.3.3" upath "^2.0.1" -vite@^4.2.0: +"vite@^3.0.0 || ^4.0.0", vite@^4.2.0: version "4.3.5" resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.5.tgz#3871fe0f4b582ea7f49a85386ac80e84826367d9" integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== @@ -7320,6 +7576,37 @@ vite@^4.2.0: optionalDependencies: fsevents "~2.3.2" +vitest@^0.31.0: + version "0.31.0" + resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.31.0.tgz#133e98f779aa81afbc7ee1fcb385a0c458b8c2c8" + integrity sha512-JwWJS9p3GU9GxkG7eBSmr4Q4x4bvVBSswaCFf1PBNHiPx00obfhHRJfgHcnI0ffn+NMlIh9QGvG75FlaIBdKGA== + dependencies: + "@types/chai" "^4.3.4" + "@types/chai-subset" "^1.3.3" + "@types/node" "*" + "@vitest/expect" "0.31.0" + "@vitest/runner" "0.31.0" + "@vitest/snapshot" "0.31.0" + "@vitest/spy" "0.31.0" + "@vitest/utils" "0.31.0" + acorn "^8.8.2" + acorn-walk "^8.2.0" + cac "^6.7.14" + chai "^4.3.7" + concordance "^5.0.4" + debug "^4.3.4" + local-pkg "^0.4.3" + magic-string "^0.30.0" + pathe "^1.1.0" + picocolors "^1.0.0" + std-env "^3.3.2" + strip-literal "^1.0.1" + tinybench "^2.4.0" + tinypool "^0.5.0" + vite "^3.0.0 || ^4.0.0" + vite-node "0.31.0" + why-is-node-running "^2.2.2" + void-elements@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" @@ -7435,6 +7722,11 @@ webpack-virtual-modules@^0.4.5: resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== +well-known-symbols@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-2.0.0.tgz#e9c7c07dbd132b7b84212c8174391ec1f9871ba5" + integrity sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" @@ -7483,6 +7775,14 @@ which@^2.0.1: dependencies: isexe "^2.0.0" +why-is-node-running@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/why-is-node-running/-/why-is-node-running-2.2.2.tgz#4185b2b4699117819e7154594271e7e344c9973e" + integrity sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== + dependencies: + siginfo "^2.0.0" + stackback "0.0.2" + wide-align@^1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" @@ -7601,3 +7901,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== From fb9a0dde14ebc29bd3b607fb428d1db232a3f91f Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 12 May 2023 13:12:55 -0400 Subject: [PATCH 06/70] Adding vue-i18n --- webapp/package.json | 1 + webapp/yarn.lock | 52 +++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 51 insertions(+), 2 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 73182296e6..309ea65583 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -13,6 +13,7 @@ "@mdi/font": "7.0.96", "roboto-fontface": "*", "vue": "^3.2.0", + "vue-i18n": "9", "vue-router": "^4.0.0", "vuetify": "^3.0.0", "webfontloader": "^1.0.0" diff --git a/webapp/yarn.lock b/webapp/yarn.lock index af6a1c299d..dfc4c470ea 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -1213,6 +1213,44 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@intlify/core-base@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz#5353369b05cc9fe35cab95fe20afeb8a4481f939" + integrity sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA== + dependencies: + "@intlify/devtools-if" "9.2.2" + "@intlify/message-compiler" "9.2.2" + "@intlify/shared" "9.2.2" + "@intlify/vue-devtools" "9.2.2" + +"@intlify/devtools-if@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.2.tgz#b13d9ac4b4e2fe6d2e7daa556517a8061fe8bd39" + integrity sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg== + dependencies: + "@intlify/shared" "9.2.2" + +"@intlify/message-compiler@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.2.tgz#e42ab6939b8ae5b3d21faf6a44045667a18bba1c" + integrity sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA== + dependencies: + "@intlify/shared" "9.2.2" + source-map "0.6.1" + +"@intlify/shared@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz#5011be9ca2b4ab86f8660739286e2707f9abb4a5" + integrity sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q== + +"@intlify/vue-devtools@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz#b95701556daf7ebb3a2d45aa3ae9e6415aed8317" + integrity sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg== + dependencies: + "@intlify/core-base" "9.2.2" + "@intlify/shared" "9.2.2" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -2628,7 +2666,7 @@ "@vue/compiler-dom" "3.3.2" "@vue/shared" "3.3.2" -"@vue/devtools-api@^6.5.0": +"@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.5.0": version "6.5.0" resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== @@ -6938,7 +6976,7 @@ source-map-support@^0.5.16: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -7642,6 +7680,16 @@ vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: lodash "^4.17.21" semver "^7.3.6" +vue-i18n@9: + version "9.2.2" + resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz#aeb49d9424923c77e0d6441e3f21dafcecd0e666" + integrity sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ== + dependencies: + "@intlify/core-base" "9.2.2" + "@intlify/shared" "9.2.2" + "@intlify/vue-devtools" "9.2.2" + "@vue/devtools-api" "^6.2.1" + vue-inbrowser-compiler-independent-utils@^4.69.0: version "4.71.1" resolved "https://registry.yarnpkg.com/vue-inbrowser-compiler-independent-utils/-/vue-inbrowser-compiler-independent-utils-4.71.1.tgz#dc6830b204f7cfdc30ffc4f31ba81b0c72c52136" From 47a5f812974219df9f195f4cb0c586baa4d17b49 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 15:16:03 -0400 Subject: [PATCH 07/70] chore: add axios and prettier packages --- webapp/package.json | 2 ++ webapp/yarn.lock | 27 +++++++++++++++++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 309ea65583..38c49bb774 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "@mdi/font": "7.0.96", + "axios": "^1.4.0", "roboto-fontface": "*", "vue": "^3.2.0", "vue-i18n": "9", @@ -35,6 +36,7 @@ "eslint": "^8.0.0", "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.0.0", + "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.0.11", diff --git a/webapp/yarn.lock b/webapp/yarn.lock index dfc4c470ea..879f85326c 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -3008,6 +3008,15 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== +axios@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f" + integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + babel-core@^7.0.0-bridge.0: version "7.0.0-bridge.0" resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" @@ -4417,6 +4426,11 @@ flow-parser@0.*: resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef" integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w== +follow-redirects@^1.15.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + for-each@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -4438,6 +4452,15 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + form-data@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" @@ -6222,7 +6245,7 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier@^2.8.0: +prettier@^2.8.0, prettier@^2.8.8: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== @@ -6298,7 +6321,7 @@ proxy-from-env@1.0.0: resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== -proxy-from-env@^1.0.0: +proxy-from-env@^1.0.0, proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== From 2e3d79f7141e2b2580b68633e37e1156df120365 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 15:19:38 -0400 Subject: [PATCH 08/70] chore: add eslint --- webapp/.eslintrc.js | 32 +++++++++---- webapp/package.json | 4 +- webapp/yarn.lock | 109 +++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 129 insertions(+), 16 deletions(-) diff --git a/webapp/.eslintrc.js b/webapp/.eslintrc.js index 289ea73165..c050099e45 100644 --- a/webapp/.eslintrc.js +++ b/webapp/.eslintrc.js @@ -1,10 +1,24 @@ module.exports = { - root: true, - env: { - node: true - }, - extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript', 'plugin:storybook/recommended'], - rules: { - 'vue/multi-word-component-names': 'off' - } -}; \ No newline at end of file + "env": { + "browser": true, + "es2021": true + }, + "extends": [ + "eslint:recommended", + "plugin:vue/vue3-essential", + "plugin:@typescript-eslint/recommended" + ], + "overrides": [ + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "plugins": [ + "vue", + "@typescript-eslint" + ], + "rules": { + } +} diff --git a/webapp/package.json b/webapp/package.json index 38c49bb774..01df00a666 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -30,12 +30,14 @@ "@storybook/vue3-vite": "^7.0.11", "@types/node": "^18.15.0", "@types/webfontloader": "^1.6.35", + "@typescript-eslint/eslint-plugin": "^5.59.6", + "@typescript-eslint/parser": "^5.59.6", "@vitejs/plugin-vue": "^3.2.0", "@vue/eslint-config-typescript": "^11.0.0", "cypress": "^12.12.0", "eslint": "^8.0.0", "eslint-plugin-storybook": "^0.6.12", - "eslint-plugin-vue": "^9.0.0", + "eslint-plugin-vue": "^9.13.0", "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 879f85326c..5ec38ad7c0 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2458,6 +2458,22 @@ semver "^7.3.7" tsutils "^3.21.0" +"@typescript-eslint/eslint-plugin@^5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz#a350faef1baa1e961698240f922d8de1761a9e2b" + integrity sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw== + dependencies: + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.59.6" + "@typescript-eslint/type-utils" "5.59.6" + "@typescript-eslint/utils" "5.59.6" + debug "^4.3.4" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + semver "^7.3.7" + tsutils "^3.21.0" + "@typescript-eslint/parser@^5.59.1": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" @@ -2468,6 +2484,16 @@ "@typescript-eslint/typescript-estree" "5.59.5" debug "^4.3.4" +"@typescript-eslint/parser@^5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.6.tgz#bd36f71f5a529f828e20b627078d3ed6738dbb40" + integrity sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA== + dependencies: + "@typescript-eslint/scope-manager" "5.59.6" + "@typescript-eslint/types" "5.59.6" + "@typescript-eslint/typescript-estree" "5.59.6" + debug "^4.3.4" + "@typescript-eslint/scope-manager@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" @@ -2476,6 +2502,14 @@ "@typescript-eslint/types" "5.59.5" "@typescript-eslint/visitor-keys" "5.59.5" +"@typescript-eslint/scope-manager@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz#d43a3687aa4433868527cfe797eb267c6be35f19" + integrity sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ== + dependencies: + "@typescript-eslint/types" "5.59.6" + "@typescript-eslint/visitor-keys" "5.59.6" + "@typescript-eslint/type-utils@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" @@ -2486,11 +2520,26 @@ debug "^4.3.4" tsutils "^3.21.0" +"@typescript-eslint/type-utils@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz#37c51d2ae36127d8b81f32a0a4d2efae19277c48" + integrity sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ== + dependencies: + "@typescript-eslint/typescript-estree" "5.59.6" + "@typescript-eslint/utils" "5.59.6" + debug "^4.3.4" + tsutils "^3.21.0" + "@typescript-eslint/types@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== +"@typescript-eslint/types@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.6.tgz#5a6557a772af044afe890d77c6a07e8c23c2460b" + integrity sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA== + "@typescript-eslint/typescript-estree@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" @@ -2504,6 +2553,19 @@ semver "^7.3.7" tsutils "^3.21.0" +"@typescript-eslint/typescript-estree@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz#2fb80522687bd3825504925ea7e1b8de7bb6251b" + integrity sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA== + dependencies: + "@typescript-eslint/types" "5.59.6" + "@typescript-eslint/visitor-keys" "5.59.6" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + "@typescript-eslint/utils@5.59.5", "@typescript-eslint/utils@^5.45.0": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" @@ -2518,6 +2580,20 @@ eslint-scope "^5.1.1" semver "^7.3.7" +"@typescript-eslint/utils@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.6.tgz#82960fe23788113fc3b1f9d4663d6773b7907839" + integrity sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.59.6" + "@typescript-eslint/types" "5.59.6" + "@typescript-eslint/typescript-estree" "5.59.6" + eslint-scope "^5.1.1" + semver "^7.3.7" + "@typescript-eslint/visitor-keys@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" @@ -2526,6 +2602,14 @@ "@typescript-eslint/types" "5.59.5" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@5.59.6": + version "5.59.6" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz#673fccabf28943847d0c8e9e8d008e3ada7be6bb" + integrity sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q== + dependencies: + "@typescript-eslint/types" "5.59.6" + eslint-visitor-keys "^3.3.0" + "@vitejs/plugin-vue@^3.2.0": version "3.2.0" resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" @@ -4013,17 +4097,17 @@ eslint-plugin-storybook@^0.6.12: requireindex "^1.1.0" ts-dedent "^2.2.0" -eslint-plugin-vue@^9.0.0: - version "9.12.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.12.0.tgz#3174eaaedc143bf7b392b3defa3f18889606bb73" - integrity sha512-xH8PgpDW2WwmFSmRfs/3iWogef1CJzQqX264I65zz77jDuxF2yLy7+GA2diUM8ZNATuSl1+UehMQkb5YEyau5w== +eslint-plugin-vue@^9.13.0: + version "9.13.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.13.0.tgz#adb21448e65a7c1502af66103ff5f215632c5319" + integrity sha512-aBz9A8WB4wmpnVv0pYUt86cmH9EkcwWzgEwecBxMoRNhQjTL5i4sqadnwShv/hOdr8Hbl8XANGV7dtX9UQIAyA== dependencies: "@eslint-community/eslint-utils" "^4.3.0" natural-compare "^1.4.0" nth-check "^2.0.1" postcss-selector-parser "^6.0.9" semver "^7.3.5" - vue-eslint-parser "^9.0.1" + vue-eslint-parser "^9.3.0" xml-name-validator "^4.0.0" eslint-scope@^5.1.1: @@ -7690,7 +7774,7 @@ vue-docgen-api@^4.40.0: ts-map "^1.0.3" vue-inbrowser-compiler-independent-utils "^4.69.0" -vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: +vue-eslint-parser@^9.1.1: version "9.2.1" resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz#b011a5520ea7c24cadc832c8552122faaccfd2e6" integrity sha512-tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ== @@ -7703,6 +7787,19 @@ vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: lodash "^4.17.21" semver "^7.3.6" +vue-eslint-parser@^9.3.0: + version "9.3.0" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz#775a974a0603c9a73d85fed8958ed9e814a4a816" + integrity sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ== + dependencies: + debug "^4.3.4" + eslint-scope "^7.1.1" + eslint-visitor-keys "^3.3.0" + espree "^9.3.1" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^7.3.6" + vue-i18n@9: version "9.2.2" resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz#aeb49d9424923c77e0d6441e3f21dafcecd0e666" From e37bd4c71bd64d8ce2a0eb388370dddfd2aeaa99 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 15:34:02 -0400 Subject: [PATCH 09/70] chore: configure prettier --- webapp/.prettierignore | 4 ++++ webapp/.prettierrc.json | 1 + webapp/package.json | 4 +++- webapp/prettier.config.js | 6 ++++++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 webapp/.prettierignore create mode 100644 webapp/.prettierrc.json create mode 100644 webapp/prettier.config.js diff --git a/webapp/.prettierignore b/webapp/.prettierignore new file mode 100644 index 0000000000..8fd28f8775 --- /dev/null +++ b/webapp/.prettierignore @@ -0,0 +1,4 @@ +.storybook +node_modules +dist +public \ No newline at end of file diff --git a/webapp/.prettierrc.json b/webapp/.prettierrc.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/webapp/.prettierrc.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/webapp/package.json b/webapp/package.json index 01df00a666..ed88c2d6da 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -7,7 +7,9 @@ "preview": "vite preview", "lint": "eslint . --fix --ignore-path .gitignore", "storybook": "storybook dev -p 6006", - "build-storybook": "storybook build" + "build-storybook": "storybook build", + "prettier": "prettier --write src", + "prettier-check": "prettier --check src" }, "dependencies": { "@mdi/font": "7.0.96", diff --git a/webapp/prettier.config.js b/webapp/prettier.config.js new file mode 100644 index 0000000000..64bc26083b --- /dev/null +++ b/webapp/prettier.config.js @@ -0,0 +1,6 @@ +module.exports = { + tabWidth: 4, + singleQuote: true, + bracketLine: true, + bracketSpacing: true +} \ No newline at end of file From 281fc97e1f35ecce26b3e03b3c66fe06d5b35628 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 16:07:05 -0400 Subject: [PATCH 10/70] ci: create github actions workflow --- .github/workflows/webapp.yml | 80 ++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/workflows/webapp.yml diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml new file mode 100644 index 0000000000..2eecbc5bfb --- /dev/null +++ b/.github/workflows/webapp.yml @@ -0,0 +1,80 @@ +name: Webapp + +on: + workflow_dispatch: + push: + branches: [main, stable] + paths: + - .github/workflows/webapp.yml + - webapp/** + + pull_request: + branches: [main, stable] + paths: + - .github/workflows/webapp.yml + - webapp/** + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - node-version: "18.12.x" + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install packages + run: yarn install --frozen-lockfile + working-directory: webapp + - name: Lint + run: yarn lint + working-directory: webapp + + prettier: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - node-version: "18.12.x" + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install packages + run: yarn install --frozen-lockfile + working-directory: webapp + - name: Lint + run: yarn prettier-check + working-directory: webapp + + test-build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - node-version: "18.12.x" + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install packages + run: yarn install --frozen-lockfile + working-directory: webapp + - name: Lint + run: yarn build + working-directory: webapp From b239814bf520adde77a5b29828ca9bfb952c2be0 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 16:19:54 -0400 Subject: [PATCH 11/70] chore: remove vue favicon --- webapp/public/favicon.ico | Bin 15406 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 webapp/public/favicon.ico diff --git a/webapp/public/favicon.ico b/webapp/public/favicon.ico deleted file mode 100644 index 8fb9f91b3aab4eec0c76ffc5342528033c61e247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15406 zcmeHO3v5%@8NNVarCoU?zSqezmT6npu}xxXJJhY(x=s~hQ>SSYYSncU&|(|9Y?QVX z@}TB1G8mASM;tRKYgJkrAW)&g7${B%c>oE7;)O>NNO_bu4G-IdNB({PbTkJL{ZGDJe2DLL+vq#sL?l$jZPe_*I2y@|4sBRjso zUy`aUlJo$60})6B%aMKN&yMG1Qvjth%4dDy{HM^34) z&_TyGJg3UC{J|n2-wr)LDYwhNWBH4VL-JgYz;erTEKiMF20`|$Cf~GysBU40j@&)u zboK>@(yL25%R|RmS~6@99bG>PviV`j>&k~M@~J%cn{`uCzUOyY^23rlWt6DH=aut3 zlZo^g63xIXwP(4)hgT<|I>hSGqh7YbLP$jL+%p0>vM2Su?wmOV;-uyLFww=KN5Ox{j<% zmi}mZc22bZyxbmI!x+Ch3+qsk+#YbHJ{CdQjDh~;LRJB63Pq&~p

*N){PEn7FA;EAwj=|b_AUGw z{Eb1Zt8`N8chL?vjkw~yAvg~N+W_qV|N7U7a3HGfPY0GBqUxOaLJzPO2|Qz7H&yF{ z!Y@7SbxH$-YlpxgCaImE$Fk6T4dUMU!=a+u##*PZb&m9d@{VbA<&v z;n*Hvm#Nt5zF}Ud{=9#v%+3;8${f~WV?Q`CFATe5JXp$wT(q1TOU7#0jK6PDXZ)(1 zOSF4N3hStRA?+K$*ZctH(lRF!KFSL%W20hM6%Rz+k9We?_C36J>PVG2%Y`27X;nW+ z*x`6oe7S`dXABgw#vFYvuM;-c|L9ua=7z9?9B!cL=Fyiz34xz{6kpCd?PeyG2V7mkg!!m@d$btKgDK_Ib zt|Qt#$Am-fZ&{xA0GOAnn8Ue+QQBY3NiO*vfvd{5lsp3L_K5f@hhj{}^Nk#us4?p+ ztOM)g!1L3Ff(Tk8KQe4khoQS4_&0;4zo|FQr(iM%k4L+U*z zff0J2FQWxM*K?>u4d$6_8R>l`cK8U+!w`A!D@A2^2+L%A~GSv8* z(uV!wgkD)YqY(1-;X}j zv4?n}%=LOp! z;8GgCC~I2q%*#5{$kpuKJ6-ET*}o#)Z>p>vQsxF25{?c6CQ5()gsGtn{Ul`*ykb!bDMnnlGUdfYdn+9lsY%+pJ_Z_xHs+imH? z!L`+luUT1yv*4C1Z&<#Qlui*r2~lxBI`sAm+}oX{s=OcRf9A0%Q^56>8DC==kKtgy z>D-TeE@f3uu4&Y?ZVVlM3wLg~Z>Y}xfNE|1MIAijELQN`Y2<45F5=t5>wtYuk>yuH zXEJj-vN;uZD0|537U$Eq5Oek?f#JlNGq{dN(qiDuxO185eWG@Tuk1zKUsCs)MAVm# zZTvIN+Wl0&MDXYQF#3{qXA$(Ft>uw;>&qkE2f#n|`-?1D`gl8Gqj+=j77qvaV7#CH z-mDV$x0TsBRP5B|jZ%mFQ}FDv4Rn5l$yl(|`Q7Oe;~u+P58Qvv*6uy)7U=EIpPM-5 zPv}(pkwc!Zx3$@4;Y){)0d2tO5v#db4**wJ~;d2`ShTX zw|GaKwMoD4ydIzqSN(;l&j_8}$q^eYga7tU+}ZvgxyO*m1UDkuojePFZ zG`-$PpE1`DpyrLMO}R7wCfu3t6Y|B7d%f_n+{8^32;HSdS9&hVGwt*sUYr-!%%`a~|XP)!GJa zaPfvq9vz7{ms4}`U~qpQ+@r?~G$CeSuOWUWWPj8xrxoKsi%ALkMoN~Re@yeI<`b#& zQakqh?^Bfdlv*~90r${a#kP)=j;z5r;Qua|_8~6ciamnnhpFd84r{fjgNVx%{UgRa z5XnEKlf}cZ&elidYgP}Qi}Z0^o$C^y%G~k#_Qp8=1^BDy6=xQN&GlMeiCUK;x&F$^ zjA44c!M?-)Y1kOO--Oix|DE7=F!d?WE|oc-P;ICUYO&YsIA3qS68`^+SoxzLDfxQ- z)V%&7_{XQaWqV^?8s0=b5Yxwfs(L2+kBDu`F4FIF*gxGfML8AK#-01US-npCiqalZ z?M~DOWA<^ZR|~P;79^A!*A-C1sshAC6<~Z9P|a%vs7IcNOJh792S@Vc$sCItcXG)K z1Fn?E#hswKujQD~WT#qpf3`ix0(EL{#By^?PeQ2& Date: Wed, 17 May 2023 16:20:43 -0400 Subject: [PATCH 12/70] chore: add libretime logo to new webapp --- webapp/public/favicon.ico | Bin 0 -> 15086 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 webapp/public/favicon.ico diff --git a/webapp/public/favicon.ico b/webapp/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..66ffca97a65224d1a41d9dbd9bb66bbd100a7402 GIT binary patch literal 15086 zcmeHO3v^V)8NP^0wH9dA3L2B$O(dHvT4!Y@y)k9BF^q`^@ zAFVH}fEKGLTA^w!f)ycXM6HjCXlt7U!rl!&NB|#!gxr4L+?l)oZW16ClyjOrXY$Ye z-}9dNXJT1>tiIN;VHTjzdiXHQ8ev(M&!@i!T2>u!0|80DU{A}s9t=V7K*Tx+iFoxZ zaY66j-Wu4QYakj;9TkfuV=~3#@gsL2Su~=eKXa7@|OP*bwFZbKWhWzOhK93#L_38QkN27@!d>&o&fxh%aw!9=0D)Zax zkv5n6(kJ#rmb{hm_~_35r$+TuPkB+M3O=+VwS@d@zqKRs!+iAv!C#N$=(M@apN{W{ ztl>!{5{KsdABh})h@tNYq)pg|ZPyR9!G8jQ^#isi3%vP_=O9{!4)NLCiuCvwjV9}b|8+f90D(|prX2o! zEPVBE?;!cz)P9CGzKj%h@?aR8|-hACl*U3;qTj7pL6#Q9zLF2$udgWf`Z06!XA^Q5U@UO%3F>mkF1-=92Jx1z) ze?HjxP}u4S1u{n&9zB-LobCku8MU7(Dfy^BWU_7Jw^tY$LeLfnoeuixMUsxbeJ#>) z7^A<=^RortALz6}(#T60%1T|R^PlJ1vLBap&|VSr&FlkuTzci=I5sjz6gPbn{B1&} zE);ruZ$syvK>O9|`jeUr_!8QqlJhc1GqD^kovV9=?gp`fMlNV^3Rq9Wd zN+0Do4u_pRLG$($Wj^~)sMEJSexJS4=ph9DpB@c)NrU~x!iTnSD&;eDJ@+?&z6z-( z5=-5JvdlJg9Lxg1w;6e~%`=8ZnAe9^NgDiFC471d`Ru$Nu%FKII(vZTjcc^yUk#0O zIBaM8Ks5C?LnDN*^FaR?a6KT)@f6mCocR#AB}k_2(C%*AQ66>|2_IY0CsezVhO#X* zH2Aa*`OnNZ`wMyaD=q!tYgxSQaQ<~EmQ__%b)c~Apl?h!G(z}22XxeZqBa^&%;mZj zjiv69JQ&M2OC90xxC0CwcIQaja=!qd9~HDukoV>n(Eez29A3Ek>w?e0xbn__>?_hX z{J+M?5u&ai0evG9=g)s5Er9=?Zt_qDcvJt5?0@LjcS+myg);onM?s_S8@%s;J>TWB ztcnU}FAuNQ8w-N2|9%wJ3|Njnoul*EHG5#Jffn@8K^^VNHGg!aF~^Pl}7nmF6Y z#^Y6EK(FWcWdh&JSQEZ$=qS^$v`Czv|!@+hj4 zVU~umf%T1e`78G|eFr>V8zBE7&o72Y^`n6OciNfhZNsN$gzxBA>HD(u+#F*T;FV={ zIJR@SzPK;+n;WF>$mjHlt~_D98GN!Iaqn5(74NRZ<*!xrDdzgN)ha z(|f;rYoNCVdTZdzssTs+FuQgOTZ{SqL%;W8LLbv6%6T)Aj{B#d zB%N=WKvVZ~@cCE7@r`D-jLEx*LpwYKTn1?g`huE&fxBDtb-<@@lMlKk(-zWZ6Td;3 zpVqi#fI0@5zJvUX-)Wj--U%Q+cca$33Gqd&)+)x0dro!Nv4nKuNCV#{^0J>0C*L`k zehB+_yEZauz*cQp`VccilRCyH(P<7)I{A%vPxI0DZR6Zompbq#_$?>lG zT-1Goh&ACyg6|Y%D>uGeL>$K5Ty5hu5r1Xb)DJW>W)={EJHS1m_g$@f7RJLcmoxj9 zIM7u+VXVGG8B(FkeS_oO;j0+T8f||L;=w=BdB?nk#P?K<+Zyt%RkqX^NECmuP|P(J*p3yIa&7^bEmMv+vPwB>Zymv9{Lj{fBQ1y|$duuasWHBdiGV2n?!KI#`;$DLDJLenN zU4~?u8*$J`U^JG_xO1^P|=_1=74I-Z`< zK73-vem>vl`PO%Voa?v_G<3HI#QZP@bk4`~{+Duh_R(z%=>3#qqBA{<;d-%iZM(Xu z)2wG%YrVPu_Zm>)1^(%n;xMGb^jZ6u=EjaGwM?}gQyOo%>Z*y;C-fgavt_`jK`);? zXz=p!GX_r|K4aAM;WL?-AN<;7GX~W*4w})>Z!mdpnf%>}FHY$gU+XxHjgC{h$#Gt% znfxE)6bwuFki0mBTDgGuf_|90A7t9TIj3(|cQsh^@E$Kwn=kM3X5al`KIWT7JO7Rq z^7CN-5h+g|@?!qKj(ENi#P^m^aZ?2FeC#3AdsFQ7`x*c7{$_9TlE$?aN&T+?-#jD# z8{Ru+*PzTfW+OW2+42P=qt*lR8;H* z*o^uBU;0k)a(|Kll|$hXlK zbp~?ZR`Y$eO2lcKZDoPR!{En!mPNl2ZR1&z`yBQK`m5R?ni`Ki#d&7$LK@p$#|_%d zy)y8;tN%ynK)zqdz8$2V+@I5jJm7r`=>bFIog3ecY+KfFbN`XP;>*0JGoBDK2HG*j oO|x+-eC|q&i6brRqEjtv>`89Ac$JHro3^a`HoG!z?9{UU3w#9A2mk;8 literal 0 HcmV?d00001 From e54c80bdf91f46717f971233f7c3d36ef8caf3d6 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 16:21:15 -0400 Subject: [PATCH 13/70] chore: config eslint --- webapp/.eslintrc.js | 1 + webapp/package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/webapp/.eslintrc.js b/webapp/.eslintrc.js index c050099e45..69af297b51 100644 --- a/webapp/.eslintrc.js +++ b/webapp/.eslintrc.js @@ -8,6 +8,7 @@ module.exports = { "plugin:vue/vue3-essential", "plugin:@typescript-eslint/recommended" ], + "ignorePatterns": ["*.config.js"], "overrides": [ ], "parser": "@typescript-eslint/parser", diff --git a/webapp/package.json b/webapp/package.json index ed88c2d6da..92ab02cb22 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -40,6 +40,7 @@ "eslint": "^8.0.0", "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.13.0", + "eslint-plugin-vuetify": "^2.0.0-beta.4", "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", From 65eecb28d52a6b2b56bb95da9af8963522074763 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 17:03:08 -0400 Subject: [PATCH 14/70] chore: fixing lockfile --- webapp/yarn.lock | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 5ec38ad7c0..23c08c9cea 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -4097,7 +4097,7 @@ eslint-plugin-storybook@^0.6.12: requireindex "^1.1.0" ts-dedent "^2.2.0" -eslint-plugin-vue@^9.13.0: +eslint-plugin-vue@^9.13.0, eslint-plugin-vue@^9.6.0: version "9.13.0" resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.13.0.tgz#adb21448e65a7c1502af66103ff5f215632c5319" integrity sha512-aBz9A8WB4wmpnVv0pYUt86cmH9EkcwWzgEwecBxMoRNhQjTL5i4sqadnwShv/hOdr8Hbl8XANGV7dtX9UQIAyA== @@ -4110,6 +4110,14 @@ eslint-plugin-vue@^9.13.0: vue-eslint-parser "^9.3.0" xml-name-validator "^4.0.0" +eslint-plugin-vuetify@^2.0.0-beta.4: + version "2.0.0-beta.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-vuetify/-/eslint-plugin-vuetify-2.0.0-beta.4.tgz#4858159a3d589b6062fa8a3478c19ffe4574a1f5" + integrity sha512-rebRbCrlPmDirqvggt9xFa7qQCGADKMFN40Hft5HCbCu5rF29UWC5Nk30sFRw6+j1ZS/PAmaVxY3fAxHRfjiAg== + dependencies: + eslint-plugin-vue "^9.6.0" + requireindex "^1.2.0" + eslint-scope@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" @@ -6800,7 +6808,7 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" -requireindex@^1.1.0: +requireindex@^1.1.0, requireindex@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== From 3afeec4148a85c099f58df185e8da1c12c34cd3f Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 21:52:56 -0400 Subject: [PATCH 15/70] cI: simplify github actions runner --- .github/workflows/webapp.yml | 50 +++++++----------------------------- 1 file changed, 9 insertions(+), 41 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index 2eecbc5bfb..bd21353b20 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -19,14 +19,15 @@ concurrency: cancel-in-progress: true jobs: - lint: - runs-on: ubuntu-latest + webapp: strategy: fail-fast: false matrix: include: - - node-version: "18.12.x" - + - os: [ubuntu-20.04, ubuntu-22.04] + - node-version: "18" + runs-on: ${{ matrix.os }} + steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -35,46 +36,13 @@ jobs: - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp - - name: Lint + - name: Lint with Eslint run: yarn lint working-directory: webapp - - prettier: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - node-version: "18.12.x" - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install packages - run: yarn install --frozen-lockfile - working-directory: webapp - - name: Lint + - name: Formatting check with Prettier run: yarn prettier-check working-directory: webapp - - test-build: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - node-version: "18.12.x" - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install packages - run: yarn install --frozen-lockfile - working-directory: webapp - - name: Lint + - name: Test build run: yarn build working-directory: webapp + \ No newline at end of file From 9f53ca69672ea5522d350d1788ebd84845cef083 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 22:11:56 -0400 Subject: [PATCH 16/70] chore: fixing number of spaces for tabs --- webapp/.editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/.editorconfig b/webapp/.editorconfig index 7053c49a04..a1879fcd56 100644 --- a/webapp/.editorconfig +++ b/webapp/.editorconfig @@ -1,5 +1,5 @@ [*.{js,jsx,ts,tsx,vue}] indent_style = space -indent_size = 2 +indent_size = 4 trim_trailing_whitespace = true insert_final_newline = true From d0d728c1e6ef02840c332796674f600cfe4708b3 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 17 May 2023 22:13:13 -0400 Subject: [PATCH 17/70] chore: ran prettier --- webapp/src/App.vue | 12 +-- webapp/src/components/HelloWorld.vue | 128 +++++++++++------------ webapp/src/layouts/default/Default.vue | 8 +- webapp/src/layouts/default/View.vue | 8 +- webapp/src/main.ts | 12 +-- webapp/src/plugins/index.ts | 16 ++- webapp/src/plugins/vuetify.ts | 24 ++--- webapp/src/plugins/webfontloader.ts | 16 +-- webapp/src/router/index.ts | 41 ++++---- webapp/src/stories/Button.stories.ts | 56 +++++----- webapp/src/stories/Button.vue | 67 ++++++------ webapp/src/stories/Header.stories.ts | 54 +++++----- webapp/src/stories/Header.vue | 85 ++++++++++----- webapp/src/stories/Introduction.mdx | 32 +++--- webapp/src/stories/Page.stories.ts | 44 ++++---- webapp/src/stories/Page.vue | 137 +++++++++++++++---------- webapp/src/stories/button.css | 2 +- webapp/src/stories/header.css | 2 +- webapp/src/stories/page.css | 2 +- webapp/src/views/Home.vue | 4 +- webapp/src/vite-env.d.ts | 8 +- 21 files changed, 406 insertions(+), 352 deletions(-) diff --git a/webapp/src/App.vue b/webapp/src/App.vue index 8f46f32848..e2b793d269 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -1,11 +1,11 @@ diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index 646a50866a..62a5c66952 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -1,75 +1,63 @@ diff --git a/webapp/src/layouts/default/Default.vue b/webapp/src/layouts/default/Default.vue index 57ada2fdaa..37cef6d4ad 100644 --- a/webapp/src/layouts/default/Default.vue +++ b/webapp/src/layouts/default/Default.vue @@ -1,9 +1,9 @@ diff --git a/webapp/src/layouts/default/View.vue b/webapp/src/layouts/default/View.vue index 8e9e4143c3..68eb54f682 100644 --- a/webapp/src/layouts/default/View.vue +++ b/webapp/src/layouts/default/View.vue @@ -1,9 +1,9 @@ diff --git a/webapp/src/main.ts b/webapp/src/main.ts index f11674d696..27e2d0cefd 100644 --- a/webapp/src/main.ts +++ b/webapp/src/main.ts @@ -5,16 +5,16 @@ */ // Components -import App from './App.vue' +import App from "./App.vue"; // Composables -import { createApp } from 'vue' +import { createApp } from "vue"; // Plugins -import { registerPlugins } from '@/plugins' +import { registerPlugins } from "@/plugins"; -const app = createApp(App) +const app = createApp(App); -registerPlugins(app) +registerPlugins(app); -app.mount('#app') +app.mount("#app"); diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index a26ebe73b2..deafb17b90 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -5,16 +5,14 @@ */ // Plugins -import { loadFonts } from './webfontloader' -import vuetify from './vuetify' -import router from '../router' +import { loadFonts } from "./webfontloader"; +import vuetify from "./vuetify"; +import router from "../router"; // Types -import type { App } from 'vue' +import type { App } from "vue"; -export function registerPlugins (app: App) { - loadFonts() - app - .use(vuetify) - .use(router) +export function registerPlugins(app: App) { + loadFonts(); + app.use(vuetify).use(router); } diff --git a/webapp/src/plugins/vuetify.ts b/webapp/src/plugins/vuetify.ts index c276519a4a..50ab328af4 100644 --- a/webapp/src/plugins/vuetify.ts +++ b/webapp/src/plugins/vuetify.ts @@ -5,22 +5,22 @@ */ // Styles -import '@mdi/font/css/materialdesignicons.css' -import 'vuetify/styles' +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; // Composables -import { createVuetify } from 'vuetify' +import { createVuetify } from "vuetify"; // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides export default createVuetify({ - theme: { - themes: { - light: { - colors: { - primary: '#1867C0', - secondary: '#5CBBF6', + theme: { + themes: { + light: { + colors: { + primary: "#1867C0", + secondary: "#5CBBF6", + }, + }, }, - }, }, - }, -}) +}); diff --git a/webapp/src/plugins/webfontloader.ts b/webapp/src/plugins/webfontloader.ts index 0cf56148c1..e88214bd71 100644 --- a/webapp/src/plugins/webfontloader.ts +++ b/webapp/src/plugins/webfontloader.ts @@ -4,12 +4,14 @@ * webfontloader documentation: https://github.com/typekit/webfontloader */ - export async function loadFonts () { - const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') +export async function loadFonts() { + const webFontLoader = await import( + /* webpackChunkName: "webfontloader" */ "webfontloader" + ); - webFontLoader.load({ - google: { - families: ['Roboto:100,300,400,500,700,900&display=swap'], - }, - }) + webFontLoader.load({ + google: { + families: ["Roboto:100,300,400,500,700,900&display=swap"], + }, + }); } diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index 65353daa99..edf8ddb88b 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -1,26 +1,27 @@ // Composables -import { createRouter, createWebHistory } from 'vue-router' +import { createRouter, createWebHistory } from "vue-router"; const routes = [ - { - path: '/', - component: () => import('@/layouts/default/Default.vue'), - children: [ - { - path: '', - name: 'Home', - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), - }, - ], - }, -] + { + path: "/", + component: () => import("@/layouts/default/Default.vue"), + children: [ + { + path: "", + name: "Home", + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => + import(/* webpackChunkName: "home" */ "@/views/Home.vue"), + }, + ], + }, +]; const router = createRouter({ - history: createWebHistory(process.env.BASE_URL), - routes, -}) + history: createWebHistory(process.env.BASE_URL), + routes, +}); -export default router +export default router; diff --git a/webapp/src/stories/Button.stories.ts b/webapp/src/stories/Button.stories.ts index c414d4a7b0..7c9fb6e17a 100644 --- a/webapp/src/stories/Button.stories.ts +++ b/webapp/src/stories/Button.stories.ts @@ -1,19 +1,19 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; +import type { Meta, StoryObj } from "@storybook/vue3"; -import Button from './Button.vue'; +import Button from "./Button.vue"; // More on how to set up stories at: https://storybook.js.org/docs/vue/writing-stories/introduction const meta = { - title: 'Example/Button', - component: Button, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], - argTypes: { - size: { control: 'select', options: ['small', 'medium', 'large'] }, - backgroundColor: { control: 'color' }, - onClick: { action: 'clicked' }, - }, - args: { primary: false }, // default value + title: "Example/Button", + component: Button, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ["autodocs"], + argTypes: { + size: { control: "select", options: ["small", "medium", "large"] }, + backgroundColor: { control: "color" }, + onClick: { action: "clicked" }, + }, + args: { primary: false }, // default value } satisfies Meta; export default meta; @@ -24,29 +24,29 @@ type Story = StoryObj; * to learn how to use render functions. */ export const Primary: Story = { - args: { - primary: true, - label: 'Button', - }, + args: { + primary: true, + label: "Button", + }, }; export const Secondary: Story = { - args: { - primary: false, - label: 'Button', - }, + args: { + primary: false, + label: "Button", + }, }; export const Large: Story = { - args: { - label: 'Button', - size: 'large', - }, + args: { + label: "Button", + size: "large", + }, }; export const Small: Story = { - args: { - label: 'Button', - size: 'small', - }, + args: { + label: "Button", + size: "small", + }, }; diff --git a/webapp/src/stories/Button.vue b/webapp/src/stories/Button.vue index 2e1ee0ee22..c4c3b47c48 100644 --- a/webapp/src/stories/Button.vue +++ b/webapp/src/stories/Button.vue @@ -1,48 +1,51 @@ \ No newline at end of file + diff --git a/webapp/src/stories/Header.stories.ts b/webapp/src/stories/Header.stories.ts index 8626c1f529..2449cc1d59 100644 --- a/webapp/src/stories/Header.stories.ts +++ b/webapp/src/stories/Header.stories.ts @@ -1,42 +1,42 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; +import type { Meta, StoryObj } from "@storybook/vue3"; -import MyHeader from './Header.vue'; +import MyHeader from "./Header.vue"; const meta = { - /* 👇 The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ - title: 'Example/Header', - component: MyHeader, - render: (args: any) => ({ - components: { MyHeader }, - setup() { - return { args }; + /* 👇 The title prop is optional. + * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ + title: "Example/Header", + component: MyHeader, + render: (args: any) => ({ + components: { MyHeader }, + setup() { + return { args }; + }, + template: '', + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout + layout: "fullscreen", }, - template: '', - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout - layout: 'fullscreen', - }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ["autodocs"], } satisfies Meta; export default meta; type Story = StoryObj; export const LoggedIn: Story = { - args: { - user: { - name: 'Jane Doe', + args: { + user: { + name: "Jane Doe", + }, }, - }, }; export const LoggedOut: Story = { - args: { - user: null, - }, + args: { + user: null, + }, }; diff --git a/webapp/src/stories/Header.vue b/webapp/src/stories/Header.vue index b716db02b3..02fa7068aa 100644 --- a/webapp/src/stories/Header.vue +++ b/webapp/src/stories/Header.vue @@ -1,37 +1,68 @@ - diff --git a/webapp/src/stories/Introduction.mdx b/webapp/src/stories/Introduction.mdx index ff7fc71fbf..f1f9dd0e4c 100644 --- a/webapp/src/stories/Introduction.mdx +++ b/webapp/src/stories/Introduction.mdx @@ -1,12 +1,12 @@ -import { Meta } from '@storybook/blocks'; -import Code from './assets/code-brackets.svg'; -import Colors from './assets/colors.svg'; -import Comments from './assets/comments.svg'; -import Direction from './assets/direction.svg'; -import Flow from './assets/flow.svg'; -import Plugin from './assets/plugin.svg'; -import Repo from './assets/repo.svg'; -import StackAlt from './assets/stackalt.svg'; +import { Meta } from "@storybook/blocks"; +import Code from "./assets/code-brackets.svg"; +import Colors from "./assets/colors.svg"; +import Comments from "./assets/comments.svg"; +import Direction from "./assets/direction.svg"; +import Flow from "./assets/flow.svg"; +import Plugin from "./assets/plugin.svg"; +import Repo from "./assets/repo.svg"; +import StackAlt from "./assets/stackalt.svg"; @@ -184,14 +184,22 @@ We recommend building UIs with a [**component-driven**](https://componentdriven. Configure, customize, and extend - + direction In-depth guides Best practices from leading teams - + code GitHub project @@ -208,6 +216,6 @@ We recommend building UIs with a [**component-driven**](https://componentdriven.

diff --git a/webapp/src/stories/Page.stories.ts b/webapp/src/stories/Page.stories.ts index e998801581..f8b63823ef 100644 --- a/webapp/src/stories/Page.stories.ts +++ b/webapp/src/stories/Page.stories.ts @@ -1,20 +1,20 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; -import { within, userEvent } from '@storybook/testing-library'; -import MyPage from './Page.vue'; +import type { Meta, StoryObj } from "@storybook/vue3"; +import { within, userEvent } from "@storybook/testing-library"; +import MyPage from "./Page.vue"; const meta = { - title: 'Example/Page', - component: MyPage, - render: () => ({ - components: { MyPage }, - template: '', - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout - layout: 'fullscreen', - }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], + title: "Example/Page", + component: MyPage, + render: () => ({ + components: { MyPage }, + template: "", + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout + layout: "fullscreen", + }, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ["autodocs"], } satisfies Meta; export default meta; @@ -22,13 +22,13 @@ type Story = StoryObj; // More on interaction testing: https://storybook.js.org/docs/vue/writing-tests/interaction-testing export const LoggedIn: Story = { - play: async ({ canvasElement }: any) => { - const canvas = within(canvasElement); - const loginButton = await canvas.getByRole('button', { - name: /Log in/i, - }); - await userEvent.click(loginButton); - }, + play: async ({ canvasElement }: any) => { + const canvas = within(canvasElement); + const loginButton = await canvas.getByRole("button", { + name: /Log in/i, + }); + await userEvent.click(loginButton); + }, }; export const LoggedOut: Story = {}; diff --git a/webapp/src/stories/Page.vue b/webapp/src/stories/Page.vue index 6a6e5eb1a4..b233cd4681 100644 --- a/webapp/src/stories/Page.vue +++ b/webapp/src/stories/Page.vue @@ -1,73 +1,96 @@ diff --git a/webapp/src/stories/button.css b/webapp/src/stories/button.css index dc91dc7637..663afa404a 100644 --- a/webapp/src/stories/button.css +++ b/webapp/src/stories/button.css @@ -1,5 +1,5 @@ .storybook-button { - font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 700; border: 0; border-radius: 3em; diff --git a/webapp/src/stories/header.css b/webapp/src/stories/header.css index d9a70528a3..d418c42cef 100644 --- a/webapp/src/stories/header.css +++ b/webapp/src/stories/header.css @@ -1,5 +1,5 @@ .storybook-header { - font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 15px 20px; display: flex; diff --git a/webapp/src/stories/page.css b/webapp/src/stories/page.css index 098dad1185..32fc9ecdc1 100644 --- a/webapp/src/stories/page.css +++ b/webapp/src/stories/page.css @@ -1,5 +1,5 @@ .storybook-page { - font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 24px; padding: 48px 20px; diff --git a/webapp/src/views/Home.vue b/webapp/src/views/Home.vue index 7646ab78c7..e90d0318ba 100644 --- a/webapp/src/views/Home.vue +++ b/webapp/src/views/Home.vue @@ -1,7 +1,7 @@ diff --git a/webapp/src/vite-env.d.ts b/webapp/src/vite-env.d.ts index 323c78a6cd..899b0bc987 100644 --- a/webapp/src/vite-env.d.ts +++ b/webapp/src/vite-env.d.ts @@ -1,7 +1,7 @@ /// -declare module '*.vue' { - import type { DefineComponent } from 'vue' - const component: DefineComponent<{}, {}, any> - export default component +declare module "*.vue" { + import type { DefineComponent } from "vue"; + const component: DefineComponent<{}, {}, any>; + export default component; } From 94f58619e04d998925946bb8ca7683f819a80384 Mon Sep 17 00:00:00 2001 From: zklosko Date: Thu, 18 May 2023 22:54:25 -0400 Subject: [PATCH 18/70] chore: add vitest package --- webapp/package.json | 2 +- webapp/yarn.lock | 82 ++++++++++++++++++++++----------------------- 2 files changed, 42 insertions(+), 42 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 92ab02cb22..cc565db7e8 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -48,7 +48,7 @@ "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", - "vitest": "^0.31.0", + "vitest": "^0.31.1", "vue-tsc": "^1.2.0" } } diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 23c08c9cea..3bc045d7b0 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2182,7 +2182,7 @@ dependencies: "@types/chai" "*" -"@types/chai@*", "@types/chai@^4.3.4": +"@types/chai@*", "@types/chai@^4.3.5": version "4.3.5" resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.5.tgz#ae69bcbb1bebb68c4ac0b11e9d8ed04526b3562b" integrity sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== @@ -2620,45 +2620,45 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== -"@vitest/expect@0.31.0": - version "0.31.0" - resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-0.31.0.tgz#37ab35d4f75c12826c204f2a0290e0c2e5ef1192" - integrity sha512-Jlm8ZTyp6vMY9iz9Ny9a0BHnCG4fqBa8neCF6Pk/c/6vkUk49Ls6UBlgGAU82QnzzoaUs9E/mUhq/eq9uMOv/g== +"@vitest/expect@0.31.1": + version "0.31.1" + resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-0.31.1.tgz#db8cb5a14a91167b948f377b9d29442229c73747" + integrity sha512-BV1LyNvhnX+eNYzJxlHIGPWZpwJFZaCcOIzp2CNG0P+bbetenTupk6EO0LANm4QFt0TTit+yqx7Rxd1qxi/SQA== dependencies: - "@vitest/spy" "0.31.0" - "@vitest/utils" "0.31.0" + "@vitest/spy" "0.31.1" + "@vitest/utils" "0.31.1" chai "^4.3.7" -"@vitest/runner@0.31.0": - version "0.31.0" - resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-0.31.0.tgz#ca830405ae4c2744ae5fb7fbe85df81b56430ebc" - integrity sha512-H1OE+Ly7JFeBwnpHTrKyCNm/oZgr+16N4qIlzzqSG/YRQDATBYmJb/KUn3GrZaiQQyL7GwpNHVZxSQd6juLCgw== +"@vitest/runner@0.31.1": + version "0.31.1" + resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-0.31.1.tgz#fc06260d4824dde624abaeea1825d6a75bad4583" + integrity sha512-imWuc82ngOtxdCUpXwtEzZIuc1KMr+VlQ3Ondph45VhWoQWit5yvG/fFcldbnCi8DUuFi+NmNx5ehMUw/cGLUw== dependencies: - "@vitest/utils" "0.31.0" + "@vitest/utils" "0.31.1" concordance "^5.0.4" p-limit "^4.0.0" pathe "^1.1.0" -"@vitest/snapshot@0.31.0": - version "0.31.0" - resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-0.31.0.tgz#f59c4bcf0d03f1f494ee09286965e60a1e0cab64" - integrity sha512-5dTXhbHnyUMTMOujZPB0wjFjQ6q5x9c8TvAsSPUNKjp1tVU7i9pbqcKPqntyu2oXtmVxKbuHCqrOd+Ft60r4tg== +"@vitest/snapshot@0.31.1": + version "0.31.1" + resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-0.31.1.tgz#7fc3f1e48f0c4313e6cb795c17a2c1aa909a7d64" + integrity sha512-L3w5uU9bMe6asrNzJ8WZzN+jUTX4KSgCinEJPXyny0o90fG4FPQMV0OWsq7vrCWfQlAilMjDnOF9nP8lidsJ+g== dependencies: magic-string "^0.30.0" pathe "^1.1.0" pretty-format "^27.5.1" -"@vitest/spy@0.31.0": - version "0.31.0" - resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-0.31.0.tgz#98cb19046c0bd2673a73d6c90ee1533d1be82136" - integrity sha512-IzCEQ85RN26GqjQNkYahgVLLkULOxOm5H/t364LG0JYb3Apg0PsYCHLBYGA006+SVRMWhQvHlBBCyuByAMFmkg== +"@vitest/spy@0.31.1": + version "0.31.1" + resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-0.31.1.tgz#1c3b6a3eec4ce81b8889e19c7fac6a603b600b14" + integrity sha512-1cTpt2m9mdo3hRLDyCG2hDQvRrePTDgEJBFQQNz1ydHHZy03EiA6EpFxY+7ODaY7vMRCie+WlFZBZ0/dQWyssQ== dependencies: tinyspy "^2.1.0" -"@vitest/utils@0.31.0": - version "0.31.0" - resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.31.0.tgz#d0aae17150b95ebf7afdf4e5db8952ac21610ffa" - integrity sha512-kahaRyLX7GS1urekRXN2752X4gIgOGVX4Wo8eDUGUkTWlGpXzf5ZS6N9RUUS+Re3XEE8nVGqNyxkSxF5HXlGhQ== +"@vitest/utils@0.31.1": + version "0.31.1" + resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.31.1.tgz#b810a458b37ef16931ab0d384ce79a9500f34e07" + integrity sha512-yFyRD5ilwojsZfo3E0BnH72pSVSuLg2356cN1tCEe/0RtDzxTPYwOomIC+eQbot7m6DRy4tPZw+09mB7NkbMmA== dependencies: concordance "^5.0.4" loupe "^2.3.6" @@ -7364,7 +7364,7 @@ time-zone@^1.0.0: resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" integrity sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA== -tinybench@^2.4.0: +tinybench@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.5.0.tgz#4711c99bbf6f3e986f67eb722fed9cddb3a68ba5" integrity sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA== @@ -7697,10 +7697,10 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vite-node@0.31.0: - version "0.31.0" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.31.0.tgz#8794a98f21b0cf2394bfd2aaa5fc85d2c42be084" - integrity sha512-8x1x1LNuPvE2vIvkSB7c1mApX5oqlgsxzHQesYF7l5n1gKrEmrClIiZuOFbFDQcjLsmcWSwwmrWrcGWm9Fxc/g== +vite-node@0.31.1: + version "0.31.1" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.31.1.tgz#9fea18cbf9552ab262b969068249a8b8e7fb8b38" + integrity sha512-BajE/IsNQ6JyizPzu9zRgHrBwczkAs0erQf/JRpgTIESpKvNj9/Gd0vxX905klLkb0I0SJVCKbdrl5c6FnqYKA== dependencies: cac "^6.7.14" debug "^4.3.4" @@ -7729,19 +7729,19 @@ vite-plugin-vuetify@^1.0.0: optionalDependencies: fsevents "~2.3.2" -vitest@^0.31.0: - version "0.31.0" - resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.31.0.tgz#133e98f779aa81afbc7ee1fcb385a0c458b8c2c8" - integrity sha512-JwWJS9p3GU9GxkG7eBSmr4Q4x4bvVBSswaCFf1PBNHiPx00obfhHRJfgHcnI0ffn+NMlIh9QGvG75FlaIBdKGA== +vitest@^0.31.1: + version "0.31.1" + resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.31.1.tgz#e3d1b68a44e76e24f142c1156fe9772ef603e52c" + integrity sha512-/dOoOgzoFk/5pTvg1E65WVaobknWREN15+HF+0ucudo3dDG/vCZoXTQrjIfEaWvQXmqScwkRodrTbM/ScMpRcQ== dependencies: - "@types/chai" "^4.3.4" + "@types/chai" "^4.3.5" "@types/chai-subset" "^1.3.3" "@types/node" "*" - "@vitest/expect" "0.31.0" - "@vitest/runner" "0.31.0" - "@vitest/snapshot" "0.31.0" - "@vitest/spy" "0.31.0" - "@vitest/utils" "0.31.0" + "@vitest/expect" "0.31.1" + "@vitest/runner" "0.31.1" + "@vitest/snapshot" "0.31.1" + "@vitest/spy" "0.31.1" + "@vitest/utils" "0.31.1" acorn "^8.8.2" acorn-walk "^8.2.0" cac "^6.7.14" @@ -7754,10 +7754,10 @@ vitest@^0.31.0: picocolors "^1.0.0" std-env "^3.3.2" strip-literal "^1.0.1" - tinybench "^2.4.0" + tinybench "^2.5.0" tinypool "^0.5.0" vite "^3.0.0 || ^4.0.0" - vite-node "0.31.0" + vite-node "0.31.1" why-is-node-running "^2.2.2" void-elements@^3.1.0: From 1539f3716458640e8be3e915ee7e6838ec6a2c04 Mon Sep 17 00:00:00 2001 From: zklosko Date: Thu, 18 May 2023 22:59:01 -0400 Subject: [PATCH 19/70] !fix ci: revert to prior working github actions file --- .github/workflows/webapp.yml | 50 +++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 9 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index bd21353b20..229cc2ba40 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -19,15 +19,14 @@ concurrency: cancel-in-progress: true jobs: - webapp: + lint: + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: include: - - os: [ubuntu-20.04, ubuntu-22.04] - node-version: "18" - runs-on: ${{ matrix.os }} - + steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -36,13 +35,46 @@ jobs: - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp - - name: Lint with Eslint + - name: Lint run: yarn lint working-directory: webapp - - name: Formatting check with Prettier + + prettier: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - node-version: "18.12.x" + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install packages + run: yarn install --frozen-lockfile + working-directory: webapp + - name: Lint run: yarn prettier-check working-directory: webapp - - name: Test build - run: yarn build + + test-build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - node-version: "18.12.x" + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install packages + run: yarn install --frozen-lockfile working-directory: webapp - \ No newline at end of file + - name: Lint + run: yarn build + working-directory: webapp \ No newline at end of file From 9eae2960c35e30d6e8f412ceddd43d6a5ee2258f Mon Sep 17 00:00:00 2001 From: zklosko Date: Thu, 18 May 2023 23:24:07 -0400 Subject: [PATCH 20/70] ci: added basic cypress setup --- .github/workflows/webapp.yml | 38 +++++++++++++++++----------- webapp/cypress.config.ts | 9 +++++++ webapp/cypress/e2e/hello.cy.ts | 9 +++++++ webapp/cypress/fixtures/example.json | 5 ++++ webapp/cypress/support/commands.ts | 37 +++++++++++++++++++++++++++ webapp/cypress/support/e2e.ts | 20 +++++++++++++++ webapp/package.json | 4 ++- 7 files changed, 106 insertions(+), 16 deletions(-) create mode 100644 webapp/cypress.config.ts create mode 100644 webapp/cypress/e2e/hello.cy.ts create mode 100644 webapp/cypress/fixtures/example.json create mode 100644 webapp/cypress/support/commands.ts create mode 100644 webapp/cypress/support/e2e.ts diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index 229cc2ba40..ace7badad7 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -20,18 +20,15 @@ concurrency: jobs: lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: fail-fast: false - matrix: - include: - - node-version: "18" steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: "18" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp @@ -43,35 +40,46 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: false - matrix: - include: - - node-version: "18.12.x" steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: "18" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp - - name: Lint - run: yarn prettier-check + - name: Check code with Prettier + run: yarn prettier:check + working-directory: webapp + + cypress: + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: "18" + - name: Install packages + run: yarn install --frozen-lockfile + working-directory: webapp + - name: Run tests with Cypress + run: yarn cypress:run working-directory: webapp test-build: runs-on: ubuntu-latest strategy: fail-fast: false - matrix: - include: - - node-version: "18.12.x" steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: "18" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp diff --git a/webapp/cypress.config.ts b/webapp/cypress.config.ts new file mode 100644 index 0000000000..17161e32e0 --- /dev/null +++ b/webapp/cypress.config.ts @@ -0,0 +1,9 @@ +import { defineConfig } from "cypress"; + +export default defineConfig({ + e2e: { + setupNodeEvents(on, config) { + // implement node event listeners here + }, + }, +}); diff --git a/webapp/cypress/e2e/hello.cy.ts b/webapp/cypress/e2e/hello.cy.ts new file mode 100644 index 0000000000..0f95330277 --- /dev/null +++ b/webapp/cypress/e2e/hello.cy.ts @@ -0,0 +1,9 @@ +describe('template spec', () => { + it('passes', () => { + cy.visit('https://example.cypress.io') + + cy.contains('type').click() + + cy.url().should('include', '/commands/actions') + }) +}) \ No newline at end of file diff --git a/webapp/cypress/fixtures/example.json b/webapp/cypress/fixtures/example.json new file mode 100644 index 0000000000..02e4254378 --- /dev/null +++ b/webapp/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/webapp/cypress/support/commands.ts b/webapp/cypress/support/commands.ts new file mode 100644 index 0000000000..698b01a42c --- /dev/null +++ b/webapp/cypress/support/commands.ts @@ -0,0 +1,37 @@ +/// +// *********************************************** +// This example commands.ts shows you how to +// create various custom commands and overwrite +// existing commands. +// +// For more comprehensive examples of custom +// commands please read more here: +// https://on.cypress.io/custom-commands +// *********************************************** +// +// +// -- This is a parent command -- +// Cypress.Commands.add('login', (email, password) => { ... }) +// +// +// -- This is a child command -- +// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) +// +// +// -- This is a dual command -- +// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) +// +// +// -- This will overwrite an existing command -- +// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) +// +// declare global { +// namespace Cypress { +// interface Chainable { +// login(email: string, password: string): Chainable +// drag(subject: string, options?: Partial): Chainable +// dismiss(subject: string, options?: Partial): Chainable +// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable +// } +// } +// } \ No newline at end of file diff --git a/webapp/cypress/support/e2e.ts b/webapp/cypress/support/e2e.ts new file mode 100644 index 0000000000..f80f74f8e1 --- /dev/null +++ b/webapp/cypress/support/e2e.ts @@ -0,0 +1,20 @@ +// *********************************************************** +// This example support/e2e.ts is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands' + +// Alternatively you can use CommonJS syntax: +// require('./commands') \ No newline at end of file diff --git a/webapp/package.json b/webapp/package.json index cc565db7e8..7a75503d6b 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -9,7 +9,9 @@ "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "prettier": "prettier --write src", - "prettier-check": "prettier --check src" + "prettier:check": "prettier --check src", + "cypress:open": "cypress open", + "cypress:run": "cypress run" }, "dependencies": { "@mdi/font": "7.0.96", From 066a4bf7938058c5a0bdbaa8aaf661bd21a93614 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 19 May 2023 12:53:08 -0400 Subject: [PATCH 21/70] chore: adding po files from legacy --- webapp/src/locale/po/Makefile | 41 + webapp/src/locale/po/README.md | 10 + .../locale/po/cs_CZ/LC_MESSAGES/libretime.po | 4643 +++++++++++++++ .../locale/po/de_AT/LC_MESSAGES/libretime.po | 4624 +++++++++++++++ .../locale/po/de_DE/LC_MESSAGES/libretime.po | 4671 +++++++++++++++ .../locale/po/el_GR/LC_MESSAGES/libretime.po | 4611 +++++++++++++++ .../locale/po/en_CA/LC_MESSAGES/libretime.po | 4610 +++++++++++++++ .../locale/po/en_GB/LC_MESSAGES/libretime.po | 4875 ++++++++++++++++ .../locale/po/en_US/LC_MESSAGES/libretime.po | 4610 +++++++++++++++ .../locale/po/es_ES/LC_MESSAGES/libretime.po | 5060 ++++++++++++++++ .../locale/po/fr_FR/LC_MESSAGES/libretime.po | 5151 +++++++++++++++++ .../locale/po/hr_HR/LC_MESSAGES/libretime.po | 4643 +++++++++++++++ .../locale/po/hu_HU/LC_MESSAGES/libretime.po | 5030 ++++++++++++++++ .../locale/po/it_IT/LC_MESSAGES/libretime.po | 4513 +++++++++++++++ .../locale/po/ja_JP/LC_MESSAGES/libretime.po | 4610 +++++++++++++++ .../locale/po/ko_KR/LC_MESSAGES/libretime.po | 4517 +++++++++++++++ webapp/src/locale/po/locale.gen | 21 + .../locale/po/nl_NL/LC_MESSAGES/libretime.po | 4671 +++++++++++++++ .../locale/po/pl_PL/LC_MESSAGES/libretime.po | 4529 +++++++++++++++ .../locale/po/pt_BR/LC_MESSAGES/libretime.po | 4529 +++++++++++++++ .../locale/po/ru_RU/LC_MESSAGES/libretime.po | 5135 ++++++++++++++++ .../locale/po/sr_RS/LC_MESSAGES/libretime.po | 4609 +++++++++++++++ .../po/sr_RS@latin/LC_MESSAGES/libretime.po | 4606 +++++++++++++++ .../locale/po/tr_TR/LC_MESSAGES/libretime.po | 4235 ++++++++++++++ .../locale/po/uk_UA/LC_MESSAGES/libretime.po | 4669 +++++++++++++++ .../locale/po/zh_CN/LC_MESSAGES/libretime.po | 4609 +++++++++++++++ 26 files changed, 107832 insertions(+) create mode 100644 webapp/src/locale/po/Makefile create mode 100644 webapp/src/locale/po/README.md create mode 100644 webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/locale.gen create mode 100644 webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po create mode 100644 webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po diff --git a/webapp/src/locale/po/Makefile b/webapp/src/locale/po/Makefile new file mode 100644 index 0000000000..13a33033dc --- /dev/null +++ b/webapp/src/locale/po/Makefile @@ -0,0 +1,41 @@ +.PHONY: .locale-update build +.ONESHELL: + +all: clean build + +SHELL = bash + +DOMAIN = libretime +ISSUE_TRACKER = https://github.com/libretime/libretime/issues +PO_FILE = $(DOMAIN).po +PO_FILES = $(wildcard */LC_MESSAGES/$(PO_FILE)) +MO_FILES = $(PO_FILES:.po=.mo) + +SRC = application build public + +XGETTEXT_ARGS = --default-domain=$(DOMAIN) \ + --msgid-bugs-address=$(ISSUE_TRACKER) \ + --language=php \ + --from-code=UTF-8 \ + --no-wrap \ + --sort-by-file + +MSGMERGE_ARGS = --no-fuzzy-matching \ + --update \ + --no-wrap \ + --sort-by-file + +update: + cd .. + find $(SRC) -name "*.phtml" -o -name "*.php" -type f -print0 | xargs -0 xgettext $(XGETTEXT_ARGS) + sed -i 's/CHARSET/UTF-8/g' $(PO_FILE) + find ./locale -name $(PO_FILE) -exec msgmerge $(MSGMERGE_ARGS) "{}" $(PO_FILE) \; + rm $(PO_FILE) + +%.mo: %.po + msgfmt $< -o $@ + +build: $(MO_FILES) + +clean: + @rm -f $(MO_FILES) diff --git a/webapp/src/locale/po/README.md b/webapp/src/locale/po/README.md new file mode 100644 index 0000000000..34b7649e82 --- /dev/null +++ b/webapp/src/locale/po/README.md @@ -0,0 +1,10 @@ +# Legacy locales + +To add a new locale, make sure to add/edit the following files: + +- `legacy/application/models/Locale.php` +- `legacy/locale//LC_MESSAGES/libretime.po` +- `legacy/public/js/datatables/i18n/.txt` +- `legacy/public/js/plupload/i18n/.js` + +The `legacy/application/controllers/LocaleController.php` contains additional translations loaded by jquery i18n `$.i18n` and used with `$.i18n._`. diff --git a/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po b/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..9db1dc4436 --- /dev/null +++ b/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po @@ -0,0 +1,4643 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Iva Heilova , 2015 +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Czech (Czech Republic)\n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Rok %s musí být v rozmezí 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s - %s - %s není platné datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s není platný čas" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalendář" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Uživatelé" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streamy" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Stav" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Historie odvysílaného" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Historie nastavení" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Statistiky poslechovost" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Nápověda" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Začínáme" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Návod k obsluze" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Nemáte udělen přístup k tomuto zdroji." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Nemáte udělen přístup k tomuto zdroji. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Soubor neexistuje v %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Špatný požadavek. Žádný 'mode' parametr neprošel." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Špatný požadavek. 'Mode' parametr je neplatný." + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Nemáte oprávnění k odpojení zdroje." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Neexistuje zdroj připojený k tomuto vstupu." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Nemáte oprávnění ke změně zdroje." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nenalezen" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Něco je špatně." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Náhled" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Přidat do Playlistu" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Přidat do chytrého bloku" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Smazat" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Stáhnout" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplikátní Playlist" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Žádná akce není k dispozici" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Nemáte oprávnění odstranit vybrané položky." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopie %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio přehrávač" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Nahrávání:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Mastr stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nic není naplánované" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Stávající vysílání:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Stávající" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Používáte nejnovější verzi" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nová verze k dispozici: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Přidat do aktuálního playlistu" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Přidat do aktuálního chytrého bloku" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Přidat 1 položku" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Přidat %s položek" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Můžete přidat skladby pouze do chytrých bloků." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Prosím vyberte si pozici kurzoru na časové ose." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Přidat" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Upravit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Odstranit" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Upravit metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Přidat k vybranému vysílání" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Vyberte" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Vyberte tuto stránku" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Zrušte označení této stránky" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Zrušte zaškrtnutí všech" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Jste si jisti, že chcete smazat vybranou položku(y)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Naplánováno" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Název" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Tvůrce" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Rychlost přenosu" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Skladatel" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Autorská práva" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Zakódováno" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Žánr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Označení " + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Jazyk" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Naposledy změněno" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Naposledy vysíláno" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Délka" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Nálada" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Vlastník" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Opakovat Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Vzorkovací rychlost" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Číslo stopy" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Nahráno" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Internetové stránky" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Rok " + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Nahrávání ..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Vše" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Soubory" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisty" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Chytré bloky" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Webové streamy" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Neznámý typ: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Jste si jisti, že chcete smazat vybranou položku?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Probíhá nahrávání..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Získávání dat ze serveru..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Chybný kód: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Chyba msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Vstup musí být kladné číslo" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Vstup musí být číslo" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Vstup musí být ve formátu: rrrr-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Vstup musí být ve formátu: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Otevřít Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "prosím nastavte čas '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamický blok není možno ukázat předem" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Omezeno na: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist uložen" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist zamíchán" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Počítat posluchače %s : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Připomenout za 1 týden" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Nikdy nepřipomínat" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ano, pomoc Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Obrázek musí být buď jpg, jpeg, png nebo gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Chytré bloky promíchány" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Chytrý blok generován a kritéria uložena" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Chytrý blok uložen" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Zpracovává se..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Vyberte modifikátor" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "obsahuje" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "neobsahuje" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "je" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "není" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "začíná s" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "končí s" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "je větší než" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "je menší než" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "se pohybuje v rozmezí" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generovat" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Vyberte složku k uložení" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Vyberte složku ke sledování" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Jste si jisti, že chcete změnit složku úložiště ?\n" +"Tímto odstraníte soubry z vaší Airtime knihovny!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Správa složek médií" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Jste si jisti, že chcete odstranit sledovanou složku?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Tato cesta není v současné době dostupná." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Připojeno k streamovacímu serveru" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Stream je vypnut" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Získávání informací ze serveru..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Nelze se připojit k streamovacímu serveru" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Upozornění: Nelze změnit toto pole v průběhu vysílání programu" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Žádný výsledek nenalezen" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Ukázka vysílání již neexistuje!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Varování: Vysílání nemohou být znovu linkována." + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show." + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. " + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Vysílání" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Vysílání je prázdné" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Získávání dat ze serveru ..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Toto vysílání nemá naplánovaný obsah." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Toto vysílání není zcela vyplněno." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Leden" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Únor" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Březen" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Duben" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Květen" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Červen" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Červenec" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Srpen" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Září" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Říjen" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Listopad" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Prosinec" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Leden" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Únor" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Březen" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Duben" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Červen" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Červenec" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Srpen" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Září" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Říjen" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Listopad" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Prosinec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Neděle" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Pondělí" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Úterý" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Středa" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Čtvrtek" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Pátek" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Sobota" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Ne" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Po" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Út" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "St" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Čt" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Pá" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "So" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Zrušit aktuální vysílání?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Zastavit nahrávání aktuálního vysílání?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "OK" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Obsah vysílání" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Odstranit veškerý obsah?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Odstranit vybranou položku(y)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Začátek" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Konec" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Trvání" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue in" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Pozvolné zesilování " + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Pozvolné zeslabování" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Vysílání prázdné" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Nahrávání z Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Náhled stopy" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Nelze naplánovat mimo vysílání." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Posunutí 1 položky" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Posunutí %s položek" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Uložit" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Zrušit" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Vybrat vše" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Nic nevybrat" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Odebrat vybrané naplánované položky" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Přejít na aktuálně přehrávanou skladbu" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Zrušit aktuální vysílání" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Otevřít knihovnu pro přidání nebo odebrání obsahu" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Přidat / Odebrat obsah" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "používá se" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Podívat se" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Otevřít" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrátor" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Host" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Hosté mohou dělat následující:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Zobrazit plán" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Zobrazit obsah vysílání" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ může dělat následující:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Spravovat přidělený obsah vysílání" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media souborů" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Vytvořit playlisty, smart bloky a webstreamy" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Spravovat obsah vlastní knihovny" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Zobrazit a spravovat obsah vysílání" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Plán ukazuje" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Spravovat celý obsah knihovny" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Správci mohou provést následující:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Správa předvoleb" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Správa uživatelů" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Správa sledovaných složek" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Odeslat zpětnou vazbu" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Zobrazit stav systému" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Přístup playout historii" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Zobrazit posluchače statistiky" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Zobrazit / skrýt sloupce" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Z {z} do {do}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "rrrr-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Ne" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Po" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Út" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "St" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Čt" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Pá" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "So" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Zavřít" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hodina" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuta" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Hotovo" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Vyberte soubory" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Přidat soubory." + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Zastavit Nahrávání" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Začít nahrávat" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Přidat soubory" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Nahráno %d / %d souborů" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "Nedostupné" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Soubory přetáhněte zde." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Chybná přípona souboru" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Chybná velikost souboru." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Chybný součet souborů." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Chyba Init." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Chyba HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Chyba zabezpečení." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Obecná chyba. " + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "CHyba IO." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Soubor: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d souborů ve frontě" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Soubor: %f , velikost: %s , max. velikost souboru:% m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Přidané URL může být špatné nebo neexistuje" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Chyba: Soubor je příliš velký: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Chyba: Neplatná přípona souboru: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Nastavit jako default" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Vytvořit vstup" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Editovat historii nahrávky" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Žádné vysílání" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Kopírovat %s řádků %s do schránky" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Popis" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Povoleno" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Vypnuto" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs.
More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Prohlížíte si starší verzi %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Nemůžete přidávat skladby do dynamických bloků." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemáte oprávnění odstranit vybrané %s (s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Můžete pouze přidat skladby do chytrého bloku." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Playlist bez názvu" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Chytrý block bez názvu" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Neznámý Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preference aktualizovány." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Nastavení streamu aktualizováno." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "cesta by měla být specifikována" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problém s Liquidsoap ..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Znovu spustit vysílaní %s od %s na %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Vybrat kurzor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Odstranit kurzor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "vysílání neexistuje" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Uživatel byl úspěšně přidán!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Uživatel byl úspěšně aktualizován!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Nastavení úspěšně aktualizováno!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Webstream bez názvu" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream uložen." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Neplatná forma hodnot." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Zadán neplatný znak " + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Den musí být zadán" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Čas musí být zadán" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Použij %s ověření pravosti:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Použít ověření uživatele:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Uživatelské jméno" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Uživatelské heslo" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Uživatelské jméno musí být zadáno." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Heslo musí být zadáno." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Nahráno z Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Vysílat znovu?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dny" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Typ opakování:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "týdně" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "každé 2 týdny" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "každé 3 týdny" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "každé 4 týdny" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "měsíčně" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Vyberte dny:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Opakovat:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "den v měsíci" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "den v týdnu" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum ukončení:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Nekončí?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Datum ukončení musí být po počátečním datumu" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Prosím vyberte den opakování" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Barva pozadí:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Barva textu:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Název:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Pořad bez názvu" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Žánr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Popis:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%hodnota%' nesedí formát času 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Doba trvání:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Časová zó" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Opakovat?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Nelze vytvořit vysílání v minulosti" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Datum/čas ukončení nemůže být v minulosti" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Nelze mít dobu trvání < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Nelze nastavit dobu trvání 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Nelze mít dobu trvání delší než 24 hodin" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Nelze nastavit překrývající se vysílání." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Hledat uživatele:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Uživatelské jméno:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Heslo:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Ověřit heslo:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Jméno:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Příjmení:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobilní telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Typ uživatele:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Přihlašovací jméno není jedinečné." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum zahájení:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Název:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Tvůrce:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Rok:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Označení:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Skladatel:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Nálada:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Autorská práva:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC číslo:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Internetová stránka:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jazyk:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Čas začátku" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Čas konce" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Časové pásmo uživatelského rozhraní" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Název stanice" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo stanice:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Defoltní nastavení doby plynulého přechodu" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Přednastavení Fade In:" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Přednastavení Fade Out:" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Časové pásmo stanice" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Týden začíná" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Přihlásit" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Heslo" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Potvrďte nové heslo" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Potvrzené heslo neodpovídá vašemu heslu." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Uživatelské jméno" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Obnovit heslo" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Právě se přehrává" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Všechna má vysílání:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Vyberte kritéria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Kvalita (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Vzorkovací frekvence (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hodiny" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuty" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "položka" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamický" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statický" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generovat obsah playlistu a uložit kritéria" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Promíchat obsah playlistu" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Promíchat" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nemůže být prázdný nebo menší než 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nemůže být větší než 24 hodin" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Hodnota by měla být celé číslo" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je max hodnota položky, kterou lze nastavit" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Musíte vybrat kritéria a modifikátor" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Délka' by měla být ve formátu '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Hodnota musí být číslo" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Hodnota by měla být menší než 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Hodnota by měla mít méně znaků než %s" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Hodnota nemůže být prázdná" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Označení streamu:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Umělec - Název" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Vysílání - Umělec - Název" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Název stanice - Název vysílání" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Povolit Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifikátor" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Povoleno:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Typ streamu:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit frekvence:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Typ služby:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanály:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Přípojný bod" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Jméno" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Importovaná složka:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Sledované složky:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Neplatný adresář" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Hodnota je požadována a nemůže zůstat prázdná" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%hodnota%' je více než %max% znaků dlouhá" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Hesla se neshodují" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Heslo onboveno" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in a cue out jsou prázné." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Nelze nastavit delší cue out než je délka souboru." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Nelze nastavit větší cue in než cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Nelze nastavit menší cue out než je cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Vyberte zemi" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Nemůže přesunout položky z linkovaných vysílání" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Program, který si prohlížíte, je zastaralý!" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Program který si prohlížíte je zastaralý!" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Program který si prohlížíte je zastaralý! " + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nemáte povoleno plánovat vysílání %s ." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Nemůžete přidávat soubory do nahrávaného vysílání." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Vysílání %s skončilo a nemůže být nasazeno." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Vysílání %s bylo již dříve aktualizováno!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Vybraný soubor neexistuje!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Vysílání může mít max. délku 24 hodin." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Nelze naplánovat překrývající se vysílání.\n" +"Poznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Znovu odvysílat %s od %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Délka musí být větší než 0 minut" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Délka by měla mít tvar \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL by měla mít tvar \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL by měla mít 512 znaků nebo méně" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Nenalezen žádný MIME typ pro webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Název webstreamu nemůže být prázdný" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Nelze zpracovat XSPF playlist" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Nelze zpracovat PLS playlist" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Nelze zpracovat M3U playlist" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Neplatný webstream - tento vypadá jako stažení souboru." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Neznámý typ streamu: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Soubor s nahrávkou neexistuje" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Zobrazit nahraný soubor metadat" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Upravit vysílání" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Přístup odepřen" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Nelze přetáhnout opakujícící se vysílání" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Nelze přesunout vysílání z minulosti" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Nelze přesunout vysílání do minulosti" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Musíte počkat 1 hodinu před dalším vysíláním." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Stopa" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Přehráno" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " do " + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s je distribuován pod %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s obsahuje vložený sledovaný adresář: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s neexistuje v seznamu sledovaných." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s je již sledován." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s je vložený do stávajícího sledovaného adresáře: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s není platný adresář." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')." + +#~ msgid "(Required)" +#~ msgstr "(Požadováno)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Webová stránka vaší rádiové stanice)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(pouze pro ověřovací účely, nebude zveřejněno)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "O aplikaci" + +#~ msgid "Add New Field" +#~ msgstr "Přidat nové pole" + +#~ msgid "Add more elements" +#~ msgstr "Přidat elementy" + +#~ msgid "Add this show" +#~ msgstr "Přidat toto vysílání" + +#~ msgid "Additional Options" +#~ msgstr "Dodatečné možnosti" + +#~ msgid "Admin Password" +#~ msgstr "Administrátorské heslo" + +#~ msgid "Admin User" +#~ msgstr "Administrátorské jméno" + +#~ msgid "Advanced Search Options" +#~ msgstr "Rozšířené možnosti hledání" + +#~ msgid "All rights are reserved" +#~ msgstr "Všechna práva jsou vyhrazena" + +#~ msgid "Audio Track" +#~ msgstr "Audio stopa" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s." + +#~ msgid "Choose Days:" +#~ msgstr "Vyberte dny:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Vybrat instanci show" + +#~ msgid "Choose folder" +#~ msgstr "Vyberte soubor" + +#~ msgid "City:" +#~ msgstr "Město:" + +#~ msgid "Clear" +#~ msgstr "Vymazat" + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Klikněte na box níže pro podporu vaší stanice na %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný " + +#~ msgid "Country:" +#~ msgstr "Stát:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Vytvořit soubor přehledu nastavení" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Vytvořit vzor přehledu logů" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons označení" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Nezasahujte do díla" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons nekomerční" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons nekomerční Nezasahujte do díla" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons nekomerční Zachovejte licenci" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Zachovejte licenci" + +#~ msgid "Cue In: " +#~ msgstr "Cue in: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktuálně importovaný soubor:" + +#~ msgid "Cursor" +#~ msgstr "Kurzor" + +#~ msgid "Default Length:" +#~ msgstr "Defaultní délka:" + +#~ msgid "Default License:" +#~ msgstr "Výchozí licence:" + +#~ msgid "Disk Space" +#~ msgstr "Velikost disku" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamický Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Kritéria dynamickeho Smart Blocku: " + +#~ msgid "Empty playlist content" +#~ msgstr "Prázdný playlist" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Rozšířit dynamický blok" + +#~ msgid "Expand Static Block" +#~ msgstr "Rozšířit statický blok" + +#~ msgid "Fade in: " +#~ msgstr "Zesílit: " + +#~ msgid "Fade out: " +#~ msgstr "Zeslabit: " + +#~ msgid "File Path:" +#~ msgstr "Cesta souboru:" + +#~ msgid "File Summary" +#~ msgstr "Shrnutí souboru" + +#~ msgid "File Summary Templates" +#~ msgstr "Vzory přehledu souboru" + +#~ msgid "File import in progress..." +#~ msgstr "Probíhá importování souboru ..." + +#~ msgid "Filter History" +#~ msgstr "Filtrovat historii" + +#~ msgid "Find" +#~ msgstr "Najdi" + +#~ msgid "Find Shows" +#~ msgstr "Najít vysílání" + +#~ msgid "First Name" +#~ msgstr "Jméno" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Pro více informací si prosím přečtěte %s Airtime manuál %s" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Metadata Icecast Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Pokud je Airtime za routerem nebo firewall, budete možná muset nastavit přesměrování portu a tato informace pole budou nesprávná. V tomto případě budete muset ručně aktualizovat pole tak, aby ukazovalo správně host/port/mount, do kterých se Váš DJ potřebuje připojit. Povolené rozpětí je mezi 1024 a 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC číslo" + +#~ msgid "Last Name" +#~ msgstr "Příjmení" + +#~ msgid "Length:" +#~ msgstr "Délka:" + +#~ msgid "Limit to " +#~ msgstr "Omezit na " + +#~ msgid "Listen" +#~ msgstr "Poslech" + +#~ msgid "Live Stream Input" +#~ msgstr "Vložení Live Streamu" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Přehled logu" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Vzory přehledu logů" + +#~ msgid "Logout" +#~ msgstr "Odhlásit " + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Stránka, kterou hledáte, neexistuje!" + +#~ msgid "Manage Users" +#~ msgstr "Správa uživatelů" + +#~ msgid "Master Source" +#~ msgstr "Hlavní zdroj" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount nemůže být prázdný s Icecast serverem." + +#~ msgid "New File Summary Template" +#~ msgstr "Nový vzor přehledu souboru" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nový vzor přehledu logů" + +#~ msgid "New User" +#~ msgstr "Nový uživatel" + +#~ msgid "New password" +#~ msgstr "Nové heslo" + +#~ msgid "Next:" +#~ msgstr "Další:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nový vzor přehledu souboru" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Vzory přehledu logů nejsou" + +#~ msgid "No open playlist" +#~ msgstr "Neotevřený playlist" + +#~ msgid "No webstream" +#~ msgstr "Žádný webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Jsou povolena pouze čísla." + +#~ msgid "Original Length:" +#~ msgstr "Původní délka:" + +#~ msgid "Page not found!" +#~ msgstr "Stránka nebyla nalezena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Přehrát" + +#~ msgid "Playlist Contents: " +#~ msgstr "Obsah Playlistu: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže." + +#~ msgid "Please upgrade to " +#~ msgstr "Prosím aktualizujte na " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port nemůže být prázdný." + +#~ msgid "Previous:" +#~ msgstr "Předchozí:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Manažeři může dělat následující:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Podpořit mou stanici na %s" + +#~ msgid "Register Airtime" +#~ msgstr "Registrovat Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Odebrat sledovaný adresář" + +#~ msgid "Repeat Days:" +#~ msgstr "Opakovat dny:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Vzorová frekvence:" + +#~ msgid "Save playlist" +#~ msgstr "Uložit playlist" + +#~ msgid "Select stream:" +#~ msgstr "Vyberte stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server nemůže být prázdný." + +#~ msgid "Set" +#~ msgstr "Nastavit" + +#~ msgid "Set Cue In" +#~ msgstr "Nastavit Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Nstavit Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Nastavit defolní šablnu" + +#~ msgid "Share" +#~ msgstr "Sdílet" + +#~ msgid "Show Source" +#~ msgstr "Zobrazit zdroj" + +#~ msgid "Show Summary" +#~ msgstr "Shrnutí show" + +#~ msgid "Show Waveform" +#~ msgstr "UKázat Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Zobrazit co posílám " + +#~ msgid "Shuffle playlist" +#~ msgstr "Promíchat Playlist" + +#~ msgid "Source Streams" +#~ msgstr "Zdrojové Streamy" + +#~ msgid "Static Smart Block" +#~ msgstr "Statický Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Obsah statistického Smart Blocku: " + +#~ msgid "Station Description:" +#~ msgstr "Popis stanice:" + +#~ msgid "Station Web Site:" +#~ msgstr "Webová stránka stanice:" + +#~ msgid "Stop" +#~ msgstr "Zastavit" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Nastavení Streamu" + +#~ msgid "Stream URL:" +#~ msgstr "URL streamu:" + +#~ msgid "Stream URL: " +#~ msgstr "URL streamu: " + +#~ msgid "Style" +#~ msgstr "Styl" + +#~ msgid "Support Feedback" +#~ msgstr "Technická podpora" + +#~ msgid "Support setting updated." +#~ msgstr "Podpora nastavení aktualizována." + +#~ msgid "Terms and Conditions" +#~ msgstr "Pravidla a podmínky" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Požadované délky bloku nebude dosaženo pokud Airtime nenalezne dostatek unikátních skladeb, které odpovídají vašim kritériím. Povolte tuto možnost, pokud chcete, aby byly skladby přidány do chytrého bloku vícekrát." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Práce je ve veřejné doméně" + +#~ msgid "This version is no longer supported." +#~ msgstr "Tato verze již není podporována." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Tato verze bude brzy zastaralá." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Skladba:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Opište znaky, které vidíte na obrázku níže." + +#~ msgid "Update Required" +#~ msgstr "Nutná aktualizace" + +#~ msgid "Update show" +#~ msgstr "Aktualizace vysílání" + +#~ msgid "User Type" +#~ msgstr "Typ uživatele" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Vítejte v %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'." + +#~ msgid "What" +#~ msgstr "Co" + +#~ msgid "When" +#~ msgstr "Kdy" + +#~ msgid "Who" +#~ msgstr "Kdo" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nesledujete žádné mediální soubory." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Musíte souhlasit se zásadami ochrany osobních údajů." + +#~ msgid "Your trial expires in" +#~ msgstr "Váše zkušební období vyprší " + +#~ msgid "and" +#~ msgstr "a" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "soubory splňují kritéria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max. hlasitost" + +#~ msgid "mute" +#~ msgstr "vypnout zvuk" + +#~ msgid "next" +#~ msgstr "další" + +#~ msgid "or" +#~ msgstr "nebo" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "přehrát" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "prosím nastavte čas v sekundách '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "předchozí" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "zapnout zvuk" diff --git a/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po b/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..4a0d52cfc1 --- /dev/null +++ b/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po @@ -0,0 +1,4624 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# hoerich , 2014 +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-10-17 08:09+0000\n" +"Last-Translator: Kyle Robbertze \n" +"Language-Team: German (Austria) \n" +"Language: de_AT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s ist kein gültiges Datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s-%s-%s ist kein gültiger Zeitpunkt" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalender" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Benutzer" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout Verlauf" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Verlaufsvorlagen" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Hörerstatistiken" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Hilfe" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Kurzanleitung" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Benutzerhandbuch" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig." + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Mit diesem Eingang ist keine Quelle verbunden." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nicht gefunden" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Etwas ist falsch gelaufen." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Vorschau" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Zu Playlist hinzufügen" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Hinzufügen zu Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Löschen" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Herunterladen" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Playlist duplizieren" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Keine Aktion verfügbar" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopie von %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Aufzeichnung:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nichts geplant" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Aktuelle Sendung:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Aktuell" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Sie verwenden die aktuellste Version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Neue Version verfügbar:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Zu aktueller Playlist hinzufügen" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Zu aktuellem Smart Block hinzufügen" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Füge 1 Objekt hinzu" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Füge %s Objekte hinzu" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hinzufügen" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Bearbeiten" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Entfernen" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Metadaten bearbeiten" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Zu gewählter Sendung hinzufügen" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Auswahl" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Ganze Seite markieren" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Ganze Seite nicht markieren" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Keines Markieren" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Wollen sie die gewählten Objekte wirklich löschen?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Geplant" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Interpret" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bitrate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Komponist" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Sprache" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Zuletzt geändert" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Zuletzt gespielt" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Dauer" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Stimmung" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Besitzer" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Samplerate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Titelnummer" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Hochgeladen" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Webseite" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Jahr" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "wird geladen..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Dateien" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blöcke" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unbekannter Typ:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Wollen sie das gewählte Objekt wirklich löschen?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Hochladen wird durchgeführt..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Daten werden vom Server abgerufen..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Fehler Code:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Fehlermeldung:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Der eingegeben Wert muß eine positive Zahl sein" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Der eingegebene Wert muß eine Zahl sein" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Beschränkung auf:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist gespeichert" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist durchgemischt" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "" +"Airtime kann den Status dieser Datei nicht bestimmen.\n" +"Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Hörerzahl %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "In einer Woche erinnern" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Niemals erinnern" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ja, Airtime helfen" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein." + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "" +"Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" +"Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "" +"Ein Dynamischer Smart Block speichert nur die Kriterien.\n" +"Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart Block durchgemischt" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart Block erstellt und Kriterien gespeichert" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart Block gespeichert" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "In Bearbeitung..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Wähle Modifikator" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "enthält" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "enthält nicht" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "ist" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "ist nicht" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "beginnt mit" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "endet mit" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "ist größer als" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "ist kleiner als" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "ist im Bereich" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Erstellen" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Wähle Storage-Verzeichnis" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Wähle zu überwachendes Verzeichnis" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Wollen sie wirklich das Storage-Verzeichnis ändern?\n" +"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Verwalte Medienverzeichnisse" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Wollen sie den überwachten Ordner wirklich entfernen?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Dieser Pfad ist derzeit nicht erreichbar." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Mit Streaming-Server verbunden" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Der Stream ist deaktiviert" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Erhalte Information vom Server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "" +"Diese Option aktiviert Metadaten für Ogg-Streams.\n" +"(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" +"VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Kein Ergebnis gefunden" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Die Sendungsinstanz existiert nicht mehr!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warnung: Sendungen können nicht erneut verknüpft werden." + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Sendung" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Sendung ist leer" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Daten werden vom Server abgerufen..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Diese Sendung hat keinen geplanten Inhalt." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Januar" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Februar" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "März" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mai" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Juni" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Juli" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Oktober" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Dezember" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mär" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Mai" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Okt" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dez" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Sonntag" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Montag" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Dienstag" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Mittwoch" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Donnerstag" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Freitag" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Samstag" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "SO" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "MO" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "DI" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "MI" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "DO" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "FR" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "SA" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Aktuelle Sendung abbrechen?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Aufzeichnung der aktuellen Sendung stoppen?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "OK" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Sendungsinhalt" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Gesamten Inhalt entfernen?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Gewählte Objekte löschen?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Beginn" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Ende" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Dauer" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Sendung leer" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Aufzeichnen von Line-In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Titelvorschau" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Es ist keine Planung außerhalb einer Sendung möglich." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Verschiebe 1 Objekt" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Verschiebe %s Objekte" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Speichern" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Abbrechen" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Alle markieren" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Nichts Markieren" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Gewähltes Objekt entfernen" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Springe zu aktuellem Titel" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Aktuelle Sendung abbrechen" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Inhalt hinzufügen / entfernen" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In Verwendung" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Suchen in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Öffnen" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programm Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Gast" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gäste können folgendes tun:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Kalender betrachten" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Sendungsinhalt betrachten" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ's können folgendes tun:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Verwalten zugewiesener Sendungsinhalte" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Mediendateien importieren" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Verwalten eigener Bibliotheksinhalte" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Sendungsinhalte betrachten und verwalten" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Sendungen festlegen" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Verwalten der gesamten Bibliothek" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins können folgendes tun:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Einstellungen verwalten" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Benutzer verwalten" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Verwalten überwachter Ordner" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Support Feedback senden" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "System Status betrachten" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Zugriff auf Playout Verlauf" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Hörerstatistiken betrachten" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Spalten zeigen / verbergen" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Von {from} bis {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "So" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Di" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Mi" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Do" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Schließen" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Stunde" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Fertig" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Dateien wählen" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Dateien hinzufügen" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Hochladen stoppen" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Hochladen starten" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Dateien hinzufügen" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d Dateien hochgeladen" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "Nicht Verfügbar" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Dateien hierher ziehen" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Dateierweiterungsfehler" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Dateigrößenfehler" + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Dateianzahlfehler" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init Fehler" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP-Fehler" + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Sicherheitsfehler" + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Allgemeiner Fehler" + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO-Fehler" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Datei: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d Dateien in der Warteschlange" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Fehler: Datei zu groß" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Fehler: Ungültige Dateierweiterung:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Standard festlegen" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Eintrag erstellen" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Verlaufsprotokoll bearbeiten" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Keine Sendung" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s Reihen%s in die Zwischenablage kopiert" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Beschreibung" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Aktiviert" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Deaktiviert" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sie betrachten eine ältere Version von %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. " + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Sie können einem Smart Block nur Titel hinzufügen." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Unbenannter Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Einstellungen aktualisiert" + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream-Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "Pfad muß angegeben werden" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem mit Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Wiederholung der Sendung % s vom %s um %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Cursor wählen" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Cursor entfernen" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "Sendung existiert nicht." + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Benutzer erfolgreich hinzugefügt!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Benutzer erfolgreich aktualisiert!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Einstellungen erfolgreich aktualisiert!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Unbenannter Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream gespeichert" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Ungültiger Eingabewert" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingeben" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Benutzerdefinierte Authentifizierung:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Benutzerdefinierter Benutzername" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Benutzerdefiniertes Passwort" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Das Feld Benutzername darf nicht leer sein." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Das Feld Passwort darf nicht leer sein." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Wiederholen?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "Tage" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Verknüpfen:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Wiederholungstyp:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "Wöchentlich" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "jede Zweite Woche" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "jede Dritte Woche" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "jede Vierte Woche" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "Monatlich" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Tage wählen:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Wiederholung am:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Tag des Monats" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Tag der Woche" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Zeitpunkt Ende:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Kein Enddatum?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Enddatum muß nach Startdatum liegen." + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Bitte Tag zum Wiederholen wählen" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Hintergrundfarbe:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Textfarbe:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Unbenannte Sendung" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ist nicht im Format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Dauer:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Zeitzone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Wiederholungen?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen." + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Benutzer suchen:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Benutzername:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Passwort:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Passwort bestätigen:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Vorname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Nachname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-Mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Benutzertyp:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Benutzername ist nicht einmalig." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Zeitpunkt Start:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Interpret:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Jahr:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Komponist:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Stimmung:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Nummer:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Webseite:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Sprache:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Beginn" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Ende" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Zeitzone Interface" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Sendername" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Sender Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Standarddauer Crossfade (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Standard Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Standard Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Zeitzone Radiostation" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Woche startet mit " + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Anmeldung" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Passwort" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Neues Passwort bestätigen" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Passwortbestätigung stimmt nicht mit Passwort überein" + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Benutzername" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Jetzt" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Kriterien wählen" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (KHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Stunden" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "Minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "Objekte" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statisch" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Shuffle Playlist-Inhalt (Durchmischen)" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein." + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Wert kann nicht leer sein" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Streambezeichnung:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artist - Titel" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Sendung - Interpret - Titel" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Radiostation - Sendung" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Replay Gain aktivieren" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifikator" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Aktiviert:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Typ:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bitrate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Typ:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanäle:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Wert erforderlich. Feld darf nicht leer sein." + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue In und Cue Out sind Null." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Cue In darf nicht größer als Cue Out sein." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Cue Out darf nicht kleiner als Cue In sein." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Land wählen" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden." + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell." + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Die Sendung %s wurde bereits aktualisiert." + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Eine der gewählten Dateien existiert nicht!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Sendungen können nicht überlappend geplant werden.\n" +"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Wiederholung von %s am %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dauer muß länger als 0 Minuten sein." + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dauer im Format \"00h 00m\" eingeben." + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL im Format \"https://example.org\" eingeben." + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL darf aus höchstens 512 Zeichen bestehen." + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unbekannter Stream-Typ: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Aufeichnung existiert nicht" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei ansehen" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Sendung bearbeiten" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert." + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Titel" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Abgespielt" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " bis " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s wird bereits überwacht." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s ist kein gültiges Verzeichnis." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" + +#~ msgid "(Required)" +#~ msgstr "(Erforderlich)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Webseite ihrer Radiostation)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Über" + +#~ msgid "Add New Field" +#~ msgstr "Neues Feld hinzufügen" + +#~ msgid "Add more elements" +#~ msgstr "Weitere Elemente hinzufügen" + +#~ msgid "Add this show" +#~ msgstr "Sendung hinzufügen" + +#~ msgid "Additional Options" +#~ msgstr "Erweiterte Optionen" + +#~ msgid "Admin Password" +#~ msgstr "Admin Passwort" + +#~ msgid "Admin User" +#~ msgstr "Admin Benutzer" + +#~ msgid "Advanced Search Options" +#~ msgstr "Erweiterte Suchoptionen" + +#~ msgid "All rights are reserved" +#~ msgstr "Alle Rechte vorbehalten" + +#~ msgid "Audio Track" +#~ msgstr "Titel" + +#~ msgid "Choose Days:" +#~ msgstr "Tag wählen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Folge wählen" + +#~ msgid "Choose folder" +#~ msgstr "Verzeichnis wählen" + +#~ msgid "City:" +#~ msgstr "Stadt:" + +#~ msgid "Clear" +#~ msgstr "Leeren" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird." + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Erstelle Dateiübersichtsvorlage" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Erstelle Protokollvorlage" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Zuordnung" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Zuordnung No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Zuordnung Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Zuordnung Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Zuordnung Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In:" + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktuelles Import-Verzeichnis:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default Length:" +#~ msgstr "Standard Dauer:" + +#~ msgid "Default License:" +#~ msgstr "Standard Lizenz:" + +#~ msgid "Disk Space" +#~ msgstr "Speicherplatz" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamischer Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische Smart Block Kriterien:" + +#~ msgid "Empty playlist content" +#~ msgstr "Playlist leeren" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamischen Block erweitern" + +#~ msgid "Expand Static Block" +#~ msgstr "Statischen Block erweitern" + +#~ msgid "Fade in: " +#~ msgstr "Fade In:" + +#~ msgid "Fade out: " +#~ msgstr "Fade Out:" + +#~ msgid "File Path:" +#~ msgstr "Dateipfad:" + +#~ msgid "File Summary" +#~ msgstr "Dateiübersicht" + +#~ msgid "File Summary Templates" +#~ msgstr "Dateiübersichtsvorlagen" + +#~ msgid "File import in progress..." +#~ msgstr "Datei-Import in Bearbeitung..." + +#~ msgid "Filter History" +#~ msgstr "Filter Verlauf" + +#~ msgid "Find" +#~ msgstr "Finden" + +#~ msgid "Find Shows" +#~ msgstr "Sendungen suchen" + +#~ msgid "First Name" +#~ msgstr "Vorname" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "" +#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" +#~ "Der Wert sollte so geändert werden, daß host/port/mount den Zugangsdaten der DJ's entspricht. Der erlaubte Bereich liegt zwischen 1024 und 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC Number:" + +#~ msgid "Last Name" +#~ msgstr "Nachname" + +#~ msgid "Length:" +#~ msgstr "Dauer:" + +#~ msgid "Limit to " +#~ msgstr "Begrenzt auf " + +#~ msgid "Listen" +#~ msgstr "Hören" + +#~ msgid "Live Stream Input" +#~ msgstr "Live-Stream Eingang" + +#~ msgid "Live stream" +#~ msgstr "Live Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Protokoll" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Protokollvorlagen" + +#~ msgid "Logout" +#~ msgstr "Abmelden" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" + +#~ msgid "Manage Users" +#~ msgstr "Benutzer verwalten" + +#~ msgid "Master Source" +#~ msgstr "Master Quelle" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." + +#~ msgid "New File Summary Template" +#~ msgstr "Neue Dateiübersichtsvorlage" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Neue Protokollvorlage" + +#~ msgid "New User" +#~ msgstr "Neuer Benutzer" + +#~ msgid "New password" +#~ msgstr "Neues Passwort" + +#~ msgid "Next:" +#~ msgstr "Danach:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Keine Dateiübersichtsvorlagen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Keine Protokollvorlagen" + +#~ msgid "No open playlist" +#~ msgstr "Keine Playlist geöffnet" + +#~ msgid "No webstream" +#~ msgstr "Kein Webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Es sind nur Zahlen erlaubt" + +#~ msgid "Original Length:" +#~ msgstr "Original Dauer:" + +#~ msgid "Page not found!" +#~ msgstr "Seite nicht gefunden!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Abspielen" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Inhalt:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist Crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen." + +#~ msgid "Please upgrade to " +#~ msgstr "Bitte aktualisieren sie auf " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port darf nicht leer sein." + +#~ msgid "Previous:" +#~ msgstr "Vorher:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programm Manager können folgendes tun:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime registrieren" + +#~ msgid "Remove watched directory" +#~ msgstr "Überwachten Ordner entfernen" + +#~ msgid "Repeat Days:" +#~ msgstr "Wiederholungstage:" + +#~ msgid "Sample Rate:" +#~ msgstr "Samplerate:" + +#~ msgid "Save playlist" +#~ msgstr "Playlist speichern" + +#~ msgid "Select stream:" +#~ msgstr "Stream wählen:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server darf nicht leer sein." + +#~ msgid "Set" +#~ msgstr "Wählen" + +#~ msgid "Set Cue In" +#~ msgstr "Cue In setzen" + +#~ msgid "Set Cue Out" +#~ msgstr "Cue Out setzen" + +#~ msgid "Set Default Template" +#~ msgstr "Standardvorlage festlegen" + +#~ msgid "Share" +#~ msgstr "Teilen" + +#~ msgid "Show Source" +#~ msgstr "Show Quelle" + +#~ msgid "Show Summary" +#~ msgstr "Sendungsübersicht" + +#~ msgid "Show Waveform" +#~ msgstr "Wellenform anzeigen" + +#~ msgid "Show me what I am sending " +#~ msgstr "Zeige mir was ich sende" + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle Playlist" + +#~ msgid "Source Streams" +#~ msgstr "Stream-Quellen" + +#~ msgid "Static Smart Block" +#~ msgstr "Statischer Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statischer Smart Block Inhalt:" + +#~ msgid "Station Description:" +#~ msgstr "Sender Beschreibung:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sender-Webseite:" + +#~ msgid "Stop" +#~ msgstr "Stopp" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Stream Einstellungen" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support-Einstellungen aktualisiert." + +#~ msgid "Terms and Conditions" +#~ msgstr "Geschäftsbedingungen und Rahmenverhältnisse" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "" +#~ "Wenn Airtime nicht genug einzigartige Titel findet, kann die gewünschte Dauer des Smart Blocks nicht erreicht werden.\n" +#~ "Aktivieren sie diese Option um das mehrfache Hinzufügen von Titel zum Smart Block zu erlauben." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Das Werk ist in der öffentlichen Domäne" + +#~ msgid "This version is no longer supported." +#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Diese Version wird in Kürze veraltet sein." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden." + +#~ msgid "Track:" +#~ msgstr "Titelnummer:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind." + +#~ msgid "Update Required" +#~ msgstr "Aktualisierung erforderlich" + +#~ msgid "Update show" +#~ msgstr "Sendung aktualisieren" + +#~ msgid "User Type" +#~ msgstr "Benutzertyp" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Was" + +#~ msgid "When" +#~ msgstr "Wann" + +#~ msgid "Who" +#~ msgstr "Wer" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sie überwachen keine Medienverzeichnisse." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." + +#~ msgid "Your trial expires in" +#~ msgstr "Die Probelaufzeit läuft ab in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "Dateien entsprechen den Kriterien" + +#~ msgid "id" +#~ msgstr "ID" + +#~ msgid "max volume" +#~ msgstr "Maximale Lautstärke" + +#~ msgid "mute" +#~ msgstr "Stumm schalten" + +#~ msgid "next" +#~ msgstr "Nächster" + +#~ msgid "or" +#~ msgstr "oder" + +#~ msgid "pause" +#~ msgstr "Pause" + +#~ msgid "play" +#~ msgstr "Abspielen" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "Bitte geben sie eine Zeit in Sekunden ein '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "Zurück" + +#~ msgid "stop" +#~ msgstr "Stopp" + +#~ msgid "unmute" +#~ msgstr "Laut schalten" diff --git a/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po b/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..aed8c8fc96 --- /dev/null +++ b/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po @@ -0,0 +1,4671 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Daniel James , 2014 +# Darius Kellermann , 2015 +# hoerich , 2014 +# Sourcefabric , 2013 +# Lucas Bickel , 2017. #zanata +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2022-07-30 21:18+0000\n" +"Last-Translator: Domenik Töfflinger \n" +"Language-Team: German \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s ist kein gültiges Datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s-%s-%s ist kein gültiger Zeitpunkt" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Englisch" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Afar" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abchasisch" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amharisch" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Arabisch" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Assamesisch" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aymarisch" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerbaijani" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Bashkirisch" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Belarussisch" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Bulgarisch" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Biharisch" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bislamisch" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengalisch" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibetanisch" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Bretonisch" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Katalanisch" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Korsisch" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Tschechisch" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Walisisch" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Dänisch" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Deutsch" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Dzongkha" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Griechisch" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Spanisch" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estnisch" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Baskisch" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persisch" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Finnisch" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fijianisch" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Färöisch" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Französisch" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Friesisch" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Irisch" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Schottisches Gälisch" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galizisch" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Gujaratisch" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Haussa" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Kroatisch" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Ungarisch" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Armenisch" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Indonesisch" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Isländisch" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italienisch" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hebräisch" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japanisch" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Jiddisch" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Javanisch" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Georgisch" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kasachisch" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Kalaallisut" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Kambodschanisch" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Koreanisch" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Kaschmirisch" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kurdisch" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kirgisisch" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latein" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Laotisch" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Litauisch" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Lettisch" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Madagassisch" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maorisch" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Mazedonisch" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Mongolisch" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldavisch" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malaysisch" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltesisch" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Burmesisch" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Nauruisch" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Nepalesisch" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Niederländisch" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Norwegisch" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Okzitanisch" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "Oriya" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Pandschabi" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Polnisch" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Paschtu" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Portugiesisch" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Rätoromanisch" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Kirundisch" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Rumänisch" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Russisch" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Kijarwanda" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Sango" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Serbokroatisch" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Singhalesisch" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Slowakisch" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Slowenisch" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Samoanisch" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Schonisch" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Somalisch" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Albanisch" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Serbisch" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Swasiländisch" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Sesothisch" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Sundanesisch" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Schwedisch" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Tamilisch" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Tegulu" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Tadschikisch" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Thai" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Tigrinja" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Türkmenisch" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Sezuan" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Tongaisch" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Türkisch" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Tsongaisch" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Tatarisch" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Ukrainisch" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Urdu" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Usbekisch" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "Vietnamesisch" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Volapük" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Chinesisch" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Zulu" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen." + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "LibreTime Playout Service" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "LibreTime Liquidsoap Service" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "LibreTime API Service" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Radio Seite" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalender" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Widgets" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Player" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Wochenprogramm" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Einstellungen" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Allgemein" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Mein Profil" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Benutzer" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Track-Typ" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Statistiken" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout Verlauf" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Verlaufsvorlagen" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Hörerstatistiken" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Zuhörer:innen Statistik anzeigen" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Hilfe" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Kurzanleitung" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Benutzerhandbuch" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Bei LibreTime mitmachen" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Was ist neu?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Datei existiert nicht in %s." + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Mit diesem Eingang ist kein Signal verbunden." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "Die angefragte Aktion wird nicht unterstützt." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Ein interner Fehler ist aufgetreten." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Podcast" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Es wurden noch keine Tracks veröffentlicht." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nicht gefunden" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Etwas ist falsch gelaufen." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Vorschau" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Zur Playlist hinzufügen" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Zum Smart Block hinzufügen" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Löschen" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Bearbeiten …" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Herunterladen" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplizierte Playlist" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Smartblock duplizieren" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Keine Aktion verfügbar" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Datei(en) konnten nicht gelöscht werden." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopie von %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Etwas ist falsch gelaufen!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Aufnahme:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Es ist nichts geplant" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Aktuelle Sendung:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Jetzt" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Sie verwenden die neueste Version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Neue Version verfügbar: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Es ist ein Patch für deine LibreTime Installation verfügbar." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Es ist ein Feature-Update für deine LibreTime Installation verfügbar." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Zu aktueller Playlist hinzufügen" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Zu aktuellem Smart Block hinzufügen" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1 Objekt hinzufügen" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "%s Objekte hinzufügen" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Bitte wählen sie eine Cursor-Position auf der Zeitleiste." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Keine Tracks hinzugefügt" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Keine Playlisten hinzugefügt" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Keine Smart Blöcke hinzugefügt" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Keine Webstreams hinzugefügt" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Erfahre mehr über Tracks" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Erfahre mehr über Playlisten" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "Erfahre mehr über Podcasts" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Erfahre mehr über Smart Blöcke" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Erfahre mehr über Webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hinzufüg." + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Ändern" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Veröffentlichen" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Entfernen" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Metadaten ändern" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Zur ausgewählten Sendungen hinzufügen" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Auswählen" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Wählen sie diese Seite" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Wählen sie diese Seite ab" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Alle Abwählen" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Wollen sie die gewählten Objekte wirklich löschen?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Geplant" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Tracks" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playliste" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Interpret" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bitrate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Komponist" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Sprache" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "geändert am" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Zuletzt gespielt" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Länge" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Stimmung" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Besitzer" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Samplerate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Titelnummer" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Hochgeladen" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Webseite" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Jahr" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "wird geladen..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Dateien" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blöcke" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unbekannter Typ: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Wollen sie das gewählte Objekt wirklich löschen?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Upload wird durchgeführt..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Daten werden vom Server abgerufen..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Fehlercode: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Fehlermeldung: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Der eingegeben Wert muß eine positive Zahl sein" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Der eingegebene Wert muß eine Zahl sein" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Mein Podcast" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Medienordner" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Beschränken auf: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist gespeichert" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playliste gemischt" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "" +"Airtime kann den Status dieser Datei nicht bestimmen.\n" +"Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Hörerzahl %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "In einer Woche erinnern" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Niemals erinnern" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ja, Airtime helfen" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "" +"Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" +"Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "" +"Ein Dynamischer Smart Block speichert nur die Kriterien.\n" +"Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart Block gemischt" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart Block erstellt und Kriterien gespeichert" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart Block gespeichert" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "In Bearbeitung..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr " - Attribut - " + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "enthält" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "enthält nicht" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "ist" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "ist nicht" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "beginnt mit" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "endet mit" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "ist größer als" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "ist kleiner als" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "ist im Bereich" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Erstellen" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Wähle Speicher-Verzeichnis" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Wähle zu überwachendes Verzeichnis" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\n" +"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Medienverzeichnisse verwalten" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Dieser Pfad ist derzeit nicht erreichbar." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Mit dem Streaming-Server verbunden" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Der Stream ist deaktiviert" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Erhalte Information vom Server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "" +"Diese Option aktiviert Metadaten für Ogg-Streams.\n" +"(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" +"VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Kein Ergebnis gefunden" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Die Sendungsinstanz existiert nicht mehr!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Sendung" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Sendung ist leer" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Daten werden vom Server abgerufen..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Diese Sendung hat keinen festgelegten Inhalt." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Januar" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Februar" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "März" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mai" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Juni" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Juli" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Oktober" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Dezember" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan." + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb." + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mrz." + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr." + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun." + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul." + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug." + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep." + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Okt." + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov." + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dez." + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Sonntag" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Montag" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Dienstag" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Mittwoch" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Donnerstag" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Freitag" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Samstag" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "So." + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mo." + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Di." + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Mi." + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Do." + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fr." + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sa." + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Aktuelle Sendung abbrechen?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Aufnahme der aktuellen Sendung stoppen?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Speichern" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Sendungsinhalt" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Gesamten Inhalt entfernen?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Gewählte Objekte löschen?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Beginn" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Ende" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Dauer" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Sendung ist leer" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Aufnehmen über Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Titel Vorschau" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Es ist keine Planung außerhalb einer Sendung möglich." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Verschiebe 1 Objekt" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Verschiebe %s Objekte" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Speichern" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Abbrechen" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Alles auswählen" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Nichts auswählen" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Ausgewählte Elemente aus dem Programm entfernen" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Springe zu aktuellem Titel" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Aktuelle Sendung abbrechen" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Inhalt hinzufügen / entfernen" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In Verwendung" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Suchen in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Öffnen" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programm Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Gast" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gäste können folgendes tun:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Kalender betrachten" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Sendungsinhalt betrachten" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs können folgendes tun:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Verwalten zugewiesener Sendungsinhalte" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Mediendateien importieren" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Verwalten eigener Bibliotheksinhalte" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Sendungsinhalte betrachten und verwalten" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Sendungen festlegen" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Verwalten der gesamten Bibliothek" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins können folgendes tun:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Einstellungen verwalten" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Benutzer verwalten" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Verwalten überwachter Verzeichnisse" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Support Feedback senden" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "System Status betrachten" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Zugriff auf Playlist Verlauf" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Hörerstatistiken betrachten" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Spalten auswählen" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Von {from} bis {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "So" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Di" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Mi" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Do" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Schließen" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Stunde" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Fertig" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Dateien auswählen" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Dateien zur Uploadliste hinzufügen und den Startbutton klicken." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Dateien hinzufügen" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Upload stoppen" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Upload starten" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Dateien hinzufügen" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d Dateien hochgeladen" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Dateien in dieses Feld ziehen.(Drag & Drop)" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Fehler in der Dateierweiterung." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Fehler in der Dateigröße." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Fehler in der Dateianzahl" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init Fehler." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Fehler." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Sicherheitsfehler." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Allgemeiner Fehler." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO Fehler." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Datei: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d Dateien in der Warteschlange" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Fehler: Datei zu groß: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Fehler: ungültige Dateierweiterung: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Standard festlegen" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Eintrag erstellen" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Verlaufsprotokoll bearbeiten" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Keine Sendung" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s Reihen%s in die Zwischenablage kopiert" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Autor" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Beschreibung" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Link" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Aktiviert" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Deaktiviert" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sie betrachten eine ältere Version von %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Sie können einem Smart Block nur Titel hinzufügen." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Unbenannter Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Unbekannte Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream-Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "Pfad muß angegeben werden" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem mit Liquidsoap ..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Wiederholung der Sendung %s vom %s um %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Cursor wählen" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Cursor entfernen" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "Sendung existiert nicht" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Benutzer erfolgreich hinzugefügt!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Benutzer erfolgreich aktualisiert!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Einstellungen erfolgreich aktualisiert!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Unbenannter Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream gespeichert." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Ungültige Formularwerte." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingegeben" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Benutzerdefiniertes Login:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Benutzerdefinierter Benutzername" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Benutzerdefiniertes Passwort" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Das Feld Benutzername darf nicht leer sein." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Das Feld Passwort darf nicht leer sein." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Wiederholen?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "Tage" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Verknüpfen:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Wiederholungstyp:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "wöchentlich" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "jede zweite Woche" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "jede dritte Woche" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "jede vierte Woche" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monatlich" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Tage wählen:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Wiederholung von:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Tag des Monats" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Tag der Woche" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Zeitpunkt Ende:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Kein Enddatum?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Enddatum muß nach dem Startdatum liegen" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Bitte einen Tag zum Wiederholen wählen" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Hintergrundfarbe:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Textfarbe:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Unbenannte Sendung" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ist nicht im Format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Dauer:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Zeitzone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Wiederholungen?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat." + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Suche Benutzer:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Benutzername:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Passwort:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Passwort bestätigen:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Vorname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Nachname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-Mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Benutzertyp:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Benutzername ist bereits vorhanden." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Zeitpunkt Beginn:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Interpret:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Jahr:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Komponist:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Stimmung:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC-Nr.:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Webseite:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Sprache:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Veröffentlichen..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Startzeit" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Endzeit" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Zeitzone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Sendername" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Sender Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Standard Crossfade Dauer (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Standard Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Standard Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Sendestation Zeitzone" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Woche beginnt am" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Anmeldung" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Passwort" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Neues Passwort bestätigen" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Passwortbestätigung stimmt nicht mit Passwort überein." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Benutzername" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Jetzt" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr " - Kriterien - " + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Stunden" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "Minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "Titel" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statisch" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Inhalt der Playlist Mischen" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Mischen" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Der Wert darf nicht leer sein" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Streambezeichnung:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artist - Titel" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Sendung - Artist - Titel" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Sender - Sendung" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadaten" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Replay Gain aktivieren" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifikator" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Aktiviert:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Typ:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bitrate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Typ:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanäle:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Wert ist erforderlich und darf nicht leer sein" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue In und Cue Out sind Null." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Cue In darf nicht größer als Cue Out sein." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Cue Out darf nicht kleiner als Cue In sein." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Land wählen" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Die Sendung %s wurde bereits aktualisiert!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Eine der gewählten Dateien existiert nicht!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Sendungen können nicht überlappend geplant werden.\n" +"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Wiederholung der Sendung %s von %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dauer muß länger als 0 Minuten sein." + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dauer im Format \"00h 00m\" eingeben." + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL im Format \"https://example.org\" eingeben." + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL darf aus höchstens 512 Zeichen bestehen." + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Die XSPF Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Die PLS Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Die M3U Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unbekannter Stream-Typ: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Aufzeichnung existiert nicht" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei anzeigen" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Sendungsinhalte verwalten" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Sendung ändern" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Titel" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Abgespielt" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " bis " + +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s Version" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s wird bereits überwacht." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s ist kein gültiges Verzeichnis." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" + +#~ msgid "(Required)" +#~ msgstr "(Erforderlich)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Webseite Ihres Radiosenders)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Über" + +#~ msgid "Add New Field" +#~ msgstr "Neues Feld hinzufügen" + +#~ msgid "Add more elements" +#~ msgstr "Weitere Elemente hinzufügen" + +#~ msgid "Add this show" +#~ msgstr "Sendung hinzufügen" + +#~ msgid "Additional Options" +#~ msgstr "Erweiterte Optionen" + +#~ msgid "Admin Password" +#~ msgstr "Admin Passwort" + +#~ msgid "Admin User" +#~ msgstr "Admin Benutzer" + +#~ msgid "Advanced Search Options" +#~ msgstr "Erweiterte Suchoptionen" + +#~ msgid "All rights are reserved" +#~ msgstr "Alle Rechte vorbehalten" + +#~ msgid "Audio Track" +#~ msgstr "Titel-Nr." + +#~ msgid "Autoloading Playlist" +#~ msgstr "Automatische Playlist" + +#~ msgid "Category" +#~ msgstr "Kategorie" + +#~ msgid "Choose Days:" +#~ msgstr "Tage wählen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Folge wählen" + +#~ msgid "Choose folder" +#~ msgstr "Ordner wählen" + +#~ msgid "City:" +#~ msgstr "Stadt:" + +#~ msgid "Clear" +#~ msgstr "Leeren" + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Erstelle Dateiübersichtsvorlage" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Erstelle Protokollvorlage" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "[CC-BY] Creative Commons Namensnennung" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktueller Import Ordner:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Dangerous Options" +#~ msgstr "Gefährliche Einstellungen" + +#~ msgid "Default Length:" +#~ msgstr "Standard Dauer:" + +#~ msgid "Default License:" +#~ msgstr "Standard Lizenz:" + +#~ msgid "Disk Space" +#~ msgstr "Speicherplatz" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamischer Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische Smart Block Kriterien: " + +#~ msgid "Editing " +#~ msgstr "Bearbeiten" + +#~ msgid "Empty playlist content" +#~ msgstr "Playlist leeren" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamischen Block erweitern" + +#~ msgid "Expand Static Block" +#~ msgstr "Statischen Block erweitern" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Fade In: " + +#~ msgid "Fade out: " +#~ msgstr "Fade Out: " + +#~ msgid "File Path:" +#~ msgstr "Dateipfad:" + +#~ msgid "File Summary" +#~ msgstr "Dateiübersicht" + +#~ msgid "File Summary Templates" +#~ msgstr "Dateiübersichtsvorlagen" + +#~ msgid "File import in progress..." +#~ msgstr "Datei-Import in Bearbeitung..." + +#~ msgid "Filter History" +#~ msgstr "Filter Verlauf" + +#~ msgid "Find" +#~ msgstr "Finden" + +#~ msgid "Find Shows" +#~ msgstr "Suche Sendungen" + +#~ msgid "First Name" +#~ msgstr "Vorname" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Passwort vergessen?" + +#~ msgid "General Fields" +#~ msgstr "Allgemeine Felder" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "" +#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" +#~ "In diesem Fall müssen sie die URL manuell eintragen, damit Ihren DJs der richtige Host/Port/Mount zur verbindung anzeigt wird. Der erlaubte Port-Bereich liegt zwischen 1024 und 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC-Nr.:" + +#~ msgid "Keywords" +#~ msgstr "Stichwörter" + +#~ msgid "Last Name" +#~ msgstr "Nachname" + +#~ msgid "Length:" +#~ msgstr "Länge:" + +#~ msgid "Limit to " +#~ msgstr "Beschränken auf " + +#~ msgid "Listen" +#~ msgstr "Anhören" + +#~ msgid "Listeners" +#~ msgstr "Zuhörer" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Protokoll" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Protokollvorlagen" + +#~ msgid "Logout" +#~ msgstr "Abmelden" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" + +#~ msgid "Manage Users" +#~ msgstr "Benutzer verwalten" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." + +#~ msgid "New File Summary Template" +#~ msgstr "Neue Dateiübersichtsvorlage" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Neue Protokollvorlage" + +#~ msgid "New User" +#~ msgstr "Neuer Benutzer" + +#~ msgid "New password" +#~ msgstr "Neues Passwort" + +#~ msgid "Next:" +#~ msgstr "Danach:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Keine Dateiübersichtsvorlagen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Keine Protokollvorlagen" + +#~ msgid "No open playlist" +#~ msgstr "Keine Playlist geöffnet" + +#~ msgid "No webstream" +#~ msgstr "Kein Webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Es sind nur Zahlen erlaubt" + +#~ msgid "Original Length:" +#~ msgstr "Originallänge:" + +#~ msgid "Page not found!" +#~ msgstr "Seite nicht gefunden!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Inhalt: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist Crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld." + +#~ msgid "Please upgrade to " +#~ msgstr "Bitte aktualisieren sie auf " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port darf nicht leer sein." + +#~ msgid "Previous:" +#~ msgstr "Zuvor:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programm Manager können folgendes tun:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime registrieren" + +#~ msgid "Remove watched directory" +#~ msgstr "Überwachten Ordner entfernen" + +#~ msgid "Repeat Days:" +#~ msgstr "Wiederholen Tage:" + +#~ msgid "Sample Rate:" +#~ msgstr "Samplerate:" + +#~ msgid "Save playlist" +#~ msgstr "Playlist speichern" + +#~ msgid "Search Criteria:" +#~ msgstr "Such-Kriterien:" + +#~ msgid "Select stream:" +#~ msgstr "Stream wählen:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server darf nicht leer sein." + +#~ msgid "Set" +#~ msgstr "Festlegen" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Standardvorlage wählen" + +#~ msgid "Share" +#~ msgstr "Teilen" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Sendungsübersicht" + +#~ msgid "Show Waveform" +#~ msgstr "Wellenform anzeigen" + +#~ msgid "Show me what I am sending " +#~ msgstr "Zeige mir was ich sende " + +#~ msgid "Shuffle playlist" +#~ msgstr "Playlist mischen" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Statischer Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statischer Smart Block Inhalt: " + +#~ msgid "Station Description:" +#~ msgstr "Sender Beschreibung:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sender-Webseite:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Einstellungen" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Farbe" + +#~ msgid "Subtitle" +#~ msgstr "Untertitel" + +#~ msgid "Summary" +#~ msgstr "Zusammenfassung" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support-Einstellungen aktualisiert." + +#~ msgid "Terms and Conditions" +#~ msgstr "Allgemeine Geschäftsbedingungen" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Wenn Airtime nicht genug einzigartige Titel findet, die Ihren Kriterien entsprechen, kann die gewünschte Länge des Smart Blocks nicht erreicht werden. Wenn sie möchten, dass Titel mehrfach zum Smart Block hinzugefügt werden können, aktivieren sie diese Option." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Die Rechte an dieser Arbeit sind gemeinfrei" + +#~ msgid "This version is no longer supported." +#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Diese Version wird in Kürze veraltet sein." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren." + +#~ msgid "Track:" +#~ msgstr "Titel-Nr.:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn Einstellungen" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Geben sie die Zeichen aus dem Bild unten ein." + +#~ msgid "Update Required" +#~ msgstr "Update erforderlich" + +#~ msgid "Update show" +#~ msgstr "Sendung aktualisieren" + +#~ msgid "Update track" +#~ msgstr "Track aktualisieren" + +#~ msgid "User Type" +#~ msgstr "Benutzertyp" + +#~ msgid "View track" +#~ msgstr "Track anzeigen" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Was" + +#~ msgid "When" +#~ msgstr "Wann" + +#~ msgid "Who" +#~ msgstr "Wer" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sie überwachen keine Medienordner." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." + +#~ msgid "Your trial expires in" +#~ msgstr "Ihre Testperiode endet in" + +#~ msgid "and" +#~ msgstr "und" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "Dateien entsprechen den Kriterien" + +#~ msgid "iTunes Fields" +#~ msgstr "iTunes Felder" + +#~ msgid "id" +#~ msgstr "ID" + +#~ msgid "max volume" +#~ msgstr "Maximale Lautstärke" + +#~ msgid "mute" +#~ msgstr "Stummschalten" + +#~ msgid "next" +#~ msgstr "weiter" + +#~ msgid "or" +#~ msgstr "oder" + +#~ msgid "pause" +#~ msgstr "Pause" + +#~ msgid "play" +#~ msgstr "Wiedergabe" + +#~ msgid "previous" +#~ msgstr "zurück" + +#~ msgid "stop" +#~ msgstr "Stop" + +#~ msgid "unmute" +#~ msgstr "Lautschalten" diff --git a/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..a054402f7b --- /dev/null +++ b/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po @@ -0,0 +1,4611 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Katerina Michailidi , 2014 +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-10-17 08:09+0000\n" +"Last-Translator: Kyle Robbertze \n" +"Language-Team: Greek \n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Xρήστες" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Κατάσταση" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Ιστορικό Playout" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Ιστορικό Template" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Στατιστικές Ακροατών" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Βοήθεια" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Έναρξη" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Εγχειρίδιο Χρήστη" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Δεν έχετε άδεια για αλλαγή πηγής." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s δεν βρέθηκε" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Κάτι πήγε στραβά." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Προσθήκη στη λίστα αναπαραγωγής" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Προσθήκη στο Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Διαγραφή" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Λήψη" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Αντιγραφή Λίστας Αναπαραγωγής" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Καμία διαθέσιμη δράση" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Αντιγραφή από %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Αναπαραγωγή ήχου" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Εγγραφή" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Κύριο Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Τίποτα δεν έχει προγραμματιστεί" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Τρέχουσα Εκπομπή:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Τρέχουσα" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Χρησιμοποιείτε την τελευταία έκδοση" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Νέα έκδοση διαθέσιμη: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Προσθήκη στο τρέχον smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Προσθήκη 1 Στοιχείου" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Προσθήκη %s στοιχείου/ων" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Προσθήκη" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Επεξεργασία" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Αφαίρεση" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Επεξεργασία Μεταδεδομένων" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Προσθήκη στην επιλεγμένη εκπομπή" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Επιλογή" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Επιλέξτε αυτή τη σελίδα" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Καταργήστε αυτήν την σελίδα" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Κατάργηση όλων" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Προγραμματισμένο" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Τίτλος" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Δημιουργός" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Ρυθμός Bit" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Συνθέτης" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Ενορχήστρωση" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Κωδικοποιήθηκε από" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Είδος" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Εταιρεία" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Γλώσσα" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Τελευταία τροποποίηση" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Τελευταία αναπαραγωγή" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Διάρκεια" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Μίμος" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Διάθεση" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Ιδιοκτήτης" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Κέρδος Επανάληψης" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Ρυθμός δειγματοληψίας" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Αριθμός Κομματιού" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Φορτώθηκε" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Ιστοσελίδα" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Έτος" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Φόρτωση..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Όλα" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Αρχεία" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Λίστες αναπαραγωγής" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Άγνωστος τύπος: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Ανέβασμα σε εξέλιξη..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Ανάκτηση δεδομένων από τον διακομιστή..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Κωδικός σφάλματος: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Μήνυμα σφάλματος: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Το input πρέπει να είναι θετικός αριθμός" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Το input πρέπει να είναι αριθμός" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Άνοιγμα Δημιουργού Πολυμέσων" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Αδύνατη η προεπισκόπιση του δυναμικού block" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Όριο για: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Οι λίστες αναπαραγωγής αποθηκεύτηκαν" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Ανασχηματισμός λίστας αναπαραγωγής" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Καταμέτρηση Ακροατών για %s : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Υπενθύμιση σε 1 εβδομάδα" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Καμία υπενθύμιση" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ναι, βοηθώ το Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif " + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Το Smart block αποθηκεύτηκε" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Επεξεργασία..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Επιλέξτε τροποποιητή" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "περιέχει" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "δεν περιέχει" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "είναι" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "δεν είναι" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "ξεκινά με" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "τελειώνει με" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "είναι μεγαλύτερος από" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "είναι μικρότερος από" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "είναι στην κλίμακα" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Δημιουργία" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Επιλογή Φακέλου Αποθήκευσης" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Επιλογή Φακέλου για Προβολή" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\n" +"Αυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Διαχείριση Φακέλων Πολυμέσων" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Συνδέθηκε με τον διακομιστή streaming " + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Το stream είναι απενεργοποιημένο" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Λήψη πληροφοριών από το διακομιστή..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Αδύνατη η σύνδεση με τον διακομιστή streaming " + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή»." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής " + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Δεν βρέθηκαν αποτελέσματα" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Η εκπομπή δεν υπάρχει πια!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη " + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Εκπομπή" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Η εκπομπή είναι άδεια" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1λ" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5λ" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10λ" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15λ" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30λ" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60λ" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Ανάκτηση δεδομένων από το διακομιστή..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο " + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Ιανουάριος" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Φεβρουάριος" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Μάρτιος" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Απρίλης" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Μάιος" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Ιούνιος" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Ιούλιος" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Αύγουστος" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Σεπτέμβριος" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Οκτώβριος" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Νοέμβριος" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Δεκέμβριος" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Ιαν" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Φεβ" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Μαρ" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Απρ" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Ιουν" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Ιουλ" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Αυγ" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Σεπ" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Οκτ" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Νοε" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Δεκ" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Κυριακή" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Δευτέρα" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Τρίτη" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Τετάρτη" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Πέμπτη" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Παρασκευή" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Σάββατο" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Κυρ" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Δευ" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Τρι" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Τετ" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Πεμ" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Παρ" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Σαβ" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Ακύρωση Τρέχουσας Εκπομπής;" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Πάυση ηχογράφησης τρέχουσας εκπομπής;" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Οκ" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Περιεχόμενα Εκπομπής" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Αφαίρεση όλου του περιεχομένου;" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Διαγραφή επιλεγμένου στοιχείου/ων;" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Έναρξη" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Τέλος" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Διάρκεια" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Η εκπομπή είναι άδεια" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Ηχογράφηση Από Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Προεπισκόπηση κομματιού" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Μετακίνηση 1 Στοιχείου" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Μετακίνηση Στοιχείων %s" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Αποθήκευση" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Ακύρωση" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Επεξεργαστής Fade" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Επεξεργαστής Cue" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Επιλογή όλων" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Καμία Επιλογή" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων " + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Μετάβαση στο τρέχον κομμάτι " + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Ακύρωση τρέχουσας εκπομπής" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Προσθήκη / Αφαίρεση Περιεχομένου" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "σε χρήση" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Δίσκος" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Κοιτάξτε σε" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Άνοιγμα" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Διαχειριστής" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Διευθυντής Προγράμματος" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Επισκέπτης" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Προβολή Προγράμματος" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Προβολή περιεχομένου εκπομπής" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Οι DJ μπορούν να κάνουν τα παρακάτω" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Διαχείριση ανατεθημένου περιεχομένου εκπομπής" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Εισαγωγή αρχείων πολυμέσων" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams " + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Προβολή και διαχείριση περιεχομένου εκπομπής" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Πρόγραμμα εκπομπών" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Διαχείριση όλου του περιεχομένου βιβλιοθήκης" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Διαχείριση προτιμήσεων" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Διαχείριση Χρηστών" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Διαχείριση προβεβλημένων φακέλων " + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Αποστολή Σχολίων Υποστήριξης" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Προβολή κατάστασης συστήματος" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Πρόσβαση στην ιστορία playout" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Προβολή στατιστικών των ακροατών" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Εμφάνιση / απόκρυψη στηλών" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Από {από} σε {σε}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "Kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "εεεε-μμ-ηη" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "ωω:λλ:δδ.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Κυ" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Δε" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Τρ" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Τε" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Πε" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Πα" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Σα" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Κλείσιμο" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Ώρα" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Λεπτό" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Ολοκληρώθηκε" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Επιλογή αρχείων" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Προσθήκη Αρχείων" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Στάση Ανεβάσματος" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Έναρξη ανεβάσματος" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Προσθήκη αρχείων" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Ανέβηκαν %d/%d αρχεία" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Σύρετε αρχεία εδώ." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Σφάλμα επέκτασης αρχείου." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Σφάλμα μεγέθους αρχείου." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Σφάλμα μέτρησης αρχείων." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Σφάλμα αρχικοποίησης." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Σφάλμα HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Σφάλμα ασφάλειας." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Γενικό σφάλμα." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Σφάλμα IO" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Αρχείο: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d αρχεία σε αναμονή" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Το URL είτε είναι λάθος ή δεν υφίσταται" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Σφάλμα: Πολύ μεγάλο αρχείο: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Σφάλμα: Μη έγκυρη προέκταση αρχείου: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Ως Προεπιλογή" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Δημιουργία Εισόδου" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Επεξεργασία Ιστορικού" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Καμία Εκπομπή" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Αντιγράφηκαν %s σειρές%s στο πρόχειρο" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Περιγραφή" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Ενεργοποιημένο" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Απενεργοποιημένο" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Βλέπετε μια παλαιότερη έκδοση του %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Λίστα Αναπαραγωγής χωρίς Τίτλο" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Smart Block χωρίς Τίτλο" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Άγνωστη λίστα αναπαραγωγής" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Οι προτιμήσεις ενημερώθηκαν." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Η Ρύθμιση Stream Ενημερώθηκε." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "η διαδρομή πρέπει να καθοριστεί" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Πρόβλημα με Liquidsoap ..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Επιλέξτε cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Αφαίρεση cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "η εκπομπή δεν υπάρχει" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Ο χρήστης προστέθηκε επιτυχώς!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Webstream χωρίς Τίτλο" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Το Webstream αποθηκεύτηκε." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Άκυρες μορφές αξίας." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Εισαγωγή άκυρου χαρακτήρα" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Η μέρα πρέπει να προσδιοριστεί" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Η ώρα πρέπει να προσδιοριστεί" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Προσαρμοσμένο Όνομα Χρήστη" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Ηχογράφηση από Line In;" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Αναμετάδοση;" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "ημέρες" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Σύνδεσμος" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Τύπος Επανάληψης:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "εβδομαδιαία" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "κάθε 2 εβδομάδες" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "κάθε 3 εβδομάδες" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "κάθε 4 εβδομάδες" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "μηνιαία" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Επιλέξτε Ημέρες:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Επανάληψη από:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "ημέρα του μήνα" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "ημέρα της εβδομάδας" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Ημερομηνία Λήξης:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Χωρίς Τέλος;" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Επιλέξτε ημέρα επανάληψης" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Χρώμα Φόντου:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Χρώμα Κειμένου:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Όνομα:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Εκπομπή χωρίς Τίτλο" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "Διεύθυνση URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Είδος:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Περιγραφή:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Διάρκεια:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Ζώνη Ώρας" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Επαναλήψεις;" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Δεν μπορεί να έχει διάρκεια < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Αναζήτηση Χρηστών:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Όνομα Χρήστη:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Κωδικός πρόσβασης:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Επαλήθευση κωδικού πρόσβασης" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Όνομα:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Επώνυμο:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Κινητό Τηλέφωνο:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Τύπος Χρήστη:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Το όνομα εισόδου δεν είναι μοναδικό." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Ημερομηνία Έναρξης:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Τίτλος:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Δημιουργός:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Έτος" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Δισκογραφική:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Συνθέτης:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Μαέστρος:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Διάθεση:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Αριθμός ISRC:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Ιστοσελίδα:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Γλώσσα:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Ώρα Έναρξης" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Ώρα Τέλους" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Ζώνης ώρας:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Όνομα Σταθμού" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Λογότυπο Σταθμού:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Προεπιλεγμένη Διάρκεια Crossfade (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Προεπιλεγμένο Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Προεπιλεγμένο Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Ζώνη Ώρας Σταθμού" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Η Εβδομάδα αρχίζει " + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Σύνδεση" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Όνομα Χρήστη" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Επαναφορά κωδικού πρόσβασης" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Αναπαραγωγή σε Εξέλιξη" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Όλες οι Εκπομπές μου:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Επιλέξτε κριτήρια" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Ρυθμός Δειγματοληψίας (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "ώρες" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "λεπτά" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "στοιχεία" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Δυναμικό" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Στατικό" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Περιεχόμενο λίστας Shuffle " + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Η τιμή πρέπει να είναι αριθμός" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Η αξία δεν μπορεί να είναι κενή" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Καλλιτέχνης - Τίτλος" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Εκπομπή - Καλλιτέχνης - Τίτλος" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Όνομα Σταθμού - Όνομα Εκπομπής" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Μεταδεδομένα Off Air" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Ενεργοποίηση Επανάληψη Κέρδους" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Τροποποιητής Επανάληψης Κέρδους" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Ενεργοποιημένο" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Τύπος Stream:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Ρυθμός Δεδομένων:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Τύπος Υπηρεσίας:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Κανάλια" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Διακομιστής" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Θύρα" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Σημείο Προσάρτησης" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Ονομασία" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "Διεύθυνση URL:" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Εισαγωγή Φακέλου:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Παροβεβλημμένοι Φάκελοι:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Μη έγκυρο Ευρετήριο" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in και cue out είναι μηδέν." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Επιλέξτε Χώρα" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη." + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n" +" Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Αναμετάδοση του %s από %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες " + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Δεν βρέθηκε τύπος MIME για webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF " + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Άγνωστος τύπος stream: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Το αρχείο δεν υπάρχει" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων " + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Επεξεργασία Εκπομπής" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Δεν έχετε δικαίωμα πρόσβασης" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Κομμάτι" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Παίχτηκε" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " να " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s έχει ήδη προβληθεί." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s μη έγκυρο ευρετήριο." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)." + +#~ msgid "(Required)" +#~ msgstr "(Απαιτείται)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(ωω:λλ:δδ.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(Ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Σχετικά" + +#~ msgid "Add New Field" +#~ msgstr "Προσθήκη Νέου Πεδίου" + +#~ msgid "Add more elements" +#~ msgstr "Προσθήκη περισσότερων στοιχείων" + +#~ msgid "Add this show" +#~ msgstr "Προσθήκη αυτής της εκπομπής " + +#~ msgid "Additional Options" +#~ msgstr "Πρόσθετες επιλογές" + +#~ msgid "Admin Password" +#~ msgstr "Κωδικός πρόσβασης Διαχειριστή" + +#~ msgid "Admin User" +#~ msgstr "Διαχειριστής Χρήστης" + +#~ msgid "Advanced Search Options" +#~ msgstr "Προηγμένες Επιλογές Αναζήτησης" + +#~ msgid "All rights are reserved" +#~ msgstr "Διατήρηση όλων των δικαιωμάτων" + +#~ msgid "Audio Track" +#~ msgstr "Κομμάτι Ήχου" + +#~ msgid "Choose Days:" +#~ msgstr "Επιλέξτε Ημέρες:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Επιλογή Παρουσίας Εκπομπής" + +#~ msgid "Choose folder" +#~ msgstr "Επιλέξτε φάκελο" + +#~ msgid "City:" +#~ msgstr "Πόλη" + +#~ msgid "Clear" +#~ msgstr "Εκκαθάριση" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους" + +#~ msgid "Country:" +#~ msgstr "Χώρα" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Δημιουργία Αρχείου Περίληψης Template " + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Δημιουργία Template Φόρμας Σύνδεσης" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Απόδοση Creative Commons" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Απόδοση Creative Commons Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Τρέχων Φάκελος Εισαγωγής:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default Length:" +#~ msgstr "Προεπιλεγμένη Διάρκεια:" + +#~ msgid "Default License:" +#~ msgstr "Προεπιλεγμένη Άδεια :" + +#~ msgid "Disk Space" +#~ msgstr "Χώρος δίσκου" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Δυναμικά Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Κριτήρια Δυναμικών Smart Block: " + +#~ msgid "Empty playlist content" +#~ msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Επέκταση Δυναμικών Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Επέκταση Στατικών Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "Διαδρομή Αρχείου" + +#~ msgid "File Summary" +#~ msgstr "Περίληψη Αρχείων" + +#~ msgid "File Summary Templates" +#~ msgstr "Template Περίληψης Αρχείου" + +#~ msgid "File import in progress..." +#~ msgstr "Εισαγωγή αρχείου σε εξέλιξη..." + +#~ msgid "Filter History" +#~ msgstr "Φιλτράρισμα Ιστορίας" + +#~ msgid "Find" +#~ msgstr "Εύρεση" + +#~ msgid "Find Shows" +#~ msgstr "Εύρεση Εκπομπών" + +#~ msgid "First Name" +#~ msgstr "Όνομα" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Για περισσότερες λεπτομέρειες, παρακαλούμε διαβάστε το %sAirtime Εγχειρίδιο%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Μεταδεδομένα Icecast Vorbis " + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Αν το Airtime είναι πίσω από ένα τείχος προστασίας ή router, ίσως χρειαστεί να ρυθμίσετε την προώθηση port και οι πληροφορίες πεδίου θα είναι λανθασμένες. Σε αυτή την περίπτωση θα πρέπει να ενημερώσετε αυτό το πεδίο, ώστε να δείχνει το σωστό host/port/mount που χρειάζονται οι DJ σας για να συνδεθούν. Το επιτρεπόμενο εύρος είναι μεταξύ 1024 και 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Αριθμός ISRC:" + +#~ msgid "Last Name" +#~ msgstr "Επώνυμο" + +#~ msgid "Length:" +#~ msgstr "Διάρκεια:" + +#~ msgid "Limit to " +#~ msgstr "Όριο για " + +#~ msgid "Listen" +#~ msgstr "Ακούστε!" + +#~ msgid "Live Stream Input" +#~ msgstr "Είσοδος Live Stream " + +#~ msgid "Live stream" +#~ msgstr "Ζωντανό Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Σελίδα Σύνδεσης" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Template Φόρμας Σύνδεσης" + +#~ msgid "Logout" +#~ msgstr "Έξοδος" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!" + +#~ msgid "Manage Users" +#~ msgstr "Διαχείριση Χρηστών" + +#~ msgid "Master Source" +#~ msgstr "Κύρια Πηγή " + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." + +#~ msgid "New File Summary Template" +#~ msgstr "Νέο Template Περίληψης Αρχείου" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Νέο Template Φόρμας Σύνδεσης" + +#~ msgid "New User" +#~ msgstr "Νέος Χρήστης" + +#~ msgid "New password" +#~ msgstr "Νέος κωδικός πρόσβασης" + +#~ msgid "Next:" +#~ msgstr "Επόμενο" + +#~ msgid "No File Summary Templates" +#~ msgstr "Κανένα Template Περίληψης Αρχείου" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Κανένα Template Φόρμας Σύνδεσης" + +#~ msgid "No open playlist" +#~ msgstr "Καμία ανοικτή λίστα αναπαραγωγής" + +#~ msgid "No webstream" +#~ msgstr "Κανένα webstream" + +#~ msgid "OK" +#~ msgstr "ΟΚ" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Επιτρέπονται μόνο αριθμοί." + +#~ msgid "Original Length:" +#~ msgstr "Αρχική Διάρκεια:" + +#~ msgid "Page not found!" +#~ msgstr "Η σελίδα δεν βρέθηκε!" + +#~ msgid "Phone:" +#~ msgstr "Τηλέφωνο:" + +#~ msgid "Play" +#~ msgstr "Αναπαραγωγή" + +#~ msgid "Playlist Contents: " +#~ msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Crossfade λίστας αναπαραγωγής" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. " + +#~ msgid "Please upgrade to " +#~ msgstr "Παρακαλούμε να αναβαθμίσετε σε " + +#~ msgid "Port cannot be empty." +#~ msgstr "Το Port δεν μπορεί να είναι κενό." + +#~ msgid "Previous:" +#~ msgstr "Προηγούμενο" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Οι Μάνατζερ Προγράμματος μπορούν να κάνουν τα παρακάτω:" + +#~ msgid "Register Airtime" +#~ msgstr "Εγγραφή σε Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου" + +#~ msgid "Repeat Days:" +#~ msgstr "Επανάληψη Ημερών:" + +#~ msgid "Sample Rate:" +#~ msgstr "Ρυθμός δειγματοληψίας:" + +#~ msgid "Save playlist" +#~ msgstr "Αποθήκευση λίστας αναπαραγωγής" + +#~ msgid "Select stream:" +#~ msgstr "Επιλέξτε stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." + +#~ msgid "Set" +#~ msgstr "Ορισμός" + +#~ msgid "Set Cue In" +#~ msgstr "Ρύθμιση Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Ρύθμιση Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Ορισμός Προεπιλεγμένου Template " + +#~ msgid "Share" +#~ msgstr "Μοιραστείτε" + +#~ msgid "Show Source" +#~ msgstr "Εμφάνιση Πηγής " + +#~ msgid "Show Summary" +#~ msgstr "Προβολή Περίληψης" + +#~ msgid "Show Waveform" +#~ msgstr "Εμφάνιση κυμματοειδούς μορφής" + +#~ msgid "Show me what I am sending " +#~ msgstr "Δείξε μου τι στέλνω " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle λίστα αναπαραγωγής" + +#~ msgid "Source Streams" +#~ msgstr "Πηγή Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Στατικά Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Περιεχόμενα Στατικών Smart Block : " + +#~ msgid "Station Description:" +#~ msgstr "Περιγραφή Σταθμού:" + +#~ msgid "Station Web Site:" +#~ msgstr "Ιστοσελίδα Σταθμού:" + +#~ msgid "Stop" +#~ msgstr "Παύση" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Ρυθμίσεις Stream" + +#~ msgid "Stream URL:" +#~ msgstr "URL Stream:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Stream: " + +#~ msgid "Style" +#~ msgstr "Στυλ" + +#~ msgid "Support Feedback" +#~ msgstr "Σχόλια Υποστήριξης" + +#~ msgid "Support setting updated." +#~ msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε." + +#~ msgid "Terms and Conditions" +#~ msgstr "Όροι και Προϋποθέσεις" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Η επιθυμητή διάρκεια του block δεν θα επιτευχθεί αν το Airtime δεν μπορέσει να βρεί αρκετά μοναδικά κομμάτια που να ταιριάζουν στα κριτήριά σας. Ενεργοποιήστε αυτή την επιλογή αν θέλετε να επιτρέψετε την πολλαπλή προσθήκη κομματιών στο smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Εργασία δημόσιας χρήσης" + +#~ msgid "This version is no longer supported." +#~ msgstr "Αυτή η έκδοση δεν υποστηρίζεται πλέον." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Αυτή η έκδοση θα παρωχηθεί σύντομα." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας." + +#~ msgid "Track:" +#~ msgstr "Κομμάτι:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα." + +#~ msgid "Update Required" +#~ msgstr "Απαιτείται Ενημέρωση " + +#~ msgid "Update show" +#~ msgstr "Ενημέρωση εκπομπής" + +#~ msgid "User Type" +#~ msgstr "Τύπος Χρήστη" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Τι" + +#~ msgid "When" +#~ msgstr "Πότε" + +#~ msgid "Who" +#~ msgstr "Ποιός" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων." + +#~ msgid "Your trial expires in" +#~ msgstr "Το δοκιμαστικό λήγει σε" + +#~ msgid "and" +#~ msgstr "και" + +#~ msgid "dB" +#~ msgstr "βΔ" + +#~ msgid "files meet the criteria" +#~ msgstr "τα αρχεία πληρούν τα κριτήρια" + +#~ msgid "id" +#~ msgstr "ταυτότητα" + +#~ msgid "max volume" +#~ msgstr "μέγιστη ένταση" + +#~ msgid "mute" +#~ msgstr "Σίγαση" + +#~ msgid "next" +#~ msgstr "επόμενο" + +#~ msgid "or" +#~ msgstr "ή" + +#~ msgid "pause" +#~ msgstr "παύση" + +#~ msgid "play" +#~ msgstr "αναπαραγωγή" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "παρακαλούμε εισάγετε τιμή ώρας σε δευτερόλεπτα '00 (0,0)'" + +#~ msgid "previous" +#~ msgstr "προηγούμενο" + +#~ msgid "stop" +#~ msgstr "στάση" + +#~ msgid "unmute" +#~ msgstr "Κατάργηση σίγασης" diff --git a/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..6831a4756b --- /dev/null +++ b/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po @@ -0,0 +1,4610 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Daniel James , 2014 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: English (Canada)\n" +"Language: en_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "The year %s must be within the range of 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s is not a valid date" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s is not a valid time" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendar" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Users" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout History" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "History Templates" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Listener Stats" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Help" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Getting Started" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "User Manual" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Colour:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Colour:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "First name:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Last name:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Shows can have a max length of 24 hours." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL should be of form \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognized stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Edit Show" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Permission denied" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " to " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contains nested watched directory: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s doesn't exist in the watched list." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s is already set as the current storage dir or in the watched folders list" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s is already set as the current storage dir or in the watched folders list." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s is already watched." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s is nested within existing watched directory: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s is not a valid directory." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." + +#~ msgid "(Required)" +#~ msgstr "(Required)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "About" + +#~ msgid "Add New Field" +#~ msgstr "Add New Field" + +#~ msgid "Add more elements" +#~ msgstr "Add more elements" + +#~ msgid "Add this show" +#~ msgstr "Add this show" + +#~ msgid "Additional Options" +#~ msgstr "Additional Options" + +#~ msgid "Admin Password" +#~ msgstr "Admin Password" + +#~ msgid "Admin User" +#~ msgstr "Admin User" + +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default Length:" +#~ msgstr "Default Length:" + +#~ msgid "Default License:" +#~ msgstr "Default License:" + +#~ msgid "Disk Space" +#~ msgstr "Disk Space" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount cannot be empty with Icecast server." + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Only numbers are allowed." + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." + +#~ msgid "Please upgrade to " +#~ msgstr "Please upgrade to " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port cannot be empty." + +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server cannot be empty." + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "please put in a time in seconds '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..b052ea706f --- /dev/null +++ b/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po @@ -0,0 +1,4875 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Daniel James , 2014-2015 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2022-07-14 09:18+0000\n" +"Last-Translator: Kyle Robbertze \n" +"Language-Team: English (United Kingdom) \n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "The year %s must be within the range of 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s is not a valid date" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s is not a valid time" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "English (United Kingdom)" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Afar" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abkhazian" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amharic" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Arabic" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Assamese" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aymara" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerbaijani" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Bashkir" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Bashkir" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Bulgarian" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Bihari" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bislama" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengali" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibetan" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Breton" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Catalan" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Corsican" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Czech" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Welsh" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Danish" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "German" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Bhutani" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Greek" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Spanish" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estonian" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Basque" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persian" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Finnish" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fiji" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Faeroese" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "French" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Frisian" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Irish" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Scots/Gaelic" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galician" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Gujarati" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Hausa" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Croatian" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Hungarian" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Armenian" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:67 +#, fuzzy +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Indonesian" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Icelandic" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italian" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hebrew" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japanese" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Yiddish" + +#: application/common/LocaleHelper.php:75 +#, fuzzy +msgid "Javanese" +msgstr "Javanese" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Georgian" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kazakh" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Greenlandic" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Cambodian" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Korean" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Kashmiri" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kurdish" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kirghiz" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latin" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Laothian" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Lithuanian" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Latvian/Lettish" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Malagasy" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maori" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Macedonian" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Mongolian" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldavian" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malay" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltese" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Upload some tracks below to add them to your library!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Please click the 'New Show' button and fill out the required fields." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "It looks like you don't have any shows scheduled yet. %sCreate a show now%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "To start broadcasting, click on the current show and select 'Schedule Tracks'" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Click on the show starting next and select 'Schedule Tracks'" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "It looks like the next show is empty. %sAdd tracks to your show now%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Radio Page" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendar" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Widgets" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Player" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Weekly Schedule" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Settings" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "General" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "My Profile" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Users" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Analytics" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout History" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "History Templates" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Listener Stats" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Help" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Getting Started" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "User Manual" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Get Help Online" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "File does not exist in %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Page not found." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "The requested action is not supported." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "You do not have permission to access this resource." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "An internal application error has occurred." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Could not delete file because it is scheduled in the future." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Could not delete file(s)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure admin user/password is correct on Settings->Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Something went wrong!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "You haven't added any tracks" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "You haven't added any playlists" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "You haven't added any smart blocks" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "You haven't added any webstreams" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Learn about tracks" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Learn about playlists" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Learn about smart blocks" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Learn about webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Click 'New' to create one." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Tracks" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "View" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "WARNING: This will restart your stream and may cause a short dropout for your listeners!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Today" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Day" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Week" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Month" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filtering out " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " of " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " records" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Trim overbooked shows" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "New Show" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "New Log Entry" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Smart Block" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Please enter your username and password." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "There was a problem with the username or email address you entered." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Request method not accepted" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Use %s Authentication:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Host:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Port:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Mount:" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Colour:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Colour:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Current Logo:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Show Logo:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Logo Preview:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Instance Description:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Start Time:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "In the Future:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "End Time:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Firstname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Lastname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Delete All Tracks in Library" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Station Description" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Please enter a time in seconds (e.g. 0.5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "Public LibreTime API" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Required for embeddable schedule widget." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Default Language" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "Display login button on your Radio Page?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Auto Switch Off:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Auto Switch On:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Switch Transition Fade (s):" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Back" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Select Stream:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Auto-detect the most appropriate stream to use." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Select a stream:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Mobile friendly" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - The player does not support Opus streams." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Embeddable code:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Copy this code and paste it into your website's HTML to embed the player in your site." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Preview:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Public" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Private" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Station Language" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Filter by Show" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Randomly" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Newest" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Oldest" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "Select Track Type" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Type:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "Select track type" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Allow Repeated Tracks:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Allow last track to exceed time limit:" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Sort Tracks:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limit to:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "You must select a time unit for a relative date and time." + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "Only non-negative integer numbers are allowed for a relative date time" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Hardware Audio Output:" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Output Type" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Mobile:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Push metadata to your station on TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Station ID:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partner Key:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partner ID:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Password Reset" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Upload Time" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "None" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "Powered by %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "livestream" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Cannot schedule a playlist that contains missing files." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Shows can have a max length of 24 hours." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL should be of form \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognised stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Schedule Tracks" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Clear Show" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Cancel Show" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Edit Instance" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Edit Show" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Delete Instance" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Delete Instance and All Following" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Permission denied" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Auto-generated smart-block for podcast" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Webstreams" + +#~ msgid " to " +#~ msgstr " to " + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s is distributed under the %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, the open radio software for scheduling and remote station management." + +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contains nested watched directory: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s doesn't exist in the watched list." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s is already set as the current storage dir or in the watched folders list" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s is already set as the current storage dir or in the watched folders list." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s is already watched." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s is nested within existing watched directory: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s is not a valid directory." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." + +#~ msgid "(Required)" +#~ msgstr "(Required)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "A track list will be generated when you schedule this smart block into a show." + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "About" + +#~ msgid "Access Denied!" +#~ msgstr "Access Denied!" + +#~ msgid "Add New Field" +#~ msgstr "Add New Field" + +#~ msgid "Add more elements" +#~ msgstr "Add more elements" + +#~ msgid "Add this show" +#~ msgstr "Add this show" + +#~ msgid "Add tracks to your show" +#~ msgstr "Add tracks to your show" + +#~ msgid "Additional Options" +#~ msgstr "Additional Options" + +#~ msgid "Admin Password" +#~ msgstr "Admin Password" + +#~ msgid "Admin User" +#~ msgstr "Admin User" + +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" + +#~ msgid "Airtime Pro Streaming" +#~ msgstr "Airtime Pro Streaming" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "An error has occurred." +#~ msgstr "An error has occurred." + +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Bad Request!" +#~ msgstr "Bad Request!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "By checking this box, I agree to %s's %sprivacy policy%s." + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Choose some search criteria above and click Generate to create this playlist." + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Click the 'Upload' button in the left corner to upload tracks to your library." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Click the box below to promote your station on %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +#~ msgstr "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Custom / 3rd Party Streaming" + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." + +#~ msgid "Dangerous Options" +#~ msgstr "Dangerous Options" + +#~ msgid "Dashboard" +#~ msgstr "Dashboard" + +#~ msgid "Default Length:" +#~ msgstr "Default Length:" + +#~ msgid "Default License:" +#~ msgstr "Default License:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Default Sharing Type:" + +#~ msgid "Default Streaming" +#~ msgstr "Default Streaming" + +#~ msgid "Disk Space" +#~ msgstr "Disk Space" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Drag tracks here from your library to add them to the playlist" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Drop files here or click to browse your computer." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Editing " +#~ msgstr "Editing " + +#~ msgid "Email Sent!" +#~ msgstr "Email Sent!" + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "Failed" +#~ msgstr "Failed" + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Forgot your password?" + +#~ msgid "Global" +#~ msgstr "Global" + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Here's how you can get started using %s to automate your broadcasts: " + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Jack" +#~ msgstr "Jack" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Listeners" +#~ msgstr "Listeners" + +#~ msgid "Live Broadcasting" +#~ msgstr "Live Broadcasting" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount cannot be empty with Icecast server." + +#~ msgid "New Criteria" +#~ msgstr "New Criteria" + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New Modifier" +#~ msgstr "New Modifier" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No smart block currently open" +#~ msgstr "No smart block currently open" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "Now you're good to go!" +#~ msgstr "Now you're good to go!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Only numbers are allowed." + +#~ msgid "Oops!" +#~ msgstr "Oops!" + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Output Streams" +#~ msgstr "Output Streams" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Password Reset" +#~ msgstr "Password Reset" + +#~ msgid "Pending" +#~ msgstr "Pending" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Playout History Templates" +#~ msgstr "Playout History Templates" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." + +#~ msgid "Please upgrade to " +#~ msgstr "Please upgrade to " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port cannot be empty." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promote my station on %s" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "Recent Uploads" +#~ msgstr "Recent Uploads" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Remove all content from this smart block" + +#~ msgid "Remove track" +#~ msgstr "Remove track" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Schedule a show" +#~ msgstr "Schedule a show" + +#~ msgid "Search Criteria:" +#~ msgstr "Search Criteria:" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server cannot be empty." + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Stream Data Collection Status" + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Streaming Server:" +#~ msgstr "Streaming Server:" + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The requested action is not supported!" +#~ msgstr "The requested action is not supported!" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#~ msgid "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" +#~ " 2. Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" +#~ " 2. Enable the Public LibreTime API under System -> Preferences" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public LibreTime API under System -> Preferences" + +#~ msgid "Toggle Details" +#~ msgstr "Toggle Details" + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn Settings" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "Upload" +#~ msgstr "Upload" + +#~ msgid "Upload audio tracks" +#~ msgstr "Upload audio tracks" + +#~ msgid "Upload track" +#~ msgstr "Upload track" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Use these settings in your broadcasting software to stream live at any time." + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "View track" +#~ msgstr "View track" + +#~ msgid "Viewing " +#~ msgstr "Viewing " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "We couldn't find the page you were looking for." + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "Webstream" +#~ msgstr "Webstream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Welcome to %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "You do not have permission to access this page!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "file meets the criteria" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "please put in a time in seconds '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..30a5dca537 --- /dev/null +++ b/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po @@ -0,0 +1,4610 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Daniel James , 2014 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: English (United States)\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "The year %s must be within the range of 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s is not a valid date" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s is not a valid time" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendar" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Users" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout History" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "History Templates" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Listener Stats" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Help" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Getting Started" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "User Manual" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure admin user/password is correct on Settings->Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Color:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Color:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Firstname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Lastname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Shows can have a max length of 24 hours." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL should be of form \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognized stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Edit Show" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Permission denied" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " to " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contains nested watched directory: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s doesn't exist in the watched list." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s is already set as the current storage dir or in the watched folders list" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s is already set as the current storage dir or in the watched folders list." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s is already watched." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s is nested within existing watched directory: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s is not a valid directory." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." + +#~ msgid "(Required)" +#~ msgstr "(Required)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "About" + +#~ msgid "Add New Field" +#~ msgstr "Add New Field" + +#~ msgid "Add more elements" +#~ msgstr "Add more elements" + +#~ msgid "Add this show" +#~ msgstr "Add this show" + +#~ msgid "Additional Options" +#~ msgstr "Additional Options" + +#~ msgid "Admin Password" +#~ msgstr "Admin Password" + +#~ msgid "Admin User" +#~ msgstr "Admin User" + +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default Length:" +#~ msgstr "Default Length:" + +#~ msgid "Default License:" +#~ msgstr "Default License:" + +#~ msgid "Disk Space" +#~ msgstr "Disk Space" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount cannot be empty with Icecast server." + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Only numbers are allowed." + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." + +#~ msgid "Please upgrade to " +#~ msgstr "Please upgrade to " + +#~ msgid "Port cannot be empty." +#~ msgstr "Port cannot be empty." + +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server cannot be empty." + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "please put in a time in seconds '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po b/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..dca47680c8 --- /dev/null +++ b/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po @@ -0,0 +1,5060 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Xabier Arrabal , 2015 +# Maria Ituarte , 2015 +# Sourcefabric , 2012 +# Víctor Carranza , 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2023-03-21 11:41+0000\n" +"Last-Translator: gallegonovato \n" +"Language-Team: Spanish \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.16.2-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "El año %s debe estar dentro del rango de 1753-9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s no es una fecha válida" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s no es una hora válida" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Inglés" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Pueblo afar" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abjasia" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikáans" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amhárico" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Árabe" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Asamés" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aimara" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerbaiyano" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Idioma Bashkir" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Bielorruso" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Búlgaro" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Lenguas Bihari" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bichelamar" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengalí/Bangla" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibetano" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Bretón" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Catalán" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Corso" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Checo" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Galés" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Danés" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Alemán" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Butaní" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Griego" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Español" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estonia" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Vasco" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persa" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Finés" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fiyi" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Feroés" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Francés" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Frisón" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Irlandés" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Escocés/Gaelico" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galego" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guaraní" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Guyaratí" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Idioma Hausa" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hindú" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Croata" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Húngaro" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Armenio" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Interlingue o Occidental" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Iñupiaq" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Indonesio" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Islandés" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italiano" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hebreo" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japonés" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Yidis" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Javanés" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Georgiano" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kazajo" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Groenlandés" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Camboyano" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Canarés" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Coreano" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Cachemir" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kurdo" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kirguís" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latín" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Laosiano" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Lituano" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Letón" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Malgache" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maorí" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Macedonio" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayo" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Mongol" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldavo" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Maratí" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malay" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltés" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Birmano" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Nauru o Naurú" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Nepalí" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Holandés" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Noruego" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Occitano o lengua de oc" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "Oriya" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Panyabí" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Polaco" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Pastún/Ushto" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Portugués" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Romanche" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Kirundi (Rundi)" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Rumano" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Ruso" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Kiñaruanda" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Sánscrito" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Sindi" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Sango" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Serbocroata" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Cingalés" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Eslovaco" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Esloveno" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Samoano" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Shona" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Somalí" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Albanés" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Serbio" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Suazi" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Sesoto" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Sundanés" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Sueco" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Suajili" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Tamil" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Télugu" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Tayiko" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Tailandés" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Tigriña" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Turkmeno o Turkeno" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Tagalo o tagálog" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Setsuana" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Tongano" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Turco" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Tsonga" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Tártaro" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Twi o Chuí" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Ucraniano" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Urdu" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Uzbeko" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "Vietnamita" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Volapük" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Wólof" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Chino" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Zulú" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Usar el predeterminado de la estación" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" +"Parece que aún no has subido ningún archivo de audio. %sSube un archivo " +"ahora%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Parece que no tienes shows programados. %sCrea un show ahora%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n" +" %sCrear un show no enlazado ahora%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" +"Parece que el programa actual necesita más pistas. %sAñade pistas a tu " +"programa ahora%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "Servicio de análisis multimedia LibreTime" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" +"Compruebe que el servicio libretime-analyzer está instalado correctamente en " + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr " y asegúrate de que se ejecuta con " + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "Si no, prueba " + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "Servicio de emisión de LibreTime" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" +"Compruebe que el servicio libretime-playout está instalado correctamente en " + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "Servicio LibreTime liquidsoap" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" +"Comprueba que el servicio libretime-liquidsoap está instalado correctamente " +"en " + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "Servicio de tareas LibreTime Celery" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" +"Compruebe que el servicio libretime-worker está instalado correctamente en " + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "Servicio API de LibreTime" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" +"Comprueba que el servicio libretime-api está instalado correctamente en " + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Radio Web" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendario" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Widgets" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Reproductor" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Calendario Semanal" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Ajustes" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "General" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Mi Perfil" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Usuarios" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Tipos de pista" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streamer" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Estado" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Estadísticas" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Historial de reproducción" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Plantillas Historial" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Estadísticas de oyentes" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Mostrar las estadísticas de los oyentes" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Ayuda" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Cómo iniciar" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Manual para el usuario" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Conseguir ayuda en línea" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Contribuir a LibreTime" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "¿Qué hay de nuevo?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "No tienes permiso para acceder a este recurso." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "No tienes permiso para acceder a este recurso. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "El archivo no existe en %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Solicitud incorrecta. No se pasa el parámetro 'mode'." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Solicitud incorrecta. El parámetro 'mode' pasado es inválido" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "No tienes permiso para desconectar la fuente." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "No hay fuente conectada a esta entrada." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "No tienes permiso para cambiar de fuente." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Para configurar y utilizar el reproductor integrado debe:

\n" +" 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> " +"Streamer
\n" +" 2. Active la API pública LibreTime en Configuración -> " +"Preferencias" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Para utilizar el widget de horario semanal incrustado debe:

\n" +" Habilitar la API pública LibreTime en Configuración -> " +"Preferencias" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Para añadir la pestaña Radio a tu página de Facebook, primero debes:

" +"\n" +" Habilitar la API pública LibreTime en Configuración -> " +"Preferencias" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Página no encontrada." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "No se admite la acción solicitada." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "No tiene permiso para acceder a este recurso." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Se ha producido un error interno de la aplicación." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Podcast" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "No se han publicado pistas todavía." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "No se encontró %s" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Algo salió mal." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Previsualizar" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Añadir a la lista de reproducción" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Agregar un bloque inteligente" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Eliminar" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Editar..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Descargar" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplicar lista de reproducción" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Bloque inteligente duplicado" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "No hay acción disponible" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "No tienes permiso para eliminar los elementos seleccionados." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" +"No se ha podido eliminar el archivo porque está programado para el futuro." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "No se pudo eliminar el archivo(s)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Copia de %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "" +"Asegúrese de que el usuario/contraseña de administrador es correcto en la " +"página Configuración->Streams." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Reproductor de audio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "¡Algo salió mal!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Grabando:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Stream maestro" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Stream en vivo" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nada programado" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Show actual:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Actual" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Estás usando la versión más reciente" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nueva versión disponible: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "Tienes una versión pre-lanzamiento de LibreTime instalada." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Hay disponible una actualización de parche para la instalación de LibreTime." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Hay disponible una actualización de funcionalidad para su instalación de LibreTime." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Hay disponible una actualización importante para su instalación de LibreTime." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Añadir a la lista de reproducción actual" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Añadir al bloque inteligente actual" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Añadiendo 1 item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Añadiendo %s elementos" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Solo puede agregar canciones a los bloques inteligentes." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Indica tu selección en la lista de reproducción actual." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "No ha añadido ninguna pista" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "No has añadido ninguna lista de reproducción" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "No has añadido ningún podcast" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "No has añadido ningún bloque inteligente" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "No has añadido ningún webstream" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Aprenda sobre pistas" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Aprenda sobre listas de reproducción" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "Aprenda sobre podcasts" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Aprenda sobre bloques inteligentes" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Aprenda sobre webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Clic 'Nuevo' para crear uno." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Añadir" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Nuevo" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Editar" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Añadir al show próximo" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Añadir al show próximo" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Añadir al show actual" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "Añadir después de los elementos seleccionados" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Publicar" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Eliminar" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Editar metadatos" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Añadir al show seleccionado" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Seleccionar" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Seleccionar esta página" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deseleccionar esta página" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deseleccionar todo" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "¿De verdad quieres eliminar los ítems seleccionados?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Programado" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Pistas" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Listas de reproducción" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Título" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Creador" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Álbum" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Tasa de bits" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Compositor" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Director" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Derechos de autor" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Codificado por" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Género" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Sello" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Idioma" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Ult.Modificado" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Ult.Reproducido" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Duración" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Estilo (mood)" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Propietario" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Ganancia" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Tasa de muestreo" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Núm.Pista" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Subido" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Sitio web" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Año" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Cargando..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Todo" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Archivos" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listas" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Bloques" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Tipo desconocido: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "¿De verdad deseas eliminar el ítem seleccionado?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Carga en progreso..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Recolectando data desde el servidor..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Importar" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Importado?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Ver" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Código del error: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Msg de error: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "La entrada debe ser un número positivo" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "La entrada debe ser un número" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "La entrada debe tener el formato: aaaa-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "La entrada debe tener el formato: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Mi Podcast" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "" +"Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. " +"%s¿Estás seguro de que quieres salir de la página?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Abrir Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Por favor introduce un tiempo '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Por favor introduce un tiempo en segundos válido. Ej. 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Tu navegador no soporta la reproducción de este tipo de archivos: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Los bloques dinámicos no se pueden previsualizar" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limitado a: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Se guardó la lista de reproducción" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Lista de reproducción mezclada" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "" +"Airtime no está seguro del estado de este archivo. Esto puede suceder cuando " +"el archivo está en una unidad remota a la que no se puede acceder o el " +"archivo está en un directorio que ya no se 'vigila'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Número de oyentes en %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Recuérdame en 1 semana" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Nunca recordarme" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Sí, ayudar a Libretime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "La imagen debe ser jpg, jpeg, png, o gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "" +"Un bloque inteligente estático guardará los criterios y generará el " +"contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la " +"Biblioteca antes de añadirlo a un programa." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" +"No se alcanzará la longitud de bloque deseada si %s no puede encontrar " +"suficientes pistas únicas que coincidan con sus criterios. Active esta " +"opción si desea permitir que las pistas se añadan varias veces al bloque " +"inteligente." + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Se reprodujo el bloque inteligente de forma aleatoria" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Bloque inteligente generado y criterios guardados" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Bloque inteligente guardado" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Procesando..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Elige modificador" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contiene" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "no contiene" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "es" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "no es" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "empieza con" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "termina con" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "es mayor que" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "es menor que" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "está en el rango de" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generar" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Elegir carpeta de almacenamiento" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Elegir carpeta a monitorizar" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n" +" ¡Esto eliminará los archivos de tu biblioteca de Airtime!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Administrar las Carpetas de Medios" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "¿Estás seguro de que quieres quitar la carpeta monitorizada?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Esta ruta es actualmente inaccesible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Conectado al servidor de streaming" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Se desactivó el stream" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Obteniendo información desde el servidor..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "No es posible conectar el servidor de streaming" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" +"Si %s está detrás de un router o firewall, puede que necesites configurar el " +"reenvío de puertos y la información de este campo será incorrecta. En este " +"caso, tendrá que actualizar manualmente este campo para que muestre el host/" +"puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido " +"está entre 1024 y 49151." + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "Para más detalles, lea el %s%s Manual %s" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "" +"Marque esta opción para activar los metadatos para los flujos OGG (los " +"metadatos del flujo son el título de la pista, el artista y el nombre del " +"programa que se muestran en un reproductor de audio). VLC y mplayer tienen " +"un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la " +"información de metadatos: se desconectarán del flujo después de cada " +"canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte " +"para estos reproductores de audio, entonces siéntete libre de habilitar esta " +"opción." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente)." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Sin resultados" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Especifique una autenticación personalizada que funcione solo para este show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "¡La instancia de este show ya no existe!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Advertencia: Los shows no pueden re-enlazarse" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Mostrar" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "El show está vacío" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Recopilando información desde el servidor..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Este show no cuenta con contenido programado." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Este programa aún no está lleno de contenido." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Enero" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Febrero" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Marzo" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Abril" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mayo" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Junio" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Julio" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Agosto" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Septiembre" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Octubre" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Noviembre" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Diciembre" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Ene" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Abr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Ago" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dic" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Hoy" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Día" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Semana" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Mes" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Domingo" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Lunes" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Martes" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Miércoles" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Jueves" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Viernes" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Sábado" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Dom" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Lun" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Mar" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Mie" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Jue" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Vie" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sab" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Los shows más largos que su segmento programado serán cortados por el show que le sigue." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "¿Cancelar el show actual?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "¿Detener la grabación del show actual?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contenidos del show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "¿Eliminar todo el contenido?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "¿Eliminar los ítems seleccionados?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Inicio" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Final" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duración" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filtrando " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " de " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " registros" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "No hay shows programados durante el período de tiempo especificado." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Señal de entrada" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Señal de salida" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Unirse" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Desaparecer" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show vacío" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Grabando desde la entrada" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Previsualización de la pista" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "No es posible programar un show externo." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moviendo 1 ítem" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moviendo %s elementos" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Guardar" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancelar" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Editor de desvanecimiento" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Editor de Cue" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Seleccionar todos" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Seleccionar uno" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Recortar exceso de shows" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Eliminar los ítems programados seleccionados" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Saltar a la pista en reproducción actual" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Saltar a la pista actual" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancelar el show actual" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Abrir biblioteca para agregar o eliminar contenido" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Agregar / eliminar contenido" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "en uso" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disco" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Buscar en" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Abrir" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Administrador de programa" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Invitado" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Los invitados pueden hacer lo siguiente:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Ver programación" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Ver contenido del show" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Los DJ pueden hacer lo siguiente:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Administrar el contenido del show asignado" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Importar archivos de medios" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Crear listas de reproducción, bloques inteligentes y webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Administrar su propia biblioteca de contenido" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "Los administradores de programas pueden hacer lo siguiente:" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Ver y administrar contenido del show" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Programar shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Administrar el contenido de toda la biblioteca" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Los administradores pueden:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Administrar preferencias" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Administrar usuarios" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Administrar carpetas monitorizadas" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Enviar opinión de soporte" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Ver el estado del sistema" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Acceder al historial de reproducción" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Ver estadísticas de oyentes" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Mostrar / ocultar columnas" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Columnas" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "De {from} para {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "dd-mm-yyyy" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Do" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Lu" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ma" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Mi" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Ju" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Vi" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Cerrar" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hora" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuto" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Hecho" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Seleccione los archivos" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Añade los archivos a la cola de carga y haz clic en el botón de iniciar." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "Nombre del archivo" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "Tamaño" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Añadir archivos" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Detener carga" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Iniciar carga" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "Empezar a cargar" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Añadir archivos" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "Detener la carga en curso" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "Iniciar la carga en la cola" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Archivos %d/%d cargados" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "No disponible" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Arrastra los archivos a esta área." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Error de extensión del archivo." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Error de tamaño del archivo." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Error de cuenta del archivo." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Error de inicialización." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Error de HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Error de seguridad." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Error genérico." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Error IO." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Archivo: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d archivos en cola" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Puede que el URL de carga no esté funcionando o no exista" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Error: Fichero demasiado grande: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Error: Extensión de archivo no válida: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Establecer predeterminado" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Crear Entrada" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Editar historial" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No hay Show" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Se copiaron %s celda%s al portapapeles" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "" +"%sImprimir vista%sPor favor, utilice la función de impresión de su navegador " +"para imprimir esta tabla. Pulse Escape cuando termine." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Nuevo Show" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Nueva entrada de registro" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "No hay datos en la tabla" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "(filtrado de _MAX_ entradas totales)" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "Primero" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "Último" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "Siguiente" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "Anterior" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "Buscar:" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "No se han encontrado coincidencias" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "Arrastre las pistas desde la biblioteca" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" +"No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado." + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Despublicar" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "No se ha encontrado ningún resultado." + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Autor" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Descripción" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Enlace" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "Fecha de publicación" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "Estado de la importación" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "Acciones" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "Eliminar de la biblioteca" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "Importado correctamente" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "Mostrar el _MENU_" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "Mostrar las entradas del _MENU_" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "Mostrando el _START_ a _END_ del _TOTAL_ las pistas" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "Mostrando 0 de 0 de 0 entradas" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "Mostrando 0 a 0 de 0 pistas" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "Mostrando 0 a 0 de 0 tipos de pistas" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "(filtrado de _MAX_ tipos de pistas totales)" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "¿Está seguro de que desea eliminar este tipo de pista?" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "No se encontró ningún tipo de pista." + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "No se han encontrado tipos de pista" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "No se ha encontrado ningún tipo de pista" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Activado" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Desactivado" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "Cancelar la carga" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "Tipo" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" +"El contenido de las listas de reproducción de la carga automática se agrega " +"a los programas una hora antes de que se transmita. Más información" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "Configuración del podcasts guardado" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "¿Está seguro de que desea eliminar este usuario?" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "¡No puedes borrarte a ti mismo!" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "¡No has publicado ningún episodio!" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "Puede publicar tu contenido cargado desde la vista 'Pistas'." + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "Pruebalo ahora" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" +"

Si esta opción no está marcada, el bloque inteligente programará tantas " +"pistas como puedan reproducirse en su totalidad dentro de " +"la duración especificada. Esto normalmente resultará en una reproducción de " +"audio ligeramente inferior a la duración especificada.

Si esta opción " +"está marcada, el smartblock también programará una pista final que " +"sobrepasará la duración especificada. Esta pista final puede cortarse a " +"mitad de camino si el programa al que se añade el smartblock termina.

" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "Vista previa de la lista de reproducción" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Bloque Inteligente" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "Vista previa de la transmisión web" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "No tienes permiso para ver la biblioteca." + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "Ahora" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "Haz clic en 'Nuevo' para crear uno ahora." + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "Haz clic en 'Cargar' para agregar algunos ahora." + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "URL para el canal" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "Fecha de importación" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "Agregar un nuevo podcast" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"No se puede programar fuera de un programa.\n" +"Intente crear primero un programa." + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "Aún no se han cargado archivos." + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "En directo" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Fuera de antena" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Sin conexión" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Nada programado" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "Haga clic en 'Agregar' para crear uno ahora." + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Por favor, introduzca su nombre de usuario y contraseña." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" +"No se ha podido encontrar ese nombre de usuario o dirección de correo " +"electrónico." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "" +"Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Estas viendo una versión antigua de %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "No puedes añadir pistas a los bloques dinámicos." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "No tienes permiso para eliminar los %s(s) seleccionados." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Solo puedes añadir pistas a los bloques inteligentes." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Lista de reproducción sin nombre" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Bloque inteligente sin nombre" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Lista de reproducción desconocida" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Se actualizaron las preferencias." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Se actualizaron las configuraciones del stream." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "se debe especificar la ruta" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Hay un problema con Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Método de solicitud no aceptado" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Retransmisión del programa %s de %s en %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Elegir cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Eliminar cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "El show no existe" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "¡Tipo de pista añadido con éxito!" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "¡Tipo de pista actualizado con éxito!" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "¡Usuario añadido correctamente!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "¡Usuario actualizado correctamente!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "¡Configuración actualizada correctamente!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Webstream sin título" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Transmisión web guardada." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Los valores en el formulario son inválidos." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Se introdujo un caracter inválido" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Se debe especificar un día" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Se debe especificar una hora" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Debes esperar al menos 1 hora para reprogramar" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "¿Programar Lista Auto-Cargada?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Seleccionar Lista" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Repitir lista hasta que termine el programa?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Usar la autenticación %s:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Usar la autenticación personalizada:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Usuario personalizado" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Contraseña personalizada" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Host:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Puerto:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Montaje:" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "El campo de usuario no puede estar vacío." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "El campo de contraseña no puede estar vacío." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "¿Grabar desde la entrada (line in)?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "¿Reprogramar?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "días" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Enlace:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tipo de repetición:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "semanal" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "cada 2 semanas" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "cada 3 semanas" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "cada 4 semanas" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensual" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Seleccione días:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repetir por:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "día del mes" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "día de la semana" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Fecha de Finalización:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "¿Sin fin?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "La fecha de finalización debe ser posterior a la inicio" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Por favor, selecciona un día de repeticón" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Color de fondo:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Color del texto:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Loco actual:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Logo del Show:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Vista previa del Logo:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nombre:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Show sin nombre" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Género:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Descripción:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Descripcin de instancia:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Hora de inicio:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "En el Futuro:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Hora de fin:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Duración:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Zona horaria:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "¿Se repite?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "No puedes crear un show en el pasado" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "La fecha/hora de finalización no puede ser anterior" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "No puede tener una duración < 0min" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "No puede tener una duración 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "No puede tener una duración mayor a 24 horas" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "No se pueden programar shows traslapados" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Buscar usuarios:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Disc-jockeys (DJs):" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Escribe un nombre:" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Código:" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "Visibilidad:" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "Analizar los puntos de referencia:" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "El código no es único." + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Usuario:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Contraseña:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Verificar contraseña:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Nombre:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Apellido:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Correo electrónico:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Teléfono móvil:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Tipo de usuario:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "El nombre de usuario no es único." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Eliminar todas las pistas de la biblioteca" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Fecha de Inicio:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Título:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Creador:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Álbum:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "Propietario:" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "Seleccionar un tipo" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "Tipo de pista:" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Año:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Sello:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Compositor:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Ánimo (mood):" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Derechos de autor:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Sitio web:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Idioma:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Publicar..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Hora de Inicio" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Hora de Finalización" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Zona horaria de la interfaz:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nombre de la estación" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Descripción de la estación" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo de la estación:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Nota: Cualquiera mayor que 600x600 será redimensionada." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Duración predeterminada del Crossfade (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Por favor, escribe un valor en segundos (eg. 0.5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Fade In perdeterminado (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Fade Out preseterminado (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "Tipo de pista cargado predeterminado" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "Lista de reproducción automática" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "Lista de reproducción de salida automática" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Sobrescribir el álbum del podcast" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" +"Genere un bloque inteligente y una lista de reproducción al crear un nuevo " +"podcast" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" +"Si esta opción está activada, se generará un nuevo bloque inteligente y una " +"nueva lista de reproducción que coincidan con la pista más reciente de un " +"podcast inmediatamente después de la creación de un nuevo podcast. Tenga en " +"cuenta que la función \"Sobrescribir metatags de episodios de podcast\" " +"también debe estar activada para que los smartblocks encuentren episodios de " +"forma fiable." + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "API Pública de Libretime" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Requerido para el widget de programación." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" +"Habilitar esta función permite a Libretime proporcionar datos de programación\n" +" a widgets externos que se pueden integrar en tu sitio web." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Idioma predeterminado" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Zona horaria de la Estación" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "La semana empieza el" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "¿Mostrar el botón de inicio de sesión en su página de radio?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "Vistas previas de funciones" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "Active esta opción para probar nuevas funciones." + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Desconexión automática:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Encendido automático:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Transición de desvanecimiento (s):" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "Host Fuente Maestro:" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "Puerto Fuente Maestro:" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "Montaje Fuente Maestro:" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Host Fuente del Show:" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Puerto Fuente del Show:" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Montaje Fuente del Show:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Iniciar sesión" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Contraseña" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirma nueva contraseña" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "La confirmación de la contraseña no coincide con tu contraseña." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Correo electrónico" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Usuario" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Restablecer contraseña" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Atrás" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Reproduciéndose ahora" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Seleccionar Stream:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Autodetectar el stream más apropiado a reproducir." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Selecciona un stream:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Apto para móviles" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - El reproductor no soporta streams Opus." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Código de inserción:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Vista previa:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Privacidad del Feed" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Público" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privado" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Idioma de la Estación" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Filtrar por Show" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Todos mis shows:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Mis Shows" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Seleccionar criterio" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Tasa de bits (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "Tipo de pista" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Tasa de muestreo (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "antes" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "después" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "entre" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "Seleccionar la unidad de tiempo" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "minuto(s)" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "hora(s)" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "día(s)" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "semana(s)" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "mes(es)" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "año(s)" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "horas" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutos" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elementos" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "tiempo restante del programa" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Aleatorio" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Más nuevo" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Más antiguo" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Reproducido más recientemente" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Último reproducido" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "Seleccione el tipo de pista" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Tipo:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinámico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Estático" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "Selecciona el tipo de pista" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Permitir Pistas Repetidas:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Permitir que la última pista supere el límite de tiempo:" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Ordenar Pistas:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limitar a:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generar contenido para la lista de reproducción y guardar criterios" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Reproducción aleatoria" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "El límite no puede estar vacío o ser menor que 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "El límite no puede ser mayor a 24 horas" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "El valor debe ser un número entero" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 es el valor máximo de ítems que se pueden configurar" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Debes elegir Criterios y Modificador" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Longitud' debe estar en formato '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" +"Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el " +"valor del texto" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "Debe seleccionar una unidad de tiempo para una fecha-hora relativa." + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" +"Sólo se permiten números enteros no negativos para una fecha-hora relativa" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "El valor debe ser numérico" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "El valor debe ser menor a 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "El valor no puede estar vacío" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "El valor debe ser menor que %s caracteres" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "El valor no puede estar vacío" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Etiqueta del stream:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artísta - Título" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artista - Título" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Nombre de la estación - nombre del show" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Metadatos Off Air" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Activar ajuste del volumen" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Modificar ajuste de volumen" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Salida Hardware Audio:" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Tipo de Salida" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Activado:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Móvil:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Tipo de stream:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Tasa de bits:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Tipo de servicio:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Canales:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Servidor" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Puerto" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Punto de montaje" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Nombre" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "URL de la transmisión" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "¿Actualizar metadatos de tu estación en TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID Estación:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clave Socio:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Id Socio:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Carpeta de importación:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Carpetas monitorizadas:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "No es un directorio válido" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "El valor es necesario y no puede estar vacío" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' no se ajusta al formato de fecha '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' tiene menos de %min% caracteres" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' tiene más de %max% caracteres" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Hola %s, \n" +"\n" +"Haz clic en este enlace para restablecer tu contraseña: " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"Si tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Gracias,\n" +"El equipo %s" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Restablecimiento de Contraseña" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in y cue out son nulos." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "No se puede asignar un cue out mayor que la duración del archivo." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "No se puede asignar un cue in mayor al cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "No se puede asignar un cue out menor que el cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Hora de Subida" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Ninguno" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "Desarrollado por %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Seleccionar país" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "transmisión en directo" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "No se pueden mover elementos de los shows enlazados" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "¡La programación que estás viendo está desactualizada!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "No tienes permiso para programar el show %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "No puedes agregar pistas a shows en grabación." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "El show %s terminó y no puede ser programado." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "¡El show %s ha sido actualizado anteriormente!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "No se puede programar una lista de reproducción que contenga archivos perdidos." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "¡Un Archivo seleccionado no existe!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Los shows pueden tener una duración máxima de 24 horas." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"No se pueden programar shows solapados.\n" +"Nota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmisión de %s desde %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "La duración debe ser mayor de 0 minutos" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "La duración debe estar en el formato \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "El URL debe estar en el formato \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "El URL debe ser de 512 caracteres o menos" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "No se encontró ningún tipo MIME para el webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "El nombre del webstream no puede estar vacío" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "No se pudo procesar el XSPF de la lista de reproducción" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "No se pudo procesar el XSPF de la lista de reproducción" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "No se pudo procesar el M3U de la lista de reproducción" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Webstream inválido - Esto parece ser una descarga de archivo." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo de stream no reconocido: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "No existe el archivo" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Ver los metadatos del archivo grabado" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Programar pistas" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Vaciar Show" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Cancelar Show" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Editar instancia" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Editar Show" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Eliminar instancia" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Eliminar instancia y todas las siguientes" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Permiso denegado" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "No es posible arrastrar y soltar shows que se repiten" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "No se puede mover un show pasado" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "No se puede mover un show al pasado" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "¡El show se eliminó porque el show grabado no existe!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Debe esperar 1 hora para retransmitir." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Pista" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Reproducido" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Bloque inteligente autogenerado para el podcast" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Retransmisiones por Internet" + +#~ msgid " to " +#~ msgstr " para " + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s se distribuye bajo la %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, El software de radio abierto para la programación y gestión remota de estaciones." + +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s Todos los derechos reservados.
Mantenido y distribuido bajo el %3$s por %4$s" + +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s Versión" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contiene un directorio anidado monitorizado: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s no existe en la lista de monitorización." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s ya está siendo monitorizado." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s está anidado dentro de un directorio monitorizado existente: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s no es un directorio válido." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar opinión de soporte) debe estar activado)." + +#~ msgid "(Required)" +#~ msgstr "(Requerido)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(El sitio web de tu estación)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(únicamente para fines de verificación, no será publicado)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Estéreo" + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Se ha enviado un enlace de restablecimiento de contraseña a tu dirección de correo electrónico. Por favor, comprueba tu correo electrónico y sigue las instrucciones para restablecer tu contraseña. Si no ves el correo electrónico, comprueba tu carpeta de correo no deseado" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Al programar este bloque inteligente en un programa se generará una lista de reproduccin " + +#~ msgid "About" +#~ msgstr "Acerca de" + +#~ msgid "Access Denied!" +#~ msgstr "¡Acceso Denegado!" + +#~ msgid "Add New Field" +#~ msgstr "Agregar Nuevo Campo" + +#~ msgid "Add more elements" +#~ msgstr "Agregar ms elementos" + +#~ msgid "Add this show" +#~ msgstr "Añadir este programa" + +#~ msgid "Add tracks to your show" +#~ msgstr "Añadir pistas a tu Show" + +#~ msgid "Additional Options" +#~ msgstr "Opciones adicionales" + +#~ msgid "Admin Password" +#~ msgstr "Contraseña administrativa" + +#~ msgid "Admin User" +#~ msgstr "Usuario administrativo" + +#~ msgid "Advanced Search Options" +#~ msgstr "Opciones de búsqueda avanzada" + +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "¡Airtime Pro has a new look!" + +#~ msgid "All rights are reserved" +#~ msgstr "Todos los derechos reservados" + +#~ msgid "Allowed CORS URLs" +#~ msgstr "URL CORS permitidas" + +#~ msgid "An error has occurred." +#~ msgstr "Ha ocurrido un error." + +#~ msgid "Audio Track" +#~ msgstr "Pista de audio" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Lista Auto-Cargada" + +#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +#~ msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" + +#~ msgid "Bad Request!" +#~ msgstr "¡Solicitud incorrecta!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Al marcar esta casilla, estoy de acuerdo con %s %spolítica de privacidad%s." + +#~ msgid "Category" +#~ msgstr "Categoría" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Marque las casillas de arriba y pulse 'Publicar' para publicar esta pista en las fuentes marcadas. " + +#~ msgid "Choose Days:" +#~ msgstr "Elige los días:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Selecciona Instancia del Show" + +#~ msgid "Choose folder" +#~ msgstr "Selecciona carpeta" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Selecciona algunos criterios de búsqueda y haz clic en Generar para crear esta lista de reproducción." + +#~ msgid "City:" +#~ msgstr "Ciudad:" + +#~ msgid "Clear" +#~ msgstr "Vaciar" + +#~ msgid "Click 'Add' to create one." +#~ msgstr "Clic 'Añadir' para crear uno." + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Haz clic en 'Calendario' en la barra de navegación de la izquierda. Desde ahí, clic en el botón '+ Nuevo Show' y rellene los campos solicitados." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Haz clic en tu programa en el calendario y selecciona 'Programar Show'. En la ventana emergente, arrastra pistas a tu programa." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Haz clic en el botón 'Subir' en la esquina izquierda para subir pistas a tu librería." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Haz clic en el cuadro de abajo para promocionar tu estación en %s." + +#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +#~ msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor se está ejecutando y tus credenciales son correctas." + +#~ msgid "Country:" +#~ msgstr "País:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creando la Plantilla de Resumen de Archivos" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creando la Plantilla de Hoja de Registro" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Atribución Creative Commons" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Atribución-sinDerivadas Creative Commons" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Atribución-NoComercial Creative Commons" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Atribución-NoComercial-SinDerivadas Creative Commons" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Atribución-NoComercial-CompartirIgual Creative Commons" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Atribución-CompartirIgual Creative Commons" + +#~ msgid "Current Import Folder:" +#~ msgstr "Carpeta actual de importación:" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Transmisión personalizada / de terceros" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ "copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "" +#~ "Personaliza el reproductor configurando las opciones siguientes. Cuando hayas terminado,\n" +#~ " copia el código incrustado más abajo y pégalo en el HTML de tu sitio web." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "Los DJs pueden usar estos ajustes en su software de difusión para transmitir en directo sólo durante los programas que se les asignan." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "Los DJs pueden usar esta configuración para conectarse con software compatible y transmitir en directo durante este programa. Asigna un DJ a continuación" + +#~ msgid "Dangerous Options" +#~ msgstr "Opciones Peligrosas" + +#~ msgid "Default Length:" +#~ msgstr "Duración por defecto:" + +#~ msgid "Default License:" +#~ msgstr "Licencia por defecto:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Tipo de Compartir predeterminada" + +#~ msgid "Default Streaming" +#~ msgstr "Streaming por defecto" + +#~ msgid "Disk Space" +#~ msgstr "Espacio en disco" + +#~ msgid "Download latest episodes:" +#~ msgstr "¿Descargar automáticamente los últimos episodios?" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Arrastra las pistas aquí desde tu biblioteca para agregarlas a la lista de reproducción" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Arrastra archivos aquí o haz clic para seleccionarlos de tu equipo." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloque inteligente dinámico" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Criterios del bloque inteligente dinámico: " + +#~ msgid "Edit Metadata..." +#~ msgstr "Editar Metadatos..." + +#~ msgid "Editing " +#~ msgstr "Editando " + +#~ msgid "Email Sent!" +#~ msgstr "¡Email enviado!" + +#~ msgid "Empty playlist content" +#~ msgstr "Lista de reproducción vacía" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expandir bloque dinámico" + +#~ msgid "Expand Static Block" +#~ msgstr "Expandir bloque estático" + +#~ msgid "Explicit" +#~ msgstr "Explícito" + +#~ msgid "FAQ" +#~ msgstr "PMF" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Radio Reproductor de Facebook" + +#~ msgid "Failed" +#~ msgstr "Fallo" + +#~ msgid "File Path:" +#~ msgstr "Ruta del archivo:" + +#~ msgid "File Summary" +#~ msgstr "Resumen de Archivos" + +#~ msgid "File Summary Templates" +#~ msgstr "Plantillas de Resumen de Archivos" + +#~ msgid "File import in progress..." +#~ msgstr "Importación del archivo en progreso..." + +#~ msgid "Filter History" +#~ msgstr "Filtrar historial" + +#~ msgid "Find" +#~ msgstr "Buscar" + +#~ msgid "Find Shows" +#~ msgstr "Buscar Shows" + +#~ msgid "First Name" +#~ msgstr "Nombre" + +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "" +#~ "Para informacin detallada sobre qué signifcan estos campos de metadatos, porfavor consulta la %sRSS specification%s\n" +#~ " o la documentación %sApple's podcasting%s." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Para una ayuda más detallada, lee el manual%s del %susuario." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Para más detalles, por favor lee el %sManual de Airtime%s" + +#~ msgid "Forgot your password?" +#~ msgstr "¿Olvidaste tu contraseña?" + +#~ msgid "General Fields" +#~ msgstr "Campos Generales" + +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Generar Bloque y Lista" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "¿Tienes una biblioteca de música enorme? ¡No hay problema! Con la nueva página de Subida, puedes arrastrar carpetas enteras a nuestra nube privada." + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Ayuda a mejorar %s informándonos de cómo lo estás utilizando. Esta información se recopilará con regularidad para mejorar tu experiencia de usuario.
Haz clic en la casilla de abajo y nos aseguraremos de mejorar constantemente las funciones que utilizas." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "A continuación, te indicamos cómo empezar a utilizar %s para automatizar tus emisiones: " + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Metadata Icecast Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Si Airtime está detrás de un router o firewall, posiblemente tengas que configurar una redirección en el puerto (port forwarding) y esta información de campo será incorrecta. En este caso necesitarás actualizar manualmente el campo pra que muestre el host/port/mount correcto al que tus DJs necesitan conectarse. El rango permitido es entre 1024 y 49151. " + +#~ msgid "Isrc Number:" +#~ msgstr "Número ISRC" + +#~ msgid "Keywords" +#~ msgstr "Palabras clave" + +#~ msgid "Last Name" +#~ msgstr "Apellido" + +#~ msgid "Length:" +#~ msgstr "Duración:" + +#~ msgid "Limit to " +#~ msgstr "Límite hasta " + +#~ msgid "Listen" +#~ msgstr "Escuchar" + +#~ msgid "Listeners" +#~ msgstr "Oyentes" + +#~ msgid "Live Broadcasting" +#~ msgstr "Transmisión en vivo" + +#~ msgid "Live Stream Input" +#~ msgstr "Entrada de stream en vivo" + +#~ msgid "Live stream" +#~ msgstr "Stream en directo" + +#~ msgid "Log Sheet" +#~ msgstr "Hoja de Registro" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Plantillas de Hoja de Registro" + +#~ msgid "Logout" +#~ msgstr "Salir" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "¡Parece que la página que buscas no existe!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Parece que no hay shows programados en este día." + +#~ msgid "Manage Users" +#~ msgstr "Administrar usuarios" + +#~ msgid "Master Source" +#~ msgstr "Fuente maestra" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Uso mensual del ancho de banda del oyente" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "El montaje no puede estar vacío con el servidor Icecast." + +#~ msgid "New Criteria" +#~ msgstr "Nuevo criterio" + +#~ msgid "New File Summary Template" +#~ msgstr "Nueva Plantilla de Resumen de Archivos" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nueva Plantilla de Hoja de Registro" + +#~ msgid "New Modifier" +#~ msgstr "Nuevo Modificador" + +#~ msgid "New User" +#~ msgstr "Nuevo usuario" + +#~ msgid "New password" +#~ msgstr "Nueva contraseña" + +#~ msgid "Next:" +#~ msgstr "Siguiente:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No hay Plantillas de Resumen de Archivo" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No hay Plantillas de Hoja de Registro" + +#~ msgid "No open playlist" +#~ msgstr "No hay listas de reproducción abiertas" + +#~ msgid "No smart block currently open" +#~ msgstr "Ningún bloque inteligente abierto actualmente" + +#~ msgid "No webstream" +#~ msgstr "No hay webstream" + +#~ msgid "Now you're good to go!" +#~ msgstr "¡Ya estás listo!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Solo se permiten números." + +#~ msgid "Original Length:" +#~ msgstr "Duración original:" + +#~ msgid "" +#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" +#~ " is easier than ever." +#~ msgstr "" +#~ "Nuestra nueva vista Dashboard tiene ahora una poderosa interfaz de edición por pestañas, por lo que la actualización de tus pistas y listas de reproducción\n" +#~ " es más sencillo que nunca." + +#~ msgid "Output Streams" +#~ msgstr "Streams de salida" + +#~ msgid "Override" +#~ msgstr "Sobrescribir" + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento" + +#~ msgid "Page not found!" +#~ msgstr "¡Página no encontrada!" + +#~ msgid "Password Reset" +#~ msgstr "Restablecer Contraseña" + +#~ msgid "Pending" +#~ msgstr "Pendiente" + +#~ msgid "Phone:" +#~ msgstr "Teléfono:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenido de la lista de reproducción: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Transición (crossfade) de la lista de reproducción" + +#~ msgid "Playout History Templates" +#~ msgstr "Plantillas de Historial de Reproducción" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Por favor entra y confirma tu nueva contraseña en los campos que aparecen a continuación." + +#~ msgid "Please upgrade to " +#~ msgstr "Por favor actualiza a" + +#~ msgid "Podcast Name: " +#~ msgstr "Nombre del Podcast: " + +#~ msgid "Podcast URL: " +#~ msgstr "URL del Podcast: " + +#~ msgid "Port cannot be empty." +#~ msgstr "El puerto no puede estar vacío." + +#~ msgid "Previous:" +#~ msgstr "Anterior:" + +#~ msgid "Privacy Settings" +#~ msgstr "Ajustes de privacidad" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Los encargados de programa pueden hacer lo siguiente:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promocionar mi estacin en %s" + +#~ msgid "Publish to:" +#~ msgstr "Publicar a:" + +#~ msgid "Published on:" +#~ msgstr "Publicado en:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Las pistas publicadas se pueden quitar o actualizar a continuación." + +#~ msgid "Publishing" +#~ msgstr "Publicación" + +#~ msgid "RESET" +#~ msgstr "RESETEAR" + +#~ msgid "RSS Feed URL:" +#~ msgstr "URL del Feed RSS:" + +#~ msgid "Recent Uploads" +#~ msgstr "Subidas Recientes" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Grabar y retransmitir" + +#~ msgid "Register Airtime" +#~ msgstr "Registrar Airtime" + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +#~ msgstr "URL remotas a las que se les permite acceder a esta instancia de LibreTime en un navegador. Una URL por línea." + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Eliminar todo el contenido de este bloque inteligente" + +#~ msgid "Remove watched directory" +#~ msgstr "Quitar el directorio monitorizado" + +#~ msgid "Repeat Days:" +#~ msgstr "Días de repetición:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Vuelva a analizar el directorio monitorizado (Esto es útil si es un montaje en red y pueda estar fuera de sincronización con %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Tasa de muestreo:" + +#~ msgid "Save playlist" +#~ msgstr "Guardar lista de reproducción" + +#~ msgid "Save podcast" +#~ msgstr "Guardar podcast" + +#~ msgid "Save station podcast" +#~ msgstr "Guardar podcast de la estación" + +#~ msgid "Schedule a show" +#~ msgstr "Programar un show" + +#~ msgid "Scheduled Shows" +#~ msgstr "Shows programados" + +#~ msgid "Scheduling:" +#~ msgstr "Programación:" + +#~ msgid "Search Criteria:" +#~ msgstr "Buscar criterio:" + +#~ msgid "Select stream:" +#~ msgstr "Selecciona stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "El servidor no puede estar vacío." + +#~ msgid "Service" +#~ msgstr "Servicio" + +#~ msgid "Set" +#~ msgstr "Establecer" + +#~ msgid "Set Cue In" +#~ msgstr "Establecer Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Establecer Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Establecer plantilla predeterminada" + +#~ msgid "Share" +#~ msgstr "Compartir" + +#~ msgid "Show Source" +#~ msgstr "Fuente del Show" + +#~ msgid "Show Summary" +#~ msgstr "Resumen de Shows" + +#~ msgid "Show Waveform" +#~ msgstr "Mostrar Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Muéstrame lo que estoy enviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Lista de reproducción aleatoria" + +#~ msgid "Source Streams" +#~ msgstr "Streams fuente" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloque inteligente estático" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenido del bloque inteligente estático: " + +#~ msgid "Station Description:" +#~ msgstr "Descripción de la estación:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sitio web de la estación:" + +#~ msgid "Storage" +#~ msgstr "Almacenamiento" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Estado de la recogida de datos del Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Configuración de stream" + +#~ msgid "Stream URL:" +#~ msgstr "URL del stream:" + +#~ msgid "Stream URL: " +#~ msgstr "URL del stream: " + +#~ msgid "Streaming Server:" +#~ msgstr "Servidor de Streaming:" + +#~ msgid "Style" +#~ msgstr "Estilo" + +#~ msgid "Subscribe" +#~ msgstr "Suscribirse" + +#~ msgid "Subtitle" +#~ msgstr "Subtítulo" + +#~ msgid "Summary" +#~ msgstr "Sumario" + +#~ msgid "Support Feedback" +#~ msgstr "Opinión de soporte" + +#~ msgid "Support setting updated." +#~ msgstr "Se actualizaron las configuraciones de soporte." + +#~ msgid "Table Test" +#~ msgstr "Prueba de Tabla" + +#~ msgid "Terms and Conditions" +#~ msgstr "Términos y condiciones" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "La duración deseada para el bloque no se alcanzará si Libretime no puede encontrar suficientes pistas únicas que se ajusten a tus criterios. Activa esta opción si deseas que se agreguen pistas varias veces al bloque inteligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:" + +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "" +#~ "El nuevo Airtime es más suave, elegante y rápido, ¡incluso en más dispositivos! Estamos comprometidos a mejorar la experiencia\n" +#~ " con Airtime, sin importar cómo te conectes." + +#~ msgid "The requested action is not supported!" +#~ msgstr "¡No se admite la acción solicitada!" + +#~ msgid "The work is in the public domain" +#~ msgstr "El trabajo es de dominio público" + +#~ msgid "This version is no longer supported." +#~ msgstr "Esta versión ya no cuenta con soporte." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Esta versión pronto quedará obsoleta." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash" + +#~ msgid "Toggle Details" +#~ msgstr "Mostrar/Ocultar detalles" + +#~ msgid "Track:" +#~ msgstr "Pista:" + +#~ msgid "TuneIn Settings" +#~ msgstr "Configuración de TuneIn" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Escribe los caracteres que ves en la imagen que aparece a continuación." + +#~ msgid "Update Required" +#~ msgstr "Actualización Requerida" + +#~ msgid "Update show" +#~ msgstr "Actualizar programa" + +#~ msgid "Update track" +#~ msgstr "Actualizar pista" + +#~ msgid "Upload" +#~ msgstr "Subir" + +#~ msgid "Upload Audio Files" +#~ msgstr "Subir archivos de audio" + +#~ msgid "Upload audio tracks" +#~ msgstr "Subir pistas de audio" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Utiliza estos ajustes en tu software de difusión para transmitir en directo en cualquier momento." + +#~ msgid "User Type" +#~ msgstr "Tipo de usuario" + +#~ msgid "View Feed" +#~ msgstr "Ver Feed" + +#~ msgid "View track" +#~ msgstr "Ver pista" + +#~ msgid "Viewing " +#~ msgstr "Viendo " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "No pudimos encontrar la página que buscas." + +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "" +#~ "Hemos simplificado la interfaz de Airtime para facilitar la navegación. Con las herramientas más importantes\n" +#~ " a un clic de distancia, estarás en el aire y manos libres en un momento." + +#~ msgid "Web Stream" +#~ msgstr "Stream web" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "¡Bienvenido a %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "¡Bienvenido a la demo de %s! Puedes iniciar sesión con el nombre de usuario 'admin' y la contraseña 'admin'." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Bienvenido al nuevo Airtime Pro!" + +#~ msgid "What" +#~ msgstr "Qué" + +#~ msgid "When" +#~ msgstr "Cuándo" + +#~ msgid "Who" +#~ msgstr "Quién" + +#~ msgid "You are not watching any media folders." +#~ msgstr "No estás monitorizando ninguna carpeta de medios." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Puedes cambiar estas opciones más adelante en tus preferencias y ajustes de usuario." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "¡No tienes permiso para acceder a esta página!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "No tienes permiso para editar esta pista." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "¡Ya has publicado esta pista en todas las fuentes disponibles!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Debes aceptar las políticas de privacidad." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "¡No has publicado esta pista en ninguna fuente!" + +#~ msgid "" +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." +#~ msgstr "" +#~ "Tus funciones favoritas son ahora aún más fáciles de usar - ¡e incluso hemos\n" +#~ " añadido algunas nuevas! Echa un vistazo al video de arriba o sigue leyendo para obtener más información." + +#~ msgid "Your trial expires in" +#~ msgstr "Tu periodo de prueba expira en" + +#~ msgid "and" +#~ msgstr "y" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "el archivo cumple los criterios" + +#~ msgid "files meet the criteria" +#~ msgstr "los archivos cumplen los criterios" + +#~ msgid "iTunes Fields" +#~ msgstr "Campos de iTunes" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volumen máximo" + +#~ msgid "mute" +#~ msgstr "silenciar" + +#~ msgid "next" +#~ msgstr "siguiente" + +#~ msgid "or" +#~ msgstr "o" + +#~ msgid "pause" +#~ msgstr "pausa" + +#~ msgid "play" +#~ msgstr "reproducir" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "por favor introduce un tiempo en segundos '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "anterior" + +#~ msgid "stop" +#~ msgstr "parar" + +#~ msgid "unmute" +#~ msgstr "desenmudecer" diff --git a/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..1f24a53689 --- /dev/null +++ b/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po @@ -0,0 +1,5151 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Albert , 2014 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2023-03-06 23:45+0000\n" +"Last-Translator: \"Jonas L.\" \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.16.2-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "L'année %s doit être comprise entre 1753 et 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s n'est pas une date valide" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s n'est pas une durée valide" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Anglais" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Afar" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abkhaze" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amharique" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Arabe" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Assamais" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aymara" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerbaïdjanais" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Bachkir" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Biélorusse" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Bulgare" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Bihari" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bichelamar" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengali" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibétain" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Breton" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Catalan" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Corse" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Tchèque" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Gallois" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Danois" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Allemand" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Dzongkha" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Grec" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Espéranto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Espagnol" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estonien" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Basque" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persan" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Finnois" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fidjien" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Féroïen" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Français" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Frison" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Irlandais" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Gaélique écossais" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galicien" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Goudjarati" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Haoussa" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Croate" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Hongrois" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Arménien" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Indonésien" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Islandais" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italien" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hébreu" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japonais" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Yiddish" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Javanais" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Géorgien" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kazakh" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Groenlandais" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Cambodgien" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Coréen" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Cachemire" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kurde" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kirghiz" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latin" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Lao" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Lituanien" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Letton" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Malgache" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maori" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Macédonien" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Mongol" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldave" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malais" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltais" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Birman" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Nauru" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Népalais" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Néerlandais" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Norvégien" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Occitan" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Afan) / Oromoor / Oriya" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Pendjabi" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Polonais" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Pachto" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Portugais" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Quetchua" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Romanche" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Kirundi" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Roumain" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Russe" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Kinyarwanda" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Sangro" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Serbo-croate" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Singhalais" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Slovaque" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Slovène" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Samoan" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Shona" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Somali" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Albanais" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Serbe" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Siswati" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Sesotho" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Soundanais" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Suédois" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Tamil" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Télougou" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Tadjik" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Thaï" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Tigrigna" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Turkmène" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Setswana" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Tonguien" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Turc" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Tsonga" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Tatar" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Ukrainien" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Ourdou" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Ouzbek" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "Vietnamien" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Volapük" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Chinois" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Zoulou" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Utiliser les réglages par défaut" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" +"Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" +"Cliquez sur le bouton « Nouvelle émission » et remplissez les " +"champs requis." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission »." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n" +" %sCréer une émission dé-liée%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "L'émission actuelle est vide. %sAjouter des pistes audio%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "La prochaine émission est vide. %sAjouter des pistes à cette émission%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "Service d'analyseur de médias LibreTime" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire " + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr " et assurez-vous qu'il fonctionne avec " + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "Sinon, essayez " + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "Service de diffusion LibreTime" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "Vérifiez que le service « libretime-playout » est installé correctement dans " + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "Service liquidsoap de LibreTime" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans " + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "Service Celery Task de LibreTime" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" +"Vérifiez que le service « libretime-worker » est installé correctement dans " + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "Service API LibreTime" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "Vérifiez que le service « libretime-api » est installé correctement dans " + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Page de la radio" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendrier" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Widgets" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Lecteur" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Grille hebdomadaire" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Paramètres" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Général" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Mon profil" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Utilisateurs" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Types de flux" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Flux" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Statut" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Statistiques" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Historique de diffusion" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Modèle d'historique" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Statistiques des auditeurs" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Afficher les statistiques des auditeurs" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Aide" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Mise en route" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Manuel Utilisateur" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Obtenir de l'aide en ligne" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Contribuer à LibreTime" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Qu'est-ce qui a changé ?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Vous n'avez pas le droit d'accéder à cette ressource." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Vous n'avez pas le droit d'accéder à cette ressource. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Le fichier n'existe pas dans %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Mauvaise requête. pas de « mode » paramètre passé." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Mauvaise requête. Le paramètre « mode » est invalide" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Vous n'avez pas la permission de déconnecter la source." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Il n'y a pas de source connectée à cette entrée." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Vous n'avez pas la permission de changer de source." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Pour configurer et utiliser le lecture intégré, vous devez :

\n" +" 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n" +" 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n" +" Activer l'API publique LibreTime dans Préférences -> Préférences" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n" +" Activer l'API publique LibreTime dans Préférences -> Préférences" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Page introuvable." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "L'action requise n'est pas implémentée." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Vous n'avez pas la permission d'accéder à cette ressource." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Une erreur interne est survenue." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Podcast" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Aucune piste n'a encore été publiée." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s non trouvé" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Quelque chose s'est mal passé." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Prévisualisation" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Ajouter à la liste" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Ajouter un bloc intelligent" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Supprimer" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Modifier…" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Téléchargement" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Dupliquer la liste de lecture" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Dupliquer le bloc intelligent" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Aucune action disponible" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Impossible de supprimer ce fichier car il est dans la programmation." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Impossible de supprimer ce(s) fichier(s)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Copie de %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Lecteur Audio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Quelque chose s'est mal passé !" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Enregistrement :" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Flux Maitre" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Flux en Direct" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Rien de Prévu" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Émission en cours :" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "En ce moment" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Vous exécutez la dernière version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nouvelle version disponible : " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "Vous avez une version préliminaire de LibreTime intégrée." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Une mise à jour du correctif pour votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Une mise à jour majeure de votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Ajouter à la liste de lecture" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Ajouter au bloc intelligent" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Ajouter 1 élément" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Ajout de %s Elements" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "S'il vous plaît sélectionner un curseur sur la timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Vous n'avez pas ajouté de pistes" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Vous n'avez pas ajouté de playlists" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "Vous n'avez pas ajouté de podcast" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Vous n'avez ajouté aucun bloc intelligent" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Vous n'avez ajouté aucun flux web" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "A propos des pistes" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "A propos des playlists" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "A propos des podcasts" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "A propos des blocs intelligents" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "A propos des flux webs" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Cliquez sur 'Nouveau' pour en créer un." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Ajouter" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Nouveau" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edition" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Ajouter à la grille" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Ajouter à la prochaine émission" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Ajouter à l'émission actuelle" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "Ajouter après les éléments sélectionnés" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Publier" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Enlever" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Édition des Méta-Données" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Ajouter à l'émission sélectionnée" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Sélection" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Sélectionner cette page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Dé-selectionner cette page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Tous déselectioner" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Programmé" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Pistes" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Titre" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Créateur.ice" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Taux d'echantillonage" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Compositeur.ice" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Conducteur" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Droit d'Auteur.ice" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encodé Par" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Langue" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Dernier Modifié" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Dernier Joué" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Durée" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Humeur" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Propriétaire" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Taux d'échantillonnage" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Numéro de la Piste" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Téléversé" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Site Internet" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Année" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Chargement..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Tous" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Fichiers" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listes de lecture" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocs Intelligents" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Flux Web" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Type inconnu : " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Téléversement en cours..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Récupération des données du serveur..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Importer" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Importé ?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Afficher" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Code d'erreur : " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Message d'erreur : " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "L'entrée doit être un nombre positif" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "L'entrée doit être un nombre" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "L'entrée doit être au format : aaaa-mm-jj" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "L'entrée doit être au format : hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Section Podcast" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Ouvrir le Constructeur de Média" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "veuillez mettre la durée '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Veuillez entrer un temps en secondes. Par exemple 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Le Bloc dynamique n'est pas prévisualisable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limiter à : " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Liste de Lecture sauvegardé" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist en aléatoire" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé»." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Nombre d'auditeur·ice·s sur %s : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Me le rappeler dans une semain" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Ne jamais me le rappeler" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Oui, aider Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "L'Image doit être du type jpg, jpeg, png, ou gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent." + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Bloc intelligent mélangé" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Bloc intelligent généré et critère(s) sauvegardé(s)" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Bloc intelligent sauvegardé" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Traitement en cours ..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Sélectionnez modification" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contient" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "ne contient pas" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "est" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "n'est pas" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "commence par" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "fini par" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "est plus grand que" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "est plus petit que" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "est dans le champ" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Générer" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choisir un Répertoire de Stockage" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choisir un Répertoire à Surveiller" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \n" +"Cela supprimera les fichiers de votre médiathèque Airtime !" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gérer les Répertoires des Médias" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ce chemin n'est pas accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connecté au serveur de flux" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Le flux est désactivé" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Obtention des informations à partir du serveur ..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Impossible de se connecter au serveur de flux" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151." + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "Pour plus d'informations, veuillez lire le manuel %s%s %s" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source»." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Aucun résultat trouvé" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "L'instance de l'émission n'existe plus !" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Attention : Les émissions ne peuvent pas être liées à nouveau" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Émission" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "L'émission est vide" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Récupération des données du serveur..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Cette émission n'a pas de contenu programmée." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Cette émission n'est pas complètement remplie avec ce contenu." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Janvier" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Fevrier" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Mars" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Avril" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mai" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Juin" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Juillet" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Août" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Septembre" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Octobre" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Novembre" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Décembre" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Fev" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Avr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jui" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aou" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Aujourd'hui" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Jour" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Semaine" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Mois" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Dimanche" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Lundi" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Mardi" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Mercredi" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Jeudi" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Vendredi" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Samedi" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Dim" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Lun" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Mar" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Mer" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Jeu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Ven" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sam" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Annuler l'émission en cours ?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Arrêter l'enregistrement de l'émission en cours ?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contenu de l'émission" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Enlever tous les contenus ?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Supprimer le(s) élément(s) sélectionné(s) ?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Début" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Fin" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Durée" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filtrage " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " de " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " enregistrements" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "Il n'y a pas d'émissions prévues durant cette période." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Point d'entrée" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Point de sortie" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fondu en entrée" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fondu en sortie" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Émission vide" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Enregistrement à partir de 'Line In'" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Pré-écoute de la piste" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Vous ne pouvez pas programmer en dehors d'une émission." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Déplacer 1 élément" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Déplacer %s éléments" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Sauvegarder" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Annuler" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Éditeur de fondu" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Éditeur de points d'E/S" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Tout Selectionner" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Ne Rien Selectionner" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Enlever les émissions surbookées" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Supprimer les éléments programmés sélectionnés" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Aller à la piste en cours de lecture" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Aller à l'émission en cours" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Annuler l'émission en cours" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Ajouter/Supprimer Contenu" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "en cours d'utilisation" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disque" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Regarder à l'intérieur" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Ouvrir" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrateur·ice" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DeaJee" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programmateur·ice" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Invité·e" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Les Invité·e·s peuvent effectuer les opérations suivantes :" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Voir le calendrier" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Voir le contenu des émissions" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Les DJs peuvent effectuer les opérations suivantes :" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Gérer le contenu des émissions attribuées" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Importer des fichiers multimédias" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Créez des listes de lectures, des blocs intelligents et des flux web" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Gérer le contenu de leur propre audiothèque" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "Les gestionnaires de programmes peuvent faire ceci :" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Afficher et gérer le contenu des émissions" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Programmer des émissions" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Gérez tout le contenu de l'audiothèque" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Gérer les préférences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Gérer les utilisateur·ice·s" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Gérer les dossiers surveillés" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Envoyez vos remarques au support" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Voir l'état du système" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Accédez à l'historique diffusion" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Voir les statistiques d'audience" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Montrer / cacher les colonnes" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Colonnes" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "De {from} à {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "aaaa-mm-jj" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Di" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Lu" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ma" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Me" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Je" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Ve" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Fermer" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Heure" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Fait" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Sélectionnez les fichiers" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "Nom du fichier" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "Taille" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Ajouter des fichiers" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Arrêter le Téléversement" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Démarrer le Téléversement" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "Démarrer le téléversement" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Ajouter des fichiers" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "Arrêter le téléversement en cours" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "Démarrer le téléversement de la file" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Téléversement de %d sur %d fichiers" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Faites glisser les fichiers ici." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Erreur d'extension du fichier." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Erreur de la Taille de Fichier." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Erreur de comptage des fichiers." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Erreur d'initialisation." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Erreur HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Erreur de sécurité." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Erreur générique." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Erreur d'E/S." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Fichier : %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d fichiers en file d'attente" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Fichier : %f, taille : %s, taille de fichier maximale : %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "L'URL de téléversement est peut être erronée ou inexistante" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Erreur : Fichier trop grand : " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Erreur : extension de fichier non valide : " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Définir par défaut" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Créer une entrée" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Éditer l'enregistrement de l'historique" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Pas d'émission" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copié %s ligne(s)%s dans le presse papier" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Nouvelle émission" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Nouvelle entrée de log" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "Aucune date disponible dans le tableau" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "(limité à _MAX_ entrées au total)" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "Premier" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "Dernier" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "Suivant" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "Précédent" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "Rechercher :" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "Aucun enregistrement correspondant trouvé" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "Glissez ici les pistes depuis la bibliothèque" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné." + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Annuler la publication" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "Aucun résultat correspondant trouvé." + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Auteur·ice" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Lien" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "Date de publication" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "Statuts d'importation" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "Actions" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "Supprimer de la bibliothèque" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "Succès de l'importation" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "Afficher _MENU_" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "Afficher les entrées du _MENU_" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "Affiche de _START_ à _END_ sur _TOTAL_ entrées" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "Affiche de _START_ à _END_ sur _TOTAL_ pistes" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "Affiche de _START_ à _END_ sur _TOTAL_ types de piste" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "Affiche de 0 à 0 sur 0 entrées" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "Affiche de 0 à 0 sur 0 pistes" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "Affiche de 0 à 0 sur 0 types de piste" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "(limité à _MAX_ types de piste au total)" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "Aucun type de piste trouvé." + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "Aucun type de piste trouvé" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "Aucun type de piste correspondant trouvé" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Activé" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Désactivé" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "Annuler le téléversement" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "Type" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" +"Le contenu des playlists automatiques est ajouté aux émissions une heure " +"avant le début de l'émission. Plus d'information" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "Préférences des podcasts enregistrées" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "Impossible de vous supprimer vous-même !" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "Vous n'avez pas publié d'épisode !" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes »." + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "Essayer maintenant" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "Aperçu de la liste de lecture" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Bloc intelligent" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "Aperçu du webstream" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "Vous n'avez pas l'autorisation de voir la bibliothèque." + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "Maintenant" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "Cliquez « Nouveau » pour en créer un nouveau." + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "Cliquez « Téléverser » pour en ajouter de nouveaux." + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "URL du flux" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "Date d'importation" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "Ajouter un nouveau podcast" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"Impossible de programmer en-dehors d'un épisode.\n" +"Veuillez d'abord créer un épisode." + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "Aucun fichier n'a encore été téléversé." + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "À l'antenne" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Hors antenne" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Éteint" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Aucun programme" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "Cliquez « Ajouter » pour en créer un nouveau maintenant." + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Veuillez entrer vos identifiants." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "Cet identifiant ou cette adresse courriel n'ont pu être trouvés." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e)." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Vous visualisez l'ancienne version de %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Liste de lecture sans titre" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Bloc intelligent sans titre" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Liste de lecture inconnue" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Préférences mises à jour." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Réglages du Flux mis à jour." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "le chemin doit être spécifié" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problème avec Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Cette méthode de requête ne peut aboutir" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rediffusion de l'émission %s de %s à %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Sélectionner le Curseur" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Enlever le Curseur" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "l'émission n'existe pas" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "Type de piste ajouté avec succès !" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "Type de piste mis à jour avec succès !" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Utilisateur·ice ajouté avec succès !" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Utilisateur·ice mis à jour avec succès !" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Paramètres mis à jour avec succès !" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Flux Web sans Titre" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Flux Web sauvegardé." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Valeurs du formulaire non valides." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Caractère Invalide saisi" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Le Jour doit être spécifié" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "La durée doit être spécifiée" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Vous devez attendre au moins 1 heure pour retransmettre" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "Ajouter une playlist automatique ?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Sélectionner la playlist" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Répéter la playlist jusqu'à ce que l'émission soit pleine ?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Utilisez l'authentification %s :" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Utiliser l'authentification personnalisée :" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Nom d'utilisateur·ice personnalisé" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Mot de Passe personnalisé" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Hôte :" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Port :" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Point de Montage :" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Le champ Nom d'Utilisateur·ice ne peut pas être vide." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Le champ Mot de Passe ne peut être vide." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Enregistrer à partir de « Line In » ?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rediffusion ?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "jours" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Lien :" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Type de Répétition :" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "hebdomadaire" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "toutes les 2 semaines" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "toutes les 3 semaines" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "toutes les 4 semaines" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensuel" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Sélection des jours :" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Répéter par :" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "jour du mois" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "jour de la semaine" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date de fin :" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Sans fin ?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "La Date de Fin doit être postérieure à la Date de Début" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Veuillez sélectionner un jour de répétition" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Couleur de fond :" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Couleur du texte :" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Logo actuel :" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Montrer le logo :" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Aperçu du logo :" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nom :" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Émission sans Titre" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL :" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genre :" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Description :" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Description de l'instance :" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Heure de début :" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "À venir :" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Temps de fin :" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Durée :" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Fuseau horaire :" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Répéter ?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Impossible de créer une émission dans le passé" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "La date/heure de Fin ne peut être dans le passé" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Ne peut pas avoir une durée < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Ne peut pas avoir une durée de 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne peut pas avoir une durée supérieure à 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Ne peut pas programmer des émissions qui se chevauchent" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Recherche d'utilisateur·ice·s :" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs :" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Nom du type :" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Code :" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "Visibilité :" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "Analyser les points d'entrée et de sortie :" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "Ce code n'est pas unique." + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Utilisateur·ice :" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Mot de Passe :" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Vérification du mot de Passe :" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Prénom :" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Nom :" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Courriel :" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Numéro de mobile :" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype :" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber :" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Type d'utilisateur·ice :" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Le Nom de connexion n'est pas unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Supprimer toutes les pistes de la librairie" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date de début :" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titre :" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Créateur·ice :" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album :" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "Propriétaire :" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "Sélectionner un type" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "Type de piste :" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Année :" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Étiquette :" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Compositeur·ice :" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conducteur :" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Atmosphère :" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM :" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright :" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numéro ISRC :" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Site Internet :" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Langue :" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Publier..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Heure de Début" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Heure de Fin" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Fuseau horaire de l'interface :" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nom de la Station" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Description de la station" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo de la Station :" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Durée du fondu enchaîné (en sec) :" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Veuillez entrer un temps en secondes (ex. 0.5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Fondu en Entrée par défaut (en sec) :" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Fondu en Sortie par défaut (en sec) :" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "Type de piste par défaut" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "Playlist automatique d'intro" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "Playlist automatique d'outro" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Remplacer les metatags de l'épisode" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "API publique LibreTime" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Requis pour le widget de programmation." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" +"L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n" +" à des widgets externes pouvant être intégrés à votre site Web." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Langage par défaut" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Fuseau horaire de la Station" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "La semaine commence le" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "Afficher le bouton de connexion sur votre page radio ?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "Aperçus de fonctionnalités" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités." + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Arrêt automatique :" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Mise en marche automatique :" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Changement de transition en fondu (en sec) :" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "Hôte source maître :" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "Port source maître :" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "Point de montage principal :" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Afficher l'hôte de la source :" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Afficher le port de la source :" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Afficher le point de montage de la source :" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Connexion" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Mot de Passe" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirmez le nouveau mot de passe" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "La confirmation du mot de passe ne correspond pas à votre mot de passe." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Courriel" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Utilisateur" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Réinitialisation du Mot de Passe" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Retour" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "En Lecture" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Sélectionnez un flux :" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Détecter automatiquement le flux le plus approprié à utiliser." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Sélectionnez un flux :" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Interface mobile" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - Le lecteur ne fonctionne pas avec des flux Opus." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Code à intégrer :" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Aperçu :" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Confidentialité du flux" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Publique" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privé" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Langage de la station" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Filtrer par émissions" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Toutes mes émissions :" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Mes émissions" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Sélectionner le critère" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Taux d'échantillonage (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "Type de piste" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Taux d'échantillonage (Khz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "avant" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "après" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "entre" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "Sélectionner une unité de temps" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "minute(s)" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "heure(s)" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "jour(s)" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "semaine(s)" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "mois" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "année(s)" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "heures" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "éléments" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "temps restant de l'émission" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Aléatoirement" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Plus récent" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Plus vieux" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Les plus joués récemment" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Les moins jouées récemment" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "Sélectionner un type de piste" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Type :" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamique" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statique" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "Sélectionner un type de piste" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Autoriser la répétition de pistes :" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Autoriser la dernière piste à dépasser l'horaire :" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Trier les pistes :" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limiter à :" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Génération de la liste de lecture et sauvegarde des critères" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Contenu de la liste de lecture alèatoire" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Aléatoire" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "La Limite ne peut être vide ou plus petite que 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "La Limite ne peut être supérieure à 24 heures" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "La valeur doit être un entier" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Vous devez sélectionner Critères et Modification" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "La 'Durée' doit être au format '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "Vous devez sélectionner une unité de temps pour une date relative." + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "Seuls les entiers positifs sont autorisés pour les dates relatives" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "La valeur doit être numérique" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "La valeur doit être inférieure à 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "La valeur ne peut pas être vide" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "La valeur doit être inférieure à %s caractères" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "La Valeur ne peut pas être vide" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Label du Flux :" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artiste - Titre" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Émission - Artiste - Titre" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Nom de la Station - Nom de l'émission" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Métadonnées Hors Antenne" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Activer" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Modifier le Niveau du Gain" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Sortie audio matérielle :" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Type de Sortie" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Activé :" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Mobile :" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Type de Flux :" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Débit :" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Type de service :" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Canaux :" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Serveur" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Point de Montage" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Nom" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "URL du flux" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Pousser les métadonnées sur votre station sur TuneIn ?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Identifiant de la station :" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clé partenaire :" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "ID partenaire :" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Répertoire d'importation :" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Répertoires Surveillés :" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "N'est pas un Répertoire valide" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Une valeur est requise, ne peut pas être vide" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne correspond pas au format de la date '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' est inférieur à %min% charactères" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' est plus grand de %min% charactères" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Les mots de passe ne correspondent pas" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Bonjour %s , \n" +"\n" +"Veuillez cliquer sur ce lien pour réinitialiser votre mot de passe : " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"En cas de problèmes, contactez notre équipe de support : %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Merci,\n" +"L'équipe %s" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Réinitialisation du mot de passe" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Le points d'entrée et de sortie sont indéfinis." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Temps de téléversement" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Vide" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "Propulsé par %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Selectionner le Pays" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "diffusion en direct" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Le calendrier que vous consultez n'est pas à jour !" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Vous n'êtes pas autorisé à programme l'émission %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "L émission %s est terminé et ne peut pas être programmé." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "L'émission %s a été précédemment mise à jour !" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Un fichier sélectionne n'existe pas !" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Les émissions peuvent avoir une durée maximale de 24 heures." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Ne peux pas programmer des émissions qui se chevauchent. \n" +"Remarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rediffusion de %s à %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "La durée doit être supérieure à 0 minute" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "La durée doit être de la forme \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL doit être de la forme \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "L'URL doit être de 512 caractères ou moins" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Aucun type MIME trouvé pour le Flux Web." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Le Nom du Flux Web ne peut être vide" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Impossible d'analyser la Sélection XSPF" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Impossible d'analyser la Sélection PLS" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Impossible d'analyser la Séléction M3U" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Type de flux non reconnu : %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "L'enregistrement du fichier n'existe pas" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Afficher les métadonnées du fichier enregistré" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Ajouter des pistes" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Vider le contenu de l'émission" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Annuler l'émission" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Modifier cet élément" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Édition de l'émission" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Supprimer cet élément" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Supprimer cet élément et tous les suivants" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Permission refusée" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Impossible de déplacer une émission déjà diffusée" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Impossible de déplacer une émission dans le passé" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Doit attendre 1 heure pour retransmettre." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Piste" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Joué" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Playlist intelligente géré automatiquement pour le podcast" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Flux web" + +#~ msgid " to " +#~ msgstr " à " + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s est distribué sous %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes." + +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s Tous droits réservés.
Maintenu et distribué sous les %3$s par %4$s" + +#, php-format +#~ msgid "%s Version" +#~ msgstr "Version %s" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contient un répertoire surveillé imbriqué : %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s n'existe pas dans la liste surveillée." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s déjà examiné(s)." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s est imbriqué avec un répertoire surveillé existant : %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s n'est pas un répertoire valide." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)." + +#~ msgid "(Required)" +#~ msgstr "(Requis)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Site Internet de la Station de Radio)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(à des fins de vérification uniquement, ne sera pas publié)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stéréo" + +#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#~ msgstr "
Voici une pré-visualisation du contenu qui peut être généré par le bloc intelligent basé sur le critère ci-dessus." + +#~ msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead." +#~ msgstr " Remarque: Puisque vous êtes le propriétaire de la station, les informations de votre compte peuvent être modifiées dans les paramètres de facturation ." + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Un lien de réinitialisation du mot de passe a été envoyé à votre adresse e-mail. Veuillez vérifier votre email et suivez les instructions à l'intérieur pour réinitialiser votre mot de passe. Si vous ne voyez pas l'e-mail, veuillez vérifier votre dossier spam!" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Une liste de pistes est générée lorsque vous programmez ce bloc intelligent dans une émission." + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "A propos" + +#~ msgid "Access Denied!" +#~ msgstr "Accès refusé !" + +#~ msgid "Account Details" +#~ msgstr "Détails du compte" + +#~ msgid "Account Plans" +#~ msgstr "Plan du compte" + +#~ msgid "Add New Field" +#~ msgstr "Ajouter un nouveau champ" + +#~ msgid "Add more elements" +#~ msgstr "Ajouter plus d'éléments" + +#~ msgid "Add this show" +#~ msgstr "Ajouter cette émission" + +#~ msgid "Add tracks to your show" +#~ msgstr "Ajouter des pistes à l'émission" + +#~ msgid "Additional Options" +#~ msgstr "Options supplémentaires" + +#~ msgid "Admin Password" +#~ msgstr "Mot de Passe Admin" + +#~ msgid "Admin User" +#~ msgstr "Utilisateur·ice Admin" + +#~ msgid "Advanced Search Options" +#~ msgstr "Options Avancées de Recherche" + +#~ msgid "Advanced options" +#~ msgstr "Options avancées" + +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "Airtime Pro fait peau neuve!" + +#~ msgid "All rights are reserved" +#~ msgstr "Tous droits réservés" + +#~ msgid "Allowed CORS URLs" +#~ msgstr "URLs CORS autorisées" + +#~ msgid "Allowed CORS URLs (DEPRECATED)" +#~ msgstr "Les URL CORS autorisés (OBSOLÈTE)" + +#~ msgid "An error has occurred." +#~ msgstr "Une erreur est survenue." + +#~ msgid "Audio Track" +#~ msgstr "Piste Audio" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Playlist automatique" + +#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +#~ msgstr "Le contenu des playlists automatiques est ajouté aux émissions une heure avant leur départ. Plus d'informations" + +#~ msgid "Bad Request!" +#~ msgstr "Cette requête est incorrecte !" + +#~ msgid "Billing" +#~ msgstr "Facturation" + +#~ msgid "Billing cycle:" +#~ msgstr "Facturation:" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ." + +#~ msgid "Category" +#~ msgstr "Catégorie" + +#~ msgid "Check that the libretime-celery service is installed correctly in " +#~ msgstr "Vérifiez que le service « libretime-celery » est installé correctement dans " + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Cochez les cases ci-dessus et cliquez sur 'Publier' pour publier cette piste sur les sources marquées." + +#~ msgid "Choose Days:" +#~ msgstr "Choisissez des jours:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choisissez une instance" + +#~ msgid "Choose folder" +#~ msgstr "Choisir le répertoire" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Choisissez certains critères de recherche ci-dessus et cliquez sur Générer pour créer cette liste de lecture." + +#~ msgid "City:" +#~ msgstr "Ville:" + +#~ msgid "Clear" +#~ msgstr "Vider" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Cliquez sur 'Calendrier' dans la barre de navigation à gauche. Puis cliquez sur le bouton '+ Nouvelle émission' et remplissez les informations requises." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Cliquez sur une émission dans le calendrier et sélectionnez 'Programmer l'émission'. Dans la fenêtre qui s'affiche déplacez des pistes sur votre émission." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Cliquez sur le bouton 'Téléversement' dans le coin gauche pour ajouter des pistes à votre librairie." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion" + +#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +#~ msgstr "Impossible de se connecter au serveur RabbitMQ ! Veuillez vérifier si le serveur est en cours d'exécution et que vos informations d'identification sont correctes." + +#~ msgid "Country:" +#~ msgstr "Pays:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Création du fichier Modèle d'Historique" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Création du modèle de fichier de Log" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution Pas de Travaux Dérivés" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Non Commercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Distribution à l'Identique" + +#~ msgid "Credit Card via 2Checkout" +#~ msgstr "Carte de crédit via 2Checkout" + +#~ msgid "Cue In: " +#~ msgstr "Point d'entrée " + +#~ msgid "Cue Out: " +#~ msgstr "Point de Sortie: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Répertoire d'importation:" + +#~ msgid "Cursor" +#~ msgstr "Curseur" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Streaming personnalisé / tiers" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "Personnalisez le lecteur en configurant les options ci-dessous. Lorsque vous avez terminé, \\ n copiez le code intégrable ci-dessous et collez-le dans le code HTML de votre site Web." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "Les DJs peuvent utiliser ces paramètres dans leur logiciel de diffusion pour diffuser en direct les émissions qui leurs sont assignées." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "Les DJs peuvent utiliser ces réglages pour se connecter à cette émission et la diffuser en direct. Assignez un DJ ci-dessous." + +#~ msgid "Dangerous Options" +#~ msgstr "Options dangereuses" + +#~ msgid "Dashboard" +#~ msgstr "Tableau de bord" + +#~ msgid "Default Length:" +#~ msgstr "Durée par Défaut:" + +#~ msgid "Default License:" +#~ msgstr "Licence par Défaut:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Type de partage par défaut:" + +#~ msgid "Default Streaming" +#~ msgstr "Streaming par défaut" + +#~ msgid "Disk Space" +#~ msgstr "Espace Disque" + +#~ msgid "Download latest episodes:" +#~ msgstr "Télécharger les derniers épisodes:" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Faites glisser les pistes ici de votre bibliothèque pour les ajouter à la liste de lecture" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Faites glisser les fichiers ici ou cliquez pour parcourir votre ordinateur." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloc intelligent Dynamique" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Critère(s) du bloc intelligent Dynamique: " + +#~ msgid "Edit Metadata..." +#~ msgstr "Modifier les méta-données..." + +#~ msgid "Editing " +#~ msgstr "Edition " + +#~ msgid "Email Sent!" +#~ msgstr "Email envoyé!" + +#~ msgid "Empty playlist content" +#~ msgstr "Vider le contenu de la Liste de Lecture" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Ettendre le Bloc Dynamique" + +#~ msgid "Expand Static Block" +#~ msgstr "Ettendre le bloc Statique" + +#~ msgid "Explicit" +#~ msgstr "Explicite" + +#~ msgid "FAQ" +#~ msgstr "Questions - réponses" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Lecteur Radio Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Fondu en entrée: " + +#~ msgid "Fade in: " +#~ msgstr "Fondu dans: " + +#~ msgid "Fade out: " +#~ msgstr "Fondu en sortie: " + +#~ msgid "Failed" +#~ msgstr "Échoués" + +#~ msgid "File Path:" +#~ msgstr "Chemin du fichier:" + +#~ msgid "File Summary" +#~ msgstr "Résumé du fichier" + +#~ msgid "File Summary Templates" +#~ msgstr "Modèle de fichier d'historique" + +#~ msgid "File a Support Ticket" +#~ msgstr "Remplir un ticket au support" + +#~ msgid "File import in progress..." +#~ msgstr "Import du Fichier en cours..." + +#~ msgid "Filter History" +#~ msgstr "Filtre de l'historique" + +#~ msgid "Find" +#~ msgstr "Trouver" + +#~ msgid "Find Shows" +#~ msgstr "Trouver émissions" + +#~ msgid "First Name" +#~ msgstr "Prénom" + +#, php-format +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "Pour plus d' informations sur ce que ces champs de métadonnées signifient, s'il vous plaît voir le %s RSS spécification %s \\ n ou %s la documentation de podcasting Apple %s ." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Pour plus de détails, s'il vous plaît lire le %sManuel d'Airtime%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Mot de passe oublié ?" + +#~ msgid "General Fields" +#~ msgstr "Champs généraux" + +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Générer Bloc intelligent et Playlist" + +#~ msgid "Global" +#~ msgstr "Global" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "Vous avez une énorme bibliothèque de musique? Aucun problème! Avec la nouvelle page Téléverser, vous pouvez faire glisser des dossiers entiers dans notre cloud privé." + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Aidez à améliorer %s en nous indiquant comment vous l'utilisez. Ces informations seront collectées régulièrement afin d'améliorer votre expérience utilisateur.
Cliquez sur la case ci-dessous pour nous assurer que les fonctionnalités que vous utilisez s'améliorent constamment." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions: " + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Metadata Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Si Airtime est derrière un routeur ou un pare-feu, vous devrez peut-être configurer la redirection de port et ce champ d'information sera alors incorrect.Dans ce cas, vous devrez mettre à jour manuellement ce champ de sorte qu'il affiche l'hôte/le port /le point de montage correct dont le DJ a besoin pour s'y connecter. La plage autorisée est comprise entre 1024 et 49151." + +#~ msgid "In what city did you meet your spouse/significant other?" +#~ msgstr "Dans quelle ville avez-vous rencontré votre compagnon(ne) ?" + +#~ msgid "In what city or town was your first job?" +#~ msgstr "Dans quelle ville ou village avez-vous eu votre premier travail ?" + +#~ msgid "Isrc Number:" +#~ msgstr "Numéro ISRC:" + +#~ msgid "Jack" +#~ msgstr "Jack" + +#~ msgid "Keywords" +#~ msgstr "Mots-clés" + +#~ msgid "Last Name" +#~ msgstr "Nom" + +#~ msgid "Length:" +#~ msgstr "Durée:" + +#~ msgid "Limit to " +#~ msgstr "Limité à " + +#~ msgid "Listen" +#~ msgstr "Ecouter" + +#~ msgid "Listeners" +#~ msgstr "Les auditeurs" + +#~ msgid "Live Broadcasting" +#~ msgstr "Diffusion en direct" + +#~ msgid "Live Stream Input" +#~ msgstr "Entrée du Flux Direct" + +#~ msgid "Live stream" +#~ msgstr "Flux Live" + +#~ msgid "Log Sheet" +#~ msgstr "Fichier de Log" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Modèles de fichiers de Log" + +#~ msgid "Logout" +#~ msgstr "Déconnexion" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "On dirait que la page que vous cherchez n'existe pas !" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Il n'y a pas d'émissions prévues aujourd'hui." + +#~ msgid "Manage Users" +#~ msgstr "Gérer les Utilisateurs" + +#~ msgid "Master Source" +#~ msgstr "Source Maitre" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Utilisation mensuelle de la bande passante de l'auditeur" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." + +#~ msgid "New Criteria" +#~ msgstr "Nouveau critère" + +#~ msgid "New File Summary Template" +#~ msgstr "Nouveau modèle de fichier d'Historique" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nouveau modèle de fichier de Log" + +#~ msgid "New Modifier" +#~ msgstr "Nouveau modificateur" + +#~ msgid "New User" +#~ msgstr "Nouvel Utilisateur" + +#~ msgid "New password" +#~ msgstr "Nouveau mot de passe" + +#~ msgid "Next:" +#~ msgstr "Prochain:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Aucun modèle de fichier d'historique" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Aucun modèles de fichiers de Log" + +#~ msgid "No open playlist" +#~ msgstr "Pas de Liste de Lecture Ouverte" + +#~ msgid "No smart block currently open" +#~ msgstr "Aucun bloc intelligent actuellement ouvert" + +#~ msgid "No webstream" +#~ msgstr "Aucun Flux Web" + +#~ msgid "Now you're good to go!" +#~ msgstr "Vous en savez assez à présent !" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "DIRECT" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Seuls les chiffres sont autorisés." + +#~ msgid "Oops!" +#~ msgstr "Mince !" + +#~ msgid "Original Length:" +#~ msgstr "Durée Originale:" + +#~ msgid "" +#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" +#~ " is easier than ever." +#~ msgstr "Notre nouvelle vue Tableau de bord dispose désormais d'une puissante interface d'édition par onglets. La mise à jour de vos pistes et de vos listes de lecture est donc plus simple que jamais." + +#~ msgid "Output Streams" +#~ msgstr "Flux de sortie" + +#~ msgid "Override" +#~ msgstr "Ecraser" + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Remplacer le nom de l'album par le nom du podcast durant le remplacement." + +#~ msgid "Page not found!" +#~ msgstr "Page non trouvée !" + +#~ msgid "Password Reset" +#~ msgstr "Réinitialisation du mot de passe" + +#~ msgid "PayPal" +#~ msgstr "PayPal" + +#~ msgid "Payment method:" +#~ msgstr "Méthode de paiement:" + +#~ msgid "Pending" +#~ msgstr "En attente" + +#~ msgid "Phone:" +#~ msgstr "Téléphone:" + +#~ msgid "Plan type:" +#~ msgstr "Type de plan:" + +#~ msgid "Play" +#~ msgstr "Lecture" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenus de la Liste de Lecture: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Fondu enchaîné de la Liste de Lecture" + +#~ msgid "Playout History Templates" +#~ msgstr "Modèles d'historique de diffusion" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous." + +#~ msgid "Please upgrade to " +#~ msgstr "SVP mettez vous à jour vers" + +#~ msgid "Podcast Name: " +#~ msgstr "Nom du podcast: " + +#~ msgid "Podcast URL: " +#~ msgstr "URL du podcast: " + +#~ msgid "Podcasts" +#~ msgstr "Podcasts" + +#~ msgid "Port cannot be empty." +#~ msgstr "Le Port ne peut être vide." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Previous:" +#~ msgstr "Précédent:" + +#~ msgid "Privacy Settings" +#~ msgstr "Paramètres de sécurité" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Les gestionnaires pouvent effectuer les opérations suivantes:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promouvoir station sur %s" + +#~ msgid "Publish to:" +#~ msgstr "Publier vers:" + +#~ msgid "Published on:" +#~ msgstr "Publié le:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Les pistes publiées peuvent être supprimées ou mises à jour ci-dessous." + +#~ msgid "Publishing" +#~ msgstr "Publication" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "RESET" +#~ msgstr "Réinitialiser" + +#~ msgid "RSS Feed URL:" +#~ msgstr "URL du feed RSS:" + +#~ msgid "Recent Uploads" +#~ msgstr "Ajouts récents" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Enregistrement & Rediffusion" + +#~ msgid "Register Airtime" +#~ msgstr "Enregistrez Airtime" + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +#~ msgstr "URL distantes autorisées à accéder à cette instance LibreTime dans un navigateur. Une URL par ligne." + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line. (DEPRECATED: Allowed CORS origins configuration moved to the configuration file.)" +#~ msgstr "Les URL distantes qui sont autorisées pour accéder à cette instance de LibreTime depuis un navigation. Une URL par ligne. (OBSOLÈTE : La configuration des origines CORS a été déplacée dans le fichier de configuration.)" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Supprimer tout le contenu de ce bloc intelligent" + +#~ msgid "Remove watched directory" +#~ msgstr "Supprimer le répertoire surveillé" + +#~ msgid "Repeat Days:" +#~ msgstr "Jours de répétition:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Fréquence d'échantillonnage:" + +#~ msgid "Save playlist" +#~ msgstr "Sauvegarde de la Liste de Lecture" + +#~ msgid "Save podcast" +#~ msgstr "Sauvegarder le podcast" + +#~ msgid "Save station podcast" +#~ msgstr "Sauvegarder le podcast de la station" + +#~ msgid "Schedule a show" +#~ msgstr "Programmer une émission" + +#~ msgid "Scheduled Shows" +#~ msgstr "Émissions programmées" + +#~ msgid "Scheduling:" +#~ msgstr "Programmation:" + +#~ msgid "Search Criteria:" +#~ msgstr "Critères de recherche:" + +#~ msgid "Select stream:" +#~ msgstr "Selection du Flux:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Le Serveur ne peut être vide." + +#~ msgid "Service" +#~ msgstr "Un service" + +#~ msgid "Set" +#~ msgstr "Installer" + +#~ msgid "Set Cue In" +#~ msgstr "Placer le Point d'Entré" + +#~ msgid "Set Cue Out" +#~ msgstr "Placer le Point de Sortie" + +#~ msgid "Set Default Template" +#~ msgstr "Définir le modèle par défaut" + +#~ msgid "Share" +#~ msgstr "Partager" + +#~ msgid "Show Source" +#~ msgstr "Source de l'émission" + +#~ msgid "Show Summary" +#~ msgstr "Historique Emision" + +#~ msgid "Show Waveform" +#~ msgstr "Montrer la Forme d'Onde" + +#~ msgid "Show me what I am sending " +#~ msgstr "Montrez-moi ce que je vais envoyer " + +#~ msgid "Shuffle playlist" +#~ msgstr "Liste de Lecture Aléatoire" + +#~ msgid "Smartblock and Playlist Generated" +#~ msgstr "Bloc intelligent et playlist générés" + +#~ msgid "Source Streams" +#~ msgstr "Sources des Flux" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloc intelligent Statique" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenus du bloc intelligent Statique: " + +#~ msgid "Station Description:" +#~ msgstr "Description de la Station:" + +#~ msgid "Station Web Site:" +#~ msgstr "Site Internet de la Station:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Flux " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Statut de collecte de données de flux" + +#~ msgid "Stream Settings" +#~ msgstr "Réglages des Flux" + +#~ msgid "Stream URL:" +#~ msgstr "URL du Flux:" + +#~ msgid "Stream URL: " +#~ msgstr "URL du Flux: " + +#~ msgid "Streaming Server:" +#~ msgstr "Serveur de Streaming :" + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Subscribe" +#~ msgstr "S'abonner" + +#~ msgid "Subtitle" +#~ msgstr "Sous-titre" + +#~ msgid "Summary" +#~ msgstr "Sommaire" + +#~ msgid "Super Admin details can be changed in your Billing Settings." +#~ msgstr "Les détails du super administrateur peuvent être modifiés dans vos paramètres de facturation ." + +#~ msgid "Support Feedback" +#~ msgstr "Remarques au support" + +#~ msgid "Support setting updated." +#~ msgstr "Réglages du Support mis à jour." + +#~ msgid "Table Test" +#~ msgstr "Test de table" + +#~ msgid "Terms and Conditions" +#~ msgstr "Termes et Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "La longueur du bloc souhaité ne sera pas atteint si de temps d'antenne ne peut pas trouver suffisamment de pistes uniques en fonction de vos critères. Activez cette option si vous souhaitez autoriser les pistes à s'ajouter plusieurs fois dans le bloc intelligent." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:" + +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "" +#~ "Le nouveau temps d'antenne est plus fluide, plus élégant et plus rapide - sur encore plus d'appareils! Nous nous\n" +#~ " sommes engagés à améliorer l'expérience Airtime, quelle qu'en soit votre utilisation." + +#~ msgid "The requested action is not supported!" +#~ msgstr "L'action demandée n'est pas implémentée !" + +#~ msgid "The work is in the public domain" +#~ msgstr "Ce travail est dans le domaine public" + +#~ msgid "This version is no longer supported." +#~ msgstr "Cette version n'est plus supportée." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Cette version sera bientôt obsolête." + +#~ msgid "" +#~ "To add the Radio Tab to your Facebook Page, you must first:

\n" +#~ " Enable the Public Airtime API under Settings -> Preferences" +#~ msgstr "" +#~ "Pour ajouter l'onglet Radio à votre page Facebook, vous devez d'abord:

\n" +#~ "\t Activez l'API Publique Airtime sous Paramètres -> Préférences" + +#~ msgid "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +#~ " 2. Enable the Public Airtime API under Settings -> Preferences" +#~ msgstr "" +#~ "Pour configurer et utiliser le lecteur intégré vous devez:

\n" +#~ "\t 1. Activer au mois un flux MP3, AAC ou OGG dans Paramètres -> Flux
\n" +#~ "\t 2. Activer l'API publique de Airtime dans Paramètres -> Préférences" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s." + +#~ msgid "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public Airtime API under Settings -> Preferences" +#~ msgstr "" +#~ "Pour utiliser ce widget affichant la programmation hebdomadaire vous devez:

\n" +#~ "\t Activer l'API publique Airtime dans Paramètres -> Préférences" + +#~ msgid "Toggle Details" +#~ msgstr "Basculer les détails" + +#~ msgid "Track:" +#~ msgstr "Piste:" + +#~ msgid "TuneIn Settings" +#~ msgstr "Réglages TuneIn" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous." + +#~ msgid "Update Required" +#~ msgstr "Mise à Jour Requise" + +#~ msgid "Update show" +#~ msgstr "Mettre à jour l'émission" + +#~ msgid "Update track" +#~ msgstr "Mettre la piste à jour" + +#~ msgid "Upgrade" +#~ msgstr "Amélioration" + +#~ msgid "Upload" +#~ msgstr "Téléversement" + +#~ msgid "Upload audio tracks" +#~ msgstr "Téléverser des pistes sonores" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Utilisez ces paramètres dans votre logiciel de diffusion pour diffuser en direct à tout moment." + +#~ msgid "User Type" +#~ msgstr "Type d'Utilisateur" + +#~ msgid "View Feed" +#~ msgstr "Voir le feed" + +#~ msgid "View Invoices" +#~ msgstr "Voir factures" + +#~ msgid "View track" +#~ msgstr "Voir la piste" + +#~ msgid "Viewing " +#~ msgstr "Affichage " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "Nous n'avons pu trouver la page que vous cherchiez." + +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "" +#~ "Nous avons rationalisé l'interface Airtime pour faciliter la navigation. Avec les outils les plus importants\n" +#~ " à portée de clic, vous serez en direct et les mains libres en un rien de temps." + +#~ msgid "Web Stream" +#~ msgstr "Flux Web" + +#~ msgid "Webstream" +#~ msgstr "Flux web" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Bienvenue à %s !" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Bienvenue dans LibreTime !" + +#~ msgid "What" +#~ msgstr "Quoi" + +#~ msgid "What is the first name of the boy or girl that you first kissed?" +#~ msgstr "Comment s'appelait la première personne que vous avez embrassé ?" + +#~ msgid "What is the name of your favorite childhood friend?" +#~ msgstr "Quel est le nom de votre meilleur ami d'enfance ?" + +#~ msgid "What school did you attend for sixth grade?" +#~ msgstr "Où étiez-vous au collège ?" + +#~ msgid "What street did you live on in third grade?" +#~ msgstr "Dans quelle rue viviez-vous en classe de CE2 ?" + +#~ msgid "When" +#~ msgstr "Quand" + +#~ msgid "Who" +#~ msgstr "Qui" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Vous ne surveillez pas les dossiers médias." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Vous pouvez les changer plus tard dans vos préférences et réglages utilisateurs." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "Vous n'avez pas la permission d'accéder à cette page !" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "Vous n'avez pas la permission de modifier cette piste." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Vous avez déjà publié cette piste sur toutes les sources disponibles!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Vous devez accepter la politique de confidentialité." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Vous n'avez pas publié cette piste à aucune source!" + +#~ msgid "" +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." +#~ msgstr "" +#~ "Vos fonctionnalités préférées sont encore plus faciles à utiliser - et nous en avons même \n" +#~ " ajouté quelques nouvelles! Regardez la vidéo ci-dessus ou lisez la suite pour en savoir plus." + +#~ msgid "Your trial expires in" +#~ msgstr "Votre période d'essai expire dans" + +#~ msgid "and" +#~ msgstr "et" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "ce fichier correspond aux critères" + +#~ msgid "files meet the criteria" +#~ msgstr "ces fichiers correspondent aux critères" + +#~ msgid "iTunes Fields" +#~ msgstr "Champs pour iTunes" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volume max" + +#~ msgid "mute" +#~ msgstr "sourdine" + +#~ msgid "next" +#~ msgstr "suivant" + +#~ msgid "or" +#~ msgstr "ou" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "jouer" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "s'il vous plaît mettez dans une durée en secondes '00 (.0) '" + +#~ msgid "previous" +#~ msgstr "précédent" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "désactiver" diff --git a/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..aea6bcd8ea --- /dev/null +++ b/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po @@ -0,0 +1,4643 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2022-08-14 21:20+0000\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: Croatian \n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.14-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Godina %s mora biti u rasponu od 1753. – 9999." + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nije ispravan datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nije ispravno vrijeme" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Koristi standardne podatke stanice" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Stranica radija" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalendar" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Programčići" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Player" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Tjedni raspored" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Postavke" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Opće" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Moj profil" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Korisnici" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Vrste snimaka" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Prijenosi" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Stanje" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Analitike" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Povijest reproduciranih pjesama" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Predlošci za povijest" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Statistika slušatelja" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Prikaži statistiku slušatelja" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Pomoć" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Prvi koraci" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Korisnički priručnik" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Pomoć na internetu" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Doprinesi projektu LibreTime" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Što je novo?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Ne smiješ pristupiti ovom izvoru." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Ne smiješ pristupiti ovom izvoru. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Datoteka ne postoji u %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Neispravan zahtjev. Prametar „mode” nije predan." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Neispravan zahtjev. Prametar „mode” je neispravan" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Nemaš dozvole za odspajanje izvora." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Nema spojenog izvora na ovaj unos." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Nemaš dozvole za mijenjanje izvora." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Stranica nije pronađena." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Nemaš dozvole za pristupanje ovom resursu." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nije pronađen" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Dogodila se greška." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Pregled" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Dodaj na Popis Pjesama" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Dodaj u pametni blok" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Izbriši" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Uredi …" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Preuzimanje" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Dupliciraj playlistu" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Dupliciraj pametni blok" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Nema dostupnih akcija" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Nemaš dozvole za brisanje odabrane stavke." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Nije bilo moguće izbrisati datoteku(e)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopiranje od %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Dogodila se greška!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Snimanje:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Prijenos mastera" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Prijenos uživo" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Ništa nije zakazano" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Trenutačna emisija:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Trenutačna" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Pokrećeš najnoviju verziju" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Dostupna je nova verzija: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Dodaj u trenutni popis pjesama" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Dodaj u trenutačni pametni blok" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Dodavanje 1 stavke" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Dodavanje %s stavki" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Možeš dodavati samo pjesme u pametne blokove." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Odaberi mjesto pokazivača na vremenskoj crti." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Nova" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Uredi" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Dodaj rasporedu" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Dodaj sljedećoj emisiji" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Dodaj trenutačnoj emisiji" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "Dodaj nakon odabranih stavki" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Objavi" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Ukloni" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Uredi metapodatke" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Dodaj odabranoj emisiji" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Odaberi" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Odaberi ovu stranicu" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Odznači ovu stranicu" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Odznači sve" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Stvarno želiš izbrisati odabranu(e) stavku(e)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Zakazano" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Snimke" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playlista" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Naslov" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Tvorac" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Brzina prijenosa" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Kompozitor" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Autorsko pravo" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Kodirano je po" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Žanr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Etiketa" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Jezik" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Zadnja promjena" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Zadnji put svirano" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Trajanje" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Vrsta" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Ugođaj" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Vlasnik" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Pojačanje reprodukcije" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Frekvencija" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Broj snimke" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Preneseno" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Web stranica" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Godina" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Učitavanje..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Sve" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Datoteke" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playliste" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Pametni blokovi" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Prijenosi" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Nepoznata vrsta: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Stvarno želiš izbrisati odabranu stavku?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Prijenos je u tijeku..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Preuzimanje podataka s poslužitelja …" + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Uvezi" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Uvezeno?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Prikaz" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Kod pogreške: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Poruka pogreške: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Unos mora biti pozitivan broj" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Unos mora biti broj" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Unos mora biti u obliku: gggg-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Unos mora biti u obliku: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Moj Podcast" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Otvori Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "upiši vrijeme „00:00:00 (.0)”" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Upiši ispravno vrijeme u sekundama. Npr. 0,5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dinamički blok se ne može pregledati" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Ograniči na: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlista je spremljena" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlista je izmiješana" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Broj slušatelja %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Podsjeti me za 1 tjedan" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Nikada me nemoj podsjetiti" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Da, pomažem Airtime-u" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Slika mora biti jpg, jpeg, png, ili gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Pametni blok je izmiješan" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Pametni blok je generiran i kriteriji su spremljeni" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Pametni blok je spremljen" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Obrada..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Odaberi modifikator" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "sadrži" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "ne sadrži" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "je" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "nije" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "počinje sa" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "završava sa" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "je veći od" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "je manji od" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "je u rasponu" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generiraj" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Odaberi mapu za spremanje" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Odaberi mapu za praćenje" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Stvarno želiš promijeniti mapu za spremanje?\n" +"To će ukloniti datoteke iz tvoje Airtime medijateke!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Upravljanje Medijske Mape" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Stvarno želiš ukloniti nadzorsku mapu?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ovaj put nije trenutno dostupan." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Priključen je na poslužitelju" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Prijenos je onemogućen" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Preuzimanje informacija s poslužitelja …" + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Ne može se povezati na poslužitelju" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nema pronađenih rezultata" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Emisija u ovom slučaju više ne postoji!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Upozorenje: Emisije ne može ponovno se povezati" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Emisija" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Emisija je prazna" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Preuzimanje podataka s poslužitelja …" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Ova emisija nema zakazanog sadržaja." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Siječanj" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Veljača" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Ožujak" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Travanj" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Svibanj" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Lipanj" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Srpanj" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Kolovoz" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Rujan" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Listopad" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Studeni" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Prosinac" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Sij" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Vel" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Ožu" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Tra" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Lip" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Srp" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Kol" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Ruj" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Lis" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Stu" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Pro" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Danas" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Dan" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Tjedan" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Nedjelja" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Ponedjeljak" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Utorak" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Srijeda" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Četvrtak" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Petak" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Subota" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Ned" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Pon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Uto" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Sri" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Čet" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Pet" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sub" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Prekinuti trenutačnu emisiju?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Zaustaviti snimanje emisije?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "U redu" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Sadržaj emisije" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Ukloniti sav sadržaj?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Izbrisati odabranu(e) stavku(e)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Početak" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Završetak" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Trajanje" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Izdvjanje " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " od " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " snimaka" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "U navedenom vremenskom razdoblju nema zakazanih emisija." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Postupno pojačavanje glasnoće" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Postupno smanjivanje glasnoće" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Prazna emisija" + +#: application/controllers/LocaleController.php:294 +#, fuzzy +msgid "Recording From Line In" +msgstr "Snimanje sa Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Pregled snimaka" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Nije moguće zakazati izvan emisije." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Premještanje 1 stavke" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Premještanje %s stavki" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Spremi" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Odustani" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Uređivač prijelaza" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Uređivač" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Odaberi sve" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Odaberi ništa" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Ukloni odabrane zakazane stavke" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Skoči na trenutnu sviranu pjesmu" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Skoči na trenutnu" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Prekini trenutačnu emisiju" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Dodaj / Ukloni Sadržaj" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "u upotrebi" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Pogledaj unutra" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Otvori" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrator" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "Disk-džokej" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Voditelj programa" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Gost" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gosti mogu učiniti sljedeće:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Prikaži raspored" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Prikaži sadržaj emisije" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Disk-džokeji mogu učiniti sljedeće:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Upravljanje dodijeljen sadržaj emisije" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Uvezi medijske datoteke" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Izradi popise naslova, pametnih blokova, i prijenose" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Upravljanje svoje knjižničnog sadržaja" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "Voditelj programa može:" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Prikaži i upravljaj sadržajem emisije" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Zakaži emisije" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Upravljanje sve sadržaje knjižnica" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Administratori mogu učiniti sljedeće:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Upravljanje postavke" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Upravljanje korisnike" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Upravljanje nadziranih datoteke" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Pošalji povratne informacije" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Prikaži stanje sustava" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Pristup za povijest puštenih pjesama" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Prikaži statistiku slušatelja" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Prikaži/sakrij stupce" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Stupci" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Od {from} do {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "gggg-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Ne" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Po" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ut" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Sr" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Če" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Pe" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Su" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Zatvori" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Sat" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuta" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Gotovo" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Odaberi datoteke" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Dodaj Datoteke" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Prekini prijenos" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Započni prijenos" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Dodaj datoteke" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Preneseno %d/%d datoteka" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Povuci datoteke ovamo." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Pogrešan datotečni nastavak." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Pogrešna veličina datoteke." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Pogrešan broj datoteka." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init pogreška." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP pogreška." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Sigurnosna pogreška." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Opća pogreška." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO pogreška." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Datoteka: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d datoteka na čekanju" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "URL prijenosa možda nije ispravan ili ne postoji" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Pogreška: Datoteka je prevelika: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Pogreška: Nevažeći datotečni nastavak: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Postavi standardne postavke" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Stvaranje Unosa" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Uredi zapis povijesti" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nema Programa" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s red%s je kopiran u međumemoriju" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "Prvo" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "Prethodno" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "Traži:" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "Povuci snimke ovamo iz medijateke" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Poništi objavu" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Autor" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "Datum objavljivanja" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "Uvezi stanje" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "Izbriši iz medijateke" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "Uspješno uvezeno" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "Prikaži _MENU_" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "Prikaži unose za _MENU_" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "Prikaz _START_ do _END_ od _TOTAL_ unosa" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "Prikaz _START_ do _END_ od _TOTAL_ snimaka" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "Prikaz _START_ do _END_ od _TOTAL_ korisnika" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "Prikaz 0 do 0 od 0 unosa" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "Prikaz 0 do 0 od 0 snimaka" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "Prikaz 0 do 0 od 0 vrsta snimaka" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "Stvarno želiš izbrisati ovu vrstu snimke?" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Aktivirano" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Deaktivirano" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "Prekini prijenos" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "Vrsta" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "Postavke podcasta su spremljene" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "Stvarno želiš izbrisati ovog korisnika?" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "Ne možeš sebe izbrisati!" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "Pregled playliste" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Pametni blok" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "Pregled internetskog prijenosa" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "Nemaš dozvole za prikaz medijateke." + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "Sada" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "URL feeda" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "Uvezi datum" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"Nije moguće zakazati izvan emisije.\n" +"Pokušaj najprije stvoriti emisiju." + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Upiši svoje korisničko ime i lozinku." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Gledaš stariju verziju %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Ne možeš dodavati pjesme u dinamične blokove." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemaš dozvole za brisanje odabranih %s." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Možeš samo dodati pjesme u pametni blok." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Neimenovana playlista" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Neimenovan pametni blok" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Nepoznata playlista" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Postavke su ažurirane." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Postavka prijenosa je ažurirana." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "put bi trebao biti specificiran" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem s Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Ponovo emitiraj emisiju %s od %s na %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Odaberi pokazivač" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Ukloni pokazivač" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "emisija ne postoji" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "Vrsta snimke uspješno dodana!" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "Vrsta snimke uspješno ažurirana!" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Korisnik je uspješno dodan!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Korisnik je uspješno ažuriran!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Postavke su uspješno ažurirane!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Neimenovan internetski prijenos" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Internetski prijenos je spremljen." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Nevažeće vrijednosti obrasca." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dan se mora navesti" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Vrijeme mora biti navedeno" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Odaberi playlistu" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Ponavljati playlistu sve dok emisija nije potpuna?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Koristi %s autentifikaciju:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Koristi prilagođenu autentifikaciju:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Prilagođeno korisničko Ime" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Prilagođena lozinka" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Host:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Priključak:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Polje korisničkog imena ne smije biti prazno." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "'Lozinka' polja ne smije ostati prazno." + +#: application/forms/AddShowRR.php:9 +#, fuzzy +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ponovo emitirati?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dani" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Vrsta ponavljanja:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "tjedno" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "svaka 2 tjedna" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "svaka 3 tjedna" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "svaka 4 tjedna" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mjesečno" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Odaberi dane:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Ponavljaj po:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dan u mjesecu" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "dan u tjednu" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum završetka:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Nema Kraja?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Datum završetka mora biti nakon datuma početka" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Odaberi dan ponavljanja" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Boja pozadine:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Boja teksta:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Trenutačni logotip:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Prikaži logotip:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Naziv:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Neimenovana emisija" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Žanr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Opis instance:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Vrijeme početka:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "Ubuduće:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Vrijeme završetka:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Trajanje:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Vremenska zona:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Ponavljanje?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Ne može se stvoriti emisija u prošlosti" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Datum završetka i vrijeme ne može biti u prošlosti" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Ne može trajati kraće od 0 min" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Ne može trajati 00 h 00 min" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne može trajati duže od 24 h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Nije moguće zakazati preklapajuće emisije" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Traži korisnike:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Disk-džokeji:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Ime vrste:" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Kod:" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "Vidljivost:" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "Kod nije jedinstven." + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Korisničko ime:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Lozinka:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Potvrdi lozinku:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Ime:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Prezime:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobitel:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Vrsta korisnika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Ime prijave nije jedinstveno." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Izbriši sve snimke u medijateci" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum početka:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Naslov:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Tvorac:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "Odaberi jednu vrstu" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "Vrsta snimke:" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Godina:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Naljepnica:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Kompozitor:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Raspoloženje:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Autorsko pravo:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Web stranica:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jezik:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Objavi …" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Vrijeme početka" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Vrijeme završetka" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Vremenska zona sučelja:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Ime stanice" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Opis stanice" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logotip stanice:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Napomena: Sve veća od 600x600 će se mijenjati." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Standardno trajanje međuprijelaza (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Upiši vrijeme u sekundama (npr. 0,5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Standardno postupno pojačavanje glasnoće (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Standardno postupno smanjivanje glasnoće (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "Standard za prijenos vrsta snimaka" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "Javni LibreTime API" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Standardni jezik" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Vremenska zona stanice" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Prvi dan tjedna" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "Pregledi funkcija" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "Aktiviraj ovo za testiranje novih funkcija." + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Automatsko isključivanje:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Automatsko uključivanje:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Promijeni postupni prijelaz (s):" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Prikaži host izvora:" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Prikaži priključak izvora:" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Prikaži pogon izvora:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Prijava" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Lozinka" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Potvrdi novu lozinku" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Lozinke koje ste unijeli ne podudaraju se." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "E-mail" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Korisničko ime" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj lozinku" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Natrag" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Trenutno Izvođena" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Odaberi emisiju:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Odaberi jednu emisiju:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Ugradiv kod:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Pregled:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Privatnost feeda" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Javni" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privatni" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Jezik stanice" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Filtriraj po emisijama" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Sve moje emisije:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Odaberi kriterije" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Brzina prijenosa (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "Vrsta snimke" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Frekvencija (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "prije" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "nakon" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "između" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "Odaberi vremensku jedinicu" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "minute" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "sati" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "dani" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "tjedni" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "mjeseci" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "godine" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "sati" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minute" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "preostalo vrijeme u emisiji" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Slučajno" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Najnovije" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Najstarije" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Zadnje reproducirane" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Najstarije reproducirane" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "Odaberi vrstu snimke" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Vrsta:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamički" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statični" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "Odaberi vrstu snimke" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Dozvoli ponavljanje snimaka:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Dozvoli da zadnji zapis prekorači vremensko ograničenje:" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Redoslijed snimaka:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Ograniči na:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generiraj sadržaj playliste i spremi kriterije" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Promiješaj sadržaj playliste" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Promiješaj" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može biti prazan ili manji od 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može biti više od 24 sati" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Vrijednost bi trebala biti cijeli broj" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Moraš odabrati Kriteriju i Modifikaciju" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala biti u '00:00:00' obliku" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Vrijednost mora biti numerička" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Vrijednost bi trebala biti manja od 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Vrijednost bi trebala biti manja od %s znakova" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Vrijednost ne može biti prazna" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Oznaka prijenosa:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Izvođač – Naslov" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Emisija – Izvođač – Naslov" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Ime stanice – Ime emisije" + +#: application/forms/StreamSetting.php:38 +#, fuzzy +msgid "Off Air Metadata" +msgstr "Off Air metapodaci" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Aktiviraj pojačanje glasnoće" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Modifikator pojačanje glasnoće" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Aktivirano:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Mobitel:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Vrsta prijenosa:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Brzina prijenosa:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Vrsta usluge:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanali:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Poslužitelj" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Priključak" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Točka Montiranja" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Ime" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID stanice:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Mapa uvoza:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Mape praćenja:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Nije ispravan direktorij" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Vrijednost je potrebna i ne može biti prazna" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Bok %s,\n" +"\n" +"Pritisni ovu poveznicu za resetiranje lozinke: " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Hvala,\n" +"Tim %s" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "Resetiranje lozinke za %s" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in i cue out su nule." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Vrijeme prijenosa" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Ništa" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Odaberi zemlju" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "prijenos uživo" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Nije moguće premjestiti stavke iz povezanih emisija" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Raspored koji gledaš nije aktualan! (neusklađenost instance)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Raspored koji gledaš nije aktualan!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Ne smijes zakazati rasporednu emisiju %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Ne možeš dodavati datoteke za snimljene emisije." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Emisija %s je gotova i ne mogu biti zakazana." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Emisija %s je već prije bila ažurirana!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Odabrana Datoteka ne postoji!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Emisija može trajati maksimalno 24 sata." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Nije moguće zakazati preklapajuće emisije.\n" +"Napomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ponovo emitiraj emisiju %s od %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Duljina mora biti veća od 0 minuta" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Duljina mora biti u obliku „00h 00m”" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL mora biti u obliku „https://example.org”" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL mora sadržati 512 znakova ili manje" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Ne postoji MIME tip za prijenos." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Ime internetskog prijenosa ne može biti prazno" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Nije bilo moguće analizirati XSPF playlistu" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Nije bilo moguće analizirati PLS playlistu" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Nije bilo moguće analizirati M3U playlistu" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nepepoznata vrsta prijenosa: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Datoteka snimke ne postoji" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Prikaži metapodatke snimljene datoteke" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Zakaži snimke" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Izbriši emisiju" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Prekini emisiju" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Uredi instancu" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Uredi emisiju" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Izbriši instancu" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Izbriši instancu i sva praćenja" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Dozvola odbijena" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Ne možeš premjestiti događane emisije" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Ne možeš premjestiti emisiju u prošlosti" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer snimljena emisija ne postoji!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati jedan sat za ponovno emitiranje." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Snimka" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Reproducirano" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Internetski prijenosi" + +#~ msgid " to " +#~ msgstr "do" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s sadržava ugniježđene nadzirane direktorije: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s ne postoji u popisu nadziranih lokacija." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s je već nadziran." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s nije valjana direktorija." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)." + +#~ msgid "(Required)" +#~ msgstr "(Obavezno)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Tvoja radijska postaja web stranice)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(služi samo za provjeru, neće biti objavljena)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 – Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 – Stereo" + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "O projektu" + +#~ msgid "Add New Field" +#~ msgstr "Dodaj Novo Polje" + +#~ msgid "Add more elements" +#~ msgstr "Dodaj više elemenata" + +#~ msgid "Add this show" +#~ msgstr "Dodaj ovu emisiju" + +#~ msgid "Additional Options" +#~ msgstr "Dodatne Opcije" + +#~ msgid "Admin Password" +#~ msgstr "Administratorska lozinka" + +#~ msgid "Admin User" +#~ msgstr "Administratorski korisnik" + +#~ msgid "Advanced Search Options" +#~ msgstr "Napredne Opcije Pretraživanja" + +#~ msgid "All rights are reserved" +#~ msgstr "Sva prava pridržana" + +#~ msgid "Audio Track" +#~ msgstr "Zvučni Zapis" + +#~ msgid "Choose Days:" +#~ msgstr "Odaberi Dane:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Odaberi Emisijsku Stupnju" + +#~ msgid "Choose folder" +#~ msgstr "Odaberi mapu" + +#~ msgid "City:" +#~ msgstr "Grad:" + +#~ msgid "Clear" +#~ msgstr "Očisti" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije" + +#~ msgid "Country:" +#~ msgstr "Država:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Stvaranje Predložaka za Datotečni Sažeci" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Stvaranje Popis Predložaka" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Imenovanje" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Imenovanje Bez Izvedenih Djela" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualna Uvozna Mapa:" + +#~ msgid "Cursor" +#~ msgstr "Pokazivač" + +#~ msgid "Default Length:" +#~ msgstr "Zadana Dužina:" + +#~ msgid "Default License:" +#~ msgstr "Zadana Dozvola:" + +#~ msgid "Disk Space" +#~ msgstr "Diskovni Prostor" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamički Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamički Smart Block Kriteriji:" + +#~ msgid "Empty playlist content" +#~ msgstr "Prazan sadržaj popis pjesama" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Proširenje Dinamičkog Bloka" + +#~ msgid "Expand Static Block" +#~ msgstr "Proširenje Statičkog Bloka" + +#~ msgid "Fade in: " +#~ msgstr "Odtamnjenje:" + +#~ msgid "Fade out: " +#~ msgstr "Zatamnjenje:" + +#~ msgid "File Path:" +#~ msgstr "Staža Datoteka:" + +#~ msgid "File Summary" +#~ msgstr "Datotečni Sažetak" + +#~ msgid "File Summary Templates" +#~ msgstr "Predlošci za Datotečni Sažeci" + +#~ msgid "File import in progress..." +#~ msgstr "Uvoz datoteke je u tijeku..." + +#~ msgid "Filter History" +#~ msgstr "Filtriraj Povijesti" + +#~ msgid "Find" +#~ msgstr "Nađi" + +#~ msgid "Find Shows" +#~ msgstr "Nađi Emisije" + +#~ msgid "First Name" +#~ msgstr "Ime" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Za više detalja, pročitaj %sPriručniku za korisnike%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis metapodaci" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ako je iza Airtime-a usmjerivač ili vatrozid, možda ćeš morati konfigurirati polje porta prosljeđivanje i ovo informacijsko polje će biti netočan. U tom slučaju morat ćeš ručno ažurirati ovo polje, da bi pokazao točno host/port/mount da se mogu povezati tvoji Disk Džokeji. Dopušteni raspon je između 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Broj:" + +#~ msgid "Jack" +#~ msgstr "Jack" + +#~ msgid "Last Name" +#~ msgstr "Prezime" + +#~ msgid "Length:" +#~ msgstr "Dužina:" + +#~ msgid "Limit to " +#~ msgstr "Ograničeno za" + +#~ msgid "Listen" +#~ msgstr "Slušaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Ulaz Uživnog Prijenosa" + +#~ msgid "Live stream" +#~ msgstr "Prijenos uživo" + +#~ msgid "Log Sheet" +#~ msgstr "Popis Prijava" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Predlošci Popis Prijave" + +#~ msgid "Logout" +#~ msgstr "Odjava" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Izgleda stranica koju si tražio ne postoji!" + +#~ msgid "Manage Users" +#~ msgstr "Upravljanje Korisnike" + +#~ msgid "Master Source" +#~ msgstr "Majstorski Izvor" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Montiranje ne može biti prazno s Icecast poslužiteljem." + +#~ msgid "New File Summary Template" +#~ msgstr "Novi Predložak za Datotečni Sažeci" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Novi Popis Predložaka" + +#~ msgid "New User" +#~ msgstr "Novi Korisnik" + +#~ msgid "New password" +#~ msgstr "Nova lozinka" + +#~ msgid "Next:" +#~ msgstr "Sljedeća:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nema Predložaka za Datotečni Sažeci" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nema Popis Predložaka" + +#~ msgid "No open playlist" +#~ msgstr "Nema otvorenih popis pjesama" + +#~ msgid "No webstream" +#~ msgstr "Nema prijenosa" + +#~ msgid "OK" +#~ msgstr "Ok" + +#~ msgid "ON AIR" +#~ msgstr "PRIJENOS" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Dopušteni su samo brojevi." + +#~ msgid "Original Length:" +#~ msgstr "Izvorna Dužina:" + +#~ msgid "Page not found!" +#~ msgstr "Stranica nije pronađena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Pokreni" + +#~ msgid "Playlist Contents: " +#~ msgstr "Sadržaji Popis Pjesama:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Križno utišavanje popis pjesama" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje." + +#~ msgid "Please upgrade to " +#~ msgstr "Molimo nadogradi na" + +#~ msgid "Port cannot be empty." +#~ msgstr "Priključak ne može biti prazan." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Previous:" +#~ msgstr "Prethodna:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Menadžer programa mogu učiniti sljedeće:" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime Registar" + +#~ msgid "Remove watched directory" +#~ msgstr "Ukloni nadzoranu direktoriju" + +#~ msgid "Repeat Days:" +#~ msgstr "Ponovljeni Dani:" + +#~ msgid "Sample Rate:" +#~ msgstr "Uzorak Stopa:" + +#~ msgid "Save playlist" +#~ msgstr "Spremi popis pjesama" + +#~ msgid "Select stream:" +#~ msgstr "Prijenosi:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Poslužitelj ne može biti prazan." + +#~ msgid "Set" +#~ msgstr "Podesi" + +#~ msgid "Set Cue In" +#~ msgstr "Podesi Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Podesi Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Postavi Zadano Predlošku" + +#~ msgid "Share" +#~ msgstr "Podijeli" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Programski Sažetak" + +#~ msgid "Show Waveform" +#~ msgstr "Emisijski zvučni talasni oblik" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokaži mi što šaljem" + +#~ msgid "Shuffle playlist" +#~ msgstr "Slučajni izbor popis pjesama" + +#~ msgid "Source Streams" +#~ msgstr "Prijenosni Izvori" + +#~ msgid "Static Smart Block" +#~ msgstr "Statički Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statički Smart Block Sadržaji:" + +#~ msgid "Station Description:" +#~ msgstr "Opis:" + +#~ msgid "Station Web Site:" +#~ msgstr "Web Stranica:" + +#~ msgid "Stop" +#~ msgstr "Zaustavi" + +#~ msgid "Stream " +#~ msgstr "Prijenos" + +#~ msgid "Stream Settings" +#~ msgstr "Prijenosne Postavke" + +#~ msgid "Stream URL:" +#~ msgstr "URL Prijenosa:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Prijenosa:" + +#~ msgid "Streaming Server:" +#~ msgstr "Poslužitelj za internetski prijenos:" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Support Feedback" +#~ msgstr "Povratne Informacije" + +#~ msgid "Support setting updated." +#~ msgstr "Podrška postavka je ažurirana." + +#~ msgid "Terms and Conditions" +#~ msgstr "Uvjeti i Odredbe" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Željena duljina bloka neće biti postignut jer Airtime ne mogu naći dovoljno jedinstvene pjesme koje odgovaraju tvojim kriterijima. Omogući ovu opciju ako želiš dopustiti da neke pjesme mogu se više puta ponavljati." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Rad je u javnoj domeni" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ova verzija više nije podržana." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ova verzija uskoro će biti zastario." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Pjesma:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Upiši znakove koje vidiš na slici u nastavku." + +#~ msgid "Update Required" +#~ msgstr "Potrebno Ažuriranje" + +#~ msgid "Update show" +#~ msgstr "Ažuriranje emisije" + +#~ msgid "User Type" +#~ msgstr "Tip Korisnika" + +#~ msgid "Web Stream" +#~ msgstr "Prijenos" + +#~ msgid "What" +#~ msgstr "Što" + +#~ msgid "When" +#~ msgstr "Kada" + +#~ msgid "Who" +#~ msgstr "Tko" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Ne pratiš nijedne medijske mape." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Moraš pristati na pravila o privatnosti." + +#~ msgid "Your trial expires in" +#~ msgstr "Vaš račun istječe u" + +#~ msgid "and" +#~ msgstr "i" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "datoteke zadovoljavaju kriterije" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max glasnoća" + +#~ msgid "mute" +#~ msgstr "nijemi" + +#~ msgid "next" +#~ msgstr "sljedeća" + +#~ msgid "or" +#~ msgstr "ili" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "pokreni" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "molimo stavi u vrijeme u sekundama '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "prethodna" + +#~ msgid "stop" +#~ msgstr "zaustavi" + +#~ msgid "unmute" +#~ msgstr "uključi" diff --git a/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po b/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..8d692593df --- /dev/null +++ b/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po @@ -0,0 +1,5030 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2012. +# Zsolt Magyar , 2014-2015. +# Miles , 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-12-27 20:52+0000\n" +"Last-Translator: f3rr31 <5920873@disroot.org>\n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.10.1\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s érvénytelen dátum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s érvénytelen időpont" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "English" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Afar" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abkhazian" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amharic" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Arabic" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Assamese" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aymara" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerbaijani" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Bashkir" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Belarusian" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Bulgarian" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Bihari" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bislama" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengali/Bangla" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibetan" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Breton" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Catalan" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Corsican" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Czech" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Welsh" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Danish" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "German" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Bhutani" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Greek" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Spanish" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estonian" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Basque" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persian" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Finnish" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fiji" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Faeroese" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "French" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Frisian" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Irish" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Scots/Gaelic" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galician" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Gujarati" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Hausa" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Croatian" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "magyar" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Armenian" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Indonesian" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Icelandic" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italian" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hebrew" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japanese" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Yiddish" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Javanese" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Georgian" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kazakh" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Greenlandic" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Cambodian" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Korean" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Kashmiri" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kurdish" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kirghiz" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latin" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Laothian" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Lithuanian" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Latvian/Lettish" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Malagasy" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maori" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Macedonian" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Mongolian" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldavian" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malay" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltese" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Burmese" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Nauru" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Nepali" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Dutch" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Norwegian" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Occitan" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Afan)/Oromoor/Oriya" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Punjabi" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Polish" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Pashto/Pushto" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Portuguese" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Rhaeto-Romance" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Kirundi" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Romanian" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Russian" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Kinyarwanda" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Sangro" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Serbo-Croatian" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Singhalese" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Slovak" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Slovenian" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Samoan" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Shona" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Somali" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Albanian" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Serbian" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Siswati" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Sesotho" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Sundanese" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Swedish" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Tamil" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Tegulu" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Tajik" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Thai" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Tigrinya" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Turkmen" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Setswana" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Tonga" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Turkish" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Tsonga" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Tatar" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Ukrainian" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Urdu" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Uzbek" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "Vietnamese" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Volapuk" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Chinese" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Zulu" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Állomás alapértelmezések használata" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n" +"%sNem hivatkozott műsor létrehozása most%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Rádióoldal" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Naptár" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Felületi elemek" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Lejátszó" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Heti ütemterv" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Beállítások" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Általános" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Profilom" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Felhasználók" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Adásfolyamok" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Állapot" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Elemzések" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Lejátszási előzmények" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Naplózási sablonok" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Hallgatói statisztikák" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Segítség" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Első lépések" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Felhasználói kézikönyv" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Újdonságok" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Az Ön számára nem érhető el az alábbi erőforrás." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Az Ön számára nem érhető el az alábbi erőforrás." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "A fájl nem elérhető itt: %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Helytelen kérés. nincs 'mód' paraméter lett átadva." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Helytelen kérés. 'mód' paraméter érvénytelen." + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Nincs jogosultsága a forrás bontásához." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Nem csatlakozik forrás az alábbi bemenethez." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Nincs jogosultsága a forrás megváltoztatásához." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n" +"1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n" +"2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\n" +"Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\n" +"Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Oldal nem található." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "A kiválasztott művelet nem támogatott." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Nincs jogosultsága ennek a forrásnak az eléréséhez." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Belső alkalmazáshiba történt." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Podcast" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Még nincsenek közzétett sávok." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nem található" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Valami hiba történt." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Előnézet" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Hozzáadás lejátszási listához" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Hozzáadás Okosblokkhoz" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Törlés" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Szerkesztés..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Letöltés" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Lejátszási lista duplikálása" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Nincs elérhető művelet" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Nem lehet törölni a fájlokat." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "%s másolata" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audió lejátszó" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Valami hiba történt!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Felvétel:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Mester-adásfolyam" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Élő adásfolyam" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nincs semmi ütemezve" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Jelenlegi műsor:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Jelenleg" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Ön a legújabb verziót futtatja" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Új verzió érhető el:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "A LibreTime egy kiadás-előtti verziója van telepítve." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Egy hibajavító frissítés érhető el a LibreTimehoz." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Elérhető a LibreTime új verzióját tartalmazó frissítés." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Hozzáadás a jelenlegi lejátszási listához" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Hozzáadás a jelenlegi okosblokkhoz" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1 elem hozzáadása" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "%s elem hozzáadása" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Csak sávokat lehet hozzáadni az okosblokkokhoz." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Válasszon kurzor pozíciót az idővonalon." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Még nincsenek sávok hozzáadva" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Még nincsenek lejátszási listák hozzáadva" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Még nincsenek okosblokkok hozzáadva" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Még nincsenek web-adásfolyamok hozzáadva" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Sávok megismerése" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Lejátszási listák megismerése" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "Podcastok megismerése" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Okosblokkok megismerése" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Web-adásfolyamok megismerése" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Létrehozni az „Új” gombra kattintással lehet." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hozzáadás" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Szerkeszt" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Közzététel" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Eltávolítás" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Metaadatok szerkesztése" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Hozzáadás a kiválasztott műsorhoz" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Kijelölés" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Jelölje ki ezt az oldalt" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Az oldal kijelölésének megszüntetése" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Minden kijelölés törlése" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Biztos benne, hogy törli a kijelölt elemeket?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Ütemezett" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Sávok" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Lejátszási lista" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Cím" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Előadó/Szerző" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bitráta" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Zeneszerző" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Karmester" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Szerzői jog" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Kódolva" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Műfaj" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Címke" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Nyelv" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Utoljára módosítva" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Utoljára játszott" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Hossz" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime típus" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Hangulat" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Tulajdonos" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Mintavétel" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Sáv sorszáma" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Feltöltve" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Honlap" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Év" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Betöltés..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Összes" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Fájlok" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Lejátszási listák" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Okosblokkok" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web-adásfolyamok" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Ismeretlen típus:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Biztos benne, hogy törli a kijelölt elemet?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Feltöltés folyamatban..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Adatok lekérdezése a kiszolgálóról..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Megtekintés" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Hibakód:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Hibaüzenet:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "A bemenetnek pozitív számnak kell lennie" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "A bemenetnek számnak kell lennie" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "A bemenetet ebben a formában kell megadni: óó:pp:mm.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Podcastom" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Médiaépítő megnyitása" + +#: application/controllers/LocaleController.php:138 +#, fuzzy +msgid "please put in a time '00:00:00 (.0)'" +msgstr "kérjük, tegye időbe '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Érvényes időt kell megadni másodpercben. Pl.: 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dinamikus blokknak nincs előnézete" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Korlátozva:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Lejátszási lista mentve" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Lejátszási lista megkeverve" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "%s hallgatóinak száma: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Emlékeztessen 1 hét múlva" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Soha ne emlékeztessen" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Igen, segítek az Airtime-nak" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "A képek formátuma jpg, jpeg, png, vagy gif kell legyen" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Okosblokk megkeverve" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Okosblokk létrehozva és a feltételek mentve" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Okosblokk elmentve" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Feldolgozás..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Módosító választása" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "tartalmazza" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "nem tartalmazza" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "pontosan" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "nem" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "kezdődik" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "végződik" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "nagyobb, mint" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "kisebb, mint" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "tartománya" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Létrehozás" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Válasszon tárolómappát" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Válasszon figyelt mappát" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Biztos benne, hogy meg akarja változtatni a tárolómappát?\n" +"Ezzel eltávolítja a fájlokat a saját Airtime könyvtárából!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Médiamappák kezelése" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Biztos benne, hogy el akarja távolítani a figyelt mappát?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ez az útvonal jelenleg nem elérhető." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Csatlakozva az adásfolyam kiszolgálóhoz" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Az adásfolyam ki van kapcsolva" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Információk lekérdezése a kiszolgálóról..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Nem lehet kapcsolódni az adásfolyam kiszolgálójához" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani ." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nem volt találat" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "A műsor példány nem létezik többé!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Figyelem: Műsorokat nem lehet újrahivatkozni" + +#: application/controllers/LocaleController.php:205 +#, fuzzy +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Műsor" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "A műsor üres" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1p" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5p" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10p" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15p" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30p" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60p" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Adatok lekérdezése a kiszolgálóról..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Ez a műsor nem tartalmaz ütemezett tartalmat." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Ez a műsor nincs teljesen feltöltve tartalommal." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Január" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Február" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Március" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Április" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Május" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Június" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Július" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Augusztus" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Szeptember" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Október" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Már" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Ápr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jún" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Júl" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sze" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Okt" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Ma" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Nap" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Hét" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Hónap" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Vasárnap" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Hétfő" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Kedd" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Szerda" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Csütörtök" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Péntek" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Szombat" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "V" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "H" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "K" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Sze" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Cs" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "P" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Szo" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "A jelenlegi műsor megszakítása?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "A jelenlegi műsor rögzítésének félbeszakítása?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "A műsor tartalmai" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Az összes tartalom eltávolítása?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Törli a kiválasztott elemeket?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Kezdés" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Befejezés" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Időtartam" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Kiszűrve" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "/" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "felvétel" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "A megadott időszakban nincsenek ütemezett műsorok." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Felkeverés" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Lekeverés" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Felúsztatás" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Leúsztatás" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Üres műsor" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Rögzítés a vonalbemenetről" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Sáv előnézete" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Nem lehet ütemezni a műsoron kívül." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "1 elem áthelyezése" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "%s elem áthelyezése" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Mentés" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Mégse" + +#: application/controllers/LocaleController.php:304 +#, fuzzy +msgid "Fade Editor" +msgstr "Úsztatási Szerkesztő" + +#: application/controllers/LocaleController.php:305 +#, fuzzy +msgid "Cue Editor" +msgstr "Keverési Szerkesztő" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Az összes kijelölése" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Kijelölés törlése" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Túlnyúló műsorok levágása" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "A kijelölt ütemezett elemek eltávolítása" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Ugrás a jelenleg játszott sávra" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "A jelenlegi műsor megszakítása" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Tartalom hozzáadása / eltávolítása" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "használatban van" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Lemez" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Nézze meg" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Megnyitás" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programkezelő" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Vendég" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "A vendégek a következőket tehetik:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Az ütemezés megtekintése" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "A műsor tartalmának megtekintése" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "A DJ-k a következőket tehetik:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Hozzárendelt műsor tartalmának kezelése" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Médiafájlok hozzáadása" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Saját médiatár tartalmának kezelése" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Műsortartalom megtekintése és kezelése" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "A műsorok ütemzései" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "A teljes médiatár tartalmának kezelése" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Az Adminisztrátorok a következőket tehetik:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Beállítások kezelései" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "A felhasználók kezelése" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "A figyelt mappák kezelése" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Támogatási visszajelzés küldése" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "A rendszer állapot megtekitnése" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Hozzáférés lejátszási előzményekhez" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "A hallgatói statisztikák megtekintése" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Az oszlopok megjelenítése/elrejtése" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "{from} és {to} között" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "éééé-hh-nn" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "óó:pp:mm.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "V" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "H" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "K" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Sze" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Cs" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "P" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Szo" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Bezárás" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Óra" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Perc" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Kész" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Fájlok kiválasztása" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Fájlok hozzáadása" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Feltöltés megszakítása" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Feltöltés indítása" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Fájlok hozzáadása" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Feltöltve %d/%d fájl" + +#: application/controllers/LocaleController.php:392 +#, fuzzy +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Húzza a fájlokat ide." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Fájlkiterjesztési hiba." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Fájlméret hiba." + +#: application/controllers/LocaleController.php:396 +#, fuzzy +msgid "File count error." +msgstr "Fájl számi hiba." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Inicializálási hiba." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Hiba." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Biztonsági hiba." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Általános hiba." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO hiba." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Fájl: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d várakozó fájl" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Fájl: %f,méret: %s, legnagyobb fájlméret: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "A feltöltés URL-je rossz vagy nem létezik" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Hiba: A fájl túl nagy:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Hiba: Érvénytelen fájl kiterjesztés:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Alapértelmezés beállítása" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Bejegyzés létrehozása" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Előzmények szerkesztése" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nincs műsor" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s sor%s másolva a vágólapra" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Új műsor" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Új naplóbejegyzés" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "Következő" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Közzététel megszüntetése" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Szerző" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Leírás" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Hivatkozás" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Engedélyezve" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Letiltva" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Okosblokk" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "Adásban" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Adásszünet" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Kapcsolat nélkül" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Nincs semmi ütemezve" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Kérjük adja meg felhasználónevét és jelszavát." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "A felhasználónév vagy email cím nem található." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Ön %s egy régebbi verzióját tekinti meg" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Dinamikus blokkokhoz nem lehet sávokat hozzáadni" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "A kiválasztott %s törléséhez nincs engedélye." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Csak sávokat lehet hozzáadni az okosblokkhoz." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Névtelen lejátszási lista" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Névtelen okosblokk" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Ismeretlen lejátszási lista" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Beállítások frissítve." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Adásfolyam beállítások frissítve." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "az útvonalat meg kell határozni" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Probléma lépett fel a Liquidsoap-al..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "A kérés módja nem elfogadott" + +#: application/controllers/ScheduleController.php:390 +#, fuzzy, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "A műsor újraközvetítése %s -tól/-től %s a %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Kurzor kiválasztása" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Kurzor eltávolítása" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "a műsor nem található" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Felhasználó sikeresen hozzáadva!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Felhasználó sikeresen módosítva!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Beállítások sikeresen módosítva!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Névtelen adásfolyam" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Web-adásfolyam mentve." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Érvénytelen űrlap értékek." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Érvénytelen bevitt karakterek" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "A napot meg kell határoznia" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Az időt meg kell határoznia" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Az újraközvetítésre legalább 1 órát kell várni" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "Lejátszási lista automatikus ütemezése?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Lejátszási lista kiválasztása" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "%s hitelesítés használata:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Egyéni hitelesítés használata:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Egyéni felhasználónév" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Egyéni jelszó" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Hoszt:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Port:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Csatolási pont:" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "A felhasználónév mező nem lehet üres." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "A jelszó mező nem lehet üres." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Felvétel a vonalbemenetről?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Újraközvetítés?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "napok" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Hivatkozás:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Ismétlés típusa:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "hetente" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "minden második héten" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "minden harmadik héten" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "minden negyedik héten" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "havonta" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Napok kiválasztása:" + +#: application/forms/AddShowRepeats.php:46 +#, fuzzy +msgid "Repeat By:" +msgstr "Által Ismételt:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "a hónap napja" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "a hét napja" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Befejezés dátuma:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Nincs vége?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "A befejezés dátumának a kezdés dátuma után kell lennie" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Kérjük válasszon egy ismétlési napot" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Háttérszín:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Szövegszín:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Jelenlegi logó:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Logó mutatása:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Logó előnézete:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Név:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Cím nélküli műsor" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Műfaj:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Leírás:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Példány leírása:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' nem illeszkedik „ÓÓ:pp” formátumra" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Kezdési Idő:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "A jövőben:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Befejezési idő:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Időtartam:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Időzóna:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Ismétlések?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Műsort nem lehet a múltban létrehozni" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "A befejezési dátum és időpont nem lehet a múltban" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Időtartam nem lehet <0p" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Időtartam nem lehet 0ó 0p" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Időtartam nem lehet nagyobb mint 24 óra" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Nem fedhetik egymást a műsorok" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Felhasználók keresése:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ-k:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Felhasználónév:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Jelszó:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Jelszóellenőrzés:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Vezetéknév:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Keresztnév:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Felhasználótípus:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "A bejelentkezési név nem egyedi." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Az összes sáv törlése a könyvtárból" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Kezdés Ideje:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Cím:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Létrehozó:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Év:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Címke:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Zeneszerző:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Karmester:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Hangulat:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Szerzői jog:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Szám:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Honlap:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Nyelv:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Közzététel..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Kezdési Idő" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Befejezési idő" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Felület időzónája:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Állomásnév" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Állomás leírás" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Állomás logó:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül." + +#: application/forms/GeneralPreferences.php:63 +#, fuzzy +msgid "Default Crossfade Duration (s):" +msgstr "Alapértelmezett Áttünési Időtartam (mp):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Idő megadása másodpercben (pl.: 0.5)" + +#: application/forms/GeneralPreferences.php:77 +#, fuzzy +msgid "Default Fade In (s):" +msgstr "Alapértelmezett Felúsztatás (mp)" + +#: application/forms/GeneralPreferences.php:91 +#, fuzzy +msgid "Default Fade Out (s):" +msgstr "Alapértelmezett Leúsztatás (mp)" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Podcast album felülírása" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "Public LibreTime API" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Kötelező a beágyazható ütemezés felületi elemhez." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Alapértelmezett nyelv" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Állomás időzóna" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "A hét kezdőnapja" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "Bejelentkezési gomb megjelenítése a Rádióoldalon?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Automatikus kikapcsolás:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Automatikus bekapcsolás:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "Mester-forrás hoszt:" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "Mester-forrás port:" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "Mester-forrás csatolási pont:" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Műsor-forrás hoszt:" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Műsor-forrás port:" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Műsor-forrás csatolási pont:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Bejelentkezés" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Jelszó" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Új jelszó megerősítése" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "A megadott jelszavak nem egyeznek meg." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Felhasználónév" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "A jelszó visszaállítása" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Vissza" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Most játszott" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Adásfolyam kiválasztása:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "A legmegfelelőbb adásfolyam automatikus felismerése." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Egy adásfolyam kiválasztása:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "- Mobilbarát" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "- A lejátszó nem támogatja az Opus adásfolyamokat." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Beágyazható kód:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Előnézet" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Hírfolyam adatvédelem" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Nyilvános" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privát" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Állomás nyelve" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Szűrés műsor szerint" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Összes műsorom:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Műsoraim" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "A feltételek megadása" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bitráta (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Mintavételi ráta (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "óra" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "perc" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elem" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Véletlenszerűen" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Legújabb" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Legrégebbi" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Típus:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamikus" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statikus" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Ismétlődő sávok engedélyezése:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Sávok rendezése:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Korlátozva:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Véletlenszerű lejátszási lista tartalom" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Véletlenszerű" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "A határérték nem lehet üres vagy kisebb, mint 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "A határérték nem lehet hosszabb, mint 24 óra" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Az érték csak egész szám lehet" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Maximum 500 elem állítható be" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Feltételt és módosítót kell választani" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Az értéknek numerikusnak kell lennie" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Az érték nem lehet üres" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Adásfolyam címke:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Előadó - Cím" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Műsor - Előadó - Cím" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Állomásnév - Műsornév" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Adásszünet - Metaadat" + +#: application/forms/StreamSetting.php:45 +#, fuzzy +msgid "Enable Replay Gain" +msgstr "Replay Gain Engedélyezése" + +#: application/forms/StreamSetting.php:52 +#, fuzzy +msgid "Replay Gain Modifier" +msgstr "Replay Gain Módosító" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Hardver audio kimenet:" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Kimenet típusa" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Engedélyezett:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Mobil:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Adásfolyam típusa:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bitráta:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Szolgáltatás típusa:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Csatornák:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Kiszolgáló" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Csatolási pont" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Név" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Metadata beküldése saját TuneIn állomásba?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Állomás azonosító:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partnerkulcs:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partnerazonosító:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import mappa:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Figyelt Mappák:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Érvénytelen könyvtár" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Kötelező értéket megadni, nem lehet üres" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' rövidebb, mint %min% karakter" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'% value%' több mint, %max% karakter hosszú" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "A jelszavak nem egyeznek meg" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Üdvözlünk %s, \n" +"\n" +"A hivatkozásra kattintva lehet visszaállítani a jelszót:" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"Probléma esetén itt lehet támogatást kérni: %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Köszönettel,\n" +"%s Csapat" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s jelszó visszaállítása" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +#, fuzzy +msgid "Cue in and cue out are null." +msgstr "A fel- és a lekeverés értékei nullák." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +#, fuzzy +msgid "Can't set cue out to be greater than file length." +msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +#, fuzzy +msgid "Can't set cue in to be larger than cue out." +msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +#, fuzzy +msgid "Can't set cue out to be smaller than cue in." +msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Feltöltési idő" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Nincs" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "Működteti a %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Ország kiválasztása" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "élő adásfolyam" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "A megtekintett ütemterv elavult! (ütem eltérés)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "A megtekintett ütemterv elavult! (példány eltérés)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "A megtekintett ütemterv időpontja elavult!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nincs jogosultsága %s műsor ütemezéséhez." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "A műsor %s véget ért és nem lehet ütemezni." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "%s műsor már korábban frissítve lett!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "A hivatkozott műsorok tartalma nem módosítható adás közben!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Egy kiválasztott fájl nem létezik!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "A műsorok maximum 24 óra hosszúságúak lehetnek." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Átfedő műsorokat nem lehet ütemezni.\n" +"Megjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére." + +#: application/models/ShowBuilder.php:212 +#, fuzzy, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Úrjaközvetítés %s -tól/-től %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc" + +#: application/models/Webstream.php:169 +#, fuzzy +msgid "Length should be of form \"00h 00m\"" +msgstr "A hosszúság formája \"00ó 00p\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "Az URL-t „https://example.org” formában kell megadni" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "Az URL nem lehet 512 karakternél hosszabb" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Nem található MIME típus a web-adásfolyamhoz." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "A web-adásfolyam neve nem lehet üres" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Nem sikerült feldolgozni az XSPF lejátszási listát" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Nem sikerült feldolgozni a PLS lejátszási listát" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Nem sikerült feldolgozni az M3U lejátszási listát" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Ismeretlen típusú adásfolyam: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Rögzített fájl nem létezik" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "A rögzített fájl metaadatai" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Sávok ütemezése" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Műsor törlése" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Műsor megszakítása" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Példány szerkesztése:" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Műsor szerkesztése" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Példány törlése:" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Ennek a példánynak és minden utána következő példánynak a törlése" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Engedély megtagadva" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Ismétlődő műsorokat nem lehet megfogni és áthúzni" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Az elhangzott műsort nem lehet áthelyezni" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "A műsort nem lehet a múltba áthelyezni" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Az adás újbóli közvetítésére 1 órát kell várni." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Sáv" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Lejátszva" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Web-adásfolyamok" + +#~ msgid " to " +#~ msgstr "-ig" + +#, fuzzy, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s-ot %3$s mellett terjesztik" + +#, fuzzy, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment." + +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s verzió" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s beágyazott figyelt könyvtárat tartalmaz: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s nem szerepel a figyeltek listáján." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s már figyelve van." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s be van ágyazva egy létező figyelt könyvtárba: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s nem érvényes könyvtár." + +#, fuzzy +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)" + +#~ msgid "(Required)" +#~ msgstr "(Kötelező)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(A rádióállomás honlapja)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(óó:pp:mm.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(mm.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Monó" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Sztereó" + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Egy jelszóvisszaállító hivatkozást küldtünk a megadott email címre. Az email tartalmazza a jelszó visszaállításához szükséges lépéseket. Ha nem érkezik meg az email, érdemes megnézni a levélszemét mappában." + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Egy sávlista lesz létrehozva amikor ez az okosblokk ütemezésre kerül egy műsorban." + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "Rólunk" + +#~ msgid "Access Denied!" +#~ msgstr "Hozzáférés megtagadva!" + +#~ msgid "Add New Field" +#~ msgstr "Új mező hozzáadása" + +#~ msgid "Add more elements" +#~ msgstr "Adjon hozzá több elemet" + +#~ msgid "Add this show" +#~ msgstr "Adja hozzá ezt a műsort" + +#~ msgid "Add tracks to your show" +#~ msgstr "Sávok hozzáadása a műsorhoz" + +#~ msgid "Additional Options" +#~ msgstr "További lehetőségek" + +#~ msgid "Admin Password" +#~ msgstr "Adminisztrátor jelszó" + +#~ msgid "Admin User" +#~ msgstr "Adminisztrátor felhasználó" + +#~ msgid "Advanced Search Options" +#~ msgstr "Speciális keresési beállítások" + +#~ msgid "All rights are reserved" +#~ msgstr "Minden jog fenntartva" + +#~ msgid "Allowed CORS URLs" +#~ msgstr "Engedélyezett CORS URL-ek" + +#~ msgid "An error has occurred." +#~ msgstr "Hiba történt." + +#~ msgid "Audio Track" +#~ msgstr "Audió sáv" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Automatikus lejátszási lista" + +#~ msgid "Bad Request!" +#~ msgstr "Rossz kérés!" + +#, fuzzy +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s." + +#~ msgid "Category" +#~ msgstr "Kategória" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "A forrásokat bejelölve, és a lenti „Közzététel”-re kattintva lehet ezt a sávot közzétenni a megadott forrásokban." + +#~ msgid "Choose Days:" +#~ msgstr "Válasszon napokat:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Műsorpéldány kiválasztása" + +#~ msgid "Choose folder" +#~ msgstr "Válasszon mappát" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Ennek a lejátszási listának a létrehozásához feltételt kell választani, majd a „Létrehozás” gombra kattintani." + +#~ msgid "City:" +#~ msgstr "Város:" + +#~ msgid "Clear" +#~ msgstr "Törlés" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "A „Naptár”-ra kell kattintani a bal oldali sávon. A megjelenő felületen a „+ Új műsor” gombra kell kattintani és kitölteni a kötelező mezőket." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "A naptárban a műsorra kattintva a „Műsor ütemezése” lehetőséget kell választani. A felugró ablakban sávokat lehet húzni a műsorba." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "A bal sarokban található „Feltöltés” gombbal lehet sávokat feltölteni a saját könyvtárba." + +#, fuzzy +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni" + +#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +#~ msgstr "Nem lehet kapcsolódni a RabbitMQ kiszolgálóhoz! Ellenőrizni kell, hogy a kiszolgáló fut és az azonosítási adatok megfelelőek." + +#~ msgid "Country:" +#~ msgstr "Ország:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Fájl összesítő sablon létrehozása" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Naplózási sablon létrehozása" + +#, fuzzy +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Tulajdonjog" + +#, fuzzy +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Nem Feldolgozható Tulajdonjog" + +#, fuzzy +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog" + +#, fuzzy +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Nem Kereskedelmi Nem Feldolgozható Tulajdonjog" + +#, fuzzy +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog" + +#, fuzzy +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog" + +#, fuzzy +#~ msgid "Cue In: " +#~ msgstr "Felkeverés:" + +#, fuzzy +#~ msgid "Cue Out: " +#~ msgstr "Lekeverés:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Jelenlegi import mappa:" + +#~ msgid "Cursor" +#~ msgstr "Kurzor" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Egyéni / Más féltől származó adásfolyam" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "A lejátszó testre szabható az alábbi lehetőségek beállításával. Ha kész, a lenti beágyazható kódot le lehet másolni, és beilleszteni a webhely HTML-kódjába." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "A DJ-k ezeket a beállításokat használhatják a műsorsugárzó szoftverükben, hogy bármikor élőben sugározhassanak a hozzájuk rendelt műsorokban." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "A DJ-k ezeket a beállításokat használhatják arra, hogy kompatibilis szoftverrel csatlakozzanak, és élőben sugározzanak a műsor alatt. DJ-t lentebb lehet hozzárendelni." + +#~ msgid "Dangerous Options" +#~ msgstr "Veszélyes beállítások" + +#~ msgid "Dashboard" +#~ msgstr "Műszerfal" + +#~ msgid "Default Length:" +#~ msgstr "Alapértelmezett hossz:" + +#, fuzzy +#~ msgid "Default License:" +#~ msgstr "Alapértelmezett Liszensz:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Alapértelmezett megosztástípus:" + +#~ msgid "Default Streaming" +#~ msgstr "Alapértelmezett adásfolyam:" + +#~ msgid "Disk Space" +#~ msgstr "Lemezterület" + +#~ msgid "Download latest episodes:" +#~ msgstr "Legutolsó epizódok automatikus letöltése?" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "A könyvtárból ide húzott sávok hozzá lesznek adva a lejátszási listához" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Sávokat ejtéssel vagy a „Böngészés” gombra kattintással lehet hozzáadni" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamikus okosblokk" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamikus okostábla feltétel:" + +#~ msgid "Edit Metadata..." +#~ msgstr "Metaadat szerkesztése..." + +#~ msgid "Editing " +#~ msgstr "Szerkesztés " + +#~ msgid "Email Sent!" +#~ msgstr "Email elküldve!" + +#~ msgid "Empty playlist content" +#~ msgstr "Üres lejátszási lista tartalom" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dinamikus Blokk kibővítése" + +#~ msgid "Expand Static Block" +#~ msgstr "Statikus Blokk kibővítése" + +#~ msgid "Explicit" +#~ msgstr "Szókimondó" + +#~ msgid "FAQ" +#~ msgstr "GYIK" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Facebook rádiólejátszó" + +#, fuzzy +#~ msgid "Fade in: " +#~ msgstr "Felúsztatás:" + +#, fuzzy +#~ msgid "Fade in: " +#~ msgstr "Felkeverés:" + +#, fuzzy +#~ msgid "Fade out: " +#~ msgstr "Lekeverés:" + +#~ msgid "Failed" +#~ msgstr "Sikertelen" + +#~ msgid "File Path:" +#~ msgstr "Fájl elérési útvonala:" + +#~ msgid "File Summary" +#~ msgstr "Fájl összesítő" + +#~ msgid "File Summary Templates" +#~ msgstr "Fájl összesítő sablonok" + +#~ msgid "File import in progress..." +#~ msgstr "Fájl importálása folyamatban..." + +#~ msgid "Filter History" +#~ msgstr "Előzmények szűrése" + +#, fuzzy +#~ msgid "Find" +#~ msgstr "Találat" + +#~ msgid "Find Shows" +#~ msgstr "Műsorok keresése" + +#~ msgid "First Name" +#~ msgstr "Vezetéknév" + +#, php-format +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "" +#~ "A metaadat mezők jelentéséről részletes információk találhatóak az %sRSS specifikációban%s\n" +#~ "vagy az %sApple podcast dokumentációban%s." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "További segítségért, olvassa el a %shasználati útmutatót%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "A további részletekért, kérjük, olvassa el az %sAirtime Kézikönyvét%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Elfelejtett jelszó?" + +#~ msgid "General Fields" +#~ msgstr "Általános mezők" + +#~ msgid "Global" +#~ msgstr "Globális" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Így lehet elkezdeni a %s használatát a műsorsugárzás automatizálásához:" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis metaadat" + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc szám:" + +#~ msgid "Jack" +#~ msgstr "Jack" + +#~ msgid "Keywords" +#~ msgstr "Kulcsszavak" + +#~ msgid "Last Name" +#~ msgstr "Keresztnév" + +#~ msgid "Length:" +#~ msgstr "Hossz:" + +#~ msgid "Limit to " +#~ msgstr "Korlátozva" + +#~ msgid "Listen" +#~ msgstr "Hallgatás" + +#~ msgid "Listeners" +#~ msgstr "Hallgatók" + +#~ msgid "Live Broadcasting" +#~ msgstr "Élő közvetítés" + +#~ msgid "Live Stream Input" +#~ msgstr "Élő adásfolyam bemenet" + +#~ msgid "Live stream" +#~ msgstr "Élő adásfolyam" + +#~ msgid "Log Sheet" +#~ msgstr "Napló" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Naplózási sablonok" + +#~ msgid "Logout" +#~ msgstr "Kijelentkezés" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Úgy néz ki a keresett oldal nem létezik!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Úgy tűnik erre a napra nincsenek műsorok ütemezve." + +#~ msgid "Manage Users" +#~ msgstr "Felhasználók kezelése" + +#~ msgid "Master Source" +#~ msgstr "Mester-forrás" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Havi hallgatók sávszélesség használata" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." + +#~ msgid "New Criteria" +#~ msgstr "Új feltétel" + +#~ msgid "New File Summary Template" +#~ msgstr "Új fájl összesítő sablon" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Új naplózási sablon" + +#~ msgid "New Modifier" +#~ msgstr "Új módosító" + +#~ msgid "New User" +#~ msgstr "Új felhasználó" + +#~ msgid "New password" +#~ msgstr "Új jelszó" + +#~ msgid "Next:" +#~ msgstr "Következő:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nincsenek fájl összesítő sablonok" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nincsenek naplózási sablonok" + +#~ msgid "No open playlist" +#~ msgstr "Nincs megnyitott lejátszási lista" + +#~ msgid "No smart block currently open" +#~ msgstr "Jelenleg nincs okosblokk nyitva" + +#~ msgid "No webstream" +#~ msgstr "Nincs web-adásfolyam" + +#~ msgid "Now you're good to go!" +#~ msgstr "Mehet is az adás!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ADÁSBAN" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Csak számok adhatók meg." + +#~ msgid "Oops!" +#~ msgstr "Hoppá!" + +#~ msgid "Original Length:" +#~ msgstr "Eredeti hossz:" + +#~ msgid "Output Streams" +#~ msgstr "Kimeneti adásfolyamok" + +#~ msgid "Override" +#~ msgstr "Felülírás" + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Album nevének felülírása a podcast nevével a beküldés során." + +#~ msgid "Page not found!" +#~ msgstr "Az oldal nem található!" + +#~ msgid "Password Reset" +#~ msgstr "Jelszó visszaállítás" + +#~ msgid "Pending" +#~ msgstr "Várakozó" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Lejátszás" + +#~ msgid "Playlist Contents: " +#~ msgstr "Lejátszási lista tartalmak:" + +#, fuzzy +#~ msgid "Playlist crossfade" +#~ msgstr "Lejátszási lista átúsztatása" + +#~ msgid "Playout History Templates" +#~ msgstr "Lejátszási történet sablonok" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Kérjük adja meg és erősítse meg új jelszavát az alábbi mezőkben." + +#~ msgid "Please upgrade to " +#~ msgstr "Kérjük, frissítsen" + +#~ msgid "Podcast Name: " +#~ msgstr "Podcast neve:" + +#~ msgid "Podcast URL: " +#~ msgstr "Podcast URL: " + +#~ msgid "Podcasts" +#~ msgstr "Podcastok" + +#~ msgid "Port cannot be empty." +#~ msgstr "A port nem lehet üres." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Previous:" +#~ msgstr "Előző:" + +#~ msgid "Privacy Settings" +#~ msgstr "Adatvédelmi beállítások" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "A Programvezetők a következőket tehetik:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Az állomásom közzététele itt: %s" + +#~ msgid "Publish to:" +#~ msgstr "Közzététel itt:" + +#~ msgid "Published on:" +#~ msgstr "Közzétéve itt:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "A közzétett sávokat lentebb lehet eltávolítani vagy frissíteni." + +#~ msgid "Publishing" +#~ msgstr "Közzététel" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "RESET" +#~ msgstr "VISSZAÁLLÍTÁS" + +#~ msgid "RSS Feed URL:" +#~ msgstr "RSS hírcsatorna URL-je:" + +#~ msgid "Recent Uploads" +#~ msgstr "Korábbi feltöltések" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Felvétel és újrasugárzás" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime regisztráció" + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +#~ msgstr "Azok a távoli URL-ek amik böngészőből elérhetik ezt a LibreTime példányt. Soronként egy URL-t kell megadni." + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Minden tartalom eltávolítása ebből az okosblokkból" + +#~ msgid "Remove watched directory" +#~ msgstr "A figyelt mappa eltávolítása" + +#~ msgid "Repeat Days:" +#~ msgstr "Ismétlések napjai:" + +#, fuzzy, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)" + +#~ msgid "Sample Rate:" +#~ msgstr "Mintavételi ráta:" + +#~ msgid "Save playlist" +#~ msgstr "Lejátszási lista mentése" + +#~ msgid "Save podcast" +#~ msgstr "Podcast mentése" + +#~ msgid "Save station podcast" +#~ msgstr "Állomás-podcast mentése" + +#~ msgid "Schedule a show" +#~ msgstr "Egy műsor ütemezése" + +#~ msgid "Scheduled Shows" +#~ msgstr "Ütemezett műsorok" + +#~ msgid "Search Criteria:" +#~ msgstr "Keresési feltétel" + +#~ msgid "Select stream:" +#~ msgstr "Adásfolyam kiválasztása:" + +#~ msgid "Server cannot be empty." +#~ msgstr "A kiszolgáló nem lehet üres." + +#~ msgid "Service" +#~ msgstr "Szolgáltatás" + +#~ msgid "Set" +#~ msgstr "Beállítás" + +#, fuzzy +#~ msgid "Set Cue In" +#~ msgstr "Felkeverés Beállítása" + +#, fuzzy +#~ msgid "Set Cue Out" +#~ msgstr "Lekeverés Beállítása" + +#~ msgid "Set Default Template" +#~ msgstr "Alapértelmezett sablon beállítása" + +#~ msgid "Share" +#~ msgstr "Megosztás" + +#~ msgid "Show Source" +#~ msgstr "Műsorforrás" + +#~ msgid "Show Summary" +#~ msgstr "Műsor összesítő" + +#~ msgid "Show Waveform" +#~ msgstr "Hullámforma mutatása" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mutasd meg, hogy mit küldök" + +#~ msgid "Shuffle playlist" +#~ msgstr "Véletlenszerű lejátszási lista" + +#~ msgid "Source Streams" +#~ msgstr "Forrás adásfolyamok" + +#~ msgid "Static Smart Block" +#~ msgstr "Statikus okosblokk" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statikus okostábla tartalmak:" + +#~ msgid "Station Description:" +#~ msgstr "Állomás leírása:" + +#~ msgid "Station Web Site:" +#~ msgstr "Az állomás honlapja:" + +#~ msgid "Stop" +#~ msgstr "Leállítás" + +#~ msgid "Stream " +#~ msgstr "Adásfolyam" + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Adásfolyam adat gyűjtemény állapota" + +#~ msgid "Stream Settings" +#~ msgstr "Adásfolyam beállítások" + +#~ msgid "Stream URL:" +#~ msgstr "Adásfolyam URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Adásfolyam URL:" + +#~ msgid "Streaming Server:" +#~ msgstr "Adásfolyam szerver:" + +#~ msgid "Style" +#~ msgstr "Stílus" + +#~ msgid "Subscribe" +#~ msgstr "Feliratkozás" + +#~ msgid "Subtitle" +#~ msgstr "Felirat" + +#~ msgid "Summary" +#~ msgstr "Összegzés" + +#~ msgid "Support Feedback" +#~ msgstr "Támogatási visszajelzés" + +#~ msgid "Support setting updated." +#~ msgstr "Támogatási beállítások frissítve." + +#~ msgid "Table Test" +#~ msgstr "Táblateszt" + +#~ msgid "Terms and Conditions" +#~ msgstr "Felhasználási feltételek" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "A kívánt blokkhosszúság nem érhető el ha az Airtime nem talál elég egyedi, a feltételnek megfelelő sávot. Ha ez engedélyezett, egy sávot többször is hozzá lehet adni az okosblokkhoz." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "A következő információk megjelennek a hallgatók számára a saját médialejátszóikban:" + +#~ msgid "The requested action is not supported!" +#~ msgstr "A kért művelet nem támogatott!" + +#, fuzzy +#~ msgid "The work is in the public domain" +#~ msgstr "A munka a nyilvános felületen folyik" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ez a verzió már nem támogatott." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ez a verzió hamarosan elavul." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "A média lejátszáshoz frissíteni kell a böngészőt egy újabb verzióra, vagy frissíteni kell a %sFlash bővítményt%s." + +#~ msgid "Toggle Details" +#~ msgstr "Részletek" + +#~ msgid "Track:" +#~ msgstr "Sáv:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn beállítások" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Gépelje be a képen látható karaktereket." + +#~ msgid "Update Required" +#~ msgstr "Frissítés szükséges" + +#~ msgid "Update show" +#~ msgstr "A műsor frissítése" + +#~ msgid "Update track" +#~ msgstr "Sáv frissítése" + +#~ msgid "Upload" +#~ msgstr "Feltöltés" + +#~ msgid "Upload audio tracks" +#~ msgstr "Audió sávok feltöltése" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "A műsorsugárzó szoftverben ezeket a beállításokat használva lehet bármikor élőben sugározni." + +#~ msgid "User Type" +#~ msgstr "Felhasználótípus" + +#~ msgid "View Feed" +#~ msgstr "Hírcsatorna megtekintése" + +#~ msgid "View track" +#~ msgstr "Sáv megtekintése" + +#~ msgid "Viewing " +#~ msgstr "Megtekintés " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "A keresett oldal nem található." + +#~ msgid "Web Stream" +#~ msgstr "Web-adásfolyam" + +#~ msgid "Webstream" +#~ msgstr "Web-adásfolyam" + +#, fuzzy, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Üdvözöljük az %s-nál!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Üdvözöljük a %s demó változatában! „admin” felhasználónévvel és „admin” jelszóval lehet bejelentkezni." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Üdvözli az új Airtime Pro!" + +#~ msgid "What" +#~ msgstr "Mi" + +#~ msgid "When" +#~ msgstr "Mikor" + +#~ msgid "Who" +#~ msgstr "Kicsoda" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nincs megfigyelt médiamappa." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Később módosíthatóak a tulajdonságokban és a felhasználói beállításokban." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "Nincs jogosultsága a lap eléréséhez!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "Nincs jogosultsága ennek a fájlnak a szerkesztéséhez." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Ez a sáv már minden elérhető forrásban közzé lett téve!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "El kell fogadnia az adatvédelmi irányelveket." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Ez a sáv még egyik forrásban sincs közzétéve!" + +#~ msgid "Your trial expires in" +#~ msgstr "A kipróbálási időszak lejár" + +#~ msgid "and" +#~ msgstr "és" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "feltételeknek megfelelő fájl" + +#~ msgid "files meet the criteria" +#~ msgstr "feltételeknek megfelelő fájl" + +#~ msgid "iTunes Fields" +#~ msgstr "iTunes mezők" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "teljes hangerő" + +#~ msgid "mute" +#~ msgstr "elnémítás" + +#~ msgid "next" +#~ msgstr "következő" + +#~ msgid "or" +#~ msgstr "vagy" + +#~ msgid "pause" +#~ msgstr "szünet" + +#~ msgid "play" +#~ msgstr "lejátszás" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "kérjük, tegye másodpercekbe '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "előző" + +#~ msgid "stop" +#~ msgstr "leállítás" + +#~ msgid "unmute" +#~ msgstr "elnémítás megszüntetése" diff --git a/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po b/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..674a98e862 --- /dev/null +++ b/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po @@ -0,0 +1,4513 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Danse , 2014 +# Sourcefabric , 2012 +# Xorxi , 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-10-17 08:09+0000\n" +"Last-Translator: J. Lavoie \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s non è una data valida" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s non è un ora valida" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendario" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Utenti" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Stato" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Storico playlist" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Statistiche ascolto" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Aiuto" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Iniziare" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Manuale utente" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Non è permesso l'accesso alla risorsa." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Non è permesso l'accesso alla risorsa. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Il file non esiste in %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Richiesta errata. «modalità» parametro non riuscito." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Richiesta errata. «modalità» parametro non valido" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Non è consentito disconnettersi dalla fonte." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Nessuna fonte connessa a questo ingresso." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Non ha il permesso per cambiare fonte." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s non trovato" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Qualcosa è andato storto." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Anteprima" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Aggiungi a playlist" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Aggiungi al blocco intelligente" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Elimina" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Scarica" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Nessuna azione disponibile" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Non ha il permesso per cancellare gli elementi selezionati." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Registra:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Stream Principale" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Niente programmato" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Show attuale:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Attuale" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Sta gestendo l'ultima versione" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nuova versione disponibile:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Aggiungi all'attuale playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Aggiungi all' attuale blocco intelligente" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Sto aggiungendo un elemento" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Aggiunte %s voci" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Puoi solo aggiungere tracce ai blocchi intelligenti." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Aggiungi " + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edita" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Rimuovi" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edita Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Aggiungi agli show selezionati" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Seleziona" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Seleziona pagina" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deseleziona pagina" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deseleziona tutto" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "E' sicuro di voler eliminare la/e voce/i selezionata/e?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Titolo" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Creatore" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Velocità di trasmissione" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Compositore" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Conduttore" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Codificato da" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genere" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Etichetta" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Lingua" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Ultima modifica" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Ultima esecuzione" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Lunghezza" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Formato (Mime)" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Genere (Mood)" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Proprietario" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Ripeti" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Velocità campione" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Numero traccia" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Caricato" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Sito web" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Anno" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Caricamento..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Tutto" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "File" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocchi intelligenti" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Tipologia sconosciuta:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Sei sicuro di voler eliminare gli elementi selezionati?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Caricamento in corso..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Dati recuperati dal server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Errore codice:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Errore messaggio:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "L'ingresso deve essere un numero positivo" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "L'ingresso deve essere un numero" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "L'ingresso deve essere nel formato : yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "L'ingresso deve essere nel formato : hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "inserisca per favore il tempo '00:00:00(.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Il suo browser non sopporta la riproduzione di questa tipologia di file:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Il blocco dinamico non c'è in anteprima" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limitato a:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist salvata" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Programma in ascolto su %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Ricordamelo tra 1 settimana" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Non ricordarmelo" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Si, aiuta Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "L'immagine deve essere in formato jpg, jpeg, png, oppure gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Blocco intelligente casuale" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Blocco Intelligente generato ed criteri salvati" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Blocco intelligente salvato" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Elaborazione in corso..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Seleziona modificatore" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contiene" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "non contiene" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "è " + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "non è" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "inizia con" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "finisce con" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "è più di" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "è meno di" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "nella seguenza" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Genere" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Scelga l'archivio delle cartelle" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Scelga le cartelle da guardare" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"E' sicuro di voler cambiare l'archivio delle cartelle?\n" +" Questo rimuoverà i file dal suo archivio Airtime!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gestisci cartelle media" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "E' sicuro di voler rimuovere le cartelle guardate?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Questo percorso non è accessibile attualmente." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connesso al server di streaming." + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Stream disattivato" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Ottenere informazioni dal server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Non può connettersi al server di streaming" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nessun risultato trovato" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Imposta autenticazione personalizzata che funzionerà solo per questo show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "L'istanza dello show non esiste più!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Lo show è vuoto" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1min" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5min" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10min" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15min" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30min" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60min" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Recupera data dal server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Lo show non ha un contenuto programmato." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Gennaio" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Febbraio" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Marzo" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Aprile" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Maggio" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Giugno" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Luglio" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Agosto" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Settembre" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Ottobre" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Novembre" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Dicembre" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Gen" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Giu" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Lug" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Ago" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Set" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Ott" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dic" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Domenica" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Lunedì" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Martedì" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Mercoledì" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Giovedì" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Venerdì" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Sabato" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Dom" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Lun" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Mar" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Mer" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Gio" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Ven" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sab" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancellare lo show attuale?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Fermare registrazione dello show attuale?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "OK" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contenuti dello Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Rimuovere tutto il contenuto?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Cancellare la/e voce/i selezionata/e?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Fine" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Durata" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Dissolvenza in entrata" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Dissolvenza in uscita" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show vuoto" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Registrando da Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Anteprima traccia" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Non può programmare fuori show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Spostamento di un elemento in corso" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Spostamento degli elementi %s in corso" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Salva" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancella" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Seleziona tutto" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Nessuna selezione" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Rimuovi la voce selezionata" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Salta alla traccia dell'attuale playlist" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancella show attuale" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Apri biblioteca per aggiungere o rimuovere contenuto" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Aggiungi/Rimuovi contenuto" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in uso" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disco" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Cerca in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Apri" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Amministratore " + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programma direttore" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Ospite" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Invia supporto feedback:" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Mostra/nascondi colonne" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Da {da} a {a}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Dom" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Lun" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Mar" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Mer" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Gio" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Ven" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sab" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Chiudi" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Ore" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuti" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Completato" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "" + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "" + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "" + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "" + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Descrizione" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Abilitato" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Disattivato" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Fuori onda" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Fuori linea" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Niente di programmato" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "Clicca su «Aggiungi» per crearne uno ora." + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Inserisci il tuo nome utente e la tua password." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Nome utente o password forniti errati. Per favore riprovi." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sta visualizzando una versione precedente di %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Non può aggiungere tracce al blocco dinamico." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Non ha i permessi per cancellare la selezione %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Puoi solo aggiungere tracce al blocco intelligente." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Playlist senza nome" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Blocco intelligente senza nome" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Playlist sconosciuta" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preferenze aggiornate." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Aggiornamento impostazioni Stream." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "il percorso deve essere specificato" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problemi con Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Ritrasmetti show %s da %s a %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Seleziona cursore" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Rimuovere il cursore" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "lo show non esiste" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "User aggiunto con successo!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "User aggiornato con successo!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Webstream senza titolo" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream salvate." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Valori non validi." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Carattere inserito non valido" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Il giorno deve essere specificato" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "L'ora dev'essere specificata" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Aspettare almeno un'ora prima di ritrasmettere" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Usa autenticazione clienti:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Personalizza nome utente " + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Personalizza Password" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Il campo nome utente non può rimanere vuoto." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Il campo della password non può rimanere vuoto." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Registra da Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ritrasmetti?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "giorni" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Ripeti tipo:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "settimanalmente" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensilmente" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Seleziona giorni:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data fine:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Ripeti all'infinito?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "La data di fine deve essere posteriore a quella di inizio" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Colore sfondo:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Colore testo:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nome:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Show senza nome" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Genere:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Descrizione:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Durata:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Ripetizioni?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Non creare show al passato" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Non modificare data e ora di inizio degli slot in eseguzione" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "L'ora e la data finale non possono precedere quelle iniziali" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Non ci può essere una durata <0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Non ci può essere una durata 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Non ci può essere una durata superiore a 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Non puoi sovrascrivere gli show" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Cerca utenti:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Dj:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Nome:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Cognome:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Cellulare:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "tipo di utente:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Il nome utente esiste già ." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data inizio:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titolo:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Creatore:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Anno:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Etichetta:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Compositore:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conduttore:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Umore:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numero ISRC :" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Sito web:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Lingua:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nome stazione" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo stazione: " + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "La settimana inizia il" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Accedi" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Conferma nuova password" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "La password di conferma non corrisponde con la sua password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Nome utente" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reimposta password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "In esecuzione" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Tutti i miei show:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Seleziona criteri" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Velocità campione (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "ore" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuti" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statico" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Genera contenuto playlist e salva criteri" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Eseguzione casuale playlist" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Casuale" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Il margine non può essere vuoto o più piccolo di 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Il margine non può superare le 24ore" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Il valore deve essere un numero intero" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 è il limite massimo di elementi che può inserire" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Devi selezionare da Criteri e Modifica" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "La lunghezza deve essere nel formato '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Il valore deve essere numerico" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Il valore deve essere inferiore a 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Il valore deve essere inferiore a %s caratteri" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Il valore non deve essere vuoto" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Etichetta Stream:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artista - Titolo" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artista - Titolo" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Nome stazione - Nome show" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Attiva:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Tipo di stream:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Velocità di trasmissione: " + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Tipo di servizio:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Canali:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Nome" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Importa Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Folder visionati:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Catalogo non valido" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Il calore richiesto non può rimanere vuoto" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' non va bene con il formato data '%formato%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' è più corto di %min% caratteri" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' è più lungo di %max% caratteri" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' non è tra '%min%' e '%max%' compresi" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue in e cue out sono nulli." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Il cue out non può essere più grande della lunghezza del file." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Il cue in non può essere più grande del cue out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Il cue out non può essere più piccolo del cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Seleziona paese" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Il programma che sta visionando è fuori data!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Non è abilitato all'elenco degli show%s" + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Non può aggiungere file a show registrati." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Lo show % supera la lunghezza massima e non può essere programmato." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Il programma %s è già stato aggiornato!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Il File selezionato non esiste!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Gli show possono avere una lunghezza massima di 24 ore." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Non si possono programmare show sovrapposti.\n" +" Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ritrasmetti da %s a %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "La lunghezza deve superare 0 minuti" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "La lunghezza deve essere nella forma \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL deve essere nella forma \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL dove essere di 512 caratteri o meno" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Nessun MIME type trovato per le webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Webstream non può essere vuoto" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Non è possibile analizzare le playlist XSPF " + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Non è possibile analizzare le playlist PLS" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Non è possibile analizzare le playlist M3U" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Webstream non valido - Questo potrebbe essere un file scaricato." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo di stream sconosciuto: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Vedi file registrati Metadata" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Modifica il programma" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Non puoi spostare show ripetuti" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Non puoi spostare uno show passato" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Non puoi spostare uno show nel passato" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Lo show è stato cancellato perché lo show registrato non esiste!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Devi aspettare un'ora prima di ritrasmettere." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Riprodotti" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "a" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contiene una sotto directory già visionata: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s non esiste nella lista delle cartelle visionate." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s è già stato visionato." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s annidato con una directory già visionata: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s non è una directory valida." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)." + +#~ msgid "(Required)" +#~ msgstr "(Richiesto)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Il sito della tua radio)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(per scopi di verifica, non ci saranno pubblicazioni)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Chi siamo" + +#~ msgid "Add this show" +#~ msgstr "Aggiungi show" + +#~ msgid "Additional Options" +#~ msgstr "Opzioni aggiuntive" + +#~ msgid "Advanced Search Options" +#~ msgstr "Opzioni di ricerca avanzate" + +#~ msgid "All rights are reserved" +#~ msgstr "Tutti i diritti riservati" + +#~ msgid "Audio Track" +#~ msgstr "Traccia audio" + +#~ msgid "Choose Days:" +#~ msgstr "Scegli giorni:" + +#~ msgid "Choose folder" +#~ msgstr "Scegli cartella" + +#~ msgid "City:" +#~ msgstr "Città :" + +#~ msgid "Country:" +#~ msgstr "Paese:" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue in:" + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Importa cartelle:" + +#~ msgid "Default Length:" +#~ msgstr "Lunghezza predefinita:" + +#~ msgid "Default License:" +#~ msgstr "Licenza predefinita:" + +#~ msgid "Disk Space" +#~ msgstr "Spazio disco" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Blocco intelligente e dinamico" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Criteri di blocco intelligenti e dinamici:" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Espandi blocco dinamico " + +#~ msgid "Expand Static Block" +#~ msgstr "Espandi blocco statico" + +#~ msgid "Fade in: " +#~ msgstr "Dissolvenza in entrata:" + +#~ msgid "Fade out: " +#~ msgstr "Dissolvenza in chiusura:" + +#~ msgid "File import in progress..." +#~ msgstr "File importato in corso..." + +#~ msgid "Filter History" +#~ msgstr "Filtra storia" + +#~ msgid "Find Shows" +#~ msgstr "Trova Shows" + +#~ msgid "First Name" +#~ msgstr "Nome" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Per aiuto dettagliato, legga %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Per maggiori informazioni, legga per favore il %sManuale Airtime%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Se Airtime è dietro un router o firewall, può avere bisogno di configurare il trasferimento e queste informazioni di campo saranno incorrette. In questo caso avrò bisogno di aggiornare manualmente questo campo per mostrare ospite/trasferimento/installa di cui il suo Dj ha bisogno per connettersi. La serie permessa è tra 1024 e 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Numero ISRC:" + +#~ msgid "Last Name" +#~ msgstr "Cognome" + +#~ msgid "Length:" +#~ msgstr "Lunghezza" + +#~ msgid "Limit to " +#~ msgstr "Limiti" + +#~ msgid "Listen" +#~ msgstr "Ascolta" + +#~ msgid "Live Stream Input" +#~ msgstr "Ingresso Stream diretta" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Logout" +#~ msgstr "Esci" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "La pagina che stai cercando non esiste! " + +#~ msgid "Manage Users" +#~ msgstr "Gestione utenti" + +#~ msgid "Master Source" +#~ msgstr "Fonte principale" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount non può essere vuoto con il server Icecast." + +#~ msgid "New User" +#~ msgstr "Nuovo Utente" + +#~ msgid "New password" +#~ msgstr "Nuova password" + +#~ msgid "Next:" +#~ msgstr "Successivo:" + +#~ msgid "No open playlist" +#~ msgstr "Non aprire playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "Ok" + +#~ msgid "ON AIR" +#~ msgstr "IN ONDA" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Solo numeri." + +#~ msgid "Original Length:" +#~ msgstr "Lunghezza originale:" + +#~ msgid "Page not found!" +#~ msgstr "Pagina non trovata!" + +#~ msgid "Phone:" +#~ msgstr "Telefono:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenuti playlist:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio." + +#~ msgid "Please upgrade to " +#~ msgstr "Per favore aggiorni" + +#~ msgid "Port cannot be empty." +#~ msgstr "Il port non può essere libero." + +#~ msgid "Previous:" +#~ msgstr "Precedente:" + +#~ msgid "Register Airtime" +#~ msgstr "Registro Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Rimuovi elenco visionato" + +#~ msgid "Repeat Days:" +#~ msgstr "Ripeti giorni:" + +#~ msgid "Sample Rate:" +#~ msgstr "Percentuale" + +#~ msgid "Save playlist" +#~ msgstr "Salva playlist" + +#~ msgid "Select stream:" +#~ msgstr "Seleziona stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Il server non è libero." + +#~ msgid "Set" +#~ msgstr "Imposta" + +#~ msgid "Show Source" +#~ msgstr "Mostra fonte" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mostra cosa sto inviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Riproduzione casuale" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Blocco intelligente e statico" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenuto di blocco intelligente e statico:" + +#~ msgid "Station Description:" +#~ msgstr "Descrizione stazione:" + +#~ msgid "Station Web Site:" +#~ msgstr "Stazione sito web:" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Impostazioni Stream" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Stile" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Aggiornamento impostazioni assistenza." + +#~ msgid "Terms and Conditions" +#~ msgstr "Termini e condizioni" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Alla lunghezza di blocco desiderata non si arriverà se Airtime non può trovare abbastanza tracce uniche per accoppiare i suoi criteri.Abiliti questa scelta se desidera permettere alle tracce di essere aggiunte molteplici volte al blocco intelligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Il lavoro è nel dominio pubblico" + +#~ msgid "This version is no longer supported." +#~ msgstr "Questa versione non è più sopportata." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Questa versione sarà presto aggiornata." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Traccia:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Digita le parole del riquadro." + +#~ msgid "Update Required" +#~ msgstr "Aggiornamenti richiesti" + +#~ msgid "Update show" +#~ msgstr "Aggiorna show" + +#~ msgid "User Type" +#~ msgstr "Tipo di utente" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Cosa" + +#~ msgid "When" +#~ msgstr "Quando" + +#~ msgid "Who" +#~ msgstr "Chi" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sta guardando i cataloghi media." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Autorizzo il trattamento dei miei dati personali." + +#~ msgid "Your trial expires in" +#~ msgstr "La sua versione di prova scade entro" + +#~ msgid "files meet the criteria" +#~ msgstr "Files e criteri" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volume massimo" + +#~ msgid "mute" +#~ msgstr "disattiva microfono" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "pause" +#~ msgstr "pausa" + +#~ msgid "play" +#~ msgstr "riproduci" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "inserisca per favore il tempo in secondi '00(.0)'" + +#~ msgid "previous" +#~ msgstr "precedente" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "attiva microfono" diff --git a/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..b9ad44532c --- /dev/null +++ b/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po @@ -0,0 +1,4610 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Akemi Makino , 2014 +# Kazuhiro Shimbo , 2014 +# shotaro , 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-10-17 08:09+0000\n" +"Last-Translator: Kyle Robbertze \n" +"Language-Team: Japanese \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "%s年は、1753 - 9999の範囲内である必要があります" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%sは正しい日付ではありません" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%sは正しい時間ではありません" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "カレンダー" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "ユーザー" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "配信設定" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "ステータス" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "配信履歴" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "配信履歴のテンプレート" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "リスナー統計" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "ヘルプ" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "はじめに" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "ユーザーマニュアル" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "このリソースへのアクセスは許可されていません。" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "このリソースへのアクセスは許可されていません。" + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad Request:パスした「mode」パラメータはありません。" + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad Request:'mode' パラメータが無効です。" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "ソースを切断する権限がありません。" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "この入力に接続されたソースが存在しません。" + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "ソースを切り替える権限がありません。" + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s は見つかりませんでした。" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "問題が生じました。" + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "プレビュー" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "プレイリストに追加" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "スマートブロックに追加" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "削除" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "ダウンロード" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "プレイリストのコピー" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "実行可能な操作はありません。" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "選択した項目を削除する権限がありません。" + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "%sのコピー" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "オーディオプレイヤー" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "録音中:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "マスターストリーム" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "ライブ配信" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "何も予約されていません。" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "現在の番組:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Now Playing" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "最新バージョンを使用しています。" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "新しいバージョンがあります:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "現在のプレイリストに追加" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "現在のスマートブロックに追加" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1個の項目を追加" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr " %s個の項目を追加" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "スマートブロックに追加できるのはトラックのみです。" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "タイムライン上のカーソル位置を選択して下さい。" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "追加" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "編集" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "削除" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "メタデータの編集" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "選択した番組へ追加" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "選択" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "このページを選択" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "このページを選択解除" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "全てを選択解除" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "選択した項目を削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "配信予約済み" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "タイトル" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "アーティスト" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "アルバム" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "ビットレート" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM " + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "作曲者" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "コンダクター" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "著作権" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "エンコード" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "ジャンル" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "レーベル" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "言語" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "最終修正" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "最終配信日" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "時間" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "MIMEタイプ" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "ムード" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "所有者" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "リプレイゲイン" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "サンプルレート" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "トラック番号" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "アップロード完了" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "ウェブサイト" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "年" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "ロード中…" + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "全て" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "ファイル" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "プレイリスト" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "スマートブロック" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "ウェブ配信" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "種類不明:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "選択した項目を削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "アップロード中…" + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "サーバーからデータを取得しています…" + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "エラーコード:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "エラーメッセージ:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "0より大きい半角数字で入力して下さい。" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "半角数字で入力して下さい。" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "yyyy-mm-ddの形で入力して下さい。" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "01:22:33.4の形式で入力して下さい。" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "メディアビルダーを開く" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "時間は01:22:33(.4)の形式で入力して下さい。" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "お使いのブラウザはこのファイル形式の再生に対応していません:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "自動生成スマート・ブロックはプレビューできません" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "次の値に制限:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "プレイリストが保存されました。" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "プレイリストがシャッフルされました。" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。" + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "%sのリスナー視聴数:%s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "1週間前に通知" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "通知しない" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Rakuten.FMを支援します" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "画像は、jpg, jpeg, png, または gif の形式にしてください。" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。" + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。" + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "スマートブロックがシャッフルされました。" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "スマートブロックが生成されて基準が保存されました。" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "スマートブロックを保存しました。" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "処理中…" + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "条件を選択してください" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "以下を含む" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "以下を含まない" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "以下と一致する" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "以下と一致しない" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "以下で始まる" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "以下で終わる" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "次の値より大きい" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "次の値より小さい" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "次の範囲内" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "生成" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "フォルダを選択してください。" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "同期するフォルダを選択" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "メディアフォルダの管理" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "同期されているフォルダを削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "このパスは現在アクセス不可能です。" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "ストリーミングサーバーに接続しています。" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "配信が切断されています。" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "サーバーから情報を取得しています…" + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "ストリーミングサーバーに接続できません。" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。" + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "注意:番組の配信中にこの項目は変更できません。" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "結果は見つかりませんでした。" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "この番組に対してのみ有効なカスタム認証を指定してください。" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "この番組の配信回が存在しません。" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "注意:番組は再度リンクできません。" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "番組" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "番組内容がありません。" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1分" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5分" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10分" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15分" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30分" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60分" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "サーバーからデータを取得しています…" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "この番組には予約されているコンテンツがありません。" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "この番組はコンテンツが足りていません。" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "1月" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "2月" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "3月" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "4月" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "5月" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "6月" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "7月" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "8月" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "9月" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "10月" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "11月" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "12月" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "1月" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "2月" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "3月" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "4月" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "6月" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "7月" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "8月" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "9月" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "10月" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "11月" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "12月" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "日曜日" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "月曜日" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "火曜日" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "水曜日" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "木曜日" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "金曜日" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "土曜日" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "日" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "月" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "火" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "水" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "木" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "金" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "土" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "現在の番組をキャンセルしますか?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "配信中の番組の録音を中止しますか?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "番組内容" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "全てのコンテンツを削除しますか?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "選択した項目を削除しますか?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "開始" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "終了" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "長さ" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "キューイン" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "キューアウト" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "フェードイン" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "フェードアウト" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "番組内容がありません。" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "ライン入力から録音" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "試聴する" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "番組外に予約することは出来ません。" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "1個の項目を移動" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "%s 個の項目を移動" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "保存" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "キャンセル" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "フェードの編集" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "キューの編集" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "全て選択" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "全て解除" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "選択した項目を削除" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "現在再生中のトラックに移動" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "配信中の番組をキャンセル" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "ライブラリを開いてコンテンツを追加・削除する" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "コンテンツの追加・削除" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "使用中" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "ディスク" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "閲覧" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "開く" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "管理者" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "プログラムマネージャー" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "ゲスト" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "ゲストは以下の操作ができます:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "スケジュールを見る" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "番組内容を見る" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJは以下の操作ができます:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "割り当てられた番組内容を管理" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "メディアファイルをインポートする" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "プレイリスト・スマートブロック・ウェブストリームを作成" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "ライブラリのコンテンツを管理" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "番組内容の表示と管理" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "番組を予約する" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "ライブラリの全てのコンテンツを管理" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "管理者は次の操作が可能です:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "設定を管理" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "ユーザー管理" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "同期されているフォルダを管理" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "サポートにフィードバックを送る" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "システムステータスを見る" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "配信レポートへ" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "リスナー統計を確認" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "表示設定" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "{from}から{to}へ" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "日" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "月" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "火" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "水" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "木" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "金" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "土" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "閉じる" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "時" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "分" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "完了" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "ファイルを選択" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "ファイルを追加" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "アップロード中止" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "アップロード開始" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "ファイルを追加" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d ファイルをアップロードしました。" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "こちらにファイルをドラッグしてください。" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "ファイル拡張子エラーです。" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "ファイルサイズエラーです。" + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "ファイルカウントのエラーです。" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Initエラーです。" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTPエラーです。" + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "セキュリティエラーです。" + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "エラーです。" + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "入出力エラーです。" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "ファイル: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d のファイルが待機中" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "アップロードURLに誤りがあるか存在しません。" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "エラー:ファイルサイズが大きすぎます。" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "エラー:ファイル拡張子が無効です。" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "初期設定として保存" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "エントリーを作成" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "配信履歴を編集" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "番組はありません。" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s 列の%s をクリップボードにコピー しました。" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "説明" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "有効" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "無効" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。" + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "入力されたユーザー名またはパスワードが誤っています。" + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "%sの古いバージョンを閲覧しています。" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "自動生成スマート・ブロックにトラックを追加することはできません。" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "選択された%sを削除する権限がありません。" + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "スマートブロックに追加できるのはトラックのみです。" + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "無題のプレイリスト" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "無題のスマートブロック" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "不明なプレイリスト" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "設定が更新されました。" + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "配信設定が更新されました。" + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "パスを指定する必要があります" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoapに問題があります。" + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "%sの再配信:%s %s時" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "カーソルを選択" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "カーソルを削除" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "番組が存在しません。" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "ユーザーの追加に成功しました。" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "ユーザーの更新に成功しました。" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "設定の更新に成功しました。" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "無題のウェブ配信" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "ウェブ配信が保存されました。" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "入力欄に無効な値があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "使用できない文字が入力されました。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "日付を指定する必要があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "時間を指定する必要があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "再配信するには、1時間以上待たなければなりません" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "カスタム認証を使用:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "カスタムユーザー名" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "カスタムパスワード" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "ユーザー名を入力してください。" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "パスワードを入力してください。" + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "ライン入力から録音" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "再配信" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "日" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "配信内容を同期する:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "リピート形式:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "毎週" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "2週間ごと" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "3週間ごと" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "4週間ごと" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "毎月" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "曜日を選択:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "リピート間隔:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "毎月特定日" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "毎月特定曜日" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "終了日:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "無期限" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "終了日は開始日より後に設定してください。" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "繰り返す日を選択してください" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "背景色:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "文字色:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "名前:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "無題の番組" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "ジャンル:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "説明:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%'は、'01:22'の形式に適合していません" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "長さ:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "タイムゾーン:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "定期番組に設定" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "過去の日付に番組は作成できません。" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "終了日時は過去に設定できません。" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "0分以下の長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "00h 00mの長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "24時間を越える長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "番組を重複して予約することはできません。" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "ユーザーを検索:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "ユーザー名:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "パスワード:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "確認用パスワード:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "名:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "姓:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "メール:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "携帯電話:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "ユーザー種別:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "ログイン名はすでに使用されています。" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "開始日:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "タイトル:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "アーティスト:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "アルバム:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "年:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "ラベル:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "作曲者" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "コンダクター:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "ムード:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "著作権:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC番号:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "ウェブサイト:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "言語:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "開始時間" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "終了時間" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "インターフェイスのタイムゾーン:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "ステーション名" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "ステーションロゴ:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "クロスフェードの時間(初期値):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "デフォルトフェードイン(初期値):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "デフォルトフェードアウト(初期値):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "ステーションのタイムゾーン" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "週の開始曜日" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "ログイン" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "パスワード" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "新しいパスワードを確認してください。" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "パスワード確認がパスワードと一致しません。" + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "ユーザー名" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "全ての番組:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "基準を選択してください" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "ビットレート (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "サンプリング周波数 (kHz) " + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "時間" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "分" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "項目" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "自動生成スマート・ブロック" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "スマート・ブロック" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "プレイリストコンテンツを生成し、基準を保存" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "プレイリストの内容をシャッフル" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "シャッフル" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "制限は空欄または0以下には設定できません。" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "制限は24時間以内に設定してください。" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "値は整数である必要があります。" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "設定できるアイテムの最大数は500です。" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "「基準」と「条件」を選択してください。" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "「長さ」は、'00:00:00'の形式で入力してください。" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "値は数字である必要があります。" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "値は2147483648未満にする必要があります。" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "値は%s未満にする必要があります。" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "値を入力してください。" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "配信表示設定:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "アーティスト - タイトル" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "番組 - アーティスト - タイトル" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "ステーション名 - 番組名" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "オフエアーメタデータ" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "リプレイゲインを有効化" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "リプレイゲイン調整" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "有効:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "配信種別:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "ビットレート:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "サービスタイプ:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "再生方式" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "サーバー" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "ポート" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "マウントポイント" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "名前" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "インポートフォルダ:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "同期フォルダ:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "正しいディレクトリではありません。" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "値を入力してください" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'は、'%format%'の日付形式に一致しません。" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'は、%min%文字より短くなっています。" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'は、%max%文字を越えています。" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "パスワードが一致しません。" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "キューインとキューアウトが設定されていません。" + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "キューアウトはファイルの長さより長く設定できません。" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "キューインをキューアウトより大きく設定することはできません。" + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "キューアウトをキューインより小さく設定することはできません。" + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "国の選択" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "リンクした番組の外に項目を移動することはできません。" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "参照中のスケジュールはの有効ではありません。" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "参照中のスケジュールは有効ではありません。" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "参照中のスケジュールは有効ではありません。" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "番組を%sに予約することはできません。" + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "録音中の番組にファイルを追加することはできません。" + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "番組 %s は終了しておりスケジュールに入れることができません。" + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "番組 %s は以前に更新されています。" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "選択したファイルは存在しません。" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "番組は最大24時間まで設定可能です。" + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"番組を重複して予約することはできません。\n" +"注意:再配信番組のサイズ変更は全ての再配信に反映されます。" + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%sの再配信%sから" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "再生時間は0分以上である必要があります。" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "時間は \"00h 00m\"の形式にしてください。" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL は\"https://example.org\"の形式で入力してください。" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URLは512文字以下にしてください。" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。" + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "ウェブ配信名を入力して下さい。" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "XSPFプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "PLSプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "M3Uプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "無効なウェブ配信です。" + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "不明な配信種別です: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "録音ファイルは存在しません。" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "録音ファイルのメタデータを確認" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "番組の編集" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "許可されていない操作です。" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "定期配信している番組を移動することはできません。" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "過去の番組を移動することはできません。" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "番組を過去の日付に移動することはできません。" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "録音された番組を再配信時間の直前1時間の枠に移動することはできません。" + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "録音された番組が存在しないので番組は削除されました。" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "再配信には1時間待たなければなりません。" + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "トラック" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "再生済み" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "~" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%sは同期している次のフォルダを含んでいます: %s " + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%sは同期リストの中に存在しません。" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%sは同期済みです。" + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%sは同期している次のフォルダに含まれています: %s " + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%sは有効なディレクトリではありません。" + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)" + +#~ msgid "(Required)" +#~ msgstr "(必須)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(あなたのラジオステーションウェブサイト)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(確認目的の為だけであり、公開はされません。) " + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "例:01:22:33.4" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t) " + +#~ msgid "1 - Mono" +#~ msgstr "1 - モノラル" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - ステレオ" + +#~ msgid "About" +#~ msgstr "Rakuten.FMについて" + +#~ msgid "Add New Field" +#~ msgstr "あたしいフィールドの追加" + +#~ msgid "Add more elements" +#~ msgstr "さらに要素を追加" + +#~ msgid "Add this show" +#~ msgstr "この番組を追加" + +#~ msgid "Additional Options" +#~ msgstr "詳細設定" + +#~ msgid "Admin Password" +#~ msgstr "管理者パスワード" + +#~ msgid "Admin User" +#~ msgstr "管理者" + +#~ msgid "Advanced Search Options" +#~ msgstr "詳細検索" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "Audio Track" +#~ msgstr "オーディオトラック" + +#~ msgid "Choose Days:" +#~ msgstr "日付選択: " + +#~ msgid "Choose Show Instance" +#~ msgstr "番組配信回の選択" + +#~ msgid "Choose folder" +#~ msgstr "フォルダ選択" + +#~ msgid "City:" +#~ msgstr "市:" + +#~ msgid "Clear" +#~ msgstr "クリア" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "同期された配信内容を配信中に変更することはできません。" + +#~ msgid "Country:" +#~ msgstr "国:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "トラック別レポートテンプレート作成" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "配信レポートテンプレートの作成" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "キューイン:" + +#~ msgid "Cue Out: " +#~ msgstr "キューアウト:" + +#~ msgid "Current Import Folder:" +#~ msgstr "現在のインポートフォルダ" + +#~ msgid "Cursor" +#~ msgstr "カーソル" + +#~ msgid "Default Length:" +#~ msgstr "ウェブ配信の長さ(初期値):" + +#~ msgid "Default License:" +#~ msgstr "ライセンス(初期値):" + +#~ msgid "Disk Space" +#~ msgstr "ディスク容量" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "自動生成スマート・ブロック" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "自動生成スマート・ブロックの基準:" + +#~ msgid "Empty playlist content" +#~ msgstr "プレイリストを空にする。" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "自動生成スマート・ブロックを拡張する" + +#~ msgid "Expand Static Block" +#~ msgstr "スマート・ブロックの拡張" + +#~ msgid "Fade in: " +#~ msgstr "フェードイン:" + +#~ msgid "Fade out: " +#~ msgstr "フェードアウト:" + +#~ msgid "File Path:" +#~ msgstr "ファイルの場所: " + +#~ msgid "File Summary" +#~ msgstr "トラック別レポート" + +#~ msgid "File Summary Templates" +#~ msgstr "トラック別レポートテンプレート" + +#~ msgid "File import in progress..." +#~ msgstr "ファイルをインポート中…" + +#~ msgid "Filter History" +#~ msgstr "絞り込み履歴" + +#~ msgid "Find" +#~ msgstr "検索" + +#~ msgid "Find Shows" +#~ msgstr "番組を探す" + +#~ msgid "First Name" +#~ msgstr "名" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 " + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "詳細については、 %sRakuten.FM マニュアル%sを読んで下さい。" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbisメタデータ" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Rakuten.FMがルータやファイアウォールで制御されている場合は、ポート転送を設定する必要があり、このフィールドの情報が不正確になる可能性があります。その場合は、DJの接続に必須の正しいホスト/ポート/マウントを示し、手動でこのフィールドを更新する必要があります。許容範囲は1024〜49151の間です。" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC番号:" + +#~ msgid "Last Name" +#~ msgstr "姓" + +#~ msgid "Length:" +#~ msgstr "時間:" + +#~ msgid "Limit to " +#~ msgstr "次の値に制限する:" + +#~ msgid "Listen" +#~ msgstr "試聴" + +#~ msgid "Live Stream Input" +#~ msgstr "ライブ配信の入力" + +#~ msgid "Live stream" +#~ msgstr "ライブ配信" + +#~ msgid "Log Sheet" +#~ msgstr "配信レポート" + +#~ msgid "Log Sheet Templates" +#~ msgstr "配信レポートテンプレート" + +#~ msgid "Logout" +#~ msgstr "ログアウト" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "お探しのページは存在しないようです。" + +#~ msgid "Manage Users" +#~ msgstr "ユーザー管理" + +#~ msgid "Master Source" +#~ msgstr "マスターソース" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" + +#~ msgid "New File Summary Template" +#~ msgstr "新規テンプレート作成" + +#~ msgid "New Log Sheet Template" +#~ msgstr "新規テンプレート作成" + +#~ msgid "New User" +#~ msgstr "ユーザー追加" + +#~ msgid "New password" +#~ msgstr "新しいパスワード" + +#~ msgid "Next:" +#~ msgstr "次の曲:" + +#~ msgid "No File Summary Templates" +#~ msgstr "テンプレートはありません。" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "テンプレートはありません。" + +#~ msgid "No open playlist" +#~ msgstr "プレイリストが開かれていません。" + +#~ msgid "No webstream" +#~ msgstr "ウェブ配信がありません。" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "数値で入力してください。" + +#~ msgid "Original Length:" +#~ msgstr "オリジナルの長さ:" + +#~ msgid "Page not found!" +#~ msgstr "ページが見つかりませんでした。" + +#~ msgid "Phone:" +#~ msgstr "電話:" + +#~ msgid "Play" +#~ msgstr "再生" + +#~ msgid "Playlist Contents: " +#~ msgstr "プレイリストの内容:" + +#~ msgid "Playlist crossfade" +#~ msgstr "プレイリスト クロスフェード" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。" + +#~ msgid "Please upgrade to " +#~ msgstr "こちらにアップグレードしてください:" + +#~ msgid "Port cannot be empty." +#~ msgstr "ポートを入力してください。" + +#~ msgid "Previous:" +#~ msgstr "前の曲:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "プログラムマネージャーは以下の操作が可能です:" + +#~ msgid "Register Airtime" +#~ msgstr "Rakuten.FMに登録" + +#~ msgid "Remove watched directory" +#~ msgstr "同期ディレクトリを削除する" + +#~ msgid "Repeat Days:" +#~ msgstr "再配信日:" + +#~ msgid "Sample Rate:" +#~ msgstr "サンプルレート:" + +#~ msgid "Save playlist" +#~ msgstr "プレイリストを保存" + +#~ msgid "Select stream:" +#~ msgstr "配信先の選択:" + +#~ msgid "Server cannot be empty." +#~ msgstr "サーバーを入力してください。" + +#~ msgid "Set" +#~ msgstr "設定" + +#~ msgid "Set Cue In" +#~ msgstr "キューインの設定" + +#~ msgid "Set Cue Out" +#~ msgstr "キューアウトの設定" + +#~ msgid "Set Default Template" +#~ msgstr "初期設定テンプレートを作成" + +#~ msgid "Share" +#~ msgstr "共有" + +#~ msgid "Show Source" +#~ msgstr "番組ソース" + +#~ msgid "Show Summary" +#~ msgstr "番組別レポート" + +#~ msgid "Show Waveform" +#~ msgstr "波形の表示" + +#~ msgid "Show me what I am sending " +#~ msgstr "送信中のものを表示" + +#~ msgid "Shuffle playlist" +#~ msgstr "プレイリストのシャッフル" + +#~ msgid "Source Streams" +#~ msgstr "配信ソース" + +#~ msgid "Static Smart Block" +#~ msgstr "スマート・ブロック" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "スマート・ブロックの内容:" + +#~ msgid "Station Description:" +#~ msgstr "ステーションの説明:" + +#~ msgid "Station Web Site:" +#~ msgstr "ステーションのウェブサイト:" + +#~ msgid "Stop" +#~ msgstr "停止" + +#~ msgid "Stream " +#~ msgstr "配信" + +#~ msgid "Stream Settings" +#~ msgstr "配信設定" + +#~ msgid "Stream URL:" +#~ msgstr "配信元URL:" + +#~ msgid "Stream URL: " +#~ msgstr "配信先URL:" + +#~ msgid "Style" +#~ msgstr "スタイル" + +#~ msgid "Support Feedback" +#~ msgstr "サポートフィードバック" + +#~ msgid "Support setting updated." +#~ msgstr "サポート設定が更新されました。" + +#~ msgid "Terms and Conditions" +#~ msgstr "利用規約" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Rakuten.FMがあなたの条件に一致するトラックを十分に見つけることができない場合、ご希望のブロック時間になりません。スマートブロックに同じトラックを複数回追加できるようにしたい場合は、このオプションを有効にしてください。" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "このバージョンのサポートは終了しました。" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "新しいバージョンがあります。" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。" + +#~ msgid "Track:" +#~ msgstr "トラック:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "下記画像の中に見える文字を入力してください。" + +#~ msgid "Update Required" +#~ msgstr "アップデートが必要です。" + +#~ msgid "Update show" +#~ msgstr "番組を更新" + +#~ msgid "User Type" +#~ msgstr "ユーザー種別" + +#~ msgid "Web Stream" +#~ msgstr "ウェブ配信" + +#~ msgid "What" +#~ msgstr "番組内容" + +#~ msgid "When" +#~ msgstr "番組配信時間" + +#~ msgid "Who" +#~ msgstr "DJ" + +#~ msgid "You are not watching any media folders." +#~ msgstr "いかなるメディアフォルダも見ていません" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "プライバシーポリシーに同意する必要があります。" + +#~ msgid "Your trial expires in" +#~ msgstr "試用期間終了まで:" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB " + +#~ msgid "files meet the criteria" +#~ msgstr "件の条件を満たすファイルがありました。" + +#~ msgid "id" +#~ msgstr "id " + +#~ msgid "max volume" +#~ msgstr "最大音量" + +#~ msgid "mute" +#~ msgstr "ミュート" + +#~ msgid "next" +#~ msgstr "次" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "一時停止" + +#~ msgid "play" +#~ msgstr "再生" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "秒数は00 (.0)の形式で入力してください。" + +#~ msgid "previous" +#~ msgstr "前" + +#~ msgid "stop" +#~ msgstr "停止" + +#~ msgid "unmute" +#~ msgstr "ミュート解除" diff --git a/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..1b0be46c00 --- /dev/null +++ b/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po @@ -0,0 +1,4517 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Korean (Korea)\n" +"Language: ko_KR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "년도 값은 %s 1753 - 9999 입니다" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s는 맞지 않는 날짜 입니다" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s는 맞지 않는 시간 입니다" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "스케쥴" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "계정" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "스트림" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "상태" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "방송 기록" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "청취자 통계" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "도움" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "초보자 가이드" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "사용자 메뉴얼" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "권한이 부족합니다" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "권한이 부족합니다" + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "소스를 끊을수 있는 권한이 부족합니다" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "연결된 소스가 없습니다" + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "소스를 바꿀수 있는 권한이 부족합니다" + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s를 찾을수 없습니다" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "알수없는 에러." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "프리뷰" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "재생 목록에 추가" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "스마트 블록에 추가" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "삭제" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "다운로드" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "중복된 플레이 리스트" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "액션 없음" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "%s의 사본" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "오디오 플레이어" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "녹음:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "마스터 스트림" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "라이브 스트림" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "스케쥴 없음" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "현재 쇼:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "현재" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "최신 버전입니다." + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "새 버젼이 있습니다" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "현제 플레이리스트에 추가" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "현제 스마트 블록에 추가" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "아이템 1개 추가" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "아이템 %s개 추가" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "스마트 블록에는 파일만 추가 가능합니다" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "타임 라인에서 커서를 먼져 선택 하여 주세요." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "추가" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "수정" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "제거" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "메타데이타 수정" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "선택된 쇼에 추가" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "선택" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "현재 페이지 선택" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "현재 페이지 선택 취소 " + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "모두 선택 취소" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "선택된 아이템들을 모두 지우시겠습니다?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "스케쥴됨" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "제목" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "제작자" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "앨범" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "비트 레이트" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "작곡가" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "지휘자" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "저작권" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "장르" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "레이블" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "언어" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "마지막 수정일" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "마지막 방송일" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "길이" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "무드" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "소유자" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "리플레이 게인" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "샘플 레이트" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "트랙 번호" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "업로드 날짜" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "웹싸이트" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "년도" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "로딩..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "전체" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "파일" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "재생 목록" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "스마트 블록" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "웹스트림" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "알수 없는 유형:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "선택된 아이템을 모두 삭제 하시겠습니까?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "업로딩중..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "서버에서 정보를 가져오는중..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "에러 코드: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "에러 메세지: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "이 값은 0보다 큰 숫자만 허용 됩니다" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "이 값은 숫자만 허용합니다" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "yyyy-mm-dd의 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "hh:mm:ss.t의 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "미디아 빌더 열기" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "'00:00:00 (.0)' 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "동적인 스마트 블록은 프리뷰 할수 없습니다" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "길이 제한: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "재생 목록이 저장 되었습니다" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "플레이 리스트가 셔플 되었습니다" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "%s의청취자 숫자 : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "1주후에 다시 알림" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "이 창을 다시 표시 하지 않음" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Airtime 도와주기" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 " + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "스마트 블록이 셔플 되었습니다" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "스마트 블록이 저장 되었습니다" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "진행중..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "모디파이어 선택" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "다음을 포합" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "다음을 포함하지 않는" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "다음과 같음" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "다음과 같지 않음" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "다음으로 시작" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "다음으로 끝남" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "다음 보다 큰" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "다음 보타 작은" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "다음 범위 안에 있는 " + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "생성" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "저장 폴더 선택" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "모니터 폴더 선택" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다." + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "미디어 폴더 관리" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "경로에 접근할수 없습니다" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "스트리밍 서버에 접속됨" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "스트림이 사용되지 않음" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "서버에서 정보를 받는중..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "스트리밍 서버에 접속 할수 없음" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "결과 없음" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "쇼에 지정된 사람들만 접속 할수 있습니다" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "쇼 인스턴스가 존재 하지 않습니다" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "주의: 쇼는 다시 링크 될수 없습니다" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "쇼" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "쇼가 비어 있습니다" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1분" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5분" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10분" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15분" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30분" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60분" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "서버로부터 데이타를 불러오는중..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "내용이 없는 쇼입니다" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "쇼가 완전히 채워지지 않았습니다" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "1월" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "2월" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "3월" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "4월" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "5월" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "6월" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "7월" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "8월" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "9월" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "10월" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "11월" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "12월" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "1월" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "2월" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "3월" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "4월" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "6월" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "7월" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "8월" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "9월" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "10월" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "11월" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "12월" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "일요일" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "월요일" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "화요일" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "수요일" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "목요일" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "금요일" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "토요일" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "일" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "월" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "화" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "수" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "목" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "금" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "토" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "현재 방송중인 쇼를 중단 하시겠습니까?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "현재 녹음 중인 쇼를 중단 하시겠습니까?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "확인" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "쇼 내용" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "모든 내용물 삭제하시겠습까?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "선택한 아이템을 삭제 하시겠습니까?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "시작" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "종료" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "길이" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "큐 인" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "큐 아웃" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "페이드 인" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "패이드 아웃" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "내용 없음" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "라인 인으로 부터 녹음" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "트랙 프리뷰" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "쇼 범위 밖에 스케쥴 할수 없습니다" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "아이템 1개 이동" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "아이템 %s개 이동" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "저장" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "취소" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "페이드 에디터" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "큐 에디터" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "전체 선택" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "전체 선택 취소" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "선택된 아이템 제거" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "현재 방송중인 트랙으로 가기" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "현재 쇼 취소" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "라이브러리 열기" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "내용 추가/제거" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "사용중" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "디스크" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "경로" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "열기" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "관리자" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "프로그램 매니저" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "손님" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "손님의 권한:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "스케쥴 보기" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "쇼 내용 보기" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ의 권한:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "할당된 쇼의 내용 관리" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "미디아 파일 추가" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "플레이 리스트, 스마트 블록, 웹스트림 생성" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "자신의 라이브러리 내용 관리" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "쇼 내용 보기및 관리" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "쇼 스케쥴 하기" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "모든 라이브러리 내용 관리" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "관리자의 권한:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "설정 관리" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "사용자 관리" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "모니터 폴터 관리" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "사용자 피드백을 보냄" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "이시스템 상황 보기" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "방송 기록 접근 권한" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "청취자 통계 보기" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "컬럼 보이기/숨기기" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr " {from}부터 {to}까지" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "일" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "월" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "화" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "수" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "목" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "금" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "토" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "닫기" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "시" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "분" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "확인" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "파일 선택" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "파일 추가" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "업로드 중지" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "업로드 시작" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "파일 추가" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d 파일이 업로드됨" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "파일을 여기로 드래그 앤 드랍 하세요" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "파일 확장자 에러." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "파일 크기 에러." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "파일 갯수 에러." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "초기화 에러." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP 에러." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "보안 에러." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "일반적인 에러." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO 에러." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "파일: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d개의 파일이 대기중" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "파일: %f, 크기: %s, 최대 파일 크기: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "업로드 URL이 맞지 않거나 존재 하지 않습니다" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "에러: 파일이 너무 큽니다:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "에러: 지원하지 않는 확장자:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s row %s를 클립보드로 복사 하였습니다" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "설명" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "사용" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "미사용" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요" + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요" + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "오래된 %s를 보고 있습니다" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "스마트 블록에는 트랙만 추가 가능합니다" + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "제목없는 재생목록" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "제목없는 스마트 블록" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "모르는 재생목록" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "설정이 업데이트 되었습니다" + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "스트림 설정이 업데이트 되었습니다" + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "경로를 입력해주세요" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoap 문제..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "%s의 재방송 %s부터 %s까지" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "커서 선택" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "커서 제거" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "쇼가 존재 하지 않음" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "사용자가 추가 되었습니다!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "사용자 정보가 업데이트 되었습니다!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "세팅이 성공적으로 업데이트 되었습니다!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "제목없는 웹스트림" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "웹스트림이 저장 되었습니다" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "잘못된 값입니다" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "허용되지 않는 문자입니다" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "날짜를 설정하세요" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "시간을 설정하세요" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "재방송 설정까지 1시간 기간이 필요합니다" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Custom 인증 사용" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Custom 아이디" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom 암호" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "아이디를 입력해주세요" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "암호를 입력해주세요" + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Line In으로 녹음" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "재방송?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "일" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "링크:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "반복 유형:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "주간" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "월간" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "날짜 선택" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "월중 날짜" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "주중 날짜" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "종료" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "무한 반복?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "종료 일이 시작일 보다 먼져 입니다." + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "배경 색:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "글자 색:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "이름:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "이름없는 쇼" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "장르:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "설명:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다." + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "길이:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "시간대:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "반복?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "쇼를 과거에 생성 할수 없습니다" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "종료 날짜/시간을 과거로 설정할수 없습니다" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "길이가 0m 보다 작을수 없습니다" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "쇼의 길이가 24h를 넘을수 없습니다" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "쇼를 중복되게 스케쥴할수 없습니다" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "사용자 검색:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ들:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "아이디: " + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "암호: " + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "암호 확인:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "이름:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "성:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "이메일" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "휴대전화:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "스카입:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "유저 타입" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "사용할수 없는 아이디 입니다" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "시작" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "제목:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "제작자:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "앨범:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "년도:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "상표:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "작곡가:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "지휘자" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "무드" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "저작권:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC 넘버" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "웹사이트" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "언어" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "방송국 이름" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "방송국 로고" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "기본 크로스페이드 길이(s)" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "기본 페이드 인(s)" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "기본 페이드 아웃(s)" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "주 시작일" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "로그인" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "암호" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "새 암호 확인" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "암호와 암호 확인 값이 일치 하지 않습니다." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "아이디" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "암호 초기화" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "방송중" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "내 쇼:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "기준 선택" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "비트 레이트(Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "샘플 레이트" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "시간" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "분" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "아이템" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "동적(Dynamic)" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "정적(Static)" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "재생 목록 내용 생성후 설정 저장" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "재생 목록 내용 셔플하기" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "셔플" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "길이 제한은 24h 보다 클수 없습니다" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "이 값은 정수(integer) 입니다" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "아이템 곗수의 최대값은 500 입니다" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "기준과 모디파이어를 골라주세요" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "길이는 00:00:00 형태로 입력하세요" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "이 값은 숫자만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "이 값은 비어둘수 없습니다" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "스트림 레이블" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "아티스트 - 제목" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "쇼 - 아티스트 - 제목" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "방송국 이름 - 쇼 이름" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "오프 에어 메타데이타" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "리플레이 게인 활성화" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "리플레이 게인 설정" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "사용:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "스트림 타입:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "비트 레이트:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "서비스 타입:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "채널:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "서버" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "포트" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "마운트 지점" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "이름" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "폴더 가져오기" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "모니터중인 폴더" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "옳치 않은 폴더 입니다" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "이 필드는 비워둘수 없습니다." + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'는 %max%글자 보다 길수 없습니다" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "암호가 맞지 않습니다" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "큐-인 과 큐 -아웃 이 null 입니다" + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "국가 선택" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "링크 쇼에서 아이템을 분리 할수 없습니다" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "녹화 쇼에는 파일을 추가 할수 없습니다" + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다" + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "쇼 %s 업데이트 되었습니다!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "선택하신 파일이 존재 하지 않습니다" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "쇼 길이는 24시간을 넘을수 없습니다." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"쇼를 중복되게 스케줄 할수 없습니다.\n" +"주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%s 재방송( %s에 시작) " + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "길이가 0분 보다 길어야 합니다" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 " + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL은 \"https://example.org\" 형태여야 합니다" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL은 512캐릭터 까지 허용합니다" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다" + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "웹스트림의 이름을 지정하십시오" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "XSPF 재생목록을 분석 할수 없습니다" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "PLS 재생목록을 분석 할수 없습니다" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "M3U 재생목록을 분석할수 없습니다" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다" + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "알수 없는 스트림 타입: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "녹음된 파일의 메타데이타 보기" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "쇼 수정" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "권한이 부족합니다" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "반복쇼는 드래그 앤 드롭 할수 없습니다" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "지난 쇼는 이동할수 없습니다" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "과거로 쇼를 이동할수 없습니다" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다" + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 " + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "방송됨" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr " 부터 " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s가 모니터 목록에 없습니다" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s는 이미 모니터 중입니다 " + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s는 옳은 경로가 아닙니다." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(체크 하기 위해선 '피드백 보내기'를 체크 하셔야 합니다)" + +#~ msgid "(Required)" +#~ msgstr "(*)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(방송국 웹사이트 주소)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - 모노" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - 스테레오" + +#~ msgid "About" +#~ msgstr "정보" + +#~ msgid "Add this show" +#~ msgstr "쇼 추가" + +#~ msgid "Additional Options" +#~ msgstr "추가 설정" + +#~ msgid "Admin Password" +#~ msgstr "관리자 암호" + +#~ msgid "Admin User" +#~ msgstr "관리자 아이디" + +#~ msgid "Advanced Search Options" +#~ msgstr "고급 검색 옵션" + +#~ msgid "Audio Track" +#~ msgstr "오디오 트랙" + +#~ msgid "Choose Days:" +#~ msgstr "날짜 선택" + +#~ msgid "Choose folder" +#~ msgstr "폴더 선택" + +#~ msgid "City:" +#~ msgstr "도시" + +#~ msgid "Clear" +#~ msgstr "지우기" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다" + +#~ msgid "Country:" +#~ msgstr "나라" + +#~ msgid "Cue In: " +#~ msgstr "큐 인:" + +#~ msgid "Cue Out: " +#~ msgstr "큐 아웃:" + +#~ msgid "Current Import Folder:" +#~ msgstr "현재 저장 폴더:" + +#~ msgid "Cursor" +#~ msgstr "커서" + +#~ msgid "Default Length:" +#~ msgstr "기본 길이:" + +#~ msgid "Default License:" +#~ msgstr "기본 라이센스:" + +#~ msgid "Disk Space" +#~ msgstr "디스크 공간" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "동적 스마트 블록" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "동적 스마트 블록 내용: " + +#~ msgid "Empty playlist content" +#~ msgstr "재생 목록 비우기" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "동적 블록 확장" + +#~ msgid "Expand Static Block" +#~ msgstr "정적 블록 확장" + +#~ msgid "Fade in: " +#~ msgstr "페이드 인: " + +#~ msgid "Fade out: " +#~ msgstr "페이드 아웃:" + +#~ msgid "File Path:" +#~ msgstr "파일 위치:" + +#~ msgid "File import in progress..." +#~ msgstr "파일 가져오기 진행중" + +#~ msgid "Filter History" +#~ msgstr "필터 히스토리" + +#~ msgid "Find Shows" +#~ msgstr "쇼 찾기" + +#~ msgid "First Name" +#~ msgstr "이름" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "더 자세한 정보는 %sAirtime Manual%s에서 찾으실수 있습니다" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis 메타데이타" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Airtime이 방화벽 뒤에 설치 되었다면, 포트 포워딩을 설정해야 할수도 있습니다. 이 경우엔 자동으로 생성된 이 정보가 틀릴수 있습니다. 수동적으로 이 필드를 수정하여 DJ들이 접속해야 하는서버/마운트/포트 등을 공지 하십시오. 포트 범위는 1024~49151 입니다." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC 넘버:" + +#~ msgid "Last Name" +#~ msgstr "성" + +#~ msgid "Length:" +#~ msgstr "길이:" + +#~ msgid "Limit to " +#~ msgstr "길이 제한 " + +#~ msgid "Listen" +#~ msgstr "듣기" + +#~ msgid "Live Stream Input" +#~ msgstr "라이브 스트림" + +#~ msgid "Live stream" +#~ msgstr "라이브 스트림" + +#~ msgid "Logout" +#~ msgstr "로그아웃" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "찾는 페이지가 존재 하지 않습니다!" + +#~ msgid "Manage Users" +#~ msgstr "사용자 관리" + +#~ msgid "Master Source" +#~ msgstr "마스터 소스" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" + +#~ msgid "New User" +#~ msgstr "새 사용자" + +#~ msgid "New password" +#~ msgstr "새 암호" + +#~ msgid "Next:" +#~ msgstr "다음:" + +#~ msgid "No open playlist" +#~ msgstr "열린 재생 목록 없음" + +#~ msgid "No webstream" +#~ msgstr "열린 웹스트림 없음" + +#~ msgid "OK" +#~ msgstr "확인" + +#~ msgid "ON AIR" +#~ msgstr "방송중" + +#~ msgid "Only numbers are allowed." +#~ msgstr "숫자만 허용 됩니다" + +#~ msgid "Original Length:" +#~ msgstr "오리지날 길이" + +#~ msgid "Page not found!" +#~ msgstr "페이지를 찾을수 없습니다!" + +#~ msgid "Phone:" +#~ msgstr "전화" + +#~ msgid "Play" +#~ msgstr "재생" + +#~ msgid "Playlist Contents: " +#~ msgstr "재생목록 내용" + +#~ msgid "Playlist crossfade" +#~ msgstr "재생 목록 크로스페이드" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "새 암호 확인" + +#~ msgid "Please upgrade to " +#~ msgstr "새 버전으로 업그래이드 " + +#~ msgid "Port cannot be empty." +#~ msgstr "포트를 지정해주세요" + +#~ msgid "Previous:" +#~ msgstr "이전:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "프로그램 매니저의 권한:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime 등록" + +#~ msgid "Remove watched directory" +#~ msgstr "모니터중인 폴더를 리스트에서 삭제" + +#~ msgid "Repeat Days:" +#~ msgstr "반복 날짜:" + +#~ msgid "Sample Rate:" +#~ msgstr "샘플 레이트:" + +#~ msgid "Save playlist" +#~ msgstr "재생 목록 저장" + +#~ msgid "Select stream:" +#~ msgstr "스트림 선택" + +#~ msgid "Server cannot be empty." +#~ msgstr "서버를 지정해주세요" + +#~ msgid "Set" +#~ msgstr "저장" + +#~ msgid "Set Cue Out" +#~ msgstr "큐 아웃 설정" + +#~ msgid "Share" +#~ msgstr "공유" + +#~ msgid "Show Source" +#~ msgstr "쇼 소스" + +#~ msgid "Show Waveform" +#~ msgstr "웨이브 폼 보기" + +#~ msgid "Show me what I am sending " +#~ msgstr "보내지는 데이타 보기" + +#~ msgid "Shuffle playlist" +#~ msgstr "재생 목록 셔플" + +#~ msgid "Source Streams" +#~ msgstr "소스 스트림" + +#~ msgid "Static Smart Block" +#~ msgstr "정적 스마트 블록" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "정적 스마트 블록 내용: " + +#~ msgid "Station Description:" +#~ msgstr "방송국 설명" + +#~ msgid "Station Web Site:" +#~ msgstr "방송국 웹사이트" + +#~ msgid "Stop" +#~ msgstr "정지" + +#~ msgid "Stream " +#~ msgstr "스트림 " + +#~ msgid "Stream Settings" +#~ msgstr "락스트림 설정" + +#~ msgid "Stream URL:" +#~ msgstr "스트림 URL:" + +#~ msgid "Stream URL: " +#~ msgstr "스트림 URL: " + +#~ msgid "Style" +#~ msgstr "스타일" + +#~ msgid "Support Feedback" +#~ msgstr "사용자 피드백" + +#~ msgid "Support setting updated." +#~ msgstr "지원 설정이 업데이트 되었습니다" + +#~ msgid "Terms and Conditions" +#~ msgstr "사용자 약관" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "블록 생성시 충분한 파일을 찾지 못하면, 블록 길이가 원하는 길이보다 짧아 질수 있습니다. 이 옵션을 선택하시면,Airtime이 트랙을 반복적으로 사용하여 길이를 채웁니다." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:" + +#~ msgid "This version is no longer supported." +#~ msgstr "지금 사용중인 버전은 더 이상 지원 되지 않습니다" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "지금 사용중인 버전은 조만간 지원 하지 않을것입니다" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요" + +#~ msgid "Track:" +#~ msgstr "트랙:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "밑에 보이는 그림에 나온 문자를 입력하세요" + +#~ msgid "Update Required" +#~ msgstr "업데이트가 필요함" + +#~ msgid "Update show" +#~ msgstr "쇼 업데이트" + +#~ msgid "User Type" +#~ msgstr "사용자 유형" + +#~ msgid "Web Stream" +#~ msgstr "웹스트림" + +#~ msgid "What" +#~ msgstr "무엇" + +#~ msgid "When" +#~ msgstr "언제" + +#~ msgid "Who" +#~ msgstr "누구" + +#~ msgid "You are not watching any media folders." +#~ msgstr "모니터중인 폴더가 없습니다" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "사용자 약관에 동의 하십시오" + +#~ msgid "Your trial expires in" +#~ msgstr " " + +#~ msgid "files meet the criteria" +#~ msgstr "개의 파일들" + +#~ msgid "id" +#~ msgstr "아이디" + +#~ msgid "max volume" +#~ msgstr "최대 음량 " + +#~ msgid "mute" +#~ msgstr "음소거" + +#~ msgid "next" +#~ msgstr "다음" + +#~ msgid "pause" +#~ msgstr "중지" + +#~ msgid "play" +#~ msgstr "재생" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "초단위 '00 (.0)'로 입력해주세요" + +#~ msgid "previous" +#~ msgstr "이전" + +#~ msgid "stop" +#~ msgstr "정지" + +#~ msgid "unmute" +#~ msgstr "음소거 해제" diff --git a/webapp/src/locale/po/locale.gen b/webapp/src/locale/po/locale.gen new file mode 100644 index 0000000000..8f214c08cb --- /dev/null +++ b/webapp/src/locale/po/locale.gen @@ -0,0 +1,21 @@ +cs_CZ.UTF-8 UTF-8 +de_AT.UTF-8 UTF-8 +de_DE.UTF-8 UTF-8 +el_GR.UTF-8 UTF-8 +en_CA.UTF-8 UTF-8 +en_GB.UTF-8 UTF-8 +en_US.UTF-8 UTF-8 +es_ES.UTF-8 UTF-8 +fr_FR.UTF-8 UTF-8 +hr_HR.UTF-8 UTF-8 +hu_HU.UTF-8 UTF-8 +it_IT.UTF-8 UTF-8 +ja_JP.UTF-8 UTF-8 +ko_KR.UTF-8 UTF-8 +pl_PL.UTF-8 UTF-8 +pt_BR.UTF-8 UTF-8 +ru_RU.UTF-8 UTF-8 +sr_RS.UTF-8 UTF-8 +sr_RS@latin.UTF-8 UTF-8 +uk_UA.UTF-8 UTF-8 +zh_CN.UTF-8 UTF-8 diff --git a/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po b/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..4e5e3f9da3 --- /dev/null +++ b/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po @@ -0,0 +1,4671 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# dave van den berg , 2015 +# terwey , 2014 +# terwey , 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2021-10-17 08:09+0000\n" +"Last-Translator: Kyle Robbertze \n" +"Language-Team: Dutch \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Het jaar %s moet binnen het bereik van 1753-9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s dit is geen geldige datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s Dit is geen geldige tijd" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Klik op de knop 'Nieuwe Show' en vul de vereiste velden." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n" +"%sCreate een niet-gekoppelde Toon nu%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calender" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "gebruikers" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "streams" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Playout geschiedenis" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Geschiedenis sjablonen" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "luister status" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Help" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Aan de slag" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Gebruikershandleiding" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "U bent niet toegestaan voor toegang tot deze bron." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "U bent niet toegestaan voor toegang tot deze bron." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Bestand bestaat niet in %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Slecht verzoek. 'mode' parameter is ongeldig" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Je hebt geen toestemming om te bron verbreken" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Er is geen bron die aangesloten op deze ingang." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Je hebt geen toestemming om over te schakelen van de bron." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "De gevraagde actie wordt niet ondersteund." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "U bent niet gemachtigd voor toegang tot deze bron." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Een interne toepassingsfout opgetreden." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s niet gevonden" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Er ging iets mis." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Voorbeeld" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Toevoegen aan afspeellijst" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Toevoegen aan slimme blok" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Verwijderen" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Dubbele afspeellijst" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Geen actie beschikbaar" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen" + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Kan bestand niet verwijderen omdat het in de toekomst is gepland." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Bestand(en) kan geen gegevens verwijderen." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopie van %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Opname" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Niets gepland" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Huidige Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Huidige" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "U werkt de meest recente versie" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nieuwe versie beschikbaar:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Toevoegen aan huidige afspeellijst" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Toevoegen aan huidigeslimme block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1 Item toevoegen" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "%s Items toe te voegen" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "U kunt alleen nummers naar slimme blokken toevoegen." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Selecteer een cursorpositie op de tijdlijn." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "U hebt de nummers nog niet toegevoegd" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "U heb niet alle afspeellijsten toegevoegd" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "U nog niet toegevoegd een slimme blokken" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "U hebt webstreams nog niet toegevoegd" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Informatie over nummers" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Meer informatie over afspeellijsten" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Informatie over slimme blokken" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Meer informatie over webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Klik op 'Nieuw' te maken." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "toevoegen" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Bewerken" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "verwijderen" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Metagegevens bewerken" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Toevoegen aan geselecteerde Toon" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Selecteer" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Selecteer deze pagina" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Hef de selectie van deze pagina" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Alle selecties opheffen" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Gepland" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "track" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Afspeellijsten" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Aangemaakt door" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Componist" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright:" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encoded Bij" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Taal" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Laatst Gewijzigd" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Laatst gespeeld" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Lengte" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Eigenaar" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Herhalen Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Track nummer" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website:" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Jaar" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Bezig met laden..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Bestanden" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Afspeellijsten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "slimme blokken" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Onbekend type" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Wilt u de geselecteerde gegevens werkelijk verwijderen?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploaden in vooruitgang..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Gegevens op te halen van de server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Weergeven" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "foutcode" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Fout msg:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Invoer moet een positief getal" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Invoer moet een getal" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Invoer moet worden in de indeling: jjjj-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Invoer moet worden in het formaat: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media opbouw" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Gelieve te zetten in een tijd '00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamische blok is niet previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Beperk tot:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Afspeellijst opgeslagen" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Afspeellijst geschud" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Luisteraar rekenen op %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Stuur me een herinnering in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Herinner me nooit" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ja, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Afbeelding moet een van jpg, jpeg, png of gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "slimme blok geschud" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "slimme blok gegenereerd en opgeslagen criteria" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart blok opgeslagen" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Wordt verwerkt..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Selecteer modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "bevat" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "bevat niet" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "is niet gelijk aan" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "Begint met" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "Eindigt op" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "is groter dan" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "is minder dan" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "in het gebied" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Genereren" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Kies opslagmap" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Kies map voor bewaken" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Weet u zeker dat u wilt wijzigen de opslagmap?\n" +"Hiermee verwijdert u de bestanden uit uw Airtime bibliotheek!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Mediamappen beheren" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Dit pad is momenteel niet toegankelijk." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Aangesloten op de streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "De stream is uitgeschakeld" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Het verkrijgen van informatie van de server ..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Kan geen verbinding maken met de streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Geen resultaat gevonden" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Geef aangepaste verificatie die alleen voor deze show werken zal." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "De Toon-exemplaar bestaat niet meer!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Waarschuwing: Shows kunnen niet opnieuw gekoppelde" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show Is leeg" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retreiving gegevens van de server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Deze show heeft geen geplande inhoud." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Deze show is niet volledig gevuld met inhoud." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Januari" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Februari" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "maart" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "april" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "mei" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "juni" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "juli" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "augustus" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "september" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "oktober" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "november" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "december" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "maa" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "okt" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "vandaag" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "dag" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "week" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "maand" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "zondag" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "maandag" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "dinsdag" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "woensdag" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "donderdag" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "vrijdag" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "zaterdag" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "zon" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "ma" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "di" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "wo" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "do" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "vrij" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "zat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Annuleer Huidige Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop de opname huidige show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "oke" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Inhoud van Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Alle inhoud verwijderen?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "verwijderd geselecteerd object(en)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "einde" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duur" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filteren op" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "of" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "records" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Infaden" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "uitfaden" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show leeg" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Opname van de Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track Voorbeeld" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Niet gepland buiten een show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "1 Item verplaatsen" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "%s Items verplaatsen" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "opslaan" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "anuleren" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Bewerken" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Bewerken" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Selecteer alles" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Niets selecteren" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Trim overboekte shows" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Geselecteerde geplande items verwijderen" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump naar de huidige playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Annuleren van de huidige show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open bibliotheek toevoegen of verwijderen van inhoud" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Toevoegen / verwijderen van inhoud" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In gebruik" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "hardeschijf" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Zoeken in:" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programmabeheer" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "gast" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gasten kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Schema weergeven" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Weergave show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ's kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Toegewezen Toon inhoud beheren" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Mediabestanden importeren" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Maak afspeellijsten, slimme blokken en webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "De inhoud van hun eigen bibliotheek beheren" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Bekijken en beheren van inhoud weergeven" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schema shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Alle inhoud van de bibliotheek beheren" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Beheerders kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Voorkeuren beheren" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Gebruikers beheren" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Bewaakte mappen beheren" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Ondersteuning feedback verzenden" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Bekijk systeem status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Toegang playout geschiedenis" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Weergave luisteraar status" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Geef weer / verberg kolommen" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Van {from} tot {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "jjjj-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Zo" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Ma" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Di" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Wo" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Do" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Vr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Za" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Sluiten" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Uur" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuut" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Klaar" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Selecteer bestanden" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Bestanden toevoegen" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Begin upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Bestanden toevoegen" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Geüploade %d/%d bestanden" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/B" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Sleep bestanden hierheen." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Bestandsextensie fout" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Bestandsgrote fout." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Graaf bestandsfout." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init fout." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP fout." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Beveiligingsfout." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Generieke fout." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO fout." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Bestand: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d bestanden in de wachtrij" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, grootte: %s, max bestandsgrootte: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Fout: Bestand is te groot" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Fout: Niet toegestane bestandsextensie " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Standaard instellen" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Aangemaakt op:" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Geschiedenis Record bewerken" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "geen show" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Rij gekopieerde %s %s naar het Klembord" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Nieuw Show" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Nieuwe logboekvermelding" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Beschrijving" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Ingeschakeld" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Voer uw gebruikersnaam en wachtwoord." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "U bekijkt een oudere versie van %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "U kunt nummers toevoegen aan dynamische blokken." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "U kunt alleen nummers toevoegen aan smart blok." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Naamloze afspeellijst" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Naamloze slimme block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Onbekende afspeellijst" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Voorkeuren bijgewerkt." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Stream vaststelling van bijgewerkte." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "pad moet worden opgegeven" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Probleem met Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Verzoek methode niet geaccepteerd" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast van show %s van %s in %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Selecteer cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Cursor verwijderen" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "show bestaat niet" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "gebruiker Succesvol Toegevoegd" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "gebruiker Succesvol bijgewerkt" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Instellingen met succes bijgewerkt!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Naamloze Webstream" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Webstream opgeslagen." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Ongeldige formulierwaarden." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Ongeldig teken ingevoerd" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dag moet worden opgegeven" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Tijd moet worden opgegeven" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "verificatie %s gebruiken:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Gebruik aangepaste verificatie:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Aangepaste gebruikersnaam" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Aangepaste wachtwoord" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Veld Gebruikersnaam mag niet leeg." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "veld wachtwoord mag niet leeg." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Opnemen vanaf de lijn In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dagen" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "link" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Herhaal Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "wekelijks" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "elke 2 weken" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "elke 3 weken" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "elke 4 weken" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "per maand" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Selecteer dagen:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Herhaal door:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dag van de maand" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Dag van de week" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "datum einde" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Geen einde?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Einddatum moet worden na begindatum ligt" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Selecteer een Herhaal dag" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "achtergrond kleur" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "tekst kleur" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "naam" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Zonder titel show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Omschrijving:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Looptijd:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "tijdzone:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "herhaalt?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "kan niet aanmaken show in het verleden weergeven" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Eind datum/tijd mogen niet in het verleden" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Geen duur hebben < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Kan niet hebben duur 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Duur groter is dan 24h kan niet hebben" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "kan Niet gepland overlappen shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "zoek gebruikers" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "gebuikersnaam" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "wachtwoord" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Wachtwoord verifiëren:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "voornaam" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "achternaam" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "e-mail" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "mobiel nummer" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "skype" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Gebruiker Type :" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login naam is niet uniek." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "datum start" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Aangemaakt door" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Jaar" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "label" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "schrijver van een muziekwerk" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC nummer:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Taal:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Begintijd" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Eindtijd" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface tijdzone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "station naam" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Standaardduur Crossfade (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "standaard fade in (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "standaard fade uit (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "station tijdzone" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Week start aan" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Inloggen" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "wachtwoord" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Bevestig nieuw wachtwoord" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "gebuikersnaam" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset wachtwoord" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Nu spelen" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "al mij shows" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Selecteer criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Uren" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "artikelen" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "status" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Shuffle afspeellijst inhoud" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limiet mag niet meer dan 24 uur" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "De waarde moet een geheel getal" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is de grenswaarde max object die kunt u instellen" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "U moet Criteria en Modifier selecteren" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Lengte' moet in ' 00:00:00 ' formaat" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "De waarde moet worden numerieke" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "De waarde moet minder dan 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "De waarde moet kleiner zijn dan %s tekens" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Waarde kan niet leeg" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artiest - Titel" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Artiest - titel" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Station naam - Show naam" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Inschakelen Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Ingeschakeld" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "kanalen:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "poort" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Aankoppelpunt" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "naam" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "mappen importeren" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Gecontroleerde mappen:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Niet een geldige map" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Waarde is vereist en mag niet leeg zijn" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' past niet in de datumnotatie '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is minder dan %min% tekens lang" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is meer dan %max% karakters lang" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen." + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s wachtwoord Reset" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Het Cue in en cue uit null zijn." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Niet instellen cue in groter dan cue uit." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Niet instellen cue uit op kleiner zijn dan het cue in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Selecteer land" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Items uit gekoppelde toont kan niet verplaatsen" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Het schema dat u aan het bekijken bent is verouderd!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "U zijn niet toegestaan om te plannen show %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "U kunt bestanden toevoegen aan het opnemen van programma's." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "De show %s is voorbij en kan niet worden gepland." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "De show %s heeft al eerder zijn bijgewerkt!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Een geselecteerd bestand bestaat niet!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Shows kunnen hebben een maximale lengte van 24 uur." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Niet gepland overlappende shows.\n" +"Opmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast van %s van %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Lengte moet groter zijn dan 0 minuten" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL should be of form \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL moet 512 tekens of minder" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Geen MIME-type gevonden voor webstream." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Webstream naam mag niet leeg zijn" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Kon niet ontleden PLS afspeellijst" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Kon niet ontleden M3U playlist" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Niet herkende type stream: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record bestand bestaat niet" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Weergave opgenomen bestand Metadata" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Schema Tracks" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Wissen show" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Annuleren show" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Aanleg bewerken" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Bewerken van Show" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Exemplaar verwijderen" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Exemplaar verwijderen en alle volgende" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Toestemming geweigerd" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Kan niet slepen en neerzetten herhalende shows" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Een verleden Show verplaatsen niet" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Niet verplaatsen show in verleden" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moet wachten 1 uur opnieuw uitzenden.." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "track" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Gespeeld" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "tot" + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station." + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s bevat geneste gevolgde directory: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s bestaat niet in de lijst met gevolgde." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s is al bekeken." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s is niet een geldige directory." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)." + +#~ msgid "(Required)" +#~ msgstr "(Vereist)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Uw radio station website)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1- Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Over" + +#~ msgid "Add New Field" +#~ msgstr "Nieuw veld toevoegen" + +#~ msgid "Add more elements" +#~ msgstr "Meer elementen toevoegen" + +#~ msgid "Add this show" +#~ msgstr "Deze show toevoegen" + +#~ msgid "Additional Options" +#~ msgstr "Extra opties" + +#~ msgid "Admin Password" +#~ msgstr "admin wachtwoord " + +#~ msgid "Admin User" +#~ msgstr "admin gebuiker " + +#~ msgid "Advanced Search Options" +#~ msgstr "Geadvanceerde zoek opties" + +#~ msgid "All rights are reserved" +#~ msgstr "Alle rechten voorbehouden" + +#~ msgid "Audio Track" +#~ msgstr "Audiotrack" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" + +#~ msgid "Choose Days:" +#~ msgstr "Kies dagen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Kies show exemplaar" + +#~ msgid "Choose folder" +#~ msgstr "Kies map" + +#~ msgid "City:" +#~ msgstr "plaats" + +#~ msgid "Clear" +#~ msgstr "Wissen" + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Klik in het vak hieronder om uw station op %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden" + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Bestand samenvatting sjabloon maken" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Log werkbladsjabloon maken" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creatief Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Naamsvermelding geen afgeleide werken" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Naamsvermelding Gelijk delen" + +#~ msgid "Cue In: " +#~ msgstr "Cue In:" + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Huidige Import map:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default Length:" +#~ msgstr "Standaard lengte:" + +#~ msgid "Default License:" +#~ msgstr "Standaard licentie:" + +#~ msgid "Disk Space" +#~ msgstr "Hardeschijf ruimte" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamische slimme blok" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische slimme blok Criteria:" + +#~ msgid "Empty playlist content" +#~ msgstr "Lege afspeellijst inhoud" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamische blok uitbreiden" + +#~ msgid "Expand Static Block" +#~ msgstr "Statisch blok uitbreiden" + +#~ msgid "Fade in: " +#~ msgstr "Fade in:" + +#~ msgid "Fade out: " +#~ msgstr "Fade out:" + +#~ msgid "File Path:" +#~ msgstr "Bestandspad:" + +#~ msgid "File Summary" +#~ msgstr "Bestand samenvatting" + +#~ msgid "File Summary Templates" +#~ msgstr "Bestand samenvatting sjablonen" + +#~ msgid "File import in progress..." +#~ msgstr "Bestand importeren in vooruitgang..." + +#~ msgid "Filter History" +#~ msgstr "Filter geschiedenis" + +#~ msgid "Find" +#~ msgstr "Zoeken" + +#~ msgid "Find Shows" +#~ msgstr "zoek Shows" + +#~ msgid "First Name" +#~ msgstr "Voornaam" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Voor meer informatie, lees de %sAirtime handleiding%s" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Als Airtime zich achter een router of firewall, u wellicht configureren poort forwarding en deze informatie zal worden onjuist. In dit geval zal u wilt dit veld handmatig worden bijgewerkt zodat het toont de juiste host/poort/mount die uw DJ wilt verbinden. Het toegestane bereik is tussen 1024 en 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC nummer:" + +#~ msgid "Last Name" +#~ msgstr "Achternaam" + +#~ msgid "Length:" +#~ msgstr "Lengte:" + +#~ msgid "Limit to " +#~ msgstr "Beperken tot" + +#~ msgid "Listen" +#~ msgstr "Luister" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log blad" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log blad sjablonen" + +#~ msgid "Logout" +#~ msgstr "loguit" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!" + +#~ msgid "Manage Users" +#~ msgstr "Gebruikers beheren" + +#~ msgid "Master Source" +#~ msgstr "Master bron" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Mount kan niet leeg zijn met Icecast server" + +#~ msgid "New File Summary Template" +#~ msgstr "Nieuwe bestand samenvatting sjabloon" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nieuwe Log werkbladsjabloon" + +#~ msgid "New User" +#~ msgstr "Nieuwe gebruiker" + +#~ msgid "New password" +#~ msgstr "Nieuw wachtwoord" + +#~ msgid "Next:" +#~ msgstr "Volgende:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Geen bestand samenvatting sjablonen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Geen Log blad sjablonen" + +#~ msgid "No open playlist" +#~ msgstr "Geen open afspeellijst" + +#~ msgid "No webstream" +#~ msgstr "Geen webstream" + +#~ msgid "OK" +#~ msgstr "Oke" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Alleen cijfers zijn toegestaan." + +#~ msgid "Original Length:" +#~ msgstr "Oorspronkelijke lengte:" + +#~ msgid "Page not found!" +#~ msgstr "Pagina niet gevonden!" + +#~ msgid "Phone:" +#~ msgstr "Telefoon" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Inhoud van de afspeellijst:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Afspeellijst crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder." + +#~ msgid "Please upgrade to " +#~ msgstr "Gelieve te upgraden naar" + +#~ msgid "Port cannot be empty." +#~ msgstr "poort kan niet leeg zijn" + +#~ msgid "Previous:" +#~ msgstr "Vorige:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programa Managers kunnen het volgende doen:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promoot mijn station aan %s" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime registreren" + +#~ msgid "Remove track" +#~ msgstr "Nummer verwijderen" + +#~ msgid "Remove watched directory" +#~ msgstr "gecontroleerde map verwijderen" + +#~ msgid "Repeat Days:" +#~ msgstr "Herhaal dagen:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Afspeellijst opslaan" + +#~ msgid "Select stream:" +#~ msgstr "Selecteer stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server kan niet leeg zijn" + +#~ msgid "Set" +#~ msgstr "Instellen" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Standaardsjabloon" + +#~ msgid "Share" +#~ msgstr "Deel" + +#~ msgid "Show Source" +#~ msgstr "Bron weergeven" + +#~ msgid "Show Summary" +#~ msgstr "Samenvatting weergeven" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Toon mij wat ik ben verzenden" + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle afspeellijst" + +#~ msgid "Source Streams" +#~ msgstr "Bron Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Statisch slimme blok" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statisch slimme blok inhoud:" + +#~ msgid "Station Description:" +#~ msgstr "Beschrijving van het station:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Instellingen voor stream" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Stijl" + +#~ msgid "Support Feedback" +#~ msgstr "Ondersteuning Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Instelling bijgewerkt ondersteunt." + +#~ msgid "Terms and Conditions" +#~ msgstr "Algemene voorwaarden" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "De lengte van het gewenste blok zal niet worden bereikt als Airtime niet kunt vinden genoeg unieke nummers aan uw criteria voldoen. Schakel deze optie in als u wilt toestaan tracks meerdere keren worden toegevoegd aan het slimme blok." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler" + +#~ msgid "The work is in the public domain" +#~ msgstr "Het werk bestaat uit het publieke domein" + +#~ msgid "This version is no longer supported." +#~ msgstr "Deze versie wordt niet langer ondersteund." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Deze versie zal binnenkort verouderd." + +#~ msgid "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" +#~ " 2. Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ " Configureren en de integreerbare speler u moet gebruiken:

1. Inschakelen ten minste één MP3, AAC en OGG stream onder systeem->Streams
\n" +#~ "2. De openbare LibreTime API inschakelen onder systeem->voorkeuren" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s." + +#~ msgid "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ "De integreerbare per schema widget u moet gebruiken:

\n" +#~ "de openbare LibreTime API inschakelen onder systeem->voorkeuren" + +#~ msgid "Track:" +#~ msgstr "track" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Typ de tekens die u ziet in de afbeelding hieronder." + +#~ msgid "Update Required" +#~ msgstr "Update vereist" + +#~ msgid "Update show" +#~ msgstr "Bijwerken van show" + +#~ msgid "Upload track" +#~ msgstr "Uploaden van track" + +#~ msgid "User Type" +#~ msgstr "Gebruikerstype" + +#~ msgid "View track" +#~ msgstr "Weergave track" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Welkom tot %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'." + +#~ msgid "What" +#~ msgstr "Wat" + +#~ msgid "When" +#~ msgstr "Wanneer" + +#~ msgid "Who" +#~ msgstr "Wie" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Niet bekijkt u alle Mediamappen." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Je moet eens met privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Uw proefperiode verloopt in" + +#~ msgid "and" +#~ msgstr "en" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "bestanden voldoen aan de criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "Max volume" + +#~ msgid "mute" +#~ msgstr "dempen" + +#~ msgid "next" +#~ msgstr "volgende" + +#~ msgid "or" +#~ msgstr "of" + +#~ msgid "pause" +#~ msgstr "pauze" + +#~ msgid "play" +#~ msgstr "spelen" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "Gelieve te zetten in een tijd in seconden '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "vorige" + +#~ msgid "stop" +#~ msgstr "Stop" + +#~ msgid "unmute" +#~ msgstr "microfoon" diff --git a/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po b/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..d09e3d9ca9 --- /dev/null +++ b/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po @@ -0,0 +1,4529 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# thedead4fun , 2015 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Polish (Poland)\n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Rok %s musi być w przedziale od 1753 do 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nie jest poprawną datą" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nie jest prawidłowym czasem" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalendarz" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Użytkownicy" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Strumienie" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Historia odtwarzania" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Statystyki słuchaczy" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Pomoc" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Jak zacząć" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Instrukcja użytkowania" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Nie masz dostępu do tej lokalizacji" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Nie masz dostępu do tej lokalizacji." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Złe zapytanie. Nie zaakceprtowano parametru 'mode'" + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Złe zapytanie. Parametr 'mode' jest nieprawidłowy" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Nie masz uprawnień do odłączenia żródła" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Źródło nie jest podłączone do tego wyjścia." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Nie masz uprawnień do przełączenia źródła." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "nie znaleziono %s" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Wystapił błąd" + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Podgląd" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Dodaj do listy odtwarzania" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Dodaj do smartblocku" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Usuń" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Pobierz" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Skopiuj listę odtwarzania" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Brak dostepnych czynności" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Nie masz uprawnień do usunięcia wybranych elementów" + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopia %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Odtwrzacz " + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Nagrywanie:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Strumień Nadrzędny" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Transmisja na żywo" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nic nie zaplanowano" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Aktualna audycja:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Aktualny" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Używasz najnowszej wersji" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Dostępna jest nowa wersja:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Dodaj do bieżącej listy odtwarzania" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Dodaj do bieżącego smart blocku" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Dodawanie 1 elementu" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Dodawanie %s elementów" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "do smart blocków mozna dodawać tylko utwory." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Proszę wybrać pozycję kursora na osi czasu." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Edytuj" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Usuń" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edytuj Metadane." + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Dodaj do wybranej audycji" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Zaznacz" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Zaznacz tę stronę" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Odznacz tę stronę" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Odznacz wszystko" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Czy na pewno chcesz usunąć wybrane elementy?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Tytuł" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Twórca" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Kompozytor" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dyrygent/Pod batutą" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Prawa autorskie" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Kodowane przez" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Gatunek" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Wydawnictwo" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Język" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Ostatnio zmodyfikowany" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Ostatnio odtwarzany" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Długość" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Podobne do" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Nastrój" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Właściciel" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Normalizacja głośności (Replay Gain)" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Wartość próbkowania" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Numer utworu" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Przesłano" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Strona internetowa" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Rok" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Ładowanie" + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Wszystko" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Pliki" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listy odtwarzania" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocki" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Stream" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Nieznany typ:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Czy na pewno chcesz usunąć wybrany element?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Wysyłanie w toku..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Pobieranie danych z serwera..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Kod błędu:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Komunikat błędu:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Podana wartość musi być liczbą dodatnią" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Podana wartość musi być liczbą" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Podana wartość musi mieć format yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Podana wartość musi mieć format hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Wprowadź czas w formacie: '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Podgląd bloku dynamicznego nie jest możliwy" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Ograniczenie do:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Lista odtwarzania została zapisana" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlista została przemieszana" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\"." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Licznik słuchaczy na %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Przypomnij mi za 1 tydzień" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Nie przypominaj nigdy" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Tak, wspieraj Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Obraz musi mieć format jpg, jpeg, png lub gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart blocku został przemieszany" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Utworzono smartblock i zapisano kryteria" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block został zapisany" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Przetwarzanie..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Wybierz modyfikator" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "zawiera" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "nie zawiera" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "to" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "to nie" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "zaczyna się od" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "kończy się" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "jest większa niż" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "jest mniejsza niż" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "mieści się w zakresie" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Utwórz" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Wybierz ścieżkę do katalogu importu" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Wybierz katalog do obserwacji" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Czy na pewno chcesz zamienić ścieżkę do katalogu importu\n" +"Wszystkie pliki z biblioteki Airtime zostaną usunięte." + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Zarządzaj folderami mediów" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ściezka jest obecnie niedostepna." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Połączono z serwerem streamingu" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Strumień jest odłączony" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Pobieranie informacji z serwera..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Nie można połączyć z serwerem streamującym" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nie znaleziono wyników" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Ustal własne uwierzytelnienie tylko dla tej audycji." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Instancja audycji już nie istnieje." + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Audycja" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Audycja jest pusta" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1 min" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5 min" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10 min" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15 min" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30 min" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60 min" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Odbieranie danych z serwera" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Ta audycja nie ma zawartości" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Brak pełnej zawartości tej audycji." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Styczeń" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Luty" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Marzec" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Kwiecień" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Maj" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Czerwiec" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Lipiec" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Sierpień" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Wrzesień" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Październik" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Listopad" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Grudzień" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Sty" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Lut" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Kwi" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Cze" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Lip" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Sie" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Wrz" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Paź" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Lis" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Gru" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Niedziela" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Poniedziałek" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Wtorek" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Środa" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Czwartek" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Piątek" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Sobota" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Nie" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Pon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Wt" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Śr" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Czw" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Pt" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sob" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne ." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Skasować obecną audycję?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Przerwać nagrywanie aktualnej audycji?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Zawartośc audycji" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Usunąć całą zawartość?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Skasować wybrane elementy?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Rozpocznij" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Zakończ" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Czas trwania" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Zgłaśnianie [Fade In]" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Wyciszanie [Fade out]" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Audycja jest pusta" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Nagrywaanie z wejścia liniowego" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Podgląd utworu" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Nie ma możliwości planowania poza audycją." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Przenoszenie 1 elementu" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Przenoszenie %s elementów" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Zapisz" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Anuluj" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Zaznacz wszystko" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Odznacz wszystkie" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Usuń wybrane elementy" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Przejdź do obecnie odtwarzanej ściezki" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Skasuj obecną audycję" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Dodaj/usuń zawartość" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "W użyciu" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Dysk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Sprawdź" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Otwórz" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrator" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "Prowadzący" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Menedżer programowy" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Gość" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Goście mają mozliwość:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Przeglądanie harmonogramu" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Przeglądanie zawartości audycji" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Prowadzący ma możliwość:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Zarządzać przypisaną sobie zawartością audycji" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Importować pliki mediów" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Tworzyć playlisty, smart blocki i webstreamy" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Zarządzać zawartością własnej biblioteki" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Przeglądać i zarządzać zawartością audycji" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Planować audycję" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Zarządzać całą zawartością biblioteki" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Administrator ma mozliwość:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Zarządzać preferencjami" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Zarządzać użytkownikami" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Zarządzać przeglądanymi katalogami" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Wyślij informację zwrotną" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Sprawdzać status systemu" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Przeglądać historię odtworzeń" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Sprawdzać statystyki słuchaczy" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Pokaż/ukryj kolumny" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Od {from} do {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Nd" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Pn" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Wt" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Śr" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Cz" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Pt" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "So" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Zamknij" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Godzina" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuta" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Gotowe" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Wybierz pliki" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Dodaj pliki do kolejki i wciśnij \"start\"" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Dodaj pliki" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Zatrzymaj przesyłanie" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Rozpocznij przesyłanie" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Dodaj pliki" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Dodano pliki %d%d" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "Nie dotyczy" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Przeciągnij pliki tutaj." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Błąd rozszerzenia pliku." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Błąd rozmiaru pliku." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Błąd liczenia plików" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Błąd inicjalizacji" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Błąd HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Błąd zabezpieczeń." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Błąd ogólny." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Błąd I/O" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Plik: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d plików oczekujących" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "URL nie istnieje bądź jest niewłaściwy" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Błąd: plik jest za duży:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Błąd: nieprawidłowe rozszerzenie pliku:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Skopiowano %srow%s do schowka" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Włączone" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Wyłączone" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Przeglądasz starszą wersję %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Nie można dodać ścieżek do bloków dynamicznych" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)" + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Utwory mogą być dodane tylko do smartblocku" + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Lista odtwarzania bez tytułu" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Smartblock bez tytułu" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Nieznana playlista" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Zaktualizowano preferencje." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Zaktualizowano ustawienia strumienia" + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "należy okreslić ścieżkę" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem z Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Retransmisja audycji %s z %s o %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Wybierz kursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Usuń kursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "audycja nie istnieje" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Użytkownik został dodany poprawnie!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Użytkownik został poprawnie zaktualizowany!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Ustawienia zostały poprawnie zaktualizowane!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Webstream bez nazwy" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Zapisano webstream" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Nieprawidłowe wartości formularzy" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Wprowadzony znak jest nieprawidłowy" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Należy określić dzień" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Należy określić czas" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Zastosuj własne uwierzytelnienie:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Nazwa użytkownika" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Hasło" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Pole nazwy użytkownika nie może być puste." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Pole hasła nie może być puste." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Nagrywać z wejścia liniowego?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Odtwarzać ponownie?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dni" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Typ powtarzania:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "tygodniowo" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "miesięcznie" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Wybierz dni:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data zakończenia:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Bez czasu końcowego?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Data końcowa musi występować po dacie początkowej" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Kolor tła:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Kolor tekstu:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nazwa:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Audycja bez nazwy" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "Adres URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Rodzaj:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "%value% nie odpowiada formatowi 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Czas trwania:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Strefa czasowa:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Powtarzanie?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Nie można utworzyć audycji w przeszłości" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Data lub czas zakończenia nie może być z przeszłości." + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Czas trwania nie może być mniejszy niż 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Czas trwania nie może wynosić 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Czas trwania nie może być dłuższy niż 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Nie można planować nakładających się audycji" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Szukaj Użytkowników:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Prowadzący:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Nazwa użytkownika:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Hasło:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Potwierdź hasło:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Imię:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Nazwisko:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Typ użytkownika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Nazwa użytkownika musi być unikalna." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data rozpoczęcia:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Tytuł:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Autor:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Rok:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Wydawnictwo:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Kompozytor:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dyrygent/Pod batutą:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Nastrój:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Prawa autorskie:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numer ISRC:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Strona internetowa:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Język:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nazwa stacji" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo stacji:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Tydzień zaczynaj od" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Zaloguj" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Hasło" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Potwierdź nowe hasło" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Hasła muszą się zgadzać." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Nazwa użytkownika" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj hasło" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Aktualnie odtwarzane" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Wszystkie moje audycje:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Wybierz kryteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Częstotliwość próbkowania (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "godzin(y)" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minut(y)" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elementy" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamiczny" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statyczny" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Losowa kolejność odtwarzania" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Przemieszaj" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nie może być pusty oraz mniejszy od 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nie może być większy niż 24 godziny" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Wartość powinna być liczbą całkowitą" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Maksymalna liczba elementów do ustawienia to 500" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Należy wybrać kryteria i modyfikator" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Wartość musi być liczbą" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Wartość powinna być mniejsza niż 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Wartość powinna posiadać mniej niż %s znaków" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Wartość nie może być pusta" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Nazwa strumienia:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artysta - Tytuł" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Audycja - Artysta -Tytuł" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Nazwa stacji - Nazwa audycji" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Metadane Off Air" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Włącz normalizację głośności (Replay Gain)" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Modyfikator normalizacji głośności" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Włączony:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Typ strumienia:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Typ usługi:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanały:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Serwer" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Punkt montowania" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Nazwa" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "adres URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Katalog importu:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Katalogi obserwowane:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Nieprawidłowy katalog" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Pole jest wymagane i nie może być puste" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nie pasuje do formatu daty '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' zawiera mniej niż %min% znaków" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' zawiera więcej niż %max% znaków" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Hasła muszą się zgadzać" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue-in i cue-out mają wartość zerową." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Wartość cue-out nie może być większa niż długość pliku." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Wartość cue-in nie może być większa niż cue-out." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Wartość cue-out nie może być mniejsza od cue-in." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Wybierz kraj" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Harmonogram, który przeglądasz jest nieaktualny!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Nie można dodawać plików do nagrywanych audycji." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Audycja %s została zaktualizowana wcześniej!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Wybrany plik nie istnieje!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Audycje mogą mieć maksymalną długość 24 godzin." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Nie można planować audycji nakładających się na siebie.\n" +"Uwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmisja z %s do %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Długość musi być większa niż 0 minut" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Długość powinna mieć postać \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL powinien mieć postać \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL powinien mieć 512 znaków lub mniej" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Nie znaleziono typu MIME dla webstreamu" + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Nazwa webstreamu nie może być pusta" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Nie można przeanalizować playlisty XSPF" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Nie można przeanalizować playlisty PLS" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Nie można przeanalizować playlisty M3U" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nie rozpoznano typu strumienia: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Przeglądaj metadane nagrania" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Edytuj audycję" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji." + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Nie można przenieść audycji archiwalnej" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Nie można przenieść audycji w przeszłość" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Odtwarzane" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "do" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s nie występuje na liście katalogów obserwowanych." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s jest już obserwowny." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s nie jest poprawnym katalogiem." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")" + +#~ msgid "(Required)" +#~ msgstr "(Wymagane)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Strona internetowa Twojej stacji)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "Informacje" + +#~ msgid "Add this show" +#~ msgstr "Dodaj audycję" + +#~ msgid "Additional Options" +#~ msgstr "Opcje dodatkowe" + +#~ msgid "Admin Password" +#~ msgstr "Hasło Administratora" + +#~ msgid "Admin User" +#~ msgstr "Login Administratora" + +#~ msgid "Advanced Search Options" +#~ msgstr "Zaawansowane opcje wyszukiwania" + +#~ msgid "All rights are reserved" +#~ msgstr "Wszelkie prawa zastrzeżone" + +#~ msgid "Audio Track" +#~ msgstr "Ścieżka audio" + +#~ msgid "Choose Days:" +#~ msgstr "Wybierz dni:" + +#~ msgid "Choose folder" +#~ msgstr "Wybierz folder" + +#~ msgid "City:" +#~ msgstr "Miasto:" + +#~ msgid "Country:" +#~ msgstr "Kraj:" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Uznanie autorstwa wg licencji Creative Commons " + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Użycie niekomercyjne wg Creative Commons " + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " + +#~ msgid "Cue In: " +#~ msgstr "Zgłaśnianie [Cue in]:" + +#~ msgid "Cue Out: " +#~ msgstr "Wyciszanie [Cue out]:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualny folder importu:" + +#~ msgid "Default Length:" +#~ msgstr "Domyślna długość:" + +#~ msgid "Default License:" +#~ msgstr "Domyślna licencja:" + +#~ msgid "Disk Space" +#~ msgstr "Miejsce na dysku " + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Smart block dynamiczny" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Kryteria dynamicznego Smart Blocku " + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Zwiększ blok dynamiczny" + +#~ msgid "Expand Static Block" +#~ msgstr "Zwiększ bok statyczny" + +#~ msgid "Fade in: " +#~ msgstr "Zgłaśnianie [fade in]:" + +#~ msgid "Fade out: " +#~ msgstr "Wyciszanie [fade out]:" + +#~ msgid "File Path:" +#~ msgstr "Ścieżka pliku:" + +#~ msgid "File import in progress..." +#~ msgstr "Importowanie plików w toku..." + +#~ msgid "Filter History" +#~ msgstr "Filtruj Historię" + +#~ msgid "Find Shows" +#~ msgstr "Znajdź audycję" + +#~ msgid "First Name" +#~ msgstr "Imię" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "W celu uzyskania wiecej informacji, należy zapoznać się z %sAirtime Manual%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Metadane Icecast Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Jesli Airtime korzysta z routera bądź firewalla, może być konieczna konfiguracja przekierowywania portu i informacja w tym polu będzie nieprawidłowa. W takim wypadku należy dokonac ręcznej aktualizacji pola, tak żeby wyświetlił się prawidłowy host/ port/ mount, do którego mógłby podłączyć się prowadzący. Dopuszczalny zakres to 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Numer Isrc:" + +#~ msgid "Last Name" +#~ msgstr "Nazwisko" + +#~ msgid "Length:" +#~ msgstr "Długość: " + +#~ msgid "Limit to " +#~ msgstr "Ogranicz(enie) do:" + +#~ msgid "Listen" +#~ msgstr "Słuchaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Wejście Strumienia \"Na żywo\"" + +#~ msgid "Live stream" +#~ msgstr "Transmisja na żywo" + +#~ msgid "Logout" +#~ msgstr "Wyloguj" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Wygląda na to, że strona, której szukasz nie istnieje" + +#~ msgid "Manage Users" +#~ msgstr "Zarządzaj Użytkownikami" + +#~ msgid "Master Source" +#~ msgstr "Źródło Nadrzędne" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Punkt montowania nie może być pusty dla serwera Icecast." + +#~ msgid "New User" +#~ msgstr "Nowy Użytkownik" + +#~ msgid "New password" +#~ msgstr "Nowe hasło" + +#~ msgid "Next:" +#~ msgstr "Następny:" + +#~ msgid "No open playlist" +#~ msgstr "Brak otwartej listy odtwarzania" + +#~ msgid "No webstream" +#~ msgstr "Brak webstreamu" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "Na antenie" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Możliwe są tylko cyfry." + +#~ msgid "Original Length:" +#~ msgstr "Oryginalna długość:" + +#~ msgid "Page not found!" +#~ msgstr "Nie znaleziono strony!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Zawartość listy odtwarzania:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Płynne przenikanie utworów na liście dotwarzania" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach" + +#~ msgid "Please upgrade to " +#~ msgstr "Zaktualizuj na" + +#~ msgid "Port cannot be empty." +#~ msgstr "Port nie może być pusty." + +#~ msgid "Previous:" +#~ msgstr "Poprzedni:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Zarządzający programowi mają możliwość:" + +#~ msgid "Register Airtime" +#~ msgstr "Zarejestruj Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Usuń obserwowany katalog." + +#~ msgid "Repeat Days:" +#~ msgstr "Dni powtarzania:" + +#~ msgid "Sample Rate:" +#~ msgstr "Częstotliwość próbkowania:" + +#~ msgid "Save playlist" +#~ msgstr "Zapisz listę odtwarzania" + +#~ msgid "Select stream:" +#~ msgstr "Wybierz strumień:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Serwer nie może być pusty." + +#~ msgid "Set" +#~ msgstr "Ustaw" + +#~ msgid "Share" +#~ msgstr "Podziel się" + +#~ msgid "Show Source" +#~ msgstr "Źródło audycji" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokazuj, co wysyłam" + +#~ msgid "Shuffle playlist" +#~ msgstr "Wymieszaj listę odtwarzania" + +#~ msgid "Source Streams" +#~ msgstr "Strumienie źródłowe" + +#~ msgid "Static Smart Block" +#~ msgstr "Smart block statyczny" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Zawartość statycznego Smart Blocka:" + +#~ msgid "Station Description:" +#~ msgstr "Opis stacji:" + +#~ msgid "Station Web Site:" +#~ msgstr "Strona internetowa stacji:" + +#~ msgid "Stream " +#~ msgstr "Strumień" + +#~ msgid "Stream Settings" +#~ msgstr "Ustawienia strumienia" + +#~ msgid "Stream URL:" +#~ msgstr "URL strumienia:" + +#~ msgid "Stream URL: " +#~ msgstr "URL strumienia:" + +#~ msgid "Style" +#~ msgstr "Styl" + +#~ msgid "Support Feedback" +#~ msgstr "Informacja zwrotna" + +#~ msgid "Support setting updated." +#~ msgstr "Zaktualizowano ustawienia wsparcia." + +#~ msgid "Terms and Conditions" +#~ msgstr "Zasady i warunki" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Pożądana długość bloku nie zostanie osiągnięta jesli airtime nie znajdzie wystarczającej liczby oryginalnych ścieżek spełniających kryteria wyszukiwania. Włącz tę opcję jesli chcesz, żeby ścieżki zostały wielokrotnie dodane do smart blocku." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Utwór w domenie publicznej" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ta wersja nie jest już obsługiwana" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ta wersja będzie wkrótce przestarzała." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s" + +#~ msgid "Track:" +#~ msgstr "Utwór:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Wpisz znaki, które widzisz na obrazku poniżej." + +#~ msgid "Update Required" +#~ msgstr "Wymagana aktualizacja" + +#~ msgid "Update show" +#~ msgstr "Aktualizuj audycję" + +#~ msgid "User Type" +#~ msgstr "Typ użytkownika" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Co" + +#~ msgid "When" +#~ msgstr "Kiedy" + +#~ msgid "Who" +#~ msgstr "Kto" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nie obserwujesz w tej chwili żadnych folderów" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Wymagana jest akceptacja polityki prywatności." + +#~ msgid "Your trial expires in" +#~ msgstr "Twoja próba wygasa" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "pliki spełniają kryteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "maksymalna głośność" + +#~ msgid "mute" +#~ msgstr "wycisz" + +#~ msgid "next" +#~ msgstr "następny" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "Wprowadź czas w sekundach '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "poprzedni" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "włącz głos" diff --git a/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..28263acf7c --- /dev/null +++ b/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po @@ -0,0 +1,4529 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Felipe Thomaz Pedroni, 2014 +# Pedro Garbellini da Silva , 2014 +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2023-03-26 18:38+0000\n" +"Last-Translator: Felipe Nogueira \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "O ano %s deve estar compreendido no intervalo entre 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s não é uma data válida" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s não é um horário válido" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Inglês" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Catalão" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Tcheco" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Alemão" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Grego" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Espanhol" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Persa" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Francês" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Italiano" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Hebraíco" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japonês" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Português" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Chinês" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Usar estação padrão" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "Seviço de API do LibreTime" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Calendário" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Reprodutor" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Configurações" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Geral" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Meu perfil" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Usuários" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Fluxos" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Estado" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Histórico da Programação" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Estatísticas de Ouvintes" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Ajuda" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Iniciando" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Manual do Usuário" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Contribua para o LibreTime" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "O que há de novo?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Você não tem permissão para acessar esta funcionalidade." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Você não tem permissão para acessar esta funcionalidade." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Requisição inválida. Parâmetro não informado." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Requisição inválida. Parâmetro informado é inválido." + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Você não tem permissão para desconectar a fonte." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Não há fonte conectada a esta entrada." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Você não tem permissão para alternar entre as fontes." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Página não encontrada." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "A ação solicitada não é suportada." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Você não tem permissão para acessar este recurso." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "Podcast %s" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s não encontrado" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Ocorreu algo errado." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Visualizar" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Adicionar à Lista" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Adicionar ao Bloco" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Excluir" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Editar..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Duplicar Lista" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Nenhuma ação disponível" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Você não tem permissão para excluir os itens selecionados." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Não foi possível apagar arquivo(s)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Cópia de %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Player de Áudio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Gravando:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Fluxo Mestre" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Fluxo Ao Vivo" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nada Programado" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Programa em Exibição:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Agora" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Você está executando a versão mais recente" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nova versão disponível:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Adicionar a esta lista de reprodução" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Adiconar a este bloco" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adicionando 1 item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adicionando %s items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Você pode adicionar somente faixas a um bloco inteligente." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Por favor selecione um posição do cursor na linha do tempo." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Você não adicionou nenhuma playlist" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "Você não adicionou nenhum podcast" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Adicionar" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Novo" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Editar" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Publicar" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Remover" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Editar Metadados" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Adicionar ao programa selecionado" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Selecionar" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Selecionar esta página" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Desmarcar esta página" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Desmarcar todos" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Agendado" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Título" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Criador" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Álbum" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bitrate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Compositor" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Maestro" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Convertido por" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Gênero" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Legenda" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Idioma" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Última Ateração" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Última Execução" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Duração" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Humor" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Prorietário" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Ganho de Reprodução" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Taxa de Amostragem" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Número de Faixa" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Adicionado" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Ano" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Carregando..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Todos" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Arquivos" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listas" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocos" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Fluxos" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Tipo Desconhecido:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Você tem certeza que deseja excluir o item selecionado?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Upload em andamento..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Obtendo dados do servidor..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Importar" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Código do erro:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Mensagem de erro:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "A entrada deve ser um número positivo" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "A entrada deve ser um número" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "A entrada deve estar no formato yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "A entrada deve estar no formato hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Meu Podcast" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "por favor informe o tempo no formato '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Seu navegador não suporta a execução deste tipo de arquivo:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Não é possível o preview de blocos dinâmicos" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limitar em:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "A lista foi salva" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "A lista foi embaralhada" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Número de Ouvintes em %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Lembrar-me dentro de uma semana" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Não me lembrar novamente" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Sim, quero colaborar com o Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "A imagem precisa conter extensão jpg, jpeg, png ou gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "O bloco foi embaralhado" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "O bloco foi gerado e o criterio foi salvo" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "O bloco foi salvo" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processando..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Selecionar modificador" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "contém" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "não contém" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "é" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "não é" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "começa com" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "termina com" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "é maior que" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "é menor que" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "está no intervalo" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Gerar" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Selecione o Diretório de Armazenamento" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Selecione o Diretório para Monitoramento" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Tem certeza de que deseja alterar o diretório de armazenamento? \n" +"Isto irá remover os arquivos de sua biblioteca Airtime!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gerenciar Diretórios de Mídia" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Tem certeza que deseja remover o diretório monitorado?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "O caminho está inacessível no momento." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Conectado ao servidor de fluxo" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "O fluxo está desabilitado" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Obtendo informações do servidor..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Não é possível conectar ao servidor de streaming" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\"." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nenhum resultado encontrado" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Defina uma autenticação personalizada que funcionará apenas neste programa." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "A instância deste programa não existe mais!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Programa" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "O programa está vazio" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Obtendo dados do servidor..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Este programa não possui conteúdo agendado." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Este programa não possui duração completa de conteúdos." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Janeiro" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Fevereiro" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Março" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Abril" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Maio" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Junho" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Julho" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Agosto" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Setembro" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Outubro" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Novembro" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Dezembro" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Fev" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Abr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Ago" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Set" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Out" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dez" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Domingo" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Segunda" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Terça" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Quarta" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Quinta" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Sexta" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Sábado" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Dom" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Seg" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Ter" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Qua" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Qui" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Sex" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sab" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancelar Programa em Execução?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Parar gravação do programa em execução?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Conteúdos do Programa" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remover todos os conteúdos?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Excluir item(ns) selecionado(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Início" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Fim" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duração" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue Entrada" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Saída" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade Entrada" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Saída" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Programa vazio" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Gravando a partir do Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Prévia da faixa" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Não é possível realizar agendamento fora de um programa." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Movendo 1 item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Movendo %s itens" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Salvar" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancelar" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Selecionar todos" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Selecionar nenhum" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remover seleção de itens agendados" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Saltar para faixa em execução" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancelar programa atual" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Abrir biblioteca para adicionar ou remover conteúdo" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Adicionar / Remover Conteúdo" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "em uso" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disco" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Explorar" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Abrir" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrador" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Gerente de Programação" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Visitante" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Visitantes podem fazer o seguinte:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Visualizar agendamentos" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Visualizar conteúdo dos programas" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs podem fazer o seguinte:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Gerenciar o conteúdo de programas delegados a ele" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Importar arquivos de mídia" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Criar listas de reprodução, blocos inteligentes e fluxos" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Gerenciar sua própria blblioteca de conteúdos" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Visualizar e gerenciar o conteúdo dos programas" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Agendar programas" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Gerenciar bibliotecas de conteúdo" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Administradores podem fazer o seguinte:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Gerenciar configurações" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Gerenciar usuários" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Gerenciar diretórios monitorados" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Enviar informações de suporte" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Visualizar estado do sistema" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Acessar o histórico da programação" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Ver estado dos ouvintes" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Exibir / ocultar colunas" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "De {from} até {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "khz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Do" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Se" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Te" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Qu" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Qu" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Se" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Fechar" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hora" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuto" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Concluído" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Selecionar arquivos" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Adicione arquivos para a fila de upload e pressione o botão iniciar " + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Adicionar Arquivos" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Parar Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Iniciar Upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Adicionar arquivos" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d arquivos importados" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Arraste arquivos nesta área." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Erro na extensão do arquivo." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Erro no tamanho do arquivo." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Erro na contagem dos arquivos." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Erro de inicialização." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Erro HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Erro de segurança." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Erro genérico." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Erro de I/O." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Arquivos: %s." + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d arquivos adicionados à fila." + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Arquivo: %f, tamanho: %s, tamanho máximo: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "URL de upload pode estar incorreta ou inexiste." + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Erro: Arquivo muito grande:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Erro: Extensão de arquivo inválida." + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s linhas%s copiadas para a área de transferência" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Descrição" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Ativo" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Inativo" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Usuário ou senha inválidos. Tente novamente." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Você está vendo uma versão obsoleta de %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Você não pode adicionar faixas a um bloco dinâmico" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Você não tem permissão para excluir os %s(s) selecionados." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Você pode somente adicionar faixas um bloco inteligente." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Lista Sem Título" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Bloco Sem Título" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Lista Desconhecida" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Preferências atualizadas." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Preferências de fluxo atualizadas." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "o caminho precisa ser informado" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problemas com o Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Retransmissão do programa %s de %s as %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Selecione o cursor" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Remover o cursor" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "programa inexistente" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Usuário adicionado com sucesso!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Usuário atualizado com sucesso!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Configurações atualizadas com sucesso!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Fluxo Sem Título" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Fluxo gravado." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Valores do formulário inválidos." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Caracter inválido informado" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "O dia precisa ser especificado" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "O horário deve ser especificado" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "É preciso aguardar uma hora para retransmitir" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Usar Autenticação Personalizada:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Definir Usuário:" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Definir Senha:" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "O usuário não pode estar em branco." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "A senha não pode estar em branco." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Gravar a partir do Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Retransmitir?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dias" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tipo de Reexibição:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "semanal" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensal" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Selecione os Dias:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data de Fim:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Sem fim?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "A data de fim deve ser posterior à data de início" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Cor de Fundo:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Cor da Fonte:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nome:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Programa Sem Título" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Gênero:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Descrição:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' não corresponde ao formato 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Duração:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Fuso Horário:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Reexibir?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Não é possível criar um programa no passado." + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Não é possível alterar o início de um programa que está em execução" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Data e horário finais não podem ser definidos no passado." + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Não pode ter duração < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Não pode ter duração 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Não pode ter duração maior que 24 horas" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Não é permitido agendar programas sobrepostos" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Procurar Usuários:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Usuário:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Senha:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Confirmar Senha:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Primeiro nome:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Último nome:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Celular:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Perfil do Usuário:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Usuário já existe." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data de Início:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Título:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Criador:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Álbum:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Ano:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Legenda:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Compositor:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Maestro:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Humor:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Idioma:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nome da Estação" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo da Estação:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Semana Inicia Em" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Acessar" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Senha" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Confirmar nova senha" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "A senha de confirmação não confere." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Usuário" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Redefinir senha" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Tocando agora" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Meus Programas:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Selecione um critério" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Taxa de Amostragem (khz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "horas" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutos" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "itens" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinâmico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Estático" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Gerar conteúdo da lista e salvar critério" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Embaralhar conteúdo da lista" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Embaralhar" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "O limite não pode ser vazio ou menor que 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "O limite não pode ser maior que 24 horas" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "O valor deve ser um número inteiro" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "O número máximo de itens é 500" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Você precisa selecionar Critério e Modificador " + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "A duração deve ser informada no formato '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "O valor deve ser numérico" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "O valor precisa ser menor que 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "O valor deve conter no máximo %s caracteres" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "O valor não pode estar em branco" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Legenda do Fluxo:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Artista - Título" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Programa - Artista - Título" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Nome da Estação - Nome do Programa" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Metadados Off Air" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Habilitar Ganho de Reprodução" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Modificador de Ganho de Reprodução" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Habilitado:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Tipo de Fluxo:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bitrate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Tipo de Serviço:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Canais:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Servidor" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Porta" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Ponto de Montagem" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Nome" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Diretório de Importação:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Diretórios Monitorados: " + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Não é um diretório válido" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Valor é obrigatório e não poder estar em branco." + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "%value%' não é um enderçeo de email válido" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' não corresponde a uma data válida '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is maior que o número máximo %max% de caracteres" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Senhas não conferem" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Cue de entrada e saída são nulos." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "O ponto de saída não pode ser maior que a duração do arquivo" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Selecione o País" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "A programação que você está vendo está desatualizada! (programação incompatível)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "A programação que você está vendo está desatualizada! (instância incompatível)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "A programação que você está vendo está desatualizada!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Você não tem permissão para agendar programa %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Você não pode adicionar arquivos para gravação de programas." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "O programa %s terminou e não pode ser agendado." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "O programa %s foi previamente atualizado!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Um dos arquivos selecionados não existe!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Os programas podem ter duração máxima de 24 horas." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Não é possível agendar programas sobrepostos.\n" +"Nota: Redimensionar um programa repetitivo afeta todas as suas repetições." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmissão de %s a partir de %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "A duração precisa ser maior que 0 minuto" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "A duração deve ser informada no formato \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "A URL deve estar no formato \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "A URL de conter no máximo 512 caracteres" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Nenhum tipo MIME encontrado para o fluxo." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "O nome do fluxo não pode estar vazio" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Não foi possível analisar a lista XSPF" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Não foi possível analisar a lista PLS" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Não foi possível analisar a lista M3U" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo de fluxo não reconhecido: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Visualizar Metadados do Arquivo Gravado" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Editar Programa" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Não é possível arrastar e soltar programas repetidos" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Não é possível mover um programa anterior" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Não é possível mover um programa anterior" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "O programa foi excluído porque a gravação prévia não existe!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "É necessário aguardar 1 hora antes de retransmitir." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Executado" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "para" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contém o diretório monitorado:% s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s não existe na lista de diretórios monitorados." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s já está monitorado." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s está contido dentro de diretório já monitorado: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s não é um diretório válido." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)" + +#~ msgid "(Required)" +#~ msgstr "(Obrigatório)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(O website de sua estação de rádio)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(somente para efeito de verificação, não será publicado)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss,t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stéreo" + +#~ msgid "About" +#~ msgstr "Sobre" + +#~ msgid "Add this show" +#~ msgstr "Adicionar este programa" + +#~ msgid "Additional Options" +#~ msgstr "Opções Adicionais" + +#~ msgid "Admin Password" +#~ msgstr "Senha do Administrador" + +#~ msgid "Admin User" +#~ msgstr "Usuário Administrador" + +#~ msgid "Advanced Search Options" +#~ msgstr "Opções da Busca Avançada" + +#~ msgid "All rights are reserved" +#~ msgstr "Todos os direitos são reservados" + +#~ msgid "Audio Track" +#~ msgstr "Faixa de Áudio" + +#~ msgid "Choose Days:" +#~ msgstr "Selecione os Dias:" + +#~ msgid "Choose folder" +#~ msgstr "Selecione o diretório" + +#~ msgid "City:" +#~ msgstr "Cidade:" + +#~ msgid "Country:" +#~ msgstr "País:" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue entrada:" + +#~ msgid "Cue Out: " +#~ msgstr "Cue Saída:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Diretório de Importação Atual:" + +#~ msgid "Default Length:" +#~ msgstr "Duração Padrão:" + +#~ msgid "Default License:" +#~ msgstr "Licença Padrão:" + +#~ msgid "Disk Space" +#~ msgstr "Espaço em Disco" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloco Inteligente Dinâmico" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Critério para Bloco Inteligente Dinâmico:" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expandir Bloco Dinâmico" + +#~ msgid "Expand Static Block" +#~ msgstr "Expandir Bloco Estático" + +#~ msgid "Fade in: " +#~ msgstr "Fade de entrada" + +#~ msgid "Fade out: " +#~ msgstr "Fade de saída" + +#~ msgid "File Path:" +#~ msgstr "Caminho do Arquivo:" + +#~ msgid "File import in progress..." +#~ msgstr "Importação de arquivo em progresso..." + +#~ msgid "Filter History" +#~ msgstr "Histórico de Filtros" + +#~ msgid "Find Shows" +#~ msgstr "Encontrar Programas" + +#~ msgid "First Name" +#~ msgstr "Primeiro Nome" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Para mais informações, leia o %sManual do Airtime%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Metadados Icecast Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Se o Airtime estiver atrás de um roteador ou firewall, pode ser necessário configurar o redirecionamento de portas e esta informação de campo ficará incorreta. Neste caso, você terá de atualizar manualmente este campo para que ele exiba o corretamente o host / porta / ponto de montagem necessários para seu DJ para se conectar. O intervalo permitido é entre 1024 e 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Número Isrc:" + +#~ msgid "Last Name" +#~ msgstr "Último Nome" + +#~ msgid "Length:" +#~ msgstr "Duração:" + +#~ msgid "Limit to " +#~ msgstr "Limitar em" + +#~ msgid "Listen" +#~ msgstr "Ouvir" + +#~ msgid "Live Stream Input" +#~ msgstr "Fluxo de entrada ao vivo" + +#~ msgid "Live stream" +#~ msgstr "Fluxo ao vivo" + +#~ msgid "Logout" +#~ msgstr "Sair" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "A página que você procura não existe!" + +#~ msgid "Manage Users" +#~ msgstr "Gerenciar Usuários" + +#~ msgid "Master Source" +#~ msgstr "Master" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Ponto de montagem deve ser informada em servidor Icecast." + +#~ msgid "New User" +#~ msgstr "Novo Usuário" + +#~ msgid "New password" +#~ msgstr "Nova senha" + +#~ msgid "Next:" +#~ msgstr "Próximo:" + +#~ msgid "No open playlist" +#~ msgstr "Nenhuma lista aberta" + +#~ msgid "No webstream" +#~ msgstr "Nenhum fluxo web" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "NO AR" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Somente números são permitidos." + +#~ msgid "Original Length:" +#~ msgstr "Duração Original:" + +#~ msgid "Page not found!" +#~ msgstr "Página não encontrada!" + +#~ msgid "Phone:" +#~ msgstr "Fone:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Conteúdos da Lista de Reprodução:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Crossfade da Lista" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Por favor informe e confirme sua nova senha nos campos abaixo." + +#~ msgid "Please upgrade to " +#~ msgstr "Por favor, atualize para" + +#~ msgid "Port cannot be empty." +#~ msgstr "Porta não pode estar em branco." + +#~ msgid "Previous:" +#~ msgstr "Anterior:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Gerentes de Programação podem fazer o seguinte:" + +#~ msgid "Remove watched directory" +#~ msgstr "Remover diretório monitorado" + +#~ msgid "Repeat Days:" +#~ msgstr "Dias para reexibir:" + +#~ msgid "Sample Rate:" +#~ msgstr "Taxa de Amostragem:" + +#~ msgid "Save playlist" +#~ msgstr "Salvar Lista" + +#~ msgid "Select stream:" +#~ msgstr "Selecionar fluxo:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Servidor não pode estar em branco." + +#~ msgid "Set" +#~ msgstr "Definir" + +#~ msgid "Share" +#~ msgstr "Compartilhar" + +#~ msgid "Show Source" +#~ msgstr "Programa" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mostrar quais informações estou enviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Embaralhar Lista" + +#~ msgid "Source Streams" +#~ msgstr "Fontes de Fluxo" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloco Inteligente Estático" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Conteúdo do Bloco Inteligente Estático:" + +#~ msgid "Station Description:" +#~ msgstr "Descrição da Estação:" + +#~ msgid "Station Web Site:" +#~ msgstr "Website da Estação:" + +#~ msgid "Stream " +#~ msgstr "Fluxo" + +#~ msgid "Stream Settings" +#~ msgstr "Configurações de Fluxo" + +#~ msgid "Stream URL:" +#~ msgstr "URL do Fluxo:" + +#~ msgid "Stream URL: " +#~ msgstr "URL do Fluxo:" + +#~ msgid "Style" +#~ msgstr "Aparência" + +#~ msgid "Support Feedback" +#~ msgstr "Informações de Suporte" + +#~ msgid "Support setting updated." +#~ msgstr "Configurações de suporte atualizadas." + +#~ msgid "Terms and Conditions" +#~ msgstr "Termos e Condições" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "A duração desejada do bloco não será completada se o Airtime não localizar faixas únicas suficientes que correspondem aos critérios informados. Ative esta opção se você deseja permitir que as mesmas faixas sejam adicionadas várias vezes num bloco inteligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:" + +#~ msgid "The work is in the public domain" +#~ msgstr "O trabalho é de domínio público" + +#~ msgid "This version is no longer supported." +#~ msgstr "Esta versão não é mais suportada." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Esta versão ficará obsoleta em breve." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Faixa:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Digite os caracteres que você vê na imagem abaixo." + +#~ msgid "Update Required" +#~ msgstr "Atualização Necessária" + +#~ msgid "Update show" +#~ msgstr "Atualizar programa" + +#~ msgid "User Type" +#~ msgstr "Tipo de Usuário" + +#~ msgid "Web Stream" +#~ msgstr "Fluxo Web" + +#~ msgid "What" +#~ msgstr "O que" + +#~ msgid "When" +#~ msgstr "Quando" + +#~ msgid "Who" +#~ msgstr "Quem" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Você não está monitorando nenhum diretório." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Você precisa concordar com a política de privacidade." + +#~ msgid "Your trial expires in" +#~ msgstr "Seu período de teste termina em" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "arquivos correspondem ao critério" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volume máximo" + +#~ msgid "mute" +#~ msgstr "Mudo" + +#~ msgid "next" +#~ msgstr "próximo" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "por favor informe o tempo em segundos '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "anterior" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "retirar mudo" diff --git a/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..a3d6b8b386 --- /dev/null +++ b/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po @@ -0,0 +1,5135 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Andrey Podshivalov, 2014-2015 +# Andrey Podshivalov, 2014 +# Andrey Podshivalov, 2014 +# Sourcefabric , 2012 +# Андрей Подшивалов, 2014 +# Yaroslav Grebnev , 2017. #zanata +# Yuriy , 2017. #zanata +# Stepan Curuci , 2020 #Poedit +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2022-06-05 10:17+0000\n" +"Last-Translator: МАН69К \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "%s год должен быть в пределах 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s - %s - %s недопустимая дата" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s недопустимое время" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Английский" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Афар" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Абхазский" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Африкаанс" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Амхарский" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Арабский" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Ассамский" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Аймара" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Азербаджанский" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Башкирский" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Белорусский" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Болгарский" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Бихари" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Бислама" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Бенгали" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Тибетский" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Бретонский" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Каталанский" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Корсиканский" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Чешский" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Вэльский" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Данский" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Немецкий" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Бутан" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Греческий" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Эсперанто" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Испанский" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Эстонский" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Басков" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Персидский" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Финский" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Фиджи" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Фарси" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Французский" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Фризский" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Ирландский" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Шотландский" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Галицийский" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Гуананский" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Гуджарати" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Науса" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Хинди" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Хорватский" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Венгерский" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Армянский" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Интернациональный" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Интерлинг" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Инупиак" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Индонезийский" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Исландский" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Итальянский" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Иврит" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Японский" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Иудейский" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Яванский" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Грузинский" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Казахский" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Гренландский" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Камбоджийский" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Каннадский" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Корейский" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Кашмирский" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Курдский" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Киргизский" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Латынь" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Лингала" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Лаосский" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Литовский" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Латвийский" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Малайзийский" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Маори" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Македонский" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Малаямский" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Монгольский" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Молдавский" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Маратхи" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Малайзийский" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Мальтийский" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Бирманский" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Науру" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Непальский" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Немецкий" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Норвежский" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Окситанский" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Афан)/Оромур/Ория" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Панджаби Эм Си" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Польский" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Пушту" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Португальский" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Кечуа" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Рэето-романс" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Кирунди" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Румынский" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Русский" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Киньяруанда" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Санскрит" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Синди" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Сангро" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Сербский" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Синигальский" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Словацкий" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Славянский" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Самоанский" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Шона" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Сомалийский" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Албанский" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Сербский" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Сисвати" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Сесото" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Сунданский" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Шведский" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Суахили" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Тамильский" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Телугу" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Таджикский" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Тайский" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Тигринья" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Туркменский" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Тагальский" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Сетсвана" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Тонга" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Турецкий" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Тсонга" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Татарский" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Тви" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Украинский" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Урду" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Узбекский" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "Въетнамский" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Волапукский" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Волоф" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Хоса" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Юрубский" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Китайский" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Зулу" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Время станции по умолчанию" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Нажмите на кнопку «Новая Программа» и заполните необходимые поля." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу»." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Выберите следующую Программу и нажмите «Запланировать Треки»" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "Служба медиа анализатора LibreTime" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "Проверьте, что служба libretime-analyzer правильно установлена в " + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr " а также убедитесь, что она запущена " + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "Если нет - попробуйте запустить" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "Служба воспроизведения LibreTime" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "Проверьте, что служба libretime-playout правильно установлена в " + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "Служба Liquidsoap LibreTime" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "Проверьте, что служба libretime-liquidsoap правильно установлена в " + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "Служба Celery Task LibreTime" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Страница Радио" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Календарь" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Виджеты" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Плеер" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Расписание программ" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Настройки" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Основные" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Мой профиль" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Пользователи" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Типы треков" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Аудио потоки" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Статус системы" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Аналитика" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "История воспроизведения треков" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Шаблоны истории" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Статистика по слушателям" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Статистика прослушиваний" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Справка" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "С чего начать" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Руководство пользователя" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Получить справку онлайн" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Что нового?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Вы не имеете доступа к этому ресурсу." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Вы не имеете доступа к этому ресурсу. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Файл не существует в %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Неверный запрос. Параметр «режим» не прошел." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Неверный запрос. Параметр «режим» является недопустимым" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "У вас нет прав отсоединить источник." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Нет источника, подключенного к этому входу." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "У вас нет прав для переключения источника." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Чтобы настроить и использовать внешний плеер вам нужно:

\n" +" 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n" +" 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n" +" Включить Публичный API для LibreTime в разделе Настройки -> Основные" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n" +" Включить Публичный API для LibreTime в разделе Настройки -> Основные" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Страница не найдена." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "Запрашиваемое действие не поддерживается." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "У вас нет доступа к данному ресурсу." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Произошла внутренняя ошибка." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Подкаст" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Ни одного трека пока не опубликовано." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s не найден" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Что-то пошло не так." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Прослушать" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Добавить в Плейлист" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Добавить в Смарт-блок" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Удалить" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Редактировать..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Загрузка" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Дублировать Плейлист" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Дублировать Смарт-блок" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Нет доступных действий" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "У вас нет разрешения на удаление выбранных объектов." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Нельзя удалить запланированный файл." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Нельзя удалить файл(ы)" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Копия %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Аудио плеер" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Что-то пошло не так!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Запись:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master-Steam" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Ничего нет" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Текущая Программа:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Играет" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Вы используете последнюю версию" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Доступна новая версия: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "У вас установлена предварительная версия LibreTime." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Доступен патч обновлений для текущей версии LibreTime." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Доступно обновление функций для текущей версии LibreTime." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Доступно важное обновление для текущей версии LibreTime." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Добавить в текущий Плейлист" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Добавить в текущий Смарт-блок" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Добавление одного элемента" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Добавление %s элементов" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Вы можете добавить только треки в Смарт-блоки." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Переместите курсор по временной шкале." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Вы не добавили ни одного трека" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Вы не добавили ни одного Плейлиста" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "У вас не добавлено ни одного подкаста" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Вы не добавили ни одного Смарт-блока" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Вы не добавили ни одного веб-потока" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Узнать больше о треках" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Узнать больше о Плейлистах" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "Узнать больше о Подкастах" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Узнать больше об Смарт-блоках" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Узнать больше о веб-потоках" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Выберите «Новый» для создания." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Добавить" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Новый" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Редактировать" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Добавить в расписание" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Добавить к следующему шоу" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Добавить к текущему шоу" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Опубликовать" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Удалить" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Править мета-данные" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Добавить в выбранную Программу" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Выбрать" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Выбрать текущую страницу" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Отменить выбор текущей страницы" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Отменить все выделения" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Вы действительно хотите удалить выбранные элементы?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Запланирован" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Треки" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Плейлист" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Название" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Автор" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Альбом" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Битрейт" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Композитор" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Дирижер" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Копирайт" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Закодировано" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Жанр" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Метка" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Язык" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Изменен" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Последнее проигрывание" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Длительность" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Настроение" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Владелец" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Номер трека" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Загружено" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Вебсайт" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Год" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Загрузка..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Все" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Файлы" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Плейлисты" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Смарт-блоки" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Веб-потоки" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Неизвестный тип: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Вы действительно хотите удалить выбранный элемент?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Загружается ..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Получение данных с сервера ..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Импорт" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Импортировано?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Посмотреть" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Код ошибки: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Сообщение об ошибке: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Ввод должен быть положительным числом" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Ввод должен быть числом" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Ввод должен быть в формате: гггг-мм-дд" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Ввод должен быть в формате: чч:мм:сс" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Мой Подкаст" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Открыть медиа-построитель" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "пожалуйста, установите время '00:00:00.0'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Пожалуйста, укажите допустимое время в секундах. Например: 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Ваш браузер не поддерживает воспроизведения данного типа файлов: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Динамический Блок не подлежит предпросмотру" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Ограничить до: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Плейлист сохранен" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Плейлист перемешан" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Количество слушателей %s : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Напомнить мне через одну неделю" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Никогда не напоминать" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Да, помочь LibreTime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Изображение должно быть в формате: jpg, jpeg, png или gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке." + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Смарт-блок перемешан" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Смарт-блок создан и критерии сохранены" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Смарт-блок сохранен" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Подождите..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Выберите модификатор" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "содержит" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "не содержит" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "является" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "не является" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "начинается с" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "заканчивается" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "больше, чем" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "меньше, чем" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "в диапазоне" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Сгенерировать" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Выберите папку хранения" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Выберите папку для просмотра" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Вы уверены, что хотите изменить папку хранения? \n" +" Файлы из вашей Библиотеки будут удалены!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Управление папками медиа-файлов" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Вы уверены, что хотите удалить просматриваемую папку?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Этот путь в настоящий момент недоступен." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Подключено к потоковому серверу" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Поток отключен" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Получение информации с сервера ..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Не удалось подключиться к потоковому серверу" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151." + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source»." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Внимание: Вы не можете изменить данное поле, пока Программа в эфире" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Не найдено" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Укажите пользователя, который будет работать только в этой Программе." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Программы больше не существует!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Внимание: Программы не могут быть пересвязаны" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Программа" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Пустая Программа" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1 мин" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5 мин" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10 мин" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15 мин" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30 мин" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60 мин" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Получение данных с сервера ..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "В этой Программе нет запланированного контента." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Данная Программа не до конца заполнена контентом." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Январь" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Февраль" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Март" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Апрель" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Май" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Июнь" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Июль" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Август" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Сентябрь" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Октябрь" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Ноябрь" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Декабрь" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Янв" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Фев" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Март" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Апр" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Июн" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Июл" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Авг" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Сент" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Окт" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Нояб" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Дек" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Сегодня" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "День" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Неделя" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Месяц" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Воскресенье" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Понедельник" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Вторник" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Среда" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Четверг" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Пятница" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Суббота" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Вс" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Пн" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Вт" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Ср" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Чт" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Пт" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Сб" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Отменить эту Программу?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Остановить запись текущей Программы?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Оk" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Содержимое Программы" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Удалить все содержимое?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Удалить выбранные элементы?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Начало" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Конец" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Длительность" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Фильтрация " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " из " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " записи" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "Нет Программ, запланированных в указанный период времени." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Начало звучания" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Окончание звучания" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Сведение" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Затухание" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Программа пуста" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Запись с линейного входа" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Предпросмотр трека" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Нельзя планировать вне рамок Программы." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Перемещение одного элемента" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Перемещение %s элементов" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Сохранить" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Отменить" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Редактор затухания" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Редактор начала трека" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Выбрать все" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Снять выделения" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Обрезать пересекающиеся Программы" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Удалить выбранные запланированные элементы" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Перейти к текущей проигрываемой дорожке" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Перейти к текущему треку" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Отмена текущей Программы" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Открыть Библиотеку, чтобы добавить или удалить содержимое" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Добавить/удалить содержимое" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "используется" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Диск" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Посмотреть" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Открыть" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Админ" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "Диджей" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Менеджер" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Гость" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Гости могут следующее:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Просматривать расписание" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Просматривать содержимое программы" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ может:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "- Управлять контентом назначенной ему Программы;" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Импортировать медиа-файлы" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Создавать плейлисты, смарт-блоки и вебстримы" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Управлять содержимым собственной библиотеки" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "Менеджеры Программ могут следующее:" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Просматривать и управлять содержимым программы" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Планировать программы" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Управлять содержимым всех библиотек" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Администраторы могут:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Управлять настройками" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Управлять пользователями" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Управлять просматриваемыми папками" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Отправлять отзыв поддержке" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Просматривать статус системы" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Получить доступ к истории воспроизведений" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Видеть статистику слушателей" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Показать/скрыть столбцы" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Столбцы" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "С {from} до {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "кбит/с" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "гггг-мм-дд" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "чч:мм:сс.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "кГц" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Вс" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Пн" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Вт" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Ср" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Чт" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Пт" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Сб" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Закрыть" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Часы" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Минуты" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Готово" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Выбрать файлы" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Добавьте файлы в очередь загрузки и нажмите кнопку Старт." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Добавить файлы" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Остановить загрузку" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Начать загрузку" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Добавить файлы" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Загружено %d/%d файлов" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "н/д" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Перетащите файлы сюда." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Неверное расширение файла." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Неверный размер файла." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Ошибка подсчета файла." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Ошибка инициализации." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "Ошибка HTTP." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Ошибка безопасности." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Общая ошибка." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "Ошибка записи/чтения." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Файл: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d файлов в очереди" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Файл: %f, размер: %s, максимальный размер файла: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "URL загрузки указан неверно или не существует" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Ошибка: Файл слишком большой: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Ошибка: Неверное расширение файла: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Установить по умолчанию" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Создать" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Редактировать историю" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Нет программы" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Скопировано %s строк %s в буфер обмена" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Новая Программа" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Новая запись в журнале" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "В таблице нет данных" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "(отфильтровано из _MAX_ записей)" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "Первая" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "Последняя" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "Следующая" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "Предыдущая" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "Поиск:" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "Записи отсутствуют." + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "Перетащите треки сюда из Библиотеки" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "В течение выбранного периода времени треки не воспроизводились." + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Снять с публикации" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "Результаты не найдены." + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Автор" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Описание" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Ссылка" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "Дата публикации" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "Статус загрузки" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "Действия" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "Удалить из Библиотеки" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "Успешно загружено" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "Показать _MENU_" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "Показать _MENU_ записей" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "Записи с _START_ до _END_ из _TOTAL_ записей" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "Показано с _START_ по _END_ из _TOTAL_ треков" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "Показано с _START_ по _END_ из _TOTAL_ типов трека" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "Показано с _START_ по _END_ из _TOTAL_ пользователей" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "Записи с 0 до 0 из 0 записей" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "Показано с 0 по 0 из 0 треков" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "Вы уверены что хотите удалить этот тип трека?" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "Типы треков не были найдены." + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "Типы треков не найдены" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "Не найдено подходящих типов треков" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Включено" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Отключено" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "Отменить загрузку" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "Тип" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "Настройки подкаста сохранены" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "Вы уверены что хотите удалить этого пользователя?" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "Вы не можете удалить себя!" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "У вас нет опубликованных эпизодов!" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "Вы можете опубликовать ваш загруженный контент из панели «Треки»." + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "Попробовать сейчас" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "Предпросмотр плейлиста" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Смарт-блок" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "Предпросмотр веб-потока" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "У вас нет разрешений для просмотра Библиотеки" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "С текущего момента" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "Нажмите «Новый» чтобы создать новый" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "Нажмите «Загрузить» чтобы добавить новый" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "Ссылка на ленту" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "Дата импорта" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "Добавить новый подкаст" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"Нельзя планировать аудио вне рамок Программы.\n" +"Попробуйте сначала создать Программу" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "Еще ни одного файла не загружено" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "В прямом эфире" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Не в эфире" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Офлайн" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Ничего не запланировано" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "Нажмите «Добавить» чтобы создать новый" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Пожалуйста введите ваш логин и пароль." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "Такой пользователь или e-mail не найдены." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Неправильно ввели логин или e-mail." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Неверный логин или пароль. Пожалуйста, попробуйте еще раз." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Вы просматриваете старые версии %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Вы не можете добавить треки в динамические блоки." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "У вас нет разрешения на удаление выбранных %s(s)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Вы можете добавить треки только в Смарт-блок." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Плейлист без названия" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Смарт-блок без названия" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Неизвестный Плейлист" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Настройки сохранены." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Настройки потока обновлены." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "необходимо указать путь" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Проблема с Liquidsoap ..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Метод запроса не принят" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Ретрансляция Программы %s от %s в %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Выбрать курсор" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Удалить курсор" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "Программы не существует" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Пользователь успешно добавлен!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Пользователь успешно обновлен!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Настройки успешно обновлены!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Веб-поток без названия" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Веб-поток сохранен." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Недопустимые значения." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Неверно введенный символ" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Укажите день" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Укажите время" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Нужно подождать хотя бы один час для ретрансляции" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "Добавить?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Выбрать Плейлист" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Повторять Плейлист, пока Программа не заполнится?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Использовать %s Аутентификацию:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Использование пользовательской идентификации:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Пользовательский логин" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Пользовательский пароль" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Хост:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Порт:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Точка монтирования:" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Поле «Логин» не может быть пустым." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Поле «Пароль» не может быть пустым." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Запись с линейного входа?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ретрансляция?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "дней" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Связать?" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Тип повтора:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "еженедельно" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "каждые 2 недели" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "каждые 3 недели" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "каждые 4 недели" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "ежемесячно" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Выберите дни недели:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Повторять:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "день месяца" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "день недели" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Дата окончания:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Бесконечно?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Дата окончания должна быть после даты начала" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Укажите день повтора" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Цвет фона:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Цвет текста:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Текущий логотип:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Логотип Программы:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Предпросмотр логотипа:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Имя:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Программа без названия" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Жанр:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Описание:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Описание экземпляра:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' не соответствует формату времени 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Время начала:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "В будущем:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Время завершения:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Длительность:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Часовой пояс:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Повторы?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Нельзя создать Программу в прошлом" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Нельзя изменить дату/время начала Программы, которая уже началась" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Дата/время окончания не могут быть в прошлом" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Не может длиться меньше 0 мин." + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Не может длиться 00 ч 00 мин" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Программа не может длиться больше 24 часов" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Нельзя запланировать пересекающиеся Программы." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Поиск пользователей:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Диджеи:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Название типа" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Код:" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "Видимость:" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Логин:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Пароль:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Пароль еще раз:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Имя:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Фамилия:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Номер телефона:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Категория:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Логин не является уникальным." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Удалить все треки в Библиотеке" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Дата начала:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Название:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Автор:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Альбом:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "Владелец:" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Год:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Метка:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Композитор:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Исполнитель:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Настроение:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Авторское право:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC номер:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Сайт:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Язык:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Опубликовать..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Время начала" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Время окончания" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Часовой пояс:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Название Станции:" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Описание Станции:" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Логотип Станции:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Стандартная длительность сведения треков (сек):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Пожалуйста введите время в секундах (например 0.5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Сведение по умолчанию (сек):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Затухание по умолчанию (сек):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "Вступительный автозагружаемый плейлист (Intro)" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "Завершающий автозагружаемый плейлист (Outro)" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Перезапись мета-тегов эпизодов Подкастов:" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды." + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "Разрешить публичный API для LibreTime?" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Требуется для встраиваемого виджета-расписания." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Язык по умолчанию:" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Часовой пояс станции:" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Неделя начинается с:" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "Отображать кнопку «Вход» на Странице Радио?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Авто-откл. внешнего потока:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Авто-вкл. внешнего потока:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Затухание при переключ. (сек):" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "Хост для источника Master:" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "Порт для источника Master:" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "Точка монтирования для источника Master:" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Хост для источника Show:" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Порт для источника Show:" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Точка монтирования для источника Show:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Вход" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Пароль" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Подтвердить новый пароль" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Подтверждение пароля не совпадает с вашим паролем." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Электронная почта" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Логин" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Сбросить пароль" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Назад" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Сейчас играет" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Выбрать поток:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Автоопределение наиболее приоритетного потока вещания." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Выберите поток:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Совместимость с мобильными" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - Проигрыватель не поддерживает вещание Opus ." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Встраиваемый код:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Предпросмотр:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Приватность ленты" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Публичный" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Частный" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Язык радиостанции" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Фильтровать по Программам" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Все мои Программы:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Мои Программы" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Выбрать критерии" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Битрейт (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Частота дискретизации (кГц)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "часов" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "минут" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "элементы" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "оставшееся время программы" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Случайно" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Новые" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Старые" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Давно проигранные" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Недавно проигранные" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Тип:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Динамический" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Статический" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Разрешить повторение треков:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Разрешить последнему треку превышать лимит времени:" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Сортировка треков:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Ограничить в:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Перемешать содержимое Плейлиста" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Перемешать" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Интервал не может быть пустым или менее 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Интервал не может быть более 24 часов" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Значение должно быть целым числом" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 является максимально допустимым значением" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Вы должны выбрать Критерии и Модификаторы" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "«Длительность» должна быть в формате '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Значение должно быть числом" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Значение должно быть меньше, чем 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Значение должно быть менее %s символов" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Значение не может быть пустым" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Мета-данные потока:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Исполнитель - Название трека " + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Программа - Исполнитель - Название трека" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Название станции - Программа" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Мета-данные при выкл. эфире" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Включить коэфф. усиления" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Изменить коэфф. усиления" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Аппаратный аудио выход" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Тип выхода" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Активировать:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Мобильный:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Тип потока:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Битрейт:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Тип сервиса:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Аудио каналы:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Сервер" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Порт" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Точка монтирования" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Название" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Добавить мета-данные вашей станции в TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID станции:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Ключ партнера:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Идентификатор партнера:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Импорт папки:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Просматриваемые папки:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Не является допустимой папкой" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Поля не могут быть пустыми" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не соответствует формату даты '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' имеет менее %min% символов" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' имеет более %max% символов" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Пароли не совпадают" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Привет %s, \n" +"\n" +"Пожалуйста нажми ссылку, чтобы сбросить свой пароль: " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"Если возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Спасибо,\n" +"Команда %s" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Сброс пароля" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Время начала и окончания звучания трека не заполнены." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Время окончания звучания не может превышать длину трека." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Время начала звучания не может быть позже времени окончания." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Время окончания звучания не может быть раньше времени начала." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Время загрузки" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Ничего" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "При поддержке %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Выберите страну" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "живой аудио поток" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Невозможно переместить элементы из связанных Программ" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Расписание, которое вы просматриваете - устарело!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Вы не допущены к планированию Программы %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Вы не можете добавлять файлы в записываемую Программу." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Программа %s окончилась и не может быть добавлена в расписание." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Программа %s была обновлена ранее!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "Контент в связанных Программах не может быть изменен пока Программа в эфире!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Выбранный файл не существует!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Максимальная продолжительность Программы - 24 часа." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Нельзя планировать пересекающиеся Программы.\n" +"Примечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ретрансляция %s из %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Длительность должна быть более 0 минут" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Длительность должна быть указана в формате '00h 00min'" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL должен быть в формате \"http://домен\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "Длина URL должна составлять не более 512 символов" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Для веб-потока не найдено MIME типа." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Имя веб-потока должно быть заполнено" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Не удалось анализировать XSPF Плейлист" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Не удалось анализировать PLS Плейлист" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Не удалось анализировать M3U Плейлист" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Неверный веб-поток - скорее всего это загрузка файла." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Нераспознанный тип потока: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Записанный файл не существует" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Просмотр мета-данных записанного файла" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Запланировать Треки" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Очистить Программу" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Отменить Программу" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Редактировать этот Экземпляр" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Редактировать Программу" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Удалить этот Экземпляр" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Удалить этот Экземпляр и все связанные" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Невозможно перетащить повторяющиеся Программы" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Невозможно переместить завершившуюся Программу" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Невозможно переместить Программу в прошлое" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Программа была удалена, потому что записанной Программы не существует!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Подождите один час до ретрансляции." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Трек" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Проиграно" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Автоматически сгенерированный Смарт-блок для подкаста" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Веб-потоки" + +#~ msgid " If not, try
sudo service libretime-celery restart" +#~ msgstr " Если нет - попробуйте запустить
sudo service libretime-celery restart" + +#~ msgid " to " +#~ msgstr " к " + +#~ msgid " track matches your search criteria." +#~ msgid_plural " tracks match your search criteria." +#~ msgstr[0] " трек соответствует вашим критериям поиска." +#~ msgstr[1] " трека соответствуют вашим критериям поиска." +#~ msgstr[2] " треков соответствуют вашим критериям поиска." + +#, php-format +#~ msgid "%01.1fGB of %01.1fGB" +#~ msgstr "%01.1fGB из %01.1fGB" + +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s распространяется под %3$s" + +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, радио-приложение c открытым кодом для планирования и удаленного управления радиостанцией." + +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s Copyright © %2$s Все права защищены.
Поддерживается и распространяется под лицензией %3$s командой %4$s" + +#, php-format +#~ msgid "%s Version" +#~ msgstr "Версия %s:" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s содержит вложенную просматриваемую папку: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s не существует в просматриваемом списке." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s уже просматривается." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s вложено в существующую просматриваемую папку: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s не является действительной папкой." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(В целях продвижения вашей станции, опция «Отправить отзывы о поддержке» должна быть включена)." + +#~ msgid "(Required)" +#~ msgstr "*" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Веб-сайт вашей радиостанции)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Только для проверки, не будет опубликовано)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(чч:мм:сс.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(сс.t)" + +#~ msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." +#~ msgstr "* Известно, что для Chrome на Android требуется около 4 секунд для буферизации потока MP3 со скоростью 128 кбит/с. Более низкие битрейты требуют больше времени для буферизации." + +#~ msgid "1 - Mono" +#~ msgstr "Моно" + +#~ msgid "2 - Stereo" +#~ msgstr "Стерео" + +#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#~ msgstr "
Это только предварительный просмотр возможного контента, сгенерированного Смарт-блоком на основе вышеуказанных критериев." + +#~ msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" +#~ msgstr "ВНИМАНИЕ: Применение этих функций необратимо повлияет на вашу радиостанцию Libretime. Будьте внимательны, прежде чем использовать их!" + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Ссылка на сброс пароля была отправлена на вашу электронную почту. Пожалуйста проверьте и следуйте инструкциям в прилагаемом письме, чтобы сбросить пароль. Если Вы не видите письмо в папке Входящие, проверьте папку Спам" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Список воспроизведения будет составлен, как только вы добавите Смарт-блок в Программу." + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "О программе" + +#~ msgid "Access Denied!" +#~ msgstr "Доступ запрещен!" + +#~ msgid "Add New Field" +#~ msgstr "Добавить новое поле" + +#~ msgid "Add more elements" +#~ msgstr "Добавить еще элементы" + +#~ msgid "Add this show" +#~ msgstr "Добавить эту Программу" + +#~ msgid "Add to My Facebook Page" +#~ msgstr "Добавить на Facebook" + +#~ msgid "Add tracks to your show" +#~ msgstr "Добавить треки в Программу" + +#~ msgid "Additional Options" +#~ msgstr "Дополнительные настройки" + +#~ msgid "Admin Password" +#~ msgstr "Пароль администратора" + +#~ msgid "Admin User" +#~ msgstr "Администратор" + +#~ msgid "Advanced Search Options" +#~ msgstr "Дополнительные параметры поиска" + +#~ msgid "Advanced options" +#~ msgstr "Дополнительные опции" + +#~ msgid "Air Date" +#~ msgstr "Дата эфира" + +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "LibreTime приобрел новый вид!" + +#~ msgid "All rights are reserved" +#~ msgstr "Все права защищены" + +#~ msgid "Allowed CORS URLs" +#~ msgstr "Разрешенные адреса CORS:" + +#~ msgid "An error has occurred." +#~ msgstr "Произошла ошибка." + +#~ msgid "Audio Track" +#~ msgstr "Аудиодорожка" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Автозагружаемый Плейлист" + +#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +#~ msgstr "Содержимое автозагружаемого Плейлиста добавляется в Программу за один час до ее выхода в эфир. Больше информации" + +#~ msgid "Average Listeners" +#~ msgstr "Слушателей в среднем" + +#~ msgid "Bad Request!" +#~ msgstr "Неверный запрос!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s." + +#~ msgid "Category" +#~ msgstr "Категория" + +#~ msgid "Check that the libretime-celery service is installed correctly in " +#~ msgstr "Проверьте, что служба libretime-celery правильно установлена в " + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Установите галочки в нужных местах и нажмите «Опубликовать» для публикации этого трека в отмеченных сервисах." + +#~ msgid "Choose Days:" +#~ msgstr "Выберите дни:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Выберите экземпляр программы" + +#~ msgid "Choose folder" +#~ msgstr "Выбрать папку" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Выберите несколько критериев поиска выше и нажмите кнопку «Сгенерировать», чтобы создать этот Плейлист." + +#~ msgid "City:" +#~ msgstr "Город:" + +#~ msgid "Clear" +#~ msgstr "Очистить" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Выберите «Календарь» в навигационной панели слева. Нажмите кнопку «Новая Программа» и заполните необходимые поля." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Выберите вашу Программу в календаре и нажмите «Запланировать Программу». В появившемся окне добавьте треки в вашу Программу." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Нажмите на кнопку «Загрузить» в левом углу, чтобы начать загрузку треков в Библиотеку." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Кликните отметку ниже для продвижения вашей радиостанции на %s." + +#~ msgid "Code" +#~ msgstr "Код" + +#~ msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." +#~ msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить еженедельное расписание. Настройте высоту и ширину виджета, изменив соответствующие значения «height» и «width» в этом коде." + +#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +#~ msgstr "Не могу подключиться к RabbitMQ серверу! Пожалуйста проверьте, включен ли сервер и все ли верно настроено." + +#~ msgid "Country:" +#~ msgstr "Страна:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Создание шаблона сводки файлов" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Создание шаблона таблицы логов" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Начало звучания: " + +#~ msgid "Cue Out: " +#~ msgstr "Окончание звучания: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Текущая папка импорта:" + +#~ msgid "Cursor" +#~ msgstr "Курсор" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Вещание на внешние сервера" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "Измените плеер, настроив параметры ниже. Когда вы закончите, скопируйте встраиваемый код из области ниже и вставьте в необходимый HTML блок на вашем сайте." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "DJ-и могут использовать эти настройки в программном обеспечении для живого вещания, только во время назначенных им Программ." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "DJ-и могут использовать эти настройки для подключения совместимого программного обеспечения и вещать в прямом эфире во время текущей программы. Отметьте DJ-ев ниже." + +#~ msgid "Dangerous Options" +#~ msgstr "Опасные настройки" + +#~ msgid "Dashboard" +#~ msgstr "Панель управления" + +#~ msgid "Database configuration for LibreTime" +#~ msgstr "Конфигурация базы данных LibreTime" + +#~ msgid "Date Range" +#~ msgstr "Выберите интервал дат ниже" + +#~ msgid "Default Length:" +#~ msgstr "Длительность по умолчанию:" + +#~ msgid "Default License:" +#~ msgstr "Лицензия по умолчанию:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Способ распространения по-умолчанию:" + +#~ msgid "Default Streaming" +#~ msgstr "Встроенное вещание" + +#~ msgid "Desktop" +#~ msgstr "Компьютер/ноутбук" + +#~ msgid "Disk Space" +#~ msgstr "Дисковое пространство:" + +#~ msgid "Download latest episodes:" +#~ msgstr "Загружать последние эпизоды:" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Перетащите треки сюда из Библиотеки, чтобы добавить их в Плейлист" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Перенесите файлы сюда или кликните, чтобы выбрать файлы с компьютера." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Динамический Смарт-блок" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Критерии динамического Смарт-блока: " + +#~ msgid "Edit Metadata..." +#~ msgstr "Править мета-данные..." + +#~ msgid "Editing " +#~ msgstr "Редактирование " + +#~ msgid "Email Sent!" +#~ msgstr "Письмо отправлено!" + +#~ msgid "Empty playlist content" +#~ msgstr "Очистить Плейлист" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Развернуть динамический Блок" + +#~ msgid "Expand Static Block" +#~ msgstr "Развернуть статический Блок" + +#~ msgid "Explicit" +#~ msgstr "Откровенное содержимое" + +#~ msgid "FAQ" +#~ msgstr "Частые вопросы" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Радио-плеер для Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Сведение (сек): " + +#~ msgid "Fade in: " +#~ msgstr "Сведение (сек): " + +#~ msgid "Fade out: " +#~ msgstr "Затухание (сек): " + +#~ msgid "Failed" +#~ msgstr "Не удалось" + +#~ msgid "File Path:" +#~ msgstr "Путь к папке:" + +#~ msgid "File Summary" +#~ msgstr "Сводка по файлам" + +#~ msgid "File Summary Templates" +#~ msgstr "Шаблоны сводки файлов" + +#~ msgid "File import in progress..." +#~ msgstr "Добавление файлов в процессе..." + +#~ msgid "Filter History" +#~ msgstr "Фильтр истории" + +#~ msgid "Find" +#~ msgstr "Найти" + +#~ msgid "Find Shows" +#~ msgstr "Найти Программы" + +#~ msgid "First Name" +#~ msgstr "Имя" + +#, php-format +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "Для подробной информации значений данных разделов, пожалуйста просмотрите %sRSS спецификацию%s или %sдокументацию Подкастов Apple%s." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Для более подробной справки читайте %sруководство пользователя%s ." + +#~ msgid "Forgot your password?" +#~ msgstr "Забыли пароль?" + +#~ msgid "General Fields" +#~ msgstr "Основные поля" + +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Создать Смарт-блок и Плейлист" + +#~ msgid "Global" +#~ msgstr "Глобальные настройки" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." + +#~ msgid "Help Translate Libretime" +#~ msgstr "Помогите перевести Libretime" + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Помогите усовершенствовать %s сообщив нам как вы используете приложение. Информация будет собираться постоянно в целях усовершенствования использования.
Кликните ниже и мы будем знать, какие возможности вы используете." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Как использовать %s для автоматизации ваших трансляций: " + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Мета-данные Icecast Vorbis" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC номер:" + +#~ msgid "Jack" +#~ msgstr "Джек" + +#~ msgid "Keywords" +#~ msgstr "Ключевые слова" + +#~ msgid "Last Name" +#~ msgstr "Фамилия" + +#~ msgid "Length:" +#~ msgstr "Длительность:" + +#~ msgid "Limit to " +#~ msgstr "Ограничить до " + +#~ msgid "Listen" +#~ msgstr "Слушать" + +#~ msgid "Listeners" +#~ msgstr "Слушатели" + +#~ msgid "Live Broadcasting" +#~ msgstr "Живое вещание" + +#~ msgid "Live Stream Input" +#~ msgstr "Вход для прямого эфира" + +#~ msgid "Live stream" +#~ msgstr "Прямой эфир" + +#~ msgid "Log Sheet" +#~ msgstr "Лог треков" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Шаблоны таблицы логов" + +#~ msgid "Logout" +#~ msgstr "Выйти" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Похоже, что страница, которую вы ищете, не существует!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Похоже, в этот день не запланировано ни одной Программы." + +#~ msgid "MP3/AAC only" +#~ msgstr "Только MP3/AAC" + +#~ msgid "MP3/OGG* only" +#~ msgstr "Только MP3/OGG*" + +#~ msgid "Manage Track Types" +#~ msgstr "Управление типами треков" + +#~ msgid "Manage Users" +#~ msgstr "Управление пользователями" + +#~ msgid "Master Source" +#~ msgstr "Источник: Master" + +#~ msgid "Maximum Number of Listeners" +#~ msgstr "Максимум слушателей" + +#~ msgid "Mobile" +#~ msgstr "Мобильный телефон" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Ежемесячная пропускная способность слушателей" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Точка монтирования не может быть пустой в Icecast сервер." + +#~ msgid "New Criteria" +#~ msgstr "Новый критерий" + +#~ msgid "New File Summary Template" +#~ msgstr "Новый шаблон сводки файлов" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Новый шаблон лога треков" + +#~ msgid "New Modifier" +#~ msgstr "Новый модификатор" + +#~ msgid "New Track Type" +#~ msgstr "Новый тип" + +#~ msgid "New User" +#~ msgstr "Новый пользователь" + +#~ msgid "New password" +#~ msgstr "Новый пароль" + +#~ msgid "Next:" +#~ msgstr "Следующий:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Нет шаблона сводки файлов" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Нет шаблона таблицы логов" + +#~ msgid "No open playlist" +#~ msgstr "Нет открытого Плейлиста" + +#~ msgid "No smart block currently open" +#~ msgstr "Нет открытого Смарт-блока" + +#~ msgid "No webstream" +#~ msgstr "Нет веб-потока" + +#~ msgid "Now Playing:" +#~ msgstr "Сейчас играет:" + +#~ msgid "Now you're good to go!" +#~ msgstr "Теперь можно двигаться дальше!" + +#~ msgid "OK" +#~ msgstr "OK " + +#~ msgid "ON AIR" +#~ msgstr "В ЭФИРЕ" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Разрешены только числа." + +#~ msgid "Oops!" +#~ msgstr "Упс!" + +#~ msgid "Original Length:" +#~ msgstr "Исходная длина трека:" + +#~ msgid "" +#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" +#~ " is easier than ever." +#~ msgstr "Интерфейс нашей новой Панели управления теперь имеет мощный функционал с разделами, чтобы обновление ваших треков и Плейлистов было еще проще." + +#~ msgid "Output Streams" +#~ msgstr "Исходящие Потоки" + +#~ msgid "Override" +#~ msgstr "Переопределить " + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Перезаписывать название Альбома на название Подкаста в процессе загрузки." + +#~ msgid "PDO and PostgreSQL libraries" +#~ msgstr "Библиотеки PDO и PostgreSQL" + +#~ msgid "Page not found!" +#~ msgstr "Страница не найдена!" + +#~ msgid "Password Reset" +#~ msgstr "Сброс пароля" + +#~ msgid "Pending" +#~ msgstr "Ожидание" + +#~ msgid "Phone:" +#~ msgstr "Телефон:" + +#~ msgid "Play" +#~ msgstr "Воспроизвести" + +#~ msgid "Playlist Contents: " +#~ msgstr "Содержимое Плейлиста: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Сведение в Плейлисте" + +#~ msgid "Playout History Templates" +#~ msgstr "Шаблоны истории воспроизведения треков" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Пожалуйста, введите и подтвердите новый пароль ниже." + +#~ msgid "Please enter both your username and email address." +#~ msgstr "Пожалуйста, введите ваши логин и e-mail." + +#~ msgid "Podcast Name: " +#~ msgstr "Название Подкаста: " + +#~ msgid "Podcast URL: " +#~ msgstr "Ссылка на Подкаст: " + +#~ msgid "Podcasts" +#~ msgstr "Подкасты" + +#~ msgid "Port cannot be empty." +#~ msgstr "Порт не может быть пустым." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Powered by LibreTime" +#~ msgstr "При поддержке LibreTime" + +#~ msgid "Previous:" +#~ msgstr "Предыдущий:" + +#~ msgid "Privacy Settings" +#~ msgstr "Настройки конфиденциальности" + +#~ msgid "Promote my station on %s" +#~ msgstr "Продвигать мою станцию на %s" + +#~ msgid "Publish to:" +#~ msgstr "Опубликовать в:" + +#~ msgid "Published on:" +#~ msgstr "Опубликовано в:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Опубликованные треки могут быть удалены или обновлены ниже." + +#~ msgid "Publishing" +#~ msgstr "Публикуется" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "RESET" +#~ msgstr "Сброс " + +#~ msgid "RSS Feed URL:" +#~ msgstr "Ссылка RSS ленты:" + +#~ msgid "RabbitMQ configuration for LibreTime" +#~ msgstr "Конфигурация RabbitMQ для LibreTime" + +#~ msgid "Recent Uploads" +#~ msgstr "Последние загрузки" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Запись и Ретрансляция" + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +#~ msgstr "Внешние URL адреса, которым разрешен доступ к данному экземпляру LibreTime в браузере. Укажите каждый адрес отдельной строкой." + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Удалить все треки из этого Смарт-блока" + +#~ msgid "Remove watched directory" +#~ msgstr "Удалить просматриваемую папку" + +#~ msgid "Repeat Days:" +#~ msgstr "Повторить в дни:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Пересканировать наблюдаемую папку (Полезно для сетевой папки, которая может быть не синхронизирована с %s)." + +#~ msgid "Sample Rate:" +#~ msgstr "Частота дискретизации:" + +#~ msgid "Save playlist" +#~ msgstr "Сохранить Плейлист" + +#~ msgid "Save podcast" +#~ msgstr "Сохранить Подкаст" + +#~ msgid "Save station podcast" +#~ msgstr "Сохранить Подкаст станции" + +#~ msgid "Schedule a show" +#~ msgstr "Запланировать Программу" + +#~ msgid "Scheduled Shows" +#~ msgstr "Запланированные Программы" + +#~ msgid "Scheduling:" +#~ msgstr "Запланировано:" + +#~ msgid "Search Criteria:" +#~ msgstr "Критерии поиска:" + +#~ msgid "Select stream:" +#~ msgstr "Выберите поток:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Сервер не может быть пустым." + +#~ msgid "Service" +#~ msgstr "Служба" + +#~ msgid "Service Status" +#~ msgstr "Статус службы" + +#~ msgid "Set" +#~ msgstr "Установить" + +#~ msgid "Set Cue In" +#~ msgstr "Установить начало звучания" + +#~ msgid "Set Cue Out" +#~ msgstr "Установить окончание звучания" + +#~ msgid "Set Default Template" +#~ msgstr "Установить шаблон по умолчанию" + +#~ msgid "Share" +#~ msgstr "Поделиться" + +#~ msgid "Show Name" +#~ msgstr "Программа" + +#~ msgid "Show Source" +#~ msgstr "Источник: Show" + +#~ msgid "Show Summary" +#~ msgstr "Сводка по программам" + +#~ msgid "Show Waveform" +#~ msgstr "Показать волну трека" + +#~ msgid "Show me what I am sending " +#~ msgstr "Покажите мне, что я отправляю " + +#~ msgid "Shuffle playlist" +#~ msgstr "Перемешать Плейлист" + +#~ msgid "Smartblock and Playlist Generated" +#~ msgstr "Смарт-блок и Плейлист сгенерированы" + +#~ msgid "Smartblock and Playlist generated" +#~ msgstr "Смарт-блок и Плейлист созданы" + +#~ msgid "Source Streams" +#~ msgstr "Внешние источники" + +#~ msgid "Static Smart Block" +#~ msgstr "Статический Смарт-блок" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Содержимое статического Смарт-блока: " + +#~ msgid "Station Description:" +#~ msgstr "Описание станции:" + +#~ msgid "Station Web Site:" +#~ msgstr "Сайт станции:" + +#~ msgid "Stop" +#~ msgstr "Стоп" + +#~ msgid "Storage" +#~ msgstr "Хранилище" + +#~ msgid "Stream " +#~ msgstr "Поток " + +#~ msgid "Stream Compatibility" +#~ msgstr "Совместимость потоков с устройствами" + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Состояние потоков для сбора данных:" + +#~ msgid "Stream Settings" +#~ msgstr "Настройки потока" + +#~ msgid "Stream URL:" +#~ msgstr "URL потока:" + +#~ msgid "Stream URL: " +#~ msgstr "URL потока: " + +#~ msgid "Streaming Server:" +#~ msgstr "Сервер вещания:" + +#~ msgid "Style" +#~ msgstr "Стиль" + +#~ msgid "Subscribe" +#~ msgstr "Подписаться" + +#~ msgid "Subtitle" +#~ msgstr "Подзаголовок" + +#~ msgid "Summary" +#~ msgstr "Краткое описание" + +#~ msgid "Support Feedback" +#~ msgstr "Отзывы о поддержке" + +#~ msgid "Support setting updated." +#~ msgstr "Настройка поддержки обновлена." + +#~ msgid "Table Test" +#~ msgstr "Таблица тестов" + +#~ msgid "Terms and Conditions" +#~ msgstr "Правила и условия использования" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Следующая информация будет отображаться слушателям в их плеере:" + +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "Новая версия LibreTime плавнее и быстрее на еще большем количестве устройств! Мы стремимся улучшить впечатления от использования LibreTime не зависимо от того, как подключаетесь вы и ваши слушатели." + +#~ msgid "The requested action is not supported!" +#~ msgstr "Запрашиваемое действие не поддерживается!" + +#~ msgid "The work is in the public domain" +#~ msgstr "Работа находится в свободном доступе" + +#~ msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" +#~ msgstr "Затем, перетащите элемент «Радиоплеер» вверх списка и нажмите «Save». Теперь он будет отображаться как одна из вкладок по умолчанию, а не скрываться под «More»" + +#~ msgid "Tips:" +#~ msgstr "Советы:" + +#~ msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" +#~ msgstr "Чтобы сделать вкладку более заметной на вашей странице Facebook, нажмите «More», затем «Manage Tabs»" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Для проигрывания медиа-файла необходимо обновить браузер до последней версии или обновить %sфлэш-плагин%s." + +#~ msgid "Toggle Details" +#~ msgstr "Отобразить Подробнее" + +#~ msgid "Track:" +#~ msgstr "Трек:" + +#~ msgid "TuneIn Settings" +#~ msgstr "Настройки TuneIn" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Введите символы, которые вы видите на картинке ниже." + +#~ msgid "Update Required" +#~ msgstr "Требуется обновление" + +#~ msgid "Update show" +#~ msgstr "Обновить Программу" + +#~ msgid "Update track" +#~ msgstr "Обновить трек" + +#~ msgid "Upload" +#~ msgstr "Загрузить" + +#~ msgid "Upload audio tracks" +#~ msgstr "Загрузить аудио теки" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Используйте эти настройки в программном обеспечении для трансляции в любое время с приоритетом над всеми Программами." + +#~ msgid "User Type" +#~ msgstr "Категория" + +#~ msgid "View Feed" +#~ msgstr "Просмотр Ленты" + +#~ msgid "View track" +#~ msgstr "Просмотреть трек" + +#~ msgid "Viewing " +#~ msgstr "Просмотр " + +#~ msgid "Visibility" +#~ msgstr "Видимость" + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "Мы не можем найти страницу, которую Вы пытаетесь открыть." + +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." + +#~ msgid "Web Stream" +#~ msgstr "Веб-поток" + +#~ msgid "Webstream" +#~ msgstr "Веб-поток" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Добро пожаловать %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Добро пожаловать в %s демо! Вы можете авторизоваться, введя логин 'admin' и пароль 'admin'." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Добро пожаловать в новый LibreTime!" + +#~ msgid "What" +#~ msgstr "Что" + +#~ msgid "When" +#~ msgstr "Когда" + +#~ msgid "Who" +#~ msgstr "Кто" + +#~ msgid "Yes (Flash)" +#~ msgstr "Да (Flash)" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Не выставлена просматриваемая папка с треками." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Это можно настроить позже в настройках пользователя." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "У Вас нет прав для просмотра данной страницы!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "У вас нет прав на изменение этого трека." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Вы уже опубликовали этот трек во всех возможных источниках!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Вы должны согласиться с политикой конфиденциальности." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Вы еще нигде не публиковали данный трек!" + +#~ msgid "" +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." +#~ msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше." + +#~ msgid "Your trial expires in" +#~ msgstr "Ваш ознакомительный период истекает через" + +#~ msgid "and" +#~ msgstr "и" + +#~ msgid "dB" +#~ msgstr "дБ" + +#~ msgid "file meets the criteria" +#~ msgstr "файл соответствует критериям" + +#~ msgid "files meet the criteria" +#~ msgstr "файлы соответствуют критериям" + +#~ msgid "iTunes Fields" +#~ msgstr "Данные iTunes" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "Макс. громкость" + +#~ msgid "mute" +#~ msgstr "Без звука" + +#~ msgid "next" +#~ msgstr "следующий" + +#~ msgid "of" +#~ msgstr "из" + +#~ msgid "or" +#~ msgstr "или" + +#~ msgid "pause" +#~ msgstr "пауза" + +#~ msgid "play" +#~ msgstr "играть" + +#~ msgid "previous" +#~ msgstr "предыдущая" + +#~ msgid "stop" +#~ msgstr "стоп" + +#~ msgid "unmute" +#~ msgstr "Включить звук" diff --git a/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po b/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..f252a03e3f --- /dev/null +++ b/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po @@ -0,0 +1,4609 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Serbian (Serbia)\n" +"Language: sr_RS\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Година %s мора да буде у распону између 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s није исправан датум" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s није исправан датум" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Календар" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Корисници" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Преноси" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Стање" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Историја Пуштених Песама" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Историјски Шаблони" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Слушатељска Статистика" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Помоћ" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Почетак Коришћења" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Упутство" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Не смеш да приступиш овог извора." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Не смеш да приступите овог извора." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Неисправан захтев." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Неисправан захтев" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Немаш допуштење да искључиш извор." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Нема спојеног извора на овај улаз." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Немаш дозволу за промену извора." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s није пронађен" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Нешто је пошло по криву." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Преглед" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Додај на Списак Песама" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Додај у Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Обриши" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Преузимање" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Удвостручавање" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Нема доступних акција" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Немаш допуштење за брисање одабране ставке." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Копирање од %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Аудио Уређај" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Снимање:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Мајсторски Пренос" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Пренос Уживо" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Ништа по распореду" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Садашња Емисија:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Тренутна" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Ти имаш инсталирану најновију верзију" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Нова верзија је доступна:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Додај у тренутни списак песама" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Додај у тренутни smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Додавање 1 Ставке" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Додавање %s Ставке" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Можеш да додаш само песме код паметних блокова." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Молимо одабери место показивача на временској црти." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Додај" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Уређивање" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Уклони" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Уреди Метаподатке" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Додај у одабраној емисији" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Одабери" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Одабери ову страницу" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Одзначи ову страницу" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Одзначи све" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Заказана" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Назив" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Творац" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Албум" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Пренос Бита" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Композитор" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Диригент" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Ауторско право" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Кодирано је по" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Жанр" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Налепница" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Језик" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Последња Измена" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Задњи Пут Одиграна" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Дужина" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Расположење" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Власник" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Узорак Стопа" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Број Песма" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Додата" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Веб страница" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Година" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Учитавање..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Све" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Датотеке" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Листе песама" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Block-ови" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Преноси" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Непознати тип:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Јеси ли сигуран да желиш да обришеш изабрану ставку?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Пренос је у току..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Преузимање података са сервера..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Шифра грешке:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Порука о грешци:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Мора да буде позитиван број" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Мора да буде број" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Мора да буде у облику: гггг-мм-дд" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Мора да буде у облику: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Отвори Медијског Градитеља" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "молимо стави у време '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Твој претраживач не подржава ову врсту аудио фајл:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Динамички блок није доступан за преглед" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Ограничити се на:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Списак песама је спремљена" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Списак песама је измешан" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Број Слушалаца %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Подсети ме за 1 недељу" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Никад ме више не подсети" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Да, помажем Airtime-у" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Слика мора да буде jpg, jpeg, png, или gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block је измешан" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block је генерисан и критеријуме су спремне" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block је сачуван" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Обрада..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Одабери модификатор" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "садржи" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "не садржи" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "је" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "није" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "почиње се са" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "завршава се са" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "је већи од" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "је мањи од" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "је у опсегу" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Генериши" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Одабери Мапу за Складиштење" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Одабери Мапу за Праћење" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Јеси ли сигуран да желиш да промениш мапу за складиштење?\n" +"То ће да уклони датотеке из твоје библиотеке!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Управљање Медијске Мапе" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Јеси ли сигуран да желиш да уклониш надзорску мапу?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Овај пут није тренутно доступан." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Прикључен је на серверу" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Пренос је онемогућен" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Добијање информација са сервера..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Не може да се повеже на серверу" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Провери ову опцију како би се омогућило метаподатака за OGG потоке." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Нема пронађених резултата" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Емисија у овом случају више не постоји!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Упозорење: Емисије не може поново да се повеже" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Емисија" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Емисија је празна" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Добијање података са сервера..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Ова емисија нема заказаног садржаја." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Ова емисија није у потпуности испуњена са садржајем." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Јануар" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Фебруар" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Март" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Април" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Мај" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Јун" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Јул" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Август" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Септембар" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Октобар" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Новембар" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Децембар" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Јан" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Феб" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Мар" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Апр" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Јун" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Јул" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Авг" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Сеп" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Окт" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Нов" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Дец" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Недеља" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Понедељак" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Уторак" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Среда" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Четвртак" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Петак" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Субота" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Нед" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Пон" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Уто" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Сре" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Чет" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Пет" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Суб" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Емисија дуже од предвиђеног времена ће да буде одсечен." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Откажи Тренутног Програма?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Заустављање снимање емисије?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ок" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Садржај Емисије" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Уклониш све садржаје?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Обришеш ли одабрану (е) ставу (е)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Почетак" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Завршетак" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Трајање" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Одтамњење" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Затамњење" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Празна Емисија" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Снимање са Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Преглед песма" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Не може да се заказује ван емисије." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Премештање 1 Ставка" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Премештање %s Ставке" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Сачувај" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Одустани" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Уређивач за (Од-/За-)тамњивање" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Уређивач" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Таласни облик функције су доступне у споредну Web Audio API прегледачу" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Одабери све" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Не одабери ништа" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Уклони одабране заказане ставке" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Скочи на тренутну свирану песму" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Поништи тренутну емисију" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Отвори библиотеку за додавање или уклањање садржаја" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Додај / Уклони Садржај" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "у употреби" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Диск" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Погледај унутра" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Отвори" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Администратор" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "Диск-џокеј" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Водитељ Програма" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Гост" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Гости могу да уради следеће:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Преглед распореда" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Преглед садржај емисије" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Диск-џокеји могу да уради следеће:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Управљање додељен садржај емисије" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Увоз медијске фајлове" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Изради листе песама, паметне блокове, и преносе" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Управљање своје библиотечког садржаја" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Приказ и управљање садржај емисије" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Распоредне емисије" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Управљање све садржаје библиотека" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Администратори могу да уради следеће:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Управљање подешавања" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Управљање кориснике" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Управљање надзираних датотеке" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Пошаљи повратне информације" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Преглед стања система" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Приступ за историју пуштених песама" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Погледај статистику слушаоце" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Покажи/сакриј колоне" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Од {from} до {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "гггг-мм-дд" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Не" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "По" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ут" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Ср" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Че" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Пе" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Су" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Затвори" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Сат" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Минута" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Готово" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Изабери датотеке" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Додај датотеке и кликни на 'Покрени Upload' дугме." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Додај Датотеке" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Заустави Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Покрени upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Додај датотеке" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Послата %d/%d датотека" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Повуци датотеке овде." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Грешка (ознаку типа датотеке)." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Грешка величине датотеке." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Грешка број датотеке." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init грешка." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Грешка." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Безбедносна грешка." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Генеричка грешка." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO грешка." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Фајл: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d датотека на чекању" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Датотека: %f, величина: %s, макс величина датотеке: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Преносни URL може да буде у криву или не постоји" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Грешка: Датотека је превелика:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Грешка: Неважећи ознак типа датотека:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Постави Подразумевано" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Стварање Уноса" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Уреди Историјат Уписа" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Нема Програма" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s ред%s је копиран у међумеморију" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Опис" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Омогућено" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Онемогућено" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Гледаш старију верзију %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Не можеш да додаш песме за динамичне блокове." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Немаш допуштење за брисање одабраног (е) %s." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Можеш само песме да додаш за паметног блока." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Неименовани Списак Песама" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Неименовани Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Непознати Списак Песама" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Подешавања су ажуриране." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Пренос Подешавање је Ажурирано." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "пут би требао да буде специфициран" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Проблем са Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Реемитовање емисија %s од %s на %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Одабери показивач" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Уклони показивач" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "емисија не постоји" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Корисник је успешно додат!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Корисник је успешно ажуриран!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Подешавања су успешно ажуриране!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Неименовани Пренос" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Пренос је сачуван." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Неважећи вредности обрасца." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Унесени су неважећи знакови" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Дан мора да буде наведен" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Време мора да буде наведено" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Користи Прилагођено потврду идентитета:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Прилагођено Корисничко Име" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Прилагођена Лозинка" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "'Корисничко Име' поља не сме да остане празно." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "'Лозинка' поља не сме да остане празно." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Снимање са Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Поново да емитује?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "дани" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Тип Понављање:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "недељно" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "сваке 2 недеље" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "свака 3 недеље" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "свака 4 недеље" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "месечно" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Одабери Дане:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Понављање По:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "дан у месецу" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "дан у недељи" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Датум Завршетка:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Нема Краја?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Датум завршетка мора да буде после датума почетка" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Молимо, одабери којег дана" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Боја Позадине:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Боја Текста:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Назив:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Неименована Емисија" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Жанр:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Опис:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' се не уклапа у временском формату 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Трајање:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Временска Зона:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Понављање?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Не може да се створи емисију у прошлости" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Датум завршетка и време не може да буде у прошлости" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Не може да траје < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Не може да траје 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Не може да траје више од 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Не можеш заказати преклапајуће емисије" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Тражи Кориснике:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Диск-џокеји:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Корисничко име:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Лозинка:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Потврди Лозинку:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Име:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Презиме:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Е-маил:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Мобилни Телефон:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Типова Корисника:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Име пријаве није јединствено." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Датум Почетка:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Назив:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Творац:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Aлбум:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Година:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Налепница:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Композитор:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Диригент:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Расположење:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Ауторско право:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Број:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Веб страница:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Језик:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Време Почетка" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Време Завршетка" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Временска Зона Интерфејси:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Назив Станице" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Лого:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Напомена: Све већа од 600к600 ће да се мењају." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Подразумевано Трајање Укрштено Стишавање (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Подразумевано Одтамњење (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Подразумевано Затамњење (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Станична Временска Зона" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Први Дан у Недељи" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Пријава" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Лозинка" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Потврди нову лозинку" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Лозинке које сте унели не подударају се." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Корисничко име" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Ресетуј лозинку" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Тренутно Извођена" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Све Моје Емисије:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Одабери критеријуме" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Брзина у Битовима (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Узорак Стопа (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "сати" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "минути" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "елементи" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Динамички" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Статички" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Генерисање листе песама и чување садржаја критеријуме" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Садржај случајни избор списак песама" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Мешање" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ограничење не може да буде празан или мањи од 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ограничење не може да буде више од 24 сати" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Вредност мора да буде цео број" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 је макс ставу граничну вредност могуће је да подесиш" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Мораш да изабереш Критерију и Модификацију" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Дужина' требала да буде у '00:00:00' облику" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Вредност мора да буде нумеричка" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Вредност би требала да буде мања од 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Вредност мора да буде мања од %s знакова" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Вредност не може да буде празна" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Видљиви Подаци:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Аутор - Назив" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Емисија - Аутор - Назив" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Назив станице - Назив емисије" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Метаподаци" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Укључи Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Модификатор" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Омогућено:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Пренос Типа:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Брзина у Битовима:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Тип Услуге:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Канали:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Сервер" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Порт" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Тачка Монтирања" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Назив" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Увозна Мапа:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Мапе Под Надзором:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Не важећи Директоријум" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Вредност је потребна и не може да буде празан" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не одговара по облику датума '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' је мањи од %min% дугачко знакова" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' је више од %max% дугачко знакова" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' није између '%min%' и '%max%', укључиво" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Лозинке се не подударају" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "'Cue in' и 'cue out' су нуле." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Одабери Државу" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Не можеш да преместиш ставке из повезаних емисија" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Застарео се прегледан распоред! (неважећи распоред)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Застарео се прегледан распоред! (пример неусклађеност)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Застарео се прегледан распоред!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Не смеш да закажеш распоредну емисију %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Не можеш да додаш датотеке за снимљене емисије." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Емисија %s је готова и не могу да буде заказана." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Раније је %s емисија већ била ажурирана!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Изабрани Фајл не постоји!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Емисије могу да имају највећу дужину 24 сата." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Не може да се закаже преклапајуће емисије.\n" +"Напомена: Промена величине понављане емисије утиче на све њене понављање." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Реемитовање од %s од %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Дужина мора да буде већа од 0 минута" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Дужина мора да буде у облику \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL мора да буде у облику \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL мора да буде 512 знакова или мање" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Не постоји MIME тип за пренос." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Име преноса не може да да буде празно" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Нисмо могли анализирати XSPF списак песама" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Нисмо могли анализирати PLS списак песама" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Нисмо могли анализирати M3U списак песама" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Неважећи пренос - Чини се да је ово преузимање." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Непознати преносни тип: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Снимљена датотека не постоји" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Метаподаци снимљеног фајла" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Уређивање Програма" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Дозвола одбијена" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Не можеш повући и испустити понављајуће емисије" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Не можеш преместити догађане емисије" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Не можеш преместити емисију у прошлости" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Емисија је избрисана јер је снимљена емисија не постоји!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Мораш причекати 1 сат за ре-емитовање." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Песма" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Пуштена" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "до" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s садржава угнежђене надзиране директоријуме: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s не постоји у листи надзираних локације." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s је већ надзиран." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s није ваљан директоријум." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)." + +#~ msgid "(Required)" +#~ msgstr "(Обавезно)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Твоја радијска станица веб странице)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(служи само за проверу, неће да буде објављена)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "О пројекту" + +#~ msgid "Add New Field" +#~ msgstr "Додај Ново Поље" + +#~ msgid "Add more elements" +#~ msgstr "Додај више елемената" + +#~ msgid "Add this show" +#~ msgstr "Додај ову емисију" + +#~ msgid "Additional Options" +#~ msgstr "Додатне Опције" + +#~ msgid "Admin Password" +#~ msgstr "Aдминска Лозинка" + +#~ msgid "Admin User" +#~ msgstr "Админ Корисник" + +#~ msgid "Advanced Search Options" +#~ msgstr "Напредне Опције Претраживања" + +#~ msgid "All rights are reserved" +#~ msgstr "Сва права задржана" + +#~ msgid "Audio Track" +#~ msgstr "Звучни Запис" + +#~ msgid "Choose Days:" +#~ msgstr "Одабери Дане:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Одабери Емисијску Степену" + +#~ msgid "Choose folder" +#~ msgstr "Одабери фолдер" + +#~ msgid "City:" +#~ msgstr "Град:" + +#~ msgid "Clear" +#~ msgstr "Очисти" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије" + +#~ msgid "Country:" +#~ msgstr "Држава:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Стварање Шаблона за Датотечни Сажеци" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Стварање Листу Шаблона" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Именовање" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Именовање Без Изведених Дела" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Именовање Некомерцијално" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Дели Под Истим Условима" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Актуална Увозна Мапа:" + +#~ msgid "Cursor" +#~ msgstr "Показивач" + +#~ msgid "Default Length:" +#~ msgstr "Задата Дужина:" + +#~ msgid "Default License:" +#~ msgstr "Задата Дозвола:" + +#~ msgid "Disk Space" +#~ msgstr "Дисковни Простор" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Динамички Паметан Блок" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Динамички Паметан Блок Критеријуми:" + +#~ msgid "Empty playlist content" +#~ msgstr "Празан садржај списак песама" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Проширење Динамичког Блока" + +#~ msgid "Expand Static Block" +#~ msgstr "Проширење Статичког Bloка" + +#~ msgid "Fade in: " +#~ msgstr "Одтамњење:" + +#~ msgid "Fade out: " +#~ msgstr "Затамњење:" + +#~ msgid "File Path:" +#~ msgstr "Стажа Датотека:" + +#~ msgid "File Summary" +#~ msgstr "Датотечни Извештај" + +#~ msgid "File Summary Templates" +#~ msgstr "Шаблони за Датотечни Сажеци" + +#~ msgid "File import in progress..." +#~ msgstr "Увоз датотеке је у току..." + +#~ msgid "Filter History" +#~ msgstr "Филтрирај Историје" + +#~ msgid "Find" +#~ msgstr "Пронађи" + +#~ msgid "Find Shows" +#~ msgstr "Пронађи Емисије" + +#~ msgid "First Name" +#~ msgstr "Име" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "За више детаља, прочитај %sУпутству за употребу%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Метаподаци" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ако је иза Airtime-а рутер или заштитни зид, можда мораш да конфигуришеш поље порта прослеђивање и ово информационо поље ће да буде нетачан. У том случају мораћеш ручно да ажурираш ово поље, да би показао тачноhost/port/mount да се могу да повеже твоји диск-џокеји. Допуштени опсег је између 1024 и 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Број:" + +#~ msgid "Last Name" +#~ msgstr "Презиме" + +#~ msgid "Length:" +#~ msgstr "Дужина:" + +#~ msgid "Limit to " +#~ msgstr "Ограничено за" + +#~ msgid "Listen" +#~ msgstr "Слушај" + +#~ msgid "Live Stream Input" +#~ msgstr "Улаз Уживног Преноса" + +#~ msgid "Live stream" +#~ msgstr "Пренос уживо" + +#~ msgid "Log Sheet" +#~ msgstr "Списак Пријава" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Шаблони Списак Пријаве" + +#~ msgid "Logout" +#~ msgstr "Одјава" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Изгледа страница коју си тражио не постоји!" + +#~ msgid "Manage Users" +#~ msgstr "Управљање Кориснике" + +#~ msgid "Master Source" +#~ msgstr "Мајсторски Извор" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Монтирање не може да буде празна са Icecast сервером." + +#~ msgid "New File Summary Template" +#~ msgstr "Нови Шаблон за Датотечни Сажеци" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Нови Листу шаблона" + +#~ msgid "New User" +#~ msgstr "Нови Корисник" + +#~ msgid "New password" +#~ msgstr "Нова лозинка" + +#~ msgid "Next:" +#~ msgstr "Следећа:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Нема Шаблона за Датотечни Сажеци" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Нема Листу Шаблона" + +#~ msgid "No open playlist" +#~ msgstr "Нема отворених списак песама" + +#~ msgid "No webstream" +#~ msgstr "Нема преноса" + +#~ msgid "OK" +#~ msgstr "ОК" + +#~ msgid "ON AIR" +#~ msgstr "ПРЕНОС" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Допуштени су само бројеви." + +#~ msgid "Original Length:" +#~ msgstr "Оригинална Дужина:" + +#~ msgid "Page not found!" +#~ msgstr "Страница није пронађена!" + +#~ msgid "Phone:" +#~ msgstr "Телефон:" + +#~ msgid "Play" +#~ msgstr "Покрени" + +#~ msgid "Playlist Contents: " +#~ msgstr "Садржаји Списак Песама:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Крижно утишавање списак песама" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Унеси и потврди своју нову лозинку у поља доле." + +#~ msgid "Please upgrade to " +#~ msgstr "Молимо надогради на" + +#~ msgid "Port cannot be empty." +#~ msgstr "Port не може да буде празан." + +#~ msgid "Previous:" +#~ msgstr "Претходна:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Менаџер програма могу да уради следеће:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime Регистар" + +#~ msgid "Remove watched directory" +#~ msgstr "Уклони надзорану директоријуму" + +#~ msgid "Repeat Days:" +#~ msgstr "Поновљени Дани:" + +#~ msgid "Sample Rate:" +#~ msgstr "Узорак Стопа:" + +#~ msgid "Save playlist" +#~ msgstr "Сачувај списак песама" + +#~ msgid "Select stream:" +#~ msgstr "Преноси:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Сервер не може да буде празан." + +#~ msgid "Set" +#~ msgstr "Подеси" + +#~ msgid "Set Cue In" +#~ msgstr "Подеси Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Подеси Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Подеси Подразумевано Шаблону" + +#~ msgid "Share" +#~ msgstr "Подели" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Програмски Извештај" + +#~ msgid "Show Waveform" +#~ msgstr "Емисијски звучни таласни облик" + +#~ msgid "Show me what I am sending " +#~ msgstr "Покажи ми шта шаљем" + +#~ msgid "Shuffle playlist" +#~ msgstr "Случајни избор списак песама" + +#~ msgid "Source Streams" +#~ msgstr "Преносни Извори" + +#~ msgid "Static Smart Block" +#~ msgstr "Статички Паметан Блок" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Статички Паметан Блок Садржаји:" + +#~ msgid "Station Description:" +#~ msgstr "Опис:" + +#~ msgid "Station Web Site:" +#~ msgstr "Веб Страница:" + +#~ msgid "Stop" +#~ msgstr "Стани" + +#~ msgid "Stream " +#~ msgstr "Пренос" + +#~ msgid "Stream Settings" +#~ msgstr "Преносна Подешавања" + +#~ msgid "Stream URL:" +#~ msgstr "URL Преноса:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Преноса:" + +#~ msgid "Style" +#~ msgstr "Стил" + +#~ msgid "Support Feedback" +#~ msgstr "Повратне Информације" + +#~ msgid "Support setting updated." +#~ msgstr "Подршка подешавања је ажурирана." + +#~ msgid "Terms and Conditions" +#~ msgstr "Услови и Одредбе" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Жељена дужина блока неће да буде постигнут јер Airtime не могу да пронађе довољно јединствене песме које одговарају твојим критеријумима. Омогући ову опцију ако желиш да допустиш да неке песме могу да се више пута понављају." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Рад је у јавном домену" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ова верзија више није подржана." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ова верзија ускоро ће да буде застарео." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Песма:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Упиши знаке које видиш на слици у наставку." + +#~ msgid "Update Required" +#~ msgstr "Потребно Ажурирање" + +#~ msgid "Update show" +#~ msgstr "Ажурирање емисије" + +#~ msgid "User Type" +#~ msgstr "Врста Корисника" + +#~ msgid "Web Stream" +#~ msgstr "Пренос" + +#~ msgid "What" +#~ msgstr "Шта" + +#~ msgid "When" +#~ msgstr "Када" + +#~ msgid "Who" +#~ msgstr "Ко" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Не пратиш ниједне медијске мапе." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Мораш да пристанеш на правила о приватности." + +#~ msgid "Your trial expires in" +#~ msgstr "Ваш налог истиче у" + +#~ msgid "and" +#~ msgstr "и" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "датотеке задовољавају критеријуме" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "макс гласноћа" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "следећа" + +#~ msgid "or" +#~ msgstr "или" + +#~ msgid "pause" +#~ msgstr "пауза" + +#~ msgid "play" +#~ msgstr "покрени" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "молимо стави у време у секундама '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "претходна" + +#~ msgid "stop" +#~ msgstr "заустави" + +#~ msgid "unmute" +#~ msgstr "укључи" diff --git a/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po b/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..de1a40c2b6 --- /dev/null +++ b/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po @@ -0,0 +1,4606 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Serbian (Latin) (Serbia)\n" +"Language: sr_RS@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Godina %s mora da bude u rasponu između 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nije ispravan datum" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nije ispravan datum" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Kalendar" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Korisnici" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Prenosi" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Stanje" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Istorija Puštenih Pesama" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Istorijski Šabloni" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Slušateljska Statistika" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Pomoć" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Početak Korišćenja" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Uputstvo" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Ne smeš da pristupiš ovog izvora." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Ne smeš da pristupite ovog izvora." + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Neispravan zahtev." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Neispravan zahtev" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Nemaš dopuštenje da isključiš izvor." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "Nema spojenog izvora na ovaj ulaz." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Nemaš dozvolu za promenu izvora." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s nije pronađen" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Nešto je pošlo po krivu." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Pregled" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Dodaj na Spisak Pesama" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Dodaj u Smart Block" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Obriši" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Preuzimanje" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Udvostručavanje" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Nema dostupnih akcija" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Nemaš dopuštenje za brisanje odabrane stavke." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Kopiranje od %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Uređaj" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Snimanje:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Majstorski Prenos" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Prenos Uživo" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Ništa po rasporedu" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Sadašnja Emisija:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Trenutna" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Ti imaš instaliranu najnoviju verziju" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nova verzija je dostupna:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Dodaj u trenutni spisak pesama" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Dodaj u trenutni smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Dodavanje 1 Stavke" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Dodavanje %s Stavke" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Možeš da dodaš samo pesme kod pametnih blokova." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Molimo odaberi mesto pokazivača na vremenskoj crti." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Uređivanje" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Ukloni" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Uredi Metapodatke" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Dodaj u odabranoj emisiji" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Odaberi" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Odaberi ovu stranicu" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Odznači ovu stranicu" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Odznači sve" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Jesi li siguran da želiš da izbrišeš odabranu (e) stavu (e)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Zakazana" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Naziv" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Tvorac" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Prenos Bita" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Kompozitor" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Autorsko pravo" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Kodirano je po" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Žanr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Nalepnica" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Jezik" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Poslednja Izmena" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Zadnji Put Odigrana" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Dužina" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Raspoloženje" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Vlasnik" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Uzorak Stopa" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Broj Pesma" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Dodata" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Veb stranica" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Godina" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Učitavanje..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Sve" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Datoteke" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Liste pesama" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Block-ovi" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Prenosi" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Nepoznati tip:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Jesi li siguran da želiš da obrišeš izabranu stavku?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Prenos je u toku..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Preuzimanje podataka sa servera..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Šifra greške:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Poruka o grešci:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Mora da bude pozitivan broj" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Mora da bude broj" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Mora da bude u obliku: gggg-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Mora da bude u obliku: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Trenutno je prenos datoteke. %sOdlazak na drugom ekranu će da otkaže proces slanja. %s" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Otvori Medijskog Graditelja" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "molimo stavi u vreme '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Tvoj pretraživač ne podržava ovu vrstu audio fajl:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dinamički blok nije dostupan za pregled" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Ograničiti se na:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Spisak pesama je spremljena" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Spisak pesama je izmešan" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime je nesiguran o statusu ove datoteke. To takođe može da se desi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktorijumi, koja se više nije 'praćena odnosno nadzirana'." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Broj Slušalaca %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Podseti me za 1 nedelju" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Nikad me više ne podseti" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Da, pomažem Airtime-u" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Slika mora da bude jpg, jpeg, png, ili gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Statički pametni blokovi spremaju kriterijume i odmah generišu blok sadržaja. To ti omogućava da urediš i vidiš ga u biblioteci pre nego što ga dodaš na emisiju." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Dinamički pametni blokovi samo kriterijume spremaju. Blok sadržaja će se generiše nakon što ga dodamo na emisiju. Nećeš moći da pregledaš i uređivaš sadržaj u biblioteci." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block je izmešan" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block je generisan i kriterijume su spremne" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block je sačuvan" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Obrada..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Odaberi modifikator" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "sadrži" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "ne sadrži" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "je" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "nije" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "počinje se sa" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "završava se sa" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "je veći od" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "je manji od" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "je u opsegu" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Generiši" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Odaberi Mapu za Skladištenje" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Odaberi Mapu za Praćenje" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Jesi li siguran da želiš da promeniš mapu za skladištenje?\n" +"To će da ukloni datoteke iz tvoje biblioteke!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Upravljanje Medijske Mape" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Jesi li siguran da želiš da ukloniš nadzorsku mapu?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ovaj put nije trenutno dostupan." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Neke vrste emitovanje zahtevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovde dostupni." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Priključen je na serveru" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Prenos je onemogućen" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Dobijanje informacija sa servera..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Ne može da se poveže na serveru" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Proveri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Proveri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Proveri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Ako tvoj Icecast server očekuje korisničko ime iz 'izvora', ovo polje može da ostane prazno." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo da bude 'izvor'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Upozorenje: Ne možeš promeniti sadržaj polja, dok se sadašnja emisija ne završava" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Nema pronađenih rezultata" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "To sledi isti obrazac bezbednosti za emisije: samo dodeljeni korisnici mogu da se poveže na emisiju." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Odredi prilagođene autentifikacije koje će da se uvaži samo za ovu emisiju." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Emisija u ovom slučaju više ne postoji!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Upozorenje: Emisije ne može ponovo da se poveže" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stava u svakoj ponavljajućim emisijama dobiće isti raspored takođe i u drugim ponavljajućim emisijama" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Vremenska zona je postavljena po staničnu zonu prema zadatim. Emisije u kalendaru će se da prikaže po tvojim lokalnom vremenu koja je definisana u interfejsa vremenske zone u tvojim korisničkim postavci." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Emisija" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Emisija je prazna" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Dobijanje podataka sa servera..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Ova emisija nema zakazanog sadržaja." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Januar" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Februar" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Mart" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Maj" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Jun" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Jul" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Avgust" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Septembar" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Oktobar" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Novembar" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Decembar" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Avg" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Okt" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Nedelja" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Ponedeljak" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Utorak" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Sreda" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Četvrtak" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Petak" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Subota" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Ned" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Pon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Uto" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Sre" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Čet" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Pet" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sub" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Emisija duže od predviđenog vremena će da bude odsečen." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Otkaži Trenutnog Programa?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Zaustavljanje snimanje emisije?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Sadržaj Emisije" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Ukloniš sve sadržaje?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Obrišeš li odabranu (e) stavu (e)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Početak" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Završetak" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Trajanje" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Odtamnjenje" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Zatamnjenje" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Prazna Emisija" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Snimanje sa Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Pregled pesma" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Ne može da se zakazuje van emisije." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Premeštanje 1 Stavka" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Premeštanje %s Stavke" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Sačuvaj" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Odustani" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Uređivač za (Od-/Za-)tamnjivanje" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Uređivač" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Talasni oblik funkcije su dostupne u sporednu Web Audio API pregledaču" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Odaberi sve" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Ne odaberi ništa" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Ukloni odabrane zakazane stavke" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Skoči na trenutnu sviranu pesmu" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Poništi trenutnu emisiju" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Otvori biblioteku za dodavanje ili uklanjanje sadržaja" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Dodaj / Ukloni Sadržaj" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "u upotrebi" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Pogledaj unutra" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Otvori" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrator" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "Disk-džokej" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Voditelj Programa" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Gost" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gosti mogu da uradi sledeće:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Pregled rasporeda" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Pregled sadržaj emisije" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Disk-džokeji mogu da uradi sledeće:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Upravljanje dodeljen sadržaj emisije" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Uvoz medijske fajlove" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Izradi liste pesama, pametne blokove, i prenose" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Upravljanje svoje bibliotečkog sadržaja" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Prikaz i upravljanje sadržaj emisije" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Rasporedne emisije" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Upravljanje sve sadržaje biblioteka" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Administratori mogu da uradi sledeće:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Upravljanje podešavanja" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Upravljanje korisnike" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Upravljanje nadziranih datoteke" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Pošalji povratne informacije" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Pregled stanja sistema" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Pristup za istoriju puštenih pesama" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Pogledaj statistiku slušaoce" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Pokaži/sakrij kolone" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Od {from} do {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "gggg-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Ne" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Po" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ut" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Sr" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Če" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Pe" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Su" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Zatvori" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Sat" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuta" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Gotovo" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Izaberi datoteke" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Dodaj Datoteke" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Zaustavi Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Pokreni upload" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Dodaj datoteke" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Poslata %d/%d datoteka" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Povuci datoteke ovde." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Greška (oznaku tipa datoteke)." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Greška veličine datoteke." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Greška broj datoteke." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Init greška." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP Greška." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Bezbednosna greška." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Generička greška." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO greška." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Fajl: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d datoteka na čekanju" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Prenosni URL može da bude u krivu ili ne postoji" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Greška: Datoteka je prevelika:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Greška: Nevažeći oznak tipa datoteka:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Postavi Podrazumevano" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Stvaranje Unosa" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Uredi Istorijat Upisa" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nema Programa" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s red%s je kopiran u međumemoriju" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sIspis pogled%sMolimo, koristi pregledača štampanje funkciju za štampanje ovu tabelu. Kad završiš, pritisni Escape." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Omogućeno" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Onemogućeno" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Gledaš stariju verziju %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Ne možeš da dodaš pesme za dinamične blokove." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Možeš samo pesme da dodaš za pametnog bloka." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Neimenovani Spisak Pesama" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Neimenovani Smart Block" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Nepoznati Spisak Pesama" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Podešavanja su ažurirane." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Prenos Podešavanje je Ažurirano." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "put bi trebao da bude specificiran" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Problem sa Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Reemitovanje emisija %s od %s na %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Odaberi pokazivač" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Ukloni pokazivač" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "emisija ne postoji" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Korisnik je uspešno dodat!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Korisnik je uspešno ažuriran!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Podešavanja su uspešno ažurirane!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Neimenovani Prenos" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Prenos je sačuvan." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Nevažeći vrednosti obrasca." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dan mora da bude naveden" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Vreme mora da bude navedeno" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Koristi Prilagođeno potvrdu identiteta:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Prilagođeno Korisničko Ime" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Prilagođena Lozinka" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "'Korisničko Ime' polja ne sme da ostane prazno." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "'Lozinka' polja ne sme da ostane prazno." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ponovo da emituje?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dani" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tip Ponavljanje:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "nedeljno" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "svake 2 nedelje" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "svaka 3 nedelje" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "svaka 4 nedelje" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mesečno" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Odaberi Dane:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Ponavljanje Po:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dan u mesecu" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "dan u nedelji" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum Završetka:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Nema Kraja?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Datum završetka mora da bude posle datuma početka" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Molimo, odaberi kojeg dana" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Boja Pozadine:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Boja Teksta:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Naziv:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Neimenovana Emisija" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Žanr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Trajanje:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Vremenska Zona:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Ponavljanje?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Ne može da se stvori emisiju u prošlosti" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Datum završetka i vreme ne može da bude u prošlosti" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Ne može da traje < 0m" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Ne može da traje 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne može da traje više od 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Ne možeš zakazati preklapajuće emisije" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Traži Korisnike:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Disk-džokeji:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Korisničko ime:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Lozinka:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Potvrdi Lozinku:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Ime:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Prezime:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Mobilni Telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Tipova Korisnika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Ime prijave nije jedinstveno." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum Početka:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Naziv:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Tvorac:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Godina:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Nalepnica:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Kompozitor:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Raspoloženje:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Autorsko pravo:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Veb stranica:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jezik:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Vreme Početka" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Vreme Završetka" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Vremenska Zona Interfejsi:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Naziv Stanice" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Napomena: Sve veća od 600k600 će da se menjaju." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Podrazumevano Trajanje Ukršteno Stišavanje (s):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Podrazumevano Odtamnjenje (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Podrazumevano Zatamnjenje (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Stanična Vremenska Zona" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Prvi Dan u Nedelji" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Prijava" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Lozinka" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Potvrdi novu lozinku" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Lozinke koje ste uneli ne podudaraju se." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Korisničko ime" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj lozinku" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Trenutno Izvođena" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Sve Moje Emisije:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Odaberi kriterijume" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Brzina u Bitovima (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Uzorak Stopa (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "sati" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuti" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamički" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statički" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Sadržaj slučajni izbor spisak pesama" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Mešanje" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može da bude prazan ili manji od 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može da bude više od 24 sati" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Vrednost mora da bude ceo broj" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Moraš da izabereš Kriteriju i Modifikaciju" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala da bude u '00:00:00' obliku" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Vrednost mora da bude numerička" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Vrednost bi trebala da bude manja od 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Vrednost mora da bude manja od %s znakova" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Vrednost ne može da bude prazna" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Vidljivi Podaci:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Autor - Naziv" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Emisija - Autor - Naziv" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Naziv stanice - Naziv emisije" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Off Air Metapodaci" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Uključi Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifikator" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Omogućeno:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Prenos Tipa:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Brzina u Bitovima:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Tip Usluge:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanali:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Tačka Montiranja" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Naziv" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Uvozna Mapa:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Mape Pod Nadzorom:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Ne važeći Direktorijum" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Vrednost je potrebna i ne može da bude prazan" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "'Cue in' i 'cue out' su nule." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Odaberi Državu" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Ne možeš da premestiš stavke iz povezanih emisija" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Zastareo se pregledan raspored! (nevažeći raspored)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Zastareo se pregledan raspored! (primer neusklađenost)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Zastareo se pregledan raspored!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Ne smeš da zakažeš rasporednu emisiju %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Ne možeš da dodaš datoteke za snimljene emisije." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Emisija %s je gotova i ne mogu da bude zakazana." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Ranije je %s emisija već bila ažurirana!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Izabrani Fajl ne postoji!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Emisije mogu da imaju najveću dužinu 24 sata." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Ne može da se zakaže preklapajuće emisije.\n" +"Napomena: Promena veličine ponavljane emisije utiče na sve njene ponavljanje." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Reemitovanje od %s od %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dužina mora da bude veća od 0 minuta" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dužina mora da bude u obliku \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL mora da bude u obliku \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL mora da bude 512 znakova ili manje" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Ne postoji MIME tip za prenos." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Ime prenosa ne može da da bude prazno" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Nismo mogli analizirati XSPF spisak pesama" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Nismo mogli analizirati PLS spisak pesama" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Nismo mogli analizirati M3U spisak pesama" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nepoznati prenosni tip: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Snimljena datoteka ne postoji" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Metapodaci snimljenog fajla" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Uređivanje Programa" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "Dozvola odbijena" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Ne možeš premestiti događane emisije" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Ne možeš premestiti emisiju u prošlosti" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premestiti snimljene emisije ranije od 1 sat vremena pre njenih reemitovanja." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati 1 sat za re-emitovanje." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Pesma" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Puštena" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "do" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s ne postoji u listi nadziranih lokacije." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s je već nadziran." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s nije valjan direktorijum." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)." + +#~ msgid "(Required)" +#~ msgstr "(Obavezno)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Tvoja radijska stanica veb stranice)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(služi samo za proveru, neće da bude objavljena)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "About" +#~ msgstr "O projektu" + +#~ msgid "Add New Field" +#~ msgstr "Dodaj Novo Polje" + +#~ msgid "Add more elements" +#~ msgstr "Dodaj više elemenata" + +#~ msgid "Add this show" +#~ msgstr "Dodaj ovu emisiju" + +#~ msgid "Additional Options" +#~ msgstr "Dodatne Opcije" + +#~ msgid "Admin Password" +#~ msgstr "Adminska Lozinka" + +#~ msgid "Admin User" +#~ msgstr "Admin Korisnik" + +#~ msgid "Advanced Search Options" +#~ msgstr "Napredne Opcije Pretraživanja" + +#~ msgid "All rights are reserved" +#~ msgstr "Sva prava zadržana" + +#~ msgid "Audio Track" +#~ msgstr "Zvučni Zapis" + +#~ msgid "Choose Days:" +#~ msgstr "Odaberi Dane:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Odaberi Emisijsku Stepenu" + +#~ msgid "Choose folder" +#~ msgstr "Odaberi folder" + +#~ msgid "City:" +#~ msgstr "Grad:" + +#~ msgid "Clear" +#~ msgstr "Očisti" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije" + +#~ msgid "Country:" +#~ msgstr "Država:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Stvaranje Šablona za Datotečni Sažeci" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Stvaranje Listu Šablona" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Imenovanje" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Imenovanje Bez Izvedenih Dela" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Deli Pod Istim Uslovima" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualna Uvozna Mapa:" + +#~ msgid "Cursor" +#~ msgstr "Pokazivač" + +#~ msgid "Default Length:" +#~ msgstr "Zadata Dužina:" + +#~ msgid "Default License:" +#~ msgstr "Zadata Dozvola:" + +#~ msgid "Disk Space" +#~ msgstr "Diskovni Prostor" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamički Pametan Blok" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamički Pametan Blok Kriterijumi:" + +#~ msgid "Empty playlist content" +#~ msgstr "Prazan sadržaj spisak pesama" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Proširenje Dinamičkog Bloka" + +#~ msgid "Expand Static Block" +#~ msgstr "Proširenje Statičkog Bloka" + +#~ msgid "Fade in: " +#~ msgstr "Odtamnjenje:" + +#~ msgid "Fade out: " +#~ msgstr "Zatamnjenje:" + +#~ msgid "File Path:" +#~ msgstr "Staža Datoteka:" + +#~ msgid "File Summary" +#~ msgstr "Datotečni Izveštaj" + +#~ msgid "File Summary Templates" +#~ msgstr "Šabloni za Datotečni Sažeci" + +#~ msgid "File import in progress..." +#~ msgstr "Uvoz datoteke je u toku..." + +#~ msgid "Filter History" +#~ msgstr "Filtriraj Istorije" + +#~ msgid "Find" +#~ msgstr "Pronađi" + +#~ msgid "Find Shows" +#~ msgstr "Pronađi Emisije" + +#~ msgid "First Name" +#~ msgstr "Ime" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Za više detalja, pročitaj %sUputstvu za upotrebu%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metapodaci" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ako je iza Airtime-a ruter ili zaštitni zid, možda moraš da konfigurišeš polje porta prosleđivanje i ovo informaciono polje će da bude netačan. U tom slučaju moraćeš ručno da ažuriraš ovo polje, da bi pokazao tačnohost/port/mount da se mogu da poveže tvoji disk-džokeji. Dopušteni opseg je između 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Broj:" + +#~ msgid "Last Name" +#~ msgstr "Prezime" + +#~ msgid "Length:" +#~ msgstr "Dužina:" + +#~ msgid "Limit to " +#~ msgstr "Ograničeno za" + +#~ msgid "Listen" +#~ msgstr "Slušaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Ulaz Uživnog Prenosa" + +#~ msgid "Live stream" +#~ msgstr "Prenos uživo" + +#~ msgid "Log Sheet" +#~ msgstr "Spisak Prijava" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Šabloni Spisak Prijave" + +#~ msgid "Logout" +#~ msgstr "Odjava" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Izgleda stranica koju si tražio ne postoji!" + +#~ msgid "Manage Users" +#~ msgstr "Upravljanje Korisnike" + +#~ msgid "Master Source" +#~ msgstr "Majstorski Izvor" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Montiranje ne može da bude prazna sa Icecast serverom." + +#~ msgid "New File Summary Template" +#~ msgstr "Novi Šablon za Datotečni Sažeci" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Novi Listu šablona" + +#~ msgid "New User" +#~ msgstr "Novi Korisnik" + +#~ msgid "New password" +#~ msgstr "Nova lozinka" + +#~ msgid "Next:" +#~ msgstr "Sledeća:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nema Šablona za Datotečni Sažeci" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nema Listu Šablona" + +#~ msgid "No open playlist" +#~ msgstr "Nema otvorenih spisak pesama" + +#~ msgid "No webstream" +#~ msgstr "Nema prenosa" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "PRENOS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Dopušteni su samo brojevi." + +#~ msgid "Original Length:" +#~ msgstr "Originalna Dužina:" + +#~ msgid "Page not found!" +#~ msgstr "Stranica nije pronađena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Pokreni" + +#~ msgid "Playlist Contents: " +#~ msgstr "Sadržaji Spisak Pesama:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Križno utišavanje spisak pesama" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dole." + +#~ msgid "Please upgrade to " +#~ msgstr "Molimo nadogradi na" + +#~ msgid "Port cannot be empty." +#~ msgstr "Port ne može da bude prazan." + +#~ msgid "Previous:" +#~ msgstr "Prethodna:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Menadžer programa mogu da uradi sledeće:" + +#~ msgid "Remove watched directory" +#~ msgstr "Ukloni nadzoranu direktorijumu" + +#~ msgid "Repeat Days:" +#~ msgstr "Ponovljeni Dani:" + +#~ msgid "Sample Rate:" +#~ msgstr "Uzorak Stopa:" + +#~ msgid "Save playlist" +#~ msgstr "Sačuvaj spisak pesama" + +#~ msgid "Select stream:" +#~ msgstr "Prenosi:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Server ne može da bude prazan." + +#~ msgid "Set" +#~ msgstr "Podesi" + +#~ msgid "Set Cue In" +#~ msgstr "Podesi Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Podesi Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Podesi Podrazumevano Šablonu" + +#~ msgid "Share" +#~ msgstr "Podeli" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Programski Izveštaj" + +#~ msgid "Show Waveform" +#~ msgstr "Emisijski zvučni talasni oblik" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokaži mi šta šaljem" + +#~ msgid "Shuffle playlist" +#~ msgstr "Slučajni izbor spisak pesama" + +#~ msgid "Source Streams" +#~ msgstr "Prenosni Izvori" + +#~ msgid "Static Smart Block" +#~ msgstr "Statički Pametan Blok" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statički Pametan Blok Sadržaji:" + +#~ msgid "Station Description:" +#~ msgstr "Opis:" + +#~ msgid "Station Web Site:" +#~ msgstr "Veb Stranica:" + +#~ msgid "Stop" +#~ msgstr "Stani" + +#~ msgid "Stream " +#~ msgstr "Prenos" + +#~ msgid "Stream Settings" +#~ msgstr "Prenosna Podešavanja" + +#~ msgid "Stream URL:" +#~ msgstr "URL Prenosa:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Prenosa:" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Support Feedback" +#~ msgstr "Povratne Informacije" + +#~ msgid "Support setting updated." +#~ msgstr "Podrška podešavanja je ažurirana." + +#~ msgid "Terms and Conditions" +#~ msgstr "Uslovi i Odredbe" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Željena dužina bloka neće da bude postignut jer Airtime ne mogu da pronađe dovoljno jedinstvene pesme koje odgovaraju tvojim kriterijumima. Omogući ovu opciju ako želiš da dopustiš da neke pesme mogu da se više puta ponavljaju." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Rad je u javnom domenu" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ova verzija više nije podržana." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ova verzija uskoro će da bude zastareo." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Pesma:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Upiši znake koje vidiš na slici u nastavku." + +#~ msgid "Update Required" +#~ msgstr "Potrebno Ažuriranje" + +#~ msgid "Update show" +#~ msgstr "Ažuriranje emisije" + +#~ msgid "User Type" +#~ msgstr "Vrsta Korisnika" + +#~ msgid "Web Stream" +#~ msgstr "Prenos" + +#~ msgid "What" +#~ msgstr "Šta" + +#~ msgid "When" +#~ msgstr "Kada" + +#~ msgid "Who" +#~ msgstr "Ko" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Ne pratiš nijedne medijske mape." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Moraš da pristaneš na pravila o privatnosti." + +#~ msgid "Your trial expires in" +#~ msgstr "Vaš nalog ističe u" + +#~ msgid "and" +#~ msgstr "i" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "datoteke zadovoljavaju kriterijume" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "maks glasnoća" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "sledeća" + +#~ msgid "or" +#~ msgstr "ili" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "pokreni" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "molimo stavi u vreme u sekundama '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "prethodna" + +#~ msgid "stop" +#~ msgstr "zaustavi" + +#~ msgid "unmute" +#~ msgstr "uključi" diff --git a/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..06d806c893 --- /dev/null +++ b/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po @@ -0,0 +1,4235 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# M. Ömer Gölgeli , 2015 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2022-06-28 07:22+0000\n" +"Last-Translator: metezd \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "%s yılı 1753 - 9999 aralığında olmalıdır" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s geçerli bir tarih değil" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s geçerli bir zaman değil" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "İngilizce" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Afarca" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Abhazca" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Afrikanca" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Amharca" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Arapça" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Assam dili" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Aymaraca" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Azerice" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Başkurtça" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Belarusça" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Bulgarca" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Bihari" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Bislama" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Bengalce" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Tibetçe" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Bretonca" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Katalanca" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Korsikaca" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Çekçe" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Galce" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Danca" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Almanca" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Bhutani" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Yunanca" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "İspanyolca" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Estonca" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Baskça" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Farsça" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Fince" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Fiji" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Faroece" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Fransızca" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Frizce" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "İrlandaca" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "İskoçça" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Galiçyaca" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Guceratça" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Hausa dili" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Hintçe" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Hırvatça" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Macarca" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Ermenice" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "İnterlingua" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "İnterlingue" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Endonezyaca" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "İzlandaca" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "İtalyanca" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "İbranice" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Japonca" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Yidçe" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Cavaca" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Gürcüce" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Kazakça" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Grönlandca" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Korece" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Kürtçe" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Kırgızca" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Latince" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Litvanyaca" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Letonca/Lettçe" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Madagaskarca" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Maori dili" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Makedonca" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Malayalamca" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Moğolca" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Moldovyaca" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Malayca" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Maltaca" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Nepalce" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Felemenkçe" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Norveççe" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Oksitanca" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Pencapça" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Lehçe" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Peştuca/Puşto" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Portekizce" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Keçuva" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Rumence" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Rusça" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Sanskritçe" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Sırpça-Hırvatça" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Slovakça" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Slovence" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Arnavutça" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Sırpça" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "İsveççe" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Tamilce" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Tacikçe" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Türkmence" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Türkçe" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Tatarca" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Ukraynaca" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Urduca" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Özbekçe" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Çince" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Profilim" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Kullanıcılar" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Durum" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Yardım" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Başlarken" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Kullanım Kılavuzu" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Çevrim İçi Yardım Alın" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "LibreTime'a Katkıda Bulunun" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "" + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "" + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Sayfa bulunamadı." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Bir şeyler yanlış gitti." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Ön izleme" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Sil" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Düzenle..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "İndir" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "" + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Bir şeyler yanlış gitti!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Canlı yayın" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Ekle" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Yeni" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Düzenle" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Kaldır" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Seç" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Bu sayfayı seç" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Bu sayfanın seçimini kaldır" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Tümünün seçimini kaldır" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Parça Adı" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Oluşturan" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Albüm" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Hızı" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Besteleyen" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Orkestra Şefi" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Telif Hakkı" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Encode eden" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Tür" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Plak Şirketi" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Dil" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Son Değiştirilme Zamanı" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Son Oynatma Zamanı" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Uzunluk" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Ruh Hali" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Sahibi" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Parça Numarası" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Yüklenme Tarihi" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Website'si" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Yıl" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Tümü" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Dosyalar" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Bilinmeyen tür: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "" + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "" + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Hata kodu: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Hata mesajı: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "" + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "" + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "" + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "" + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Değişken seçin" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "içersin" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "içermesin" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "eşittir" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "eşit değildir" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "ile başlayan" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "ile biten" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "büyüktür" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "küçüktür" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "aralıkta" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Oluştur" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Sunucudan bilgiler getiriliyor..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "" + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Ocak" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Şubat" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Mart" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Nisan" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mayıs" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Haziran" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Temmuz" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Ağustos" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Eylül" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Ekim" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Kasım" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Aralık" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Oca" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Şub" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Nis" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Haz" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Tem" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Ağu" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Eyl" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Eki" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Kas" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Ara" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Bugün" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Gün" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Hafta" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Ay" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Pazar" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Pazartesi" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Salı" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Çarşamba" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Perşembe" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "Cuma" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Cumartesi" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Paz" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Pzt" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Sal" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Çar" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Per" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Cum" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Cmt" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "OK" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Kaydet" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "İptal" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Yönetici (Admin)" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Yöneticisi" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Ziyaretçi" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Destek Geribildirimi gönder" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Pa" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Pt" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Sa" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Ça" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Pe" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Cu" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Ct" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Kapat" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Saat" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Dakika" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Bitti" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Dosya uzantısı hatası." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Dosya boyutu hatası." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Dosya sayısı hatası." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP hatası." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Güvenlik hatası." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Genel hata." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "GÇ hatası." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Dosya: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Hata: Dosya çok büyük: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Hata: Geçersiz dosya uzantısı: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Show Yok" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Tanım" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Aktif" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Devre dışı" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "" + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "" + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "" + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "" + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "" + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "" + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "" + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Kullanıcı başarıyla eklendi!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Kullanıcı başarıyla güncellendi!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Ayarlar başarıyla güncellendi!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Yanlış karakter girdiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Günü belirtmelisiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zamanı belirtmelisiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "%s Kimlik Doğrulamasını Kullan" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Özel Kimlik Doğrulama Kullan" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Özel Kullanıcı Adı" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Özel Şifre" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Kullanıcı adı kısmı boş bırakılamaz." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Şifre kısmı boş bırakılamaz." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Line In'den Kaydet?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Tekrar yayınla?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "gün" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Birbirine Bağla:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tekrar Türü:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "haftalık" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "2 haftada bir" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "3 haftada bir" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "4 haftada bir" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "aylık" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Günleri Seçin:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Şuna göre tekrar et:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Ayın günü" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Haftanın günü" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Tarih Bitişi:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Sonu yok?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Arkaplan Rengi" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Metin Rengi:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "İsim:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "İsimsiz Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Tür:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Açıklama:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Uzunluğu:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Zaman Dilimi:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Tekrar Ediyor mu?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Geçmiş tarihli bir show oluşturamazsınız" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Bitiş tarihi geçmişte olamaz" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Uzunluk < 0dk'dan kısa olamaz" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "00s 00dk Uzunluk olamaz" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Yayın süresi 24 saati geçemez" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Üst üste binen show'lar olamaz" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Kullanıcıları Ara:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ'ler:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Kullanıcı Adı:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Şifre:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Şifre Onayı:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "İsim:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Soyisim:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Eposta:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Cep Telefonu:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Kullanıcı Tipi:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Kullanıcı adı eşsiz değil." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Tarih Başlangıcı:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Parça Adı:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Oluşturan:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Albüm:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Yıl:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Plak Şirketi:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Besteleyen:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Orkestra Şefi:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Ruh Hali:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Telif Hakkı:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC No:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Websitesi:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Dil:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Başlangıç Saati" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Bitiş Saati" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Arayüz Zaman Dilimi" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Radyo Adı" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Radyo Logosu:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Varsayılan Çarpraz Geçiş Süresi:" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "Varsayılan Fade In geçişi (s)" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "Varsayılan Fade Out geçişi (s)" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Radyo Saat Dilimi" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Hafta Başlangıcı" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Giriş yap" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Şifre" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Yeni şifreyi onayla" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Onay şifresiyle şifreniz aynı değil." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Kullanıcı adı" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Parolayı değiştir" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Tüm Şovlarım:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Şovlarım" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Kriter seçin" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Oranı (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Örnekleme Oranı (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "önce" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "sonra" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "arasında" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "Zaman birimi seçin" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "dakika" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "saat" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "gün" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "hafta" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "ay" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "yıl" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "saat" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "dakika" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "parça" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Rastgele" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "En yeni" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "En eski" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamik" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Sabit" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Çalma listesi içeriğini karıştır" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Karıştır" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Sınırlama boş veya 0'dan küçük olamaz" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Sınırlama 24 saati geçemez" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Değer tamsayı olmalıdır" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Kriter ve Değişken seçin" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Uzunluk '00:00:00' türünde olmalıdır" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Değer rakam cinsinden girilmelidir" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Değer 2147483648'den küçük olmalıdır" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Değer %s karakter'den az olmalıdır" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Değer boş bırakılamaz" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Yayın Etiketi:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Şarkıcı - Parça Adı" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Show - Şarkıcı - Parça Adı" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Radyo adı - Show adı" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Yayın Dışında Gösterilecek Etiket" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "ReplayGain'i aktif et" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "ReplayGain Değeri" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Etkin:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Yayın Türü:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Değeri:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Servis Türü:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Kanallar:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Sunucu" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Bağlama Noktası" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "İsim" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "İçe Aktarım Klasörü" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "İzlenen Klasörler:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Geçerli bir Klasör değil." + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Değer gerekli ve boş bırakılamaz" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Girdiğiniz şifreler örtüşmüyor." + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "" + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "" + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "" + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "" + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "" + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "" + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "" + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "" + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "" + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s geçerli bir dizin değil." + +#~ msgid "1 - Mono" +#~ msgstr "1 - Mono" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Stereo" + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "Admin Password" +#~ msgstr "Yönetici Şifresi" + +#~ msgid "Admin User" +#~ msgstr "Yönetici Hesabı" + +#~ msgid "All rights are reserved" +#~ msgstr "Tüm Hakları Saklıdır" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" + +#~ msgid "City:" +#~ msgstr "Şehir:" + +#~ msgid "Country:" +#~ msgstr "Ülke:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default License:" +#~ msgstr "Varsayılan Lisans Türü:" + +#~ msgid "First Name" +#~ msgstr "İsim" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast Vorbis Metadata" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC No:" + +#~ msgid "Jack" +#~ msgstr "Jack" + +#~ msgid "Last Name" +#~ msgstr "Soyisim" + +#~ msgid "Live stream" +#~ msgstr "Canlı yayın" + +#~ msgid "Logout" +#~ msgstr "Oturumu kapat" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Sadece rakam girebilirsiniz." + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Oynat" + +#~ msgid "Port cannot be empty." +#~ msgstr "Port değeri boş bırakılamaz." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Promote my station on %s" +#~ msgstr "Radyomu %s'da tanıt" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "Server cannot be empty." +#~ msgstr "Sunucu değeri boş bırakılamaz." + +#~ msgid "Set Cue In" +#~ msgstr "Cue In değerini ayarla" + +#~ msgid "Set Cue Out" +#~ msgstr "Cue Out değerini ayarla" + +#~ msgid "Share" +#~ msgstr "Paylaş" + +#~ msgid "Station Description:" +#~ msgstr "Radyo Tanımı:" + +#~ msgid "Station Web Site:" +#~ msgstr "Radyo Web Sitesi:" + +#~ msgid "Stop" +#~ msgstr "Durdur" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "The work is in the public domain" +#~ msgstr "Eser halka açık olarak kayıtlı" + +#~ msgid "Track:" +#~ msgstr "Parça Numarası:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." + +#~ msgid "Who" +#~ msgstr "DJ" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." + +#~ msgid "next" +#~ msgstr "sonraki" + +#~ msgid "previous" +#~ msgstr "önceki" + +#~ msgid "stop" +#~ msgstr "Durdur" diff --git a/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po b/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..63ab89d597 --- /dev/null +++ b/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po @@ -0,0 +1,4669 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2023-02-25 18:39+0000\n" +"Last-Translator: Ihor Hordiichuk \n" +"Language-Team: Ukrainian \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.16-dev\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Рік %s має бути в діапазоні 1753 - 9999" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s дата недійсна" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s недійсний час" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "Англійська" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "Афар" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "Абхазька" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "Африканська" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "Амхарська" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "Арабська" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "Асамська" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "Аймара" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "Азербайджанська" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "Башкирська" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "Білоруська" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "Болгарська" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "Біхарі" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "Біслама" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "Бенгальська/Бангла" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "Тибетська" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "Бретонська" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "Каталонська" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "Корсиканська" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "Чеська" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "Валлійська" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "Датська" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "Німецька" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "Мови Бутану" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "Грецька" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "Есперанто" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "Іспанська" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "Естонська" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "Баскська" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "Перська" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "Фінська" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "Фіджійська" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "Фарерська" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "Французька" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "Фризька" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "Ірландська" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "Шотландська/Гельська" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "Галісійська" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "Гуарані" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "Гуджаратська" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "Хауса" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "Хінді" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "Хорватська" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "Угорська" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "Вірменська" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "Інтерлінгва" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "Окциденталь" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "Аляскинсько-інуїтська" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "Індонезійська" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "Ісландська" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "Італійська" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "Іврит" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "Японська" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "Ідиш" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "Яванська" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "Грузинська" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "Казахська" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "Гренландська" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "Камбоджійська" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "Каннада" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "Корейська" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "Кашмірська" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "Курдська" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "Киргизька" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "Латинська" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "Лінґала" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "Лаоська" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "Литовська" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "Латиська" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "Малагасійська" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "Маорійська" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "Македонська" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "Малаялам" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "Монгольська" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "Молдавська" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "Мара́тська" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "Малайська" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "Мальтійська" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "Бірманська" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "Науруанська" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "Непальська" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "Голландська" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "Норвезька" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "Окситанська" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "Оромо" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "Пенджабська" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "Польська" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "Пушту" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "Португальська" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "Кечуа" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "Рето-романська" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "Кірунді" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "Румунська" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "Російська" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "Руандійська" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "Санскрит" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "Сіндхі" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "Санго" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "Сербохорватська" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "Сингальська" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "Словацька" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "Словенська" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "Самоанська" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "Шона" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "Сомалійська" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "Албанська" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "Сербська" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "Сваті" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "Сесото" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "Сунданська" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "Шведська" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "Суахілі" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "Тамільська" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "Телугу" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "Таджицька" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "Тайська" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "Тигринья" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "Туркменський" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "Тагальська" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "Тсвана" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "Тонганська" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "Турецька" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "Тсонга" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "Татарська" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "Чві" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "Українська" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "Урду" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "Узбецька" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "В'єтнамська" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "Волапюк" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "Волоф" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "Хоса" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "Юрубський" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "Китайська" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "Зулуська" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Використовувати станцію за замовчуванням" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Натисніть кнопку «Нова програма» та заповніть необхідні поля." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму»." + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" +"Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n" +" %sСтворіть непов'язану програму зараз%s." + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s." + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s." + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "Служба медіааналізатора LibreTime" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "Переконайтеся, що службу libretime-analyzer встановлено правильно " + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr " і переконайтеся, що вона працює " + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "Якщо ні, спробуйте запустити " + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "Сервіс відтворення LibreTime" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "Переконайтеся, що службу libretime-playout встановлено правильно " + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "Служба LibreTime liquidsoap" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "Переконайтеся, що службу libretime-liquidsoap встановлено правильно " + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "Служба завдань LibreTime Celery" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "Переконайтеся, що служба libretime-worker коректно встановлена в " + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "LibreTime API service" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "Переконайтеся, що службу libretime-api встановлено правильно " + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "Сторінка радіо" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "Календар" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "Віджети" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "Плеєр" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "Тижневий розклад" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "Налаштування" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "Основні" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "Мій профіль" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "Користувачі" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "Типи треків" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "Потоки" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "Статус" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "Аналітика" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "Історія відтворення" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "Історія шаблонів" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "Статистика слухачів" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "Показати статистику слухачів" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "Допомога" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "Починаємо" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "Посібник користувача" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "Отримати допомогу онлайн" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "Зробіть внесок у LibreTime" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "Що нового?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "Ви не маєте доступу до цього ресурсу." + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "Ви не маєте доступу до цього ресурсу. " + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "Файл не існує в %s" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Неправильний запит. параметр 'mode' не передано." + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Неправильний запит. Параметр 'mode' недійсний" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "Ви не маєте дозволу на відключення джерела." + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "До цього входу не підключено джерело." + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "Ви не маєте дозволу перемикати джерело." + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n" +" 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n" +" 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n" +" Увімкніть API Public LibreTime у меню Налаштування -> Основні" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" +"Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n" +" Увімкніть API Public LibreTime у меню Налаштування -> Основні" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "Сторінку не знайдено." + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "Задана дія не підтримується." + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "Ви не маєте дозволу на доступ до цього ресурсу." + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "Сталася внутрішня помилка програми." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "%s Підкаст" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Треків ще не опубліковано." + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s не знайдено" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "Щось пішло не так." + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "Попередній перегляд" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "Додати в плейлист" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "Додати до Смарт Блоку" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "Видалити" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "Редагувати..." + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "Завантажити" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "Дублікат плейлиста" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "Дублікат Смарт-блоку" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "Немає доступних дій" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "Ви не маєте дозволу на видалення вибраних елементів." + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Не вдалося видалити файл, оскільки його заплановано в майбутньому." + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "Не вдалося видалити файл(и)." + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "Копія %s" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Аудіоплеєр" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Щось пішло не так!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Запис:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Головний потік" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Наживо" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Нічого не заплановано" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Поточна програма:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Поточний" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Ви використовуєте останню версію" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Доступна нова версія: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "У вас встановлено попередню версію LibreTime." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Доступне оновлення для вашої інсталяції LibreTime." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Доступне оновлення функції для вашої інсталяції LibreTime." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Доступне велике оновлення для вашої інсталяції LibreTime." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Додати до поточного списку відтворення" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Додати до поточного смарт-блоку" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Додавання 1 елемента" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Додавання %s Елемента(ів)" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Ви можете додавати треки лише до смарт-блоків." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Виберіть позицію курсору на часовій шкалі." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Ви не додали жодної композиції" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Ви не додали жодного плейлиста" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "Ви не додали подкастів" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Ви не додали смарт-блоків" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Ви не додали жодного веб-потоку" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Дізнайтеся про треки" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Дізнайтеся про плейлисти" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "Дізнайтеся про подкасти" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Дізнайтеся про смарт-блоки" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Дізнайтеся про веб-потоки" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Натисніть «Новий», щоб створити." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Додати" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Новий" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "Редагувати" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Додати до розкладу" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Додати до наступної програми" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Додати до поточної програми" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "Додати після вибраних елементів" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Опублікувати" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "Видалити" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Редагувати метадані" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Додати до вибраної програми" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Вибрати" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Вибрати поточну сторінку" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Скасувати вибір поточної сторінки" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Скасувати виділення з усіх" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Ви впевнені, що бажаєте видалити вибрані елементи?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Запланований" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Треки" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Плейлист" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "Назва" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "Автор" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "Альбом" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "Композитор" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "Виконавець" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "Авторське право" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "Закодовано" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "Жанр" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "Мова" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "Остання зміна" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "Останнє програвання" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "Довжина" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "Настрій" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "Власник" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "Вирівнювання гучності" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Частота дискретизації" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "Номер треку" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "Завантажено" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "Веб-Сайт" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "Рік" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Завантаження..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "Всі" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Файли" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Плейлист" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Смарт-блок" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Веб-потоки" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Невідомий тип: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Ви впевнені, що бажаєте видалити вибраний елемент?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Виконується завантаження..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Отримання даних із сервера..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Імпорт" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Імпортований?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "Переглянути" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Код помилки: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Повідомлення про помилку: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Введене значення має бути позитивним числом" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Введене значення має бути числом" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Вхідні дані мають бути у такому форматі: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Вхідні дані мають бути у такому форматі: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Мій Подкаст" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Відкрити Конструктор Медіафайлів" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "будь ласка, вкажіть час '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Введіть дійсний час у секундах. напр. 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Ваш браузер не підтримує відтворення цього типу файлу: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Динамічний блок не доступний для попереднього перегляду" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Обмеження до: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Плейлист збережено" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Плейлист перемішано" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується»." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Кількість слухачів %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Нагадати через 1 тиждень" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Ніколи не нагадувати" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Так, допоможи Libretime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Зображення має бути jpg, jpeg, png, або gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку." + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Смарт-блок перемішано" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Створено смарт-блок і збережено критерії" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Смарт-блок збережено" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Обробка..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "Виберіть модифікатор" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "містить" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "не містить" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "є" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "не" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "починається з" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "закінчується на" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "більше ніж" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "менше ніж" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "знаходиться в діапазоні" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "Генерувати" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Виберіть папку зберігання" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Виберіть папку для перегляду" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Ви впевнені, що бажаєте змінити папку для зберігання?\n" +"Це видалить файли з вашої бібліотеки!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Керування медіа-папками" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Ви впевнені, що хочете видалити переглянуту папку?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Цей шлях зараз недоступний." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Підключено до потокового сервера" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Потік вимкнено" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "Отримання інформації з сервера..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Не вдається підключитися до потокового сервера" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151." + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "Щоб дізнатися більше, прочитайте %s%s Мануал%s" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Попередження: Ви не можете змінити це поле під час відтворення програми" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Результатів не знайдено" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "Екземпляр програми більше не існує!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Застереження: програму не можна повторно пов’язати" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Програма" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Програма порожня" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1хв" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5хв" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10хв" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15хв" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30хв" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60хв" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Отримання даних із сервера..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Це програма не має запланованого вмісту." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Це програма не повністю наповнена контентом." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Січень" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Лютий" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Березень" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Квітень" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Травень" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Червень" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Липень" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Серпень" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Вересень" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Жовтень" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Листопад" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Грудень" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Січ" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Лют" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Бер" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Квіт" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Черв" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Лип" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Серп" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Вер" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Жовт" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Лист" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Груд" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Сьогодні" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "День" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Тиждень" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Місяць" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "Неділя" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "Понеділок" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "Вівторок" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "Середа" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "Четвер" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "П'ятниця" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "Субота" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Нд" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Пн" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Вт" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Ср" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Чт" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Пт" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Сб" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Програма, яка триває довше запланованого часу, буде перервана наступною програмою." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Скасувати поточну програму?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Зупинити запис поточної програми?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Зміст програми" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Видалити весь вміст?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Видалити вибрані елементи?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Старт" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Кінець" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Тривалість" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Фільтрація " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " з " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " записи" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "На зазначений період часу не заплановано жодної програми." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "Початок звучання" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "Закінчення звучання" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Зведення" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Затухання" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Програма порожня" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Запис з лінійного входу" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Попередній перегляд треку" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Не можна планувати поза програмою." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Переміщення 1 елементу" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Переміщення %s елементів" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "Зберегти" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Відміна" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Редактор Fade" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Редактор Cue" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Функції Waveform доступні в браузері, який підтримує API Web Audio" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Вибрати все" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Зняти виділення" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Обрізати переповнені програми" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Видалити вибрані заплановані елементи" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Перехід до поточного треку" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Перейти до поточного" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Скасувати поточну програму" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Відкрийте бібліотеку, щоб додати або видалити вміст" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Додати / видалити вміст" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "у вживанні" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Диск" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Подивитись" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Відкрити" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Адмін" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Менеджер програми" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Гість" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Гості можуть зробити наступне:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Переглянути розклад" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Переглянути вміст програм" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs можуть робити наступне:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Керуйте призначеним вмістом програм" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Імпорт медіафайлів" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Створюйте списки відтворення, смарт-блоки та веб-потоки" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Керувати вмістом власної бібліотеки" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "Керівники програм можуть робити наступне:" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Перегляд вмісту програм та керування ними" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Розклад програм" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Керуйте всім вмістом бібліотеки" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Адміністратори можуть робити наступне:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Керувати налаштуваннями" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Керувати користувачами" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Керування папками, які переглядаються" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Надіслати відгук у службу підтримки" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Переглянути стан системи" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Доступ до історії відтворення" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Переглянути статистику слухачів" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Показати/сховати стовпці" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Стовпці" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "З {from} до {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "рррр-мм-дд" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "гг:хх:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "кГц" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Нд" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Пн" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Вт" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Ср" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Чт" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Пт" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Сб" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "Закрити" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Година" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Хвилина" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Готово" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Виберіть файли" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "Додайте файли до черги завантаження та натисніть кнопку «Пуск»." + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "Назва файлу" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "Розмір" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Додати файли" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Зупинити завантаження" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Почати завантаження" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "Розпочати вивантаження" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "Додати файли" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "Припинити поточне вивантаження" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "Почати вивантаження черги" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Завантажено %d/%d файлів" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "Перетягніть файли сюди." + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "Помилка розширення файлу." + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "Помилка розміру файлу." + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "Помилка підрахунку файлів." + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "Помилка ініціалізації." + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "HTTP помилка." + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "Помилка безпеки." + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "Загальна помилка." + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "IO помилка." + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "Файл: %s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "%d файлів у черзі" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Файл: %f, розмір: %s, макс. розмір файлу: %m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "URL-адреса завантаження може бути неправильною або не існує" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "Помилка: Файл завеликий: " + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "Помилка: Недійсне розширення файлу: " + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "Встановити за замовчуванням" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "Створити запис" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "Редагувати запис історії" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Немає програми" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Скопійовано %s рядок%s у буфер обміну" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape." + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "Нова програма" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "Новий запис журналу" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "Дані в таблиці відсутні" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "(відфільтровано з _MAX_ всього записів)" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "Спочатку" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "Останній" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "Наступний" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "Попередній" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "Пошук:" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "Відповідних записів не знайдено" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "Перетягніть треки сюди з бібліотеки" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "Жоден трек не відтворювався протягом вибраного періоду часу." + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "Зняти з публікації" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "Відповідних результатів не знайдено." + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "Автор" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "Опис" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "Посилання" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "Дата публікації" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "Статус імпорту" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "Дії" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "Видалити з бібліотеки" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "Успішно імпортовано" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "Показати _MENU_" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "Показати _MENU_ записів" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "Показано від _START_ to _END_ of _TOTAL_ записів" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "Показано від _START_ to _END_ of _TOTAL_ треків" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "Показано від _START_ to _END_ of _TOTAL_типів треків" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "Показано від _START_ to _END_ of _TOTAL_ користувачів" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "Показано від 0 до 0 із 0 записів" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "Показано від 0 до 0 із 0 треків" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "Показано від 0 до 0 із 0 типів треків" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "(відфільтровано з _MAX_ загальних типів доріжок)" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "Ви впевнені, що хочете видалити цей тип треку?" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "Типи треків не знайдено." + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "Типи треків не знайдено" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "Відповідних типів треків не знайдено" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "Увімкнено" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "Вимкнено" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "Скасувати завантаження" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "Тип" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "Налаштування подкасту збережено" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "Ви впевнені, що хочете видалити цього користувача?" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "Неможливо видалити себе!" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "Ви не опублікували жодного випуску!" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "Ви можете опублікувати завантажений вміст із перегляду «Треки»." + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "Спробуй зараз" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "Попередній перегляд плейлиста" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "Смарт-блок" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "Попередній перегляд веб-потоку" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "Ви не маєте дозволу переглядати бібліотеку." + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "Зараз" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "Натисніть «Новий», щоб створити." + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "Натисніть «Завантажити», щоб додати." + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "URL стрічки" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "Дата імпорту" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "Додати новий подкаст" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"Не можна планувати за межами програми.\n" +"Спочатку створіть програму." + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "Файли ще не завантажено." + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "В ефірі" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "Не в ефірі" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "Offline" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "Нічого не заплановано" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "Натисніть «Додати», щоб створити зараз." + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "Будь ласка, введіть своє ім'я користувача та пароль." + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином." + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "Не вдалося знайти це ім’я користувача чи електронну адресу." + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели." + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз." + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Ви переглядаєте старішу версію %s" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "До динамічних блоків не можна додавати треки." + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Ви не маєте дозволу на видалення вибраного %s(х)." + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "Ви можете додавати треки лише в смарт-блок." + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "Плейлист без назви" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "Смарт-блок без назви" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "Невідомий плейлист" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "Налаштування оновлено." + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "Налаштування потоку оновлено." + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "слід вказати шлях" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Проблема з Liquidsoap..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "Метод запиту не прийнято" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Ретрансяція програми %s від %s в %s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "Вибрати курсор" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "Видалити курсор" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "програми не існує" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "Тип треку успішно додано!" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "Тип треку успішно оновлено!" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "Користувача успішно додано!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "Користувача успішно оновлено!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "Налаштування успішно оновлено!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "Веб-потік без назви" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "Веб-потік збережено." + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "Недійсні значення форми." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "Введено недійсний символ" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Необхідно вказати день" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Необхідно вказати час" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Для повторної трансляції потрібно зачекати принаймні 1 годину" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "Додати плейлист з автозавантаженням?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Вибір плейлиста" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Повторювати список відтворення до заповнення програми?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Використовувати %s Аутентифікацію:" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "Використовувати спеціальну автентифікацію:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "Спеціальне ім'я користувача" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Користувацький пароль" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "Хост:" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "Порт:" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "Точка монтування:" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "Поле імені користувача не може бути порожнім." + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "Поле пароля не може бути порожнім." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Записувати з лінійного входу?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Повторна трансляція?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "днів" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Посилання:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Тип повтору:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "щотижня" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "кожні 2 тижні" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "кожні 3 тижні" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "кожні 4 тижні" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "щомісяця" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Оберіть дні:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Повторити:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "день місяця" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "день тижня" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Кінцева дата:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "Немає кінця?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "Дата завершення має бути після дати початку" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "Виберіть день повторення" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Колір фону:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Колір тексту:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Поточний логотип:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Показати логотип:" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "Попередній перегляд логотипу:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Ім'я:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Програма без назви" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "Жанр:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "Опис:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Опис екземпляру:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' не відповідає часовому формату 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Час початку:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "У майбутньому:" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "Час закінчення:" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "Тривалість:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "Часовий пояс:" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "Повторювати?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "Неможливо створити програму в минулому часі" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Неможливо змінити дату/час початку програми, яка вже розпочата" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "Дата/час завершення не можуть бути в минулому" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "Не може мати тривалість < 0хв" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "Не може мати тривалість 00год 00хв" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Тривалість не може перевищувати 24 год" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "Неможливо запланувати накладені програми" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Пошук користувачів:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Діджеї:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Назва типу:" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Код:" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "Видимість:" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "Проаналізуйте контрольні точки:" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "Код не унікальний." + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Ім'я користувача:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Пароль:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "Підтвердіть пароль:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "Ім'я:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "Прізвище:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "Телефон:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Тип користувача:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Логін не є унікальним." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Видалити всі треки з бібліотеки" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Дата початку:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "Назва:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "Автор:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "Альбом:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "Власник:" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "Виберіть тип" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "Тип треку:" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "Рік:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "Композитор:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "Виконавець:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "Настрій:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "Авторське право:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Номер ISRC:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "Веб-сайт:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Мова:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "Опублікувати..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "Час початку" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "Час закінчення" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Часовий пояс інтерфейсу:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Назва станції" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Опис Станції" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Лого Станції:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Примітка: все, що перевищує 600x600, буде змінено." + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "Тривалість переходу за замовчуванням (с):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Будь ласка, введіть час у секундах (наприклад, 0,5)" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "За замовчуванням Fade In (s):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "За замовчуванням Fade Out (s):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "Тип доріжки Завантаження за замовчуванням" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "Вступний автозавантажуваний плейлист (Intro)" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "Завершальний автозавантажувальний плейлист (Outro)" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Перезаписати метатеги епізоду подкасту" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Створіть смартблок і список відтворення після створення нового подкасту" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди." + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "Public LibreTime API" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "Потрібний для вбудованого віджета розкладу." + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" +"Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n" +" до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт." + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "Мова за замовчуванням" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "Часовий пояс станції" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "Тиждень починається з" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "Відображати кнопку входу на сторінці радіо?" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "Попередній перегляд функцій" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "Увімкніть це, щоб тестувати нові функції." + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "Автоматичне вимкнення:" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "Автоматичне ввімкнення:" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "Перемикання переходу Fade (s):" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "Головний вихідний хост:" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "Головний вихідний порт:" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "Головне джерело монтування:" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "Показати вихідний хост:" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "Показати вихідний порт:" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "Показати джерела монтування:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Логін" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "Пароль" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "Підтвердити новий пароль" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "Підтвердження пароля не збігається з вашим." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "Ім'я користувача" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Скинути пароль" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Назад" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Зараз грає" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Виберіть потік:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Автоматичне визначення потоку, який найбільше підходить для використання." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Виберіть потік:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Зручний для мобільних пристроїв" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - Плеєр не підтримує потоки Opus." + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "Код для вбудовування:" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт." + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "Попередній перегляд:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Конфіденційність стрічки" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Публічний" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Приватний" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "Мова станції" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "Фільтрувати мої програми" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Усі мої програми:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "Мої програми" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "Виберіть критерії" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "Тип треку" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "Частота дискретизації (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "раніше" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "після" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "між" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "Виберіть одиницю часу" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "хвилина(и)" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "година(и)" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "День(Дні)" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "Тиждень(і)" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "місяць(і)" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "Рік(и)" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "година(и)" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "хвилина(и)" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "елементи" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "час, що залишився у програмі" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Довільно" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Найновіший(і)" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Найстаріший(і)" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Нещодавно зіграно" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Нещодавно грали" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "Виберіть тип доріжки" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Тип:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Динамічний" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Статичний" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "Виберіть тип доріжки" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "Дозволити повторення треків:" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "Дозволити останньому треку перевищити ліміт часу:" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "Сортування треків:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Обмежити в:" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "Створення вмісту списку відтворення та збереження критеріїв" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "Перемішати вміст плейлиста" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "Перемішати" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ліміт не може бути порожнім або меншим за 0" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ліміт не може перевищувати 24 год" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Значення має бути цілим числом" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 максимальне граничне значення" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Ви повинні вибрати Критерії і Модифікатор" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Довжина має бути введена у '00:00:00' форматі" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу." + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "Значення має бути числовим" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "Значення має бути меншим, ніж 2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "Значення не може бути порожнім" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Значення має бути менше ніж %s символів" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "Значення не може бути порожнім" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "Метадані потоку:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "Виконавець - Назва" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "Програма - Виконавець - Назва" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "Назва станції - Показати назву" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "Метадані при вимкненому ефірі" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "Вмикнути Replay Gain" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "Змінити Replay Gain" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "Апаратний аудіовихід:" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "Тип виходу" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "Увімкнено:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "Телефон:" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "Тип потоку:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "Тип сервіса:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "Канали:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "Сервер" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "Порт" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "Точка монтування" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "Ім'я" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "URL-адреса трансляції" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Надішлати метадані на свою станцію в TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID Станції:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Ключ партнера:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "ID партнера:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Імпорт папки:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Переглянути папки:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Недійсний каталог" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Значення є обов’язковим і не може бути порожнім" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' не є дійсною електронною адресою в форматі local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не відповідає формату дати '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' є меншим ніж %min% довжина символів" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' це більше ніж %max% довжина символів" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' не знаходиться між '%min%' і '%max%', включно" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Паролі не співпадають" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" +"Привіт %s, \n" +"\n" +"Натисніть це посилання, щоб змінити пароль: " + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" +"\n" +"\n" +"Якщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" +"\n" +"\n" +"Дякую Вам,\n" +"The %s Team" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "%s Скидання паролю" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "Час початку та закінчення звучання треку не заповнені." + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "Час закінчення звучання не може перевищувати довжину треку." + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "Час початку звучання може бути пізніше часу закінчення." + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Час закінчення звучання не може бути раніше початку." + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "Час завантаження" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "Жодного" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "На основі %s" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "Оберіть Країну" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "Наживо" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "Неможливо перемістити елементи з пов’язаних програм" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "Розклад, який ви переглядаєте, застарів!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Вам не дозволено планувати програму %s." + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "Ви не можете додавати файли до Програми, що записується." + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Програма %s закінчилась, її не можливо запланувати." + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Програма %s була оновлена раніше!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "Вміст пов’язаних програм не можна змінювати під час трансляції!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Неможливо запланувати плейлист, який містить відсутні файли." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Вибраний файл не існує!" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "Програма може тривати не більше 24 годин." + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"Не можна планувати Програми, що перетинаються.\n" +"Примітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники." + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ретрансляція %s від %s" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "Довжина повинна бути більше ніж 0 хвилин" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "Довжина повинна відповідати формі \"00год 00хв\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "URL має бути форми \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "URL-адреса має містити не більше 512 символів" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "Для веб-потоку не знайдено тип MIME." + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "Назва веб-потоку не може бути пустою" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "Не вдалося проаналізувати XSPF плейлист" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "Не вдалося проаналізувати PLS плейлист" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "Не вдалося проаналізувати M3U плейлист" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Недійсний веб-потік. Здається, це завантажений файл." + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Нерозпізнаний тип потоку: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Файл запису не існує" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "Перегляд метаданих записаного файлу" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Заплановані треки" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Очистити програму" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "Відміна програми" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "Редагувати екземпляр" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "Редагування програми" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "Видалити екземпляр" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "Видалити екземпляр і все наступне" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "У дозволі відмовлено" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "Не можна перетягувати повторювані програми" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "Неможливо перемістити минулу програму" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "Неможливо перенести програму в минуле" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції." + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Програму видалено, оскільки записаної програми не існує!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Для повторної трансляції потрібно почекати 1 годину." + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "Трек" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "Програно" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Автоматично створений смарт-блок для подкасту" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Веб-потоки" + +#~ msgid " to " +#~ msgstr " to " + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s contains nested watched directory: %s" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "%s doesn't exist in the watched list." + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s is already set as the current storage dir or in the watched folders list" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s is already set as the current storage dir or in the watched folders list." + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s is already watched." + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s is nested within existing watched directory: %s" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s is not a valid directory." + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." + +#~ msgid "(Required)" +#~ msgstr "(Required)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - Моно" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - Стерео" + +#~ msgid "ALSA" +#~ msgstr "ALSA" + +#~ msgid "AO" +#~ msgstr "AO" + +#~ msgid "About" +#~ msgstr "About" + +#~ msgid "Add New Field" +#~ msgstr "Add New Field" + +#~ msgid "Add more elements" +#~ msgstr "Add more elements" + +#~ msgid "Add this show" +#~ msgstr "Add this show" + +#~ msgid "Additional Options" +#~ msgstr "Additional Options" + +#~ msgid "Admin Password" +#~ msgstr "Пароль адміністратора" + +#~ msgid "Admin User" +#~ msgstr "Адміністратор" + +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "Allowed CORS URLs (DEPRECATED)" +#~ msgstr "Дозволені URL-адреси CORS (Застаріле)" + +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +#~ msgstr "Вміст автозавантажуваних списків відтворення додається до шоу за годину до виходу в ефір. Більше інформації" + +#~ msgid "Check that the libretime-celery service is installed correctly in " +#~ msgstr "Переконайтеся, що службу libretime-celery встановлено правильно " + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Custom / 3rd Party Streaming" +#~ msgstr "Трансляція на зовнішні сервери" + +#~ msgid "Default Length:" +#~ msgstr "Default Length:" + +#~ msgid "Default License:" +#~ msgstr "Default License:" + +#~ msgid "Default Streaming" +#~ msgstr "Стрім за замовчуванням" + +#~ msgid "Disk Space" +#~ msgstr "Disk Space" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Метадані Icecast Vorbis" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Jack" +#~ msgstr "Джек" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "Точка монтування не може бути порожнім на сервері Icecast." + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "OSS" +#~ msgstr "OSS" + +#~ msgid "Only numbers are allowed." +#~ msgstr "Дозволяються лише цифри." + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." + +#~ msgid "Please upgrade to " +#~ msgstr "Please upgrade to " + +#~ msgid "Port cannot be empty." +#~ msgstr "Порт не може бути порожнім." + +#~ msgid "Portaudio" +#~ msgstr "Portaudio" + +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Pulseaudio" +#~ msgstr "Pulseaudio" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line. (DEPRECATED: Allowed CORS origins configuration moved to the configuration file.)" +#~ msgstr "Віддалені URL-адреси, які мають доступ до цього екземпляра LibreTime у веб-переглядачі. Один URL на рядок. (Застаріле: конфігурацію дозволених джерел CORS переміщено до файлу конфігурації.)" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Server cannot be empty." +#~ msgstr "Сервер не може бути порожнім." + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Streaming Server:" +#~ msgstr "Потоковий сервер:" + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "please put in a time in seconds '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po b/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po new file mode 100644 index 0000000000..c224c354bb --- /dev/null +++ b/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po @@ -0,0 +1,4609 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# Sourcefabric , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" +"POT-Creation-Date: 2023-02-27 12:16+0000\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Chinese (China)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s采用了错误的日期格式" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s 采用了错误的时间格式" + +#: application/common/LocaleHelper.php:21 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:22 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:167 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:174 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:175 +#: application/configs/config-check.php:194 +#: application/configs/config-check.php:213 +#: application/configs/config-check.php:232 +#: application/configs/config-check.php:251 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:177 +#: application/configs/config-check.php:196 +#: application/configs/config-check.php:215 +#: application/configs/config-check.php:234 +#: application/configs/config-check.php:253 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:187 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:193 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:205 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:212 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:224 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:231 +msgid "Check that the libretime-worker service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:243 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:250 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:28 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:36 +msgid "Calendar" +msgstr "节目日程" + +#: application/configs/navigation.php:44 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:53 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:59 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:67 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:75 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:81 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:86 +msgid "Users" +msgstr "用户管理" + +#: application/configs/navigation.php:92 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:99 +msgid "Streams" +msgstr "媒体流设置" + +#: application/configs/navigation.php:106 +#: application/controllers/LocaleController.php:382 +msgid "Status" +msgstr "系统状态" + +#: application/configs/navigation.php:115 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:124 +msgid "Playout History" +msgstr "播出历史" + +#: application/configs/navigation.php:131 +msgid "History Templates" +msgstr "历史记录模板" + +#: application/configs/navigation.php:138 +msgid "Listener Stats" +msgstr "收听状态" + +#: application/configs/navigation.php:145 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:154 +msgid "Help" +msgstr "帮助" + +#: application/configs/navigation.php:162 +msgid "Getting Started" +msgstr "基本用法" + +#: application/configs/navigation.php:169 +msgid "User Manual" +msgstr "用户手册" + +#: application/configs/navigation.php:174 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:179 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:184 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:753 +msgid "You are not allowed to access this resource." +msgstr "你没有访问该资源的权限" + +#: application/controllers/ApiController.php:383 +#: application/controllers/ApiController.php:459 +#: application/controllers/ApiController.php:528 +#: application/controllers/ApiController.php:583 +#: application/controllers/ApiController.php:671 +#: application/controllers/ApiController.php:688 +#: application/controllers/ApiController.php:719 +msgid "You are not allowed to access this resource. " +msgstr "你没有访问该资源的权限" + +#: application/controllers/ApiController.php:923 +#: application/controllers/ApiController.php:944 +#: application/controllers/ApiController.php:956 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:1010 +msgid "Bad request. no 'mode' parameter passed." +msgstr "请求错误。没有提供‘模式’参数。" + +#: application/controllers/ApiController.php:1023 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "请求错误。提供的‘模式’参数无效。" + +#: application/controllers/DashboardController.php:34 +#: application/controllers/DashboardController.php:86 +msgid "You don't have permission to disconnect source." +msgstr "你没有断开输入源的权限。" + +#: application/controllers/DashboardController.php:36 +#: application/controllers/DashboardController.php:88 +msgid "There is no source connected to this input." +msgstr "没有连接上的输入源。" + +#: application/controllers/DashboardController.php:83 +msgid "You don't have permission to switch source." +msgstr "你没有切换的权限。" + +#: application/controllers/EmbeddablewidgetsController.php:24 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:37 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:50 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:94 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:104 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:114 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:125 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:28 +#: application/controllers/PlaylistController.php:149 +#, php-format +msgid "%s not found" +msgstr "%s不存在" + +#: application/controllers/LibraryController.php:37 +#: application/controllers/PlaylistController.php:170 +msgid "Something went wrong." +msgstr "未知错误。" + +#: application/controllers/LibraryController.php:91 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:131 +#: application/forms/SmartBlockCriteria.php:573 +msgid "Preview" +msgstr "预览" + +#: application/controllers/LibraryController.php:111 +#: application/controllers/LibraryController.php:139 +#: application/controllers/LibraryController.php:162 +msgid "Add to Playlist" +msgstr "添加到播放列表" + +#: application/controllers/LibraryController.php:113 +msgid "Add to Smart Block" +msgstr "添加到智能模块" + +#: application/controllers/LibraryController.php:118 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:170 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:138 +#: application/services/CalendarService.php:192 +#: application/services/CalendarService.php:212 +#: application/services/CalendarService.php:218 +msgid "Delete" +msgstr "删除" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:146 +#: application/controllers/LibraryController.php:168 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:126 +#: application/controllers/ScheduleController.php:732 +msgid "Download" +msgstr "下载" + +#: application/controllers/LibraryController.php:130 +msgid "Duplicate Playlist" +msgstr "复制播放列表" + +#: application/controllers/LibraryController.php:133 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:175 +msgid "No action available" +msgstr "没有操作选择" + +#: application/controllers/LibraryController.php:195 +msgid "You don't have permission to delete selected items." +msgstr "你没有删除选定项目的权限。" + +#: application/controllers/LibraryController.php:240 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:243 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:285 +#: application/controllers/LibraryController.php:320 +#, php-format +msgid "Copy of %s" +msgstr "%s的副本" + +#: application/controllers/ListenerstatController.php:46 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "音频播放器" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "录制:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "主输入源" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "节目定制输入源" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "没有安排节目内容" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "当前节目:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "当前的" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "你已经在使用最新版" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "版本有更新:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "添加到播放列表" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "添加到只能模块" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "添加1项" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "添加%s项" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "智能模块只能添加声音文件。" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:182 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "请在右部的时间表视图中选择一个游标位置。" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "添加" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:155 +msgid "Edit" +msgstr "编辑" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:54 +msgid "Remove" +msgstr "移除" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "编辑元数据" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "添加到所选的节目" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "选择" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "选择此页" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "取消整页" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "全部取消" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "确定删除选择的项?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "已安排进日程" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1458 application/models/Block.php:1556 +#: application/services/HistoryService.php:1051 +#: application/services/HistoryService.php:1086 +#: application/services/HistoryService.php:1101 +msgid "Title" +msgstr "标题" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1442 application/models/Block.php:1540 +#: application/services/HistoryService.php:1052 +#: application/services/HistoryService.php:1087 +#: application/services/HistoryService.php:1102 +msgid "Creator" +msgstr "作者" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1433 application/models/Block.php:1531 +#: application/services/HistoryService.php:1053 +msgid "Album" +msgstr "专辑" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "比特率" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1435 application/models/Block.php:1533 +msgid "BPM" +msgstr "每分钟拍子数" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1436 application/models/Block.php:1534 +#: application/services/HistoryService.php:1058 +#: application/services/HistoryService.php:1105 +msgid "Composer" +msgstr "作曲" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1437 application/models/Block.php:1535 +#: application/services/HistoryService.php:1063 +msgid "Conductor" +msgstr "指挥" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1438 application/models/Block.php:1536 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1106 +msgid "Copyright" +msgstr "版权" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1443 application/models/Block.php:1541 +msgid "Encoded By" +msgstr "编曲" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:118 +#: application/models/Block.php:1444 application/models/Block.php:1542 +#: application/services/HistoryService.php:1055 +msgid "Genre" +msgstr "风格" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1445 application/models/Block.php:1543 +#: application/services/HistoryService.php:1059 +msgid "ISRC" +msgstr "ISRC码" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1446 application/models/Block.php:1544 +#: application/services/HistoryService.php:1057 +msgid "Label" +msgstr "标签" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1447 application/models/Block.php:1545 +#: application/services/HistoryService.php:1064 +msgid "Language" +msgstr "语种" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1449 application/models/Block.php:1547 +msgid "Last Modified" +msgstr "最近更新于" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1450 application/models/Block.php:1548 +msgid "Last Played" +msgstr "上次播放于" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1451 application/models/Block.php:1549 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1104 +msgid "Length" +msgstr "时长" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1453 application/models/Block.php:1551 +msgid "Mime" +msgstr "MIME信息" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1454 application/models/Block.php:1552 +#: application/services/HistoryService.php:1056 +msgid "Mood" +msgstr "风格" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1455 application/models/Block.php:1553 +msgid "Owner" +msgstr "所有者" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1456 application/models/Block.php:1554 +msgid "Replay Gain" +msgstr "回放增益" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "样本率" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1459 application/models/Block.php:1557 +msgid "Track Number" +msgstr "曲目" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1460 application/models/Block.php:1558 +msgid "Uploaded" +msgstr "上传于" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1461 application/models/Block.php:1559 +msgid "Website" +msgstr "网址" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1462 application/models/Block.php:1560 +#: application/services/HistoryService.php:1061 +msgid "Year" +msgstr "年代" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "加载中..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:414 +msgid "All" +msgstr "全部" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "文件" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "播放列表" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "智能模块" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "网络流媒体" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "位置类型:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "确定删除所选项?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "正在上传..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "数据正在从服务器下载中..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:61 +#: application/services/CalendarService.php:93 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "错误代码:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "错误信息:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "输入只能为正数" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "只允许数字输入" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "输入格式应为:年-月-日(yyyy-mm-dd)" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "输入格式应为:时:分:秒 (hh:mm:ss.t)" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "打开媒体编辑器" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "请输入时间‘00:00:00(.0)’" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "你的浏览器不支持这种文件类型:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "动态智能模块无法预览" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "限制在:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "播放列表已存储" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "播放列表已经随机化" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。" + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "听众统计%s:%s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "一周以后再提醒我" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "不再提醒" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "是的,帮助Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "图像文件格式只能是jpg,jpeg,png或者gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。" + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。" + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "智能模块已经随机排列" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "智能模块已经生成,条件设置已经保存" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "智能模块已经保存" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "加载中..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:377 +#: application/forms/SmartBlockCriteria.php:631 +#: application/forms/SmartBlockCriteria.php:688 +#: application/models/Block.php:1466 application/models/Block.php:1564 +msgid "Select modifier" +msgstr "选择操作符" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1467 application/models/Block.php:1565 +msgid "contains" +msgstr "包含" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1468 application/models/Block.php:1566 +msgid "does not contain" +msgstr "不包含" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1469 application/models/Block.php:1476 +#: application/models/Block.php:1567 application/models/Block.php:1574 +msgid "is" +msgstr "是" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1470 application/models/Block.php:1477 +#: application/models/Block.php:1568 application/models/Block.php:1575 +msgid "is not" +msgstr "不是" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1471 application/models/Block.php:1569 +msgid "starts with" +msgstr "起始于" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1472 application/models/Block.php:1570 +msgid "ends with" +msgstr "结束于" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1478 application/models/Block.php:1576 +msgid "is greater than" +msgstr "大于" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1479 application/models/Block.php:1577 +msgid "is less than" +msgstr "小于" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1480 application/models/Block.php:1578 +msgid "is in the range" +msgstr "处于" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:575 +msgid "Generate" +msgstr "开始生成" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "选择存储文件夹" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "选择监控的文件夹" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"确定更改存储路径?\n" +"这项操作将从媒体库中删除所有文件!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "管理媒体文件夹" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "确定取消该文件夹的监控?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "指定的路径无法访问。" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "流服务器已连接" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "输出流已禁用" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:146 +msgid "Getting information from the server..." +msgstr "从服务器加载中..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "无法连接流服务器" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。" + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "如果你的流客户端不需要用户名,那么当前项可以留空" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "搜索无结果" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "所设置的自定义认证设置只对当前的节目有效。" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "此节目已不存在" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "注意:节目取消绑定后无法再次绑定" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "节目" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "节目内容为空" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1分钟" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5分钟" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10分钟" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15分钟" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30分钟" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60分钟" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "从服务器下载数据中..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "此节目没有安排内容。" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "节目内容只填充了一部分。" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "一月" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "二月" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "三月" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "四月" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "五月" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "六月" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "七月" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "八月" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "九月" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "十月" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "十一月" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "十二月" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "一月" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "二月" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "三月" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "四月" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "六月" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "七月" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "八月" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "九月" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "十月" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "十一月" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "十二月" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:230 +msgid "Sunday" +msgstr "周日" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:231 +msgid "Monday" +msgstr "周一" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:232 +msgid "Tuesday" +msgstr "周二" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:233 +msgid "Wednesday" +msgstr "周三" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:234 +msgid "Thursday" +msgstr "周四" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:235 +msgid "Friday" +msgstr "周五" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:236 +msgid "Saturday" +msgstr "周六" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "周日" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "周一" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "周二" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "周三" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "周四" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "周五" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "周六" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "超出的节目内容将被随后的节目所取代。" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "取消当前的节目?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "停止录制当前的节目?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "确定" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "浏览节目内容" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "清空全部内容?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "删除选定的项目?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "开始" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "结束" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "时长" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1439 application/models/Block.php:1537 +msgid "Cue In" +msgstr "切入" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1440 application/models/Block.php:1538 +msgid "Cue Out" +msgstr "切出" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "淡入" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "淡出" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "节目无内容" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "从线路输入录制" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "试听媒体" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "没有指定节目,无法凭空安排内容。" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "移动1个项目" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "移动%s个项目" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 +msgid "Save" +msgstr "保存" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "取消" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "淡入淡出编辑器" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "切入切出编辑器" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "想要启用波形图功能,需要支持Web Audio API的浏览器。" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "全选" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "全不选" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "移除所选的项目" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "跳转到当前播放的项目" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "取消当前的节目" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "打开媒体库,添加或者删除节目内容" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "添加 / 删除内容" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "使用中" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "磁盘" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "查询" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "打开" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "系统管理员" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "节目编辑" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "节目主管" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "游客" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "游客的权限包括:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "显示节目日程" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "显示节目内容" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "节目编辑的权限包括:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "为指派的节目管理节目内容" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "导入媒体文件" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "创建播放列表,智能模块和网络流媒体" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "管理媒体库中属于自己的内容" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "查看和管理节目内容" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "安排节目日程" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "管理媒体库的所有内容" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "管理员的权限包括:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "属性管理" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "管理用户" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "管理监控文件夹" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "提交反馈意见" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "显示系统状态" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "查看播放历史" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "显示收听统计数据" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "显示/隐藏栏" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "从{from}到{to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "千比特每秒" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "年-月-日" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "时:分:秒" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "千赫兹" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "周天" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "周一" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "周二" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "周三" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "周四" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "周五" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "周六" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:403 +msgid "Close" +msgstr "关闭" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "小时" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "分钟" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "设定" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "选择文件" + +#: application/controllers/LocaleController.php:380 +msgid "Add files to the upload queue and click the start button." +msgstr "添加需要上传的文件到传输队列中,然后点击开始上传。" + +#: application/controllers/LocaleController.php:381 +msgid "Filename" +msgstr "" + +#: application/controllers/LocaleController.php:383 +msgid "Size" +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "添加文件" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "停止上传" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "开始上传" + +#: application/controllers/LocaleController.php:387 +msgid "Start Upload" +msgstr "" + +#: application/controllers/LocaleController.php:388 +msgid "Add files" +msgstr "添加文件" + +#: application/controllers/LocaleController.php:389 +msgid "Stop current upload" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Start uploading queue" +msgstr "" + +#: application/controllers/LocaleController.php:391 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "已经上传%d/%d个文件" + +#: application/controllers/LocaleController.php:392 +msgid "N/A" +msgstr "未知" + +#: application/controllers/LocaleController.php:393 +msgid "Drag files here." +msgstr "拖拽文件到此处。" + +#: application/controllers/LocaleController.php:394 +msgid "File extension error." +msgstr "文件后缀名出错。" + +#: application/controllers/LocaleController.php:395 +msgid "File size error." +msgstr "文件大小出错。" + +#: application/controllers/LocaleController.php:396 +msgid "File count error." +msgstr "发生文件统计错误。" + +#: application/controllers/LocaleController.php:397 +msgid "Init error." +msgstr "发生初始化错误。" + +#: application/controllers/LocaleController.php:398 +msgid "HTTP Error." +msgstr "发生HTTP类型的错误" + +#: application/controllers/LocaleController.php:399 +msgid "Security error." +msgstr "发生安全性错误。" + +#: application/controllers/LocaleController.php:400 +msgid "Generic error." +msgstr "发生通用类型的错误。" + +#: application/controllers/LocaleController.php:401 +msgid "IO error." +msgstr "输入输出错误。" + +#: application/controllers/LocaleController.php:402 +#, php-format +msgid "File: %s" +msgstr "文件:%s" + +#: application/controllers/LocaleController.php:404 +#, php-format +msgid "%d files queued" +msgstr "队列中有%d个文件" + +#: application/controllers/LocaleController.php:405 +msgid "File: %f, size: %s, max file size: %m" +msgstr "文件:%f,大小:%s,最大的文件大小:%m" + +#: application/controllers/LocaleController.php:406 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "用于上传的地址有误或者不存在" + +#: application/controllers/LocaleController.php:407 +msgid "Error: File too large: " +msgstr "错误:文件过大:" + +#: application/controllers/LocaleController.php:408 +msgid "Error: Invalid file extension: " +msgstr "错误:无效的文件后缀名:" + +#: application/controllers/LocaleController.php:410 +msgid "Set Default" +msgstr "设为默认" + +#: application/controllers/LocaleController.php:411 +msgid "Create Entry" +msgstr "创建项目" + +#: application/controllers/LocaleController.php:412 +msgid "Edit History Record" +msgstr "编辑历史记录" + +#: application/controllers/LocaleController.php:413 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "无节目" + +#: application/controllers/LocaleController.php:415 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "复制%s行%s到剪贴板" + +#: application/controllers/LocaleController.php:416 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。" + +#: application/controllers/LocaleController.php:417 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:420 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:421 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:429 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:432 +#: application/controllers/LocaleController.php:445 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:435 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:436 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:438 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:134 +#: application/models/Block.php:1441 application/models/Block.php:1539 +msgid "Description" +msgstr "描述" + +#: application/controllers/LocaleController.php:439 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:442 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:453 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:458 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:459 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:460 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:461 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:160 +#: application/forms/GeneralPreferences.php:214 +msgid "Enabled" +msgstr "启用" + +#: application/controllers/LocaleController.php:462 +#: application/forms/AddTracktype.php:49 +#: application/forms/GeneralPreferences.php:124 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:213 +msgid "Disabled" +msgstr "禁用" + +#: application/controllers/LocaleController.php:463 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:474 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:477 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:482 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:483 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:484 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:492 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:493 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:494 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:47 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:147 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。" + +#: application/controllers/LoginController.php:150 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:153 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:231 +msgid "Wrong username or password provided. Please try again." +msgstr "用户名或密码错误,请重试。" + +#: application/controllers/PlaylistController.php:52 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "你所查看的%s已更改" + +#: application/controllers/PlaylistController.php:142 +msgid "You cannot add tracks to dynamic blocks." +msgstr "动态智能模块不能添加声音文件。" + +#: application/controllers/PlaylistController.php:163 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "你没有删除所选%s的权限。" + +#: application/controllers/PlaylistController.php:176 +msgid "You can only add tracks to smart block." +msgstr "智能模块只能添加媒体文件。" + +#: application/controllers/PlaylistController.php:194 +msgid "Untitled Playlist" +msgstr "未命名的播放列表" + +#: application/controllers/PlaylistController.php:196 +msgid "Untitled Smart Block" +msgstr "未命名的智能模块" + +#: application/controllers/PlaylistController.php:526 +msgid "Unknown Playlist" +msgstr "位置播放列表" + +#: application/controllers/PreferenceController.php:69 +msgid "Preferences updated." +msgstr "属性已更新。" + +#: application/controllers/PreferenceController.php:203 +msgid "Stream Setting Updated." +msgstr "流设置已更新。" + +#: application/controllers/PreferenceController.php:248 +msgid "path should be specified" +msgstr "请指定路径" + +#: application/controllers/PreferenceController.php:291 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoap出错..." + +#: application/controllers/PreferenceController.php:334 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:390 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "节目%s是节目%s的重播,时间是%s" + +#: application/controllers/ShowbuilderController.php:133 +msgid "Select cursor" +msgstr "选择游标" + +#: application/controllers/ShowbuilderController.php:134 +msgid "Remove cursor" +msgstr "删除游标" + +#: application/controllers/ShowbuilderController.php:152 +msgid "show does not exist" +msgstr "节目不存在" + +#: application/controllers/TracktypeController.php:62 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:64 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:78 +msgid "User added successfully!" +msgstr "用户已添加成功!" + +#: application/controllers/UserController.php:80 +msgid "User updated successfully!" +msgstr "用于已成功更新!" + +#: application/controllers/UserController.php:184 +msgid "Settings updated successfully!" +msgstr "设置更新成功!" + +#: application/controllers/WebstreamController.php:29 +#: application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "未命名的网络流媒体" + +#: application/controllers/WebstreamController.php:156 +msgid "Webstream saved." +msgstr "网络流媒体已保存。" + +#: application/controllers/WebstreamController.php:164 +msgid "Invalid form values." +msgstr "无效的表格内容。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +msgid "Invalid character entered" +msgstr "输入的字符不合要求" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "请指定天" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "请指定时间" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "至少间隔一个小时" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "使用自定义的用户认证:" + +#: application/forms/AddShowLiveStream.php:25 +msgid "Custom Username" +msgstr "自定义用户名" + +#: application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "自定义密码" + +#: application/forms/AddShowLiveStream.php:50 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:56 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:62 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:80 +msgid "Username field cannot be empty." +msgstr "请填写用户名" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Password field cannot be empty." +msgstr "请填写密码" + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "从线路输入录制?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "重播?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "天" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "绑定:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "类型:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "每周" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "每隔2周" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "每隔3周" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "每隔4周" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "每月" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "选择天数:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "重复类型:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "按月的同一日期" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "一个星期的同一日子" + +#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "结束日期:" + +#: application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "无休止?" + +#: application/forms/AddShowRepeats.php:107 +msgid "End date must be after start date" +msgstr "结束日期应晚于开始日期" + +#: application/forms/AddShowRepeats.php:116 +msgid "Please select a repeat day" +msgstr "请选择在哪一天重复" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "背景色:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "文字颜色:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:86 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "名字:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "未命名节目" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "链接地址:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 +msgid "Genre:" +msgstr "风格:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:115 +msgid "Description:" +msgstr "描述:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:63 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:90 +msgid "Duration:" +msgstr "时长:" + +#: application/forms/AddShowWhen.php:99 +msgid "Timezone:" +msgstr "时区" + +#: application/forms/AddShowWhen.php:108 +msgid "Repeats?" +msgstr "是否设置为系列节目?" + +#: application/forms/AddShowWhen.php:149 +msgid "Cannot create show in the past" +msgstr "节目不能设置为过去的时间" + +#: application/forms/AddShowWhen.php:157 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "节目已经启动,无法修改开始时间/日期" + +#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 +msgid "End date/time cannot be in the past" +msgstr "节目结束的时间或日期不能设置为过去的时间" + +#: application/forms/AddShowWhen.php:174 +msgid "Cannot have duration < 0m" +msgstr "节目时长不能小于0" + +#: application/forms/AddShowWhen.php:177 +msgid "Cannot have duration 00h 00m" +msgstr "节目时长不能为0" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "节目时长不能超过24小时" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:323 +msgid "Cannot schedule overlapping shows" +msgstr "节目时间设置与其他节目有冲突" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "查找用户:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "选择节目编辑:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:45 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:57 +msgid "Analyze cue points:" +msgstr "" + +#: application/forms/AddTracktype.php:74 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 +#: application/forms/LiveStreamingPreferences.php:40 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "用户名:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 +#: application/forms/LiveStreamingPreferences.php:52 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "密码:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "再次输入密码:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "名:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "姓:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 +msgid "Email:" +msgstr "电邮:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "手机:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "Skype帐号:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "Jabber帐号:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "用户类型:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "帐号重名。" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "开始日期:" + +#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 +msgid "Title:" +msgstr "歌曲名:" + +#: application/forms/EditAudioMD.php:62 +msgid "Creator:" +msgstr "作者:" + +#: application/forms/EditAudioMD.php:72 +msgid "Album:" +msgstr "专辑名:" + +#: application/forms/EditAudioMD.php:89 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:101 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:108 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:143 +msgid "Year:" +msgstr "年份:" + +#: application/forms/EditAudioMD.php:156 +msgid "Label:" +msgstr "标签:" + +#: application/forms/EditAudioMD.php:166 +msgid "Composer:" +msgstr "编曲:" + +#: application/forms/EditAudioMD.php:176 +msgid "Conductor:" +msgstr "制作:" + +#: application/forms/EditAudioMD.php:186 +msgid "Mood:" +msgstr "情怀:" + +#: application/forms/EditAudioMD.php:196 +msgid "BPM:" +msgstr "拍子(BPM):" + +#: application/forms/EditAudioMD.php:207 +msgid "Copyright:" +msgstr "版权:" + +#: application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC编号:" + +#: application/forms/EditAudioMD.php:227 +msgid "Website:" +msgstr "网站:" + +#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "语言:" + +#: application/forms/EditAudioMD.php:290 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1084 +msgid "Start Time" +msgstr "开始时间" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1085 +msgid "End Time" +msgstr "结束时间" + +#: application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "用户界面使用的时区:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "电台名称" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "电台标志:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "注意:大于600x600的图片将会被缩放" + +#: application/forms/GeneralPreferences.php:63 +msgid "Default Crossfade Duration (s):" +msgstr "默认混合淡入淡出效果(秒):" + +#: application/forms/GeneralPreferences.php:69 +#: application/forms/GeneralPreferences.php:83 +#: application/forms/GeneralPreferences.php:97 +#: application/forms/LiveStreamingPreferences.php:31 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:77 +msgid "Default Fade In (s):" +msgstr "默认淡入效果(秒):" + +#: application/forms/GeneralPreferences.php:91 +msgid "Default Fade Out (s):" +msgstr "默认淡出效果(秒):" + +#: application/forms/GeneralPreferences.php:103 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:110 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:116 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:122 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:128 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:157 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:163 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:182 +#: application/forms/SetupLanguageTimezone.php:22 +msgid "Station Timezone" +msgstr "系统使用的时区" + +#: application/forms/GeneralPreferences.php:190 +msgid "Week Starts On" +msgstr "一周开始于" + +#: application/forms/GeneralPreferences.php:206 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:211 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:217 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:15 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:21 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:27 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:59 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:66 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:73 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:81 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:88 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:95 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "登录" + +#: application/forms/PasswordChange.php:15 +msgid "Password" +msgstr "密码" + +#: application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "确认新密码" + +#: application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "新密码不匹配" + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +msgid "Username" +msgstr "用户名" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "重置密码" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "直播室" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:71 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:72 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:77 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:17 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "我的全部节目:" + +#: application/forms/ShowBuilder.php:94 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1432 application/models/Block.php:1530 +msgid "Select criteria" +msgstr "选择属性" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1434 application/models/Block.php:1532 +msgid "Bit Rate (Kbps)" +msgstr "比特率(Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1452 application/models/Block.php:1550 +#: application/services/HistoryService.php:1065 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1457 application/models/Block.php:1555 +msgid "Sample Rate (kHz)" +msgstr "样本率(KHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1473 application/models/Block.php:1571 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1474 application/models/Block.php:1572 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1475 application/models/Block.php:1573 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:471 +#: application/forms/SmartBlockCriteria.php:513 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "小时" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "分钟" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:337 +msgid "items" +msgstr "个数" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "动态" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "静态" + +#: application/forms/SmartBlockCriteria.php:437 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:523 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:531 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:540 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:570 +msgid "Generate playlist content and save criteria" +msgstr "保存条件设置并生成播放列表内容" + +#: application/forms/SmartBlockCriteria.php:582 +msgid "Shuffle playlist content" +msgstr "随机打乱歌曲次序" + +#: application/forms/SmartBlockCriteria.php:584 +msgid "Shuffle" +msgstr "随机" + +#: application/forms/SmartBlockCriteria.php:813 +#: application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "限制的设置不能比0小" + +#: application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "限制的设置不能大于24小时" + +#: application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "值只能为整数" + +#: application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "最多只能允许500条内容" + +#: application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "条件和操作符不能为空" + +#: application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "‘长度’格式应该为‘00:00:00’" + +#: application/forms/SmartBlockCriteria.php:858 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:863 +#: application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:868 +#: application/forms/SmartBlockCriteria.php:893 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" + +#: application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:910 +msgid "The value has to be numeric" +msgstr "应该为数字" + +#: application/forms/SmartBlockCriteria.php:915 +msgid "The value should be less then 2147483648" +msgstr "不能大于2147483648" + +#: application/forms/SmartBlockCriteria.php:920 +msgid "The value cannot be empty" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:925 +#, php-format +msgid "The value should be less than %s characters" +msgstr "不能小于%s个字符" + +#: application/forms/SmartBlockCriteria.php:932 +msgid "Value cannot be empty" +msgstr "不能为空" + +#: application/forms/StreamSetting.php:26 +msgid "Stream Label:" +msgstr "流标签:" + +#: application/forms/StreamSetting.php:28 +msgid "Artist - Title" +msgstr "歌手 - 歌名" + +#: application/forms/StreamSetting.php:29 +msgid "Show - Artist - Title" +msgstr "节目 - 歌手 - 歌名" + +#: application/forms/StreamSetting.php:30 +msgid "Station name - Show name" +msgstr "电台名 - 节目名" + +#: application/forms/StreamSetting.php:38 +msgid "Off Air Metadata" +msgstr "非直播状态下的输出流元数据" + +#: application/forms/StreamSetting.php:45 +msgid "Enable Replay Gain" +msgstr "启用回放增益" + +#: application/forms/StreamSetting.php:52 +msgid "Replay Gain Modifier" +msgstr "回放增益调整" + +#: application/forms/StreamSetting.php:60 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:69 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:35 +msgid "Enabled:" +msgstr "启用:" + +#: application/forms/StreamSettingSubForm.php:43 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:51 +msgid "Stream Type:" +msgstr "流格式:" + +#: application/forms/StreamSettingSubForm.php:59 +msgid "Bit Rate:" +msgstr "比特率:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Service Type:" +msgstr "服务类型:" + +#: application/forms/StreamSettingSubForm.php:75 +msgid "Channels:" +msgstr "声道:" + +#: application/forms/StreamSettingSubForm.php:83 +msgid "Server" +msgstr "服务器" + +#: application/forms/StreamSettingSubForm.php:92 +msgid "Port" +msgstr "端口号" + +#: application/forms/StreamSettingSubForm.php:100 +msgid "Mount Point" +msgstr "加载点" + +#: application/forms/StreamSettingSubForm.php:109 +msgid "Name" +msgstr "名字" + +#: application/forms/StreamSettingSubForm.php:125 +msgid "URL" +msgstr "链接地址" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "Stream URL" +msgstr "" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "导入文件夹:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "监控文件夹:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "无效的路径" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:33 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "不能为空" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' 不符合格式要求: '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' 小于最小长度要求 %min% " + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' 大于最大长度要求 %max%" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "两次密码输入不匹配" + +#: application/models/Auth.php:31 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:34 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:833 application/models/Playlist.php:802 +msgid "Cue in and cue out are null." +msgstr "切入点和切出点均为空" + +#: application/models/Block.php:867 application/models/Block.php:922 +#: application/models/Playlist.php:840 application/models/Playlist.php:881 +msgid "Can't set cue out to be greater than file length." +msgstr "切出点不能超出文件原长度" + +#: application/models/Block.php:879 application/models/Block.php:899 +#: application/models/Playlist.php:832 application/models/Playlist.php:855 +msgid "Can't set cue in to be larger than cue out." +msgstr "切入点不能晚于切出点" + +#: application/models/Block.php:934 application/models/Playlist.php:873 +msgid "Can't set cue out to be smaller than cue in." +msgstr "切出点不能早于切入点" + +#: application/models/Block.php:1448 application/models/Block.php:1546 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:57 +msgid "None" +msgstr "" + +#: application/models/Preference.php:536 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:655 +msgid "Select Country" +msgstr "选择国家" + +#: application/models/Schedule.php:211 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:79 +msgid "Cannot move items out of linked shows" +msgstr "不能从绑定的节目系列里移出项目" + +#: application/models/Scheduler.php:125 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "当前节目内容表(内容部分)需要刷新" + +#: application/models/Scheduler.php:130 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "当前节目内容表(节目已更改)需要刷新" + +#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 +#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 +msgid "The schedule you're viewing is out of date!" +msgstr "当前节目内容需要刷新!" + +#: application/models/Scheduler.php:147 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "没有赋予修改节目 %s 的权限。" + +#: application/models/Scheduler.php:151 +msgid "You cannot add files to recording shows." +msgstr "录音节目不能添加别的内容。" + +#: application/models/Scheduler.php:157 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "节目%s已结束,不能在添加任何内容。" + +#: application/models/Scheduler.php:165 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "节目%s已经更改,需要刷新后再尝试。" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "某个选中的文件不存在。" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "节目时长只能设置在24小时以内" + +#: application/models/Show.php:341 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" +"节目时间设置于其他的节目有冲突。\n" +"提示:修改系列节目中的一个,将影响整个节目系列" + +#: application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%s是%s的重播" + +#: application/models/Webstream.php:165 +msgid "Length needs to be greater than 0 minutes" +msgstr "节目时长必须大于0分钟" + +#: application/models/Webstream.php:169 +msgid "Length should be of form \"00h 00m\"" +msgstr "时间的格式应该是 \"00h 00m\"" + +#: application/models/Webstream.php:182 +msgid "URL should be of form \"https://example.org\"" +msgstr "地址的格式应该是 \"https://example.org\"" + +#: application/models/Webstream.php:185 +msgid "URL should be 512 characters or less" +msgstr "地址的最大长度不能超过512字节" + +#: application/models/Webstream.php:190 +msgid "No MIME type found for webstream." +msgstr "这个媒体流不存在MIME属性,无法添加" + +#: application/models/Webstream.php:206 +msgid "Webstream name cannot be empty" +msgstr "媒体流的名字不能为空" + +#: application/models/Webstream.php:276 +msgid "Could not parse XSPF playlist" +msgstr "发现XSPF格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:297 +msgid "Could not parse PLS playlist" +msgstr "发现PLS格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:316 +msgid "Could not parse M3U playlist" +msgstr "发现M3U格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:329 +msgid "Invalid webstream - This appears to be a file download." +msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件" + +#: application/models/Webstream.php:333 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "未知的媒体流格式: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "录制文件不存在" + +#: application/services/CalendarService.php:53 +msgid "View Recorded File Metadata" +msgstr "查看录制文件的元数据" + +#: application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:121 +#: application/services/CalendarService.php:127 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:149 +#: application/services/CalendarService.php:168 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:161 +#: application/services/CalendarService.php:175 +msgid "Edit Show" +msgstr "编辑节目" + +#: application/services/CalendarService.php:199 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:206 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:264 +msgid "Permission denied" +msgstr "没有编辑权限" + +#: application/services/CalendarService.php:268 +msgid "Can't drag and drop repeating shows" +msgstr "系列中的节目无法拖拽" + +#: application/services/CalendarService.php:277 +msgid "Can't move a past show" +msgstr "已经结束的节目无法更改时间" + +#: application/services/CalendarService.php:312 +msgid "Can't move show into past" +msgstr "节目不能设置到已过去的时间点" + +#: application/services/CalendarService.php:336 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "录音和重播节目之间的间隔必须大于等于1小时。" + +#: application/services/CalendarService.php:347 +msgid "Show was deleted because recorded show does not exist!" +msgstr "录音节目不存在,节目已删除!" + +#: application/services/CalendarService.php:354 +msgid "Must wait 1 hour to rebroadcast." +msgstr "重播节目必须设置于1小时之后。" + +#: application/services/HistoryService.php:1062 +msgid "Track" +msgstr "曲目" + +#: application/services/HistoryService.php:1103 +msgid "Played" +msgstr "已播放" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#~ msgid " to " +#~ msgstr "到" + +#, php-format +#~ msgid "%s contains nested watched directory: %s" +#~ msgstr "%s 所含的子文件夹 %s 已经被监控" + +#, php-format +#~ msgid "%s doesn't exist in the watched list." +#~ msgstr "监控文件夹名单里不存在 %s " + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list" +#~ msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" + +#, php-format +#~ msgid "%s is already set as the current storage dir or in the watched folders list." +#~ msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" + +#, php-format +#~ msgid "%s is already watched." +#~ msgstr "%s 已经监控" + +#, php-format +#~ msgid "%s is nested within existing watched directory: %s" +#~ msgstr "%s 无法监控,因为父文件夹 %s 已经监控" + +#, php-format +#~ msgid "%s is not a valid directory." +#~ msgstr "%s 不是文件夹。" + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(为了推广您的电台,请启用‘发送支持反馈’)" + +#~ msgid "(Required)" +#~ msgstr "(必填)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(你电台的网站)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(仅作为验证目的使用,不会用于发布)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(时:分:秒.分秒)" + +#~ msgid "(ss.t)" +#~ msgstr "(秒.分秒)" + +#~ msgid "1 - Mono" +#~ msgstr "1 - 单声道" + +#~ msgid "2 - Stereo" +#~ msgstr "2 - 立体声" + +#~ msgid "About" +#~ msgstr "关于" + +#~ msgid "Add New Field" +#~ msgstr "添加新项目" + +#~ msgid "Add more elements" +#~ msgstr "增加更多元素" + +#~ msgid "Add this show" +#~ msgstr "添加此节目" + +#~ msgid "Additional Options" +#~ msgstr "附属选项" + +#~ msgid "Admin Password" +#~ msgstr "管理员密码" + +#~ msgid "Admin User" +#~ msgstr "管理员用户名" + +#~ msgid "Advanced Search Options" +#~ msgstr "高级查询选项" + +#~ msgid "All rights are reserved" +#~ msgstr "版权所有" + +#~ msgid "Audio Track" +#~ msgstr "音频文件" + +#~ msgid "Choose Days:" +#~ msgstr "选择天数:" + +#~ msgid "Choose Show Instance" +#~ msgstr "选择节目项" + +#~ msgid "Choose folder" +#~ msgstr "选择文件夹" + +#~ msgid "City:" +#~ msgstr "城市:" + +#~ msgid "Clear" +#~ msgstr "清除" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容" + +#~ msgid "Country:" +#~ msgstr "国家:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "创建文件播放记录模板" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "创建历史记录表单模板" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "知识共享署名" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "知识共享署名-不允许衍生" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "知识共享署名-非商业应用" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "知识共享署名-非商业应用且不允许衍生" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "知识共享署名-非商业应用且相同方式共享" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "知识共享署名-相同方式共享" + +#~ msgid "Cue In: " +#~ msgstr "切入:" + +#~ msgid "Cue Out: " +#~ msgstr "切出:" + +#~ msgid "Current Import Folder:" +#~ msgstr "当前的导入文件夹:" + +#~ msgid "Cursor" +#~ msgstr "设置游标" + +#~ msgid "Default Length:" +#~ msgstr "默认长度:" + +#~ msgid "Default License:" +#~ msgstr "默认版权策略:" + +#~ msgid "Disk Space" +#~ msgstr "磁盘空间" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "动态智能模块" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "动态智能模块条件:" + +#~ msgid "Empty playlist content" +#~ msgstr "播放列表无内容" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "展开动态智能模块" + +#~ msgid "Expand Static Block" +#~ msgstr "展开静态智能模块" + +#~ msgid "Fade in: " +#~ msgstr "淡入:" + +#~ msgid "Fade out: " +#~ msgstr "淡出:" + +#~ msgid "File Path:" +#~ msgstr "文件路径:" + +#~ msgid "File Summary" +#~ msgstr "文件播放记录" + +#~ msgid "File Summary Templates" +#~ msgstr "文件播放记录模板列表" + +#~ msgid "File import in progress..." +#~ msgstr "导入文件进行中..." + +#~ msgid "Filter History" +#~ msgstr "历史记录过滤" + +#~ msgid "Find" +#~ msgstr "查找" + +#~ msgid "Find Shows" +#~ msgstr "查找节目" + +#~ msgid "First Name" +#~ msgstr "名" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "详细的指导,可以参考%s用户手册%s。" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "更多的细节可以参阅%sAirtime用户手册%s" + +#~ msgid "Icecast Vorbis Metadata" +#~ msgstr "Icecast的Vorbis元数据" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "如果Airtime配置在路由器或者防火墙之后,你可能需要配置端口转发,所以当前文本框内的信息需要调整。在这种情况下,就需要人工指定该信息以确定所显示的主机名/端口/加载点的正确性,从而让节目编辑能连接的上。端口所允许的范围,介于1024到49151之间。" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC编号:" + +#~ msgid "Last Name" +#~ msgstr "姓" + +#~ msgid "Length:" +#~ msgstr "长度:" + +#~ msgid "Limit to " +#~ msgstr "限制到" + +#~ msgid "Listen" +#~ msgstr "收听" + +#~ msgid "Live Stream Input" +#~ msgstr "输入流设置" + +#~ msgid "Live stream" +#~ msgstr "插播流" + +#~ msgid "Log Sheet" +#~ msgstr "历史记录表单" + +#~ msgid "Log Sheet Templates" +#~ msgstr "历史记录表单模板" + +#~ msgid "Logout" +#~ msgstr "登出" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "你所寻找的页面不存在!" + +#~ msgid "Manage Users" +#~ msgstr "用户管理" + +#~ msgid "Master Source" +#~ msgstr "主输入流" + +#~ msgid "Mount cannot be empty with Icecast server." +#~ msgstr "请填写“加载点”。" + +#~ msgid "New File Summary Template" +#~ msgstr "新建文件播放记录模板" + +#~ msgid "New Log Sheet Template" +#~ msgstr "新建历史记录模板" + +#~ msgid "New User" +#~ msgstr "新建用户" + +#~ msgid "New password" +#~ msgstr "新密码" + +#~ msgid "Next:" +#~ msgstr "之后的:" + +#~ msgid "No File Summary Templates" +#~ msgstr "无文件播放记录模板" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "无历史记录表单模板" + +#~ msgid "No open playlist" +#~ msgstr "没有打开的播放列表" + +#~ msgid "No webstream" +#~ msgstr "没有网络流媒体" + +#~ msgid "OK" +#~ msgstr "确定" + +#~ msgid "ON AIR" +#~ msgstr "直播中" + +#~ msgid "Only numbers are allowed." +#~ msgstr "只允许输入数字" + +#~ msgid "Original Length:" +#~ msgstr "原始长度:" + +#~ msgid "Page not found!" +#~ msgstr "页面不存在!" + +#~ msgid "Phone:" +#~ msgstr "电话:" + +#~ msgid "Play" +#~ msgstr "试听" + +#~ msgid "Playlist Contents: " +#~ msgstr "播放列表内容:" + +#~ msgid "Playlist crossfade" +#~ msgstr "播放列表交错淡入淡出效果" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "请再次输入你的新密码。" + +#~ msgid "Please upgrade to " +#~ msgstr "请升级到" + +#~ msgid "Port cannot be empty." +#~ msgstr "请填写“端口”。" + +#~ msgid "Previous:" +#~ msgstr "之前的:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "节目主管的权限是:" + +#~ msgid "Register Airtime" +#~ msgstr "注册Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "移除监控文件夹" + +#~ msgid "Repeat Days:" +#~ msgstr "重复天数:" + +#~ msgid "Sample Rate:" +#~ msgstr "样本率:" + +#~ msgid "Save playlist" +#~ msgstr "保存播放列表" + +#~ msgid "Select stream:" +#~ msgstr "选择流:" + +#~ msgid "Server cannot be empty." +#~ msgstr "请填写“服务器”。" + +#~ msgid "Set" +#~ msgstr "设置" + +#~ msgid "Set Cue In" +#~ msgstr "设为切入时间" + +#~ msgid "Set Cue Out" +#~ msgstr "设为切出时间" + +#~ msgid "Set Default Template" +#~ msgstr "设为默认模板" + +#~ msgid "Share" +#~ msgstr "共享" + +#~ msgid "Show Source" +#~ msgstr "节目定制的输入流" + +#~ msgid "Show Summary" +#~ msgstr "节目播放记录" + +#~ msgid "Show Waveform" +#~ msgstr "显示波形图" + +#~ msgid "Show me what I am sending " +#~ msgstr "显示我所发送的信息" + +#~ msgid "Shuffle playlist" +#~ msgstr "随机打乱播放列表" + +#~ msgid "Source Streams" +#~ msgstr "输入流" + +#~ msgid "Static Smart Block" +#~ msgstr "静态智能模块" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "静态智能模块条件:" + +#~ msgid "Station Description:" +#~ msgstr "电台描述:" + +#~ msgid "Station Web Site:" +#~ msgstr "电台网址:" + +#~ msgid "Stop" +#~ msgstr "暂停" + +#~ msgid "Stream " +#~ msgstr "流" + +#~ msgid "Stream Settings" +#~ msgstr "流设定" + +#~ msgid "Stream URL:" +#~ msgstr "流的链接地址:" + +#~ msgid "Stream URL: " +#~ msgstr "流的链接地址:" + +#~ msgid "Style" +#~ msgstr "风格" + +#~ msgid "Support Feedback" +#~ msgstr "意见反馈" + +#~ msgid "Support setting updated." +#~ msgstr "支持设定已更新。" + +#~ msgid "Terms and Conditions" +#~ msgstr "使用条款" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "因为满足条件的声音文件数量有限,只能播放列表指定的时长可能无法达成。如果你不介意出现重复的项目,你可以启用此项。" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "以下内容将会在听众的媒体播放器上显示:" + +#~ msgid "The work is in the public domain" +#~ msgstr "公开" + +#~ msgid "This version is no longer supported." +#~ msgstr "这个版本即将停支持。" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "这个版本即将过时。" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。" + +#~ msgid "Track:" +#~ msgstr "曲目编号:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "请输入图像里的字符。" + +#~ msgid "Update Required" +#~ msgstr "需要更新升级" + +#~ msgid "Update show" +#~ msgstr "更新节目" + +#~ msgid "User Type" +#~ msgstr "用户类型" + +#~ msgid "Web Stream" +#~ msgstr "网络流媒体" + +#~ msgid "What" +#~ msgstr "名称" + +#~ msgid "When" +#~ msgstr "时间" + +#~ msgid "Who" +#~ msgstr "管理和编辑" + +#~ msgid "You are not watching any media folders." +#~ msgstr "你没有正在监控的文件夹。" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "请先接受隐私策略" + +#~ msgid "Your trial expires in" +#~ msgstr "你的试用天数还剩" + +#~ msgid "and" +#~ msgstr "和" + +#~ msgid "dB" +#~ msgstr "分贝" + +#~ msgid "files meet the criteria" +#~ msgstr "个文件符合条件" + +#~ msgid "id" +#~ msgstr "编号" + +#~ msgid "max volume" +#~ msgstr "最大音量" + +#~ msgid "mute" +#~ msgstr "静音" + +#~ msgid "next" +#~ msgstr "往后" + +#~ msgid "or" +#~ msgstr "或" + +#~ msgid "pause" +#~ msgstr "暂停" + +#~ msgid "play" +#~ msgstr "播放" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "请输入秒数‘00(.0)’" + +#~ msgid "previous" +#~ msgstr "往前" + +#~ msgid "stop" +#~ msgstr "停止" + +#~ msgid "unmute" +#~ msgstr "取消静音" From 500e57ea106be3c636f31dc40f0711cc7be176cf Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 19 May 2023 13:45:57 -0400 Subject: [PATCH 22/70] chore: removing vitest --- webapp/package.json | 1 - webapp/yarn.lock | 313 +------------------------------------------- 2 files changed, 4 insertions(+), 310 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index 7a75503d6b..bc3a00a38d 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -50,7 +50,6 @@ "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", - "vitest": "^0.31.1", "vue-tsc": "^1.2.0" } } diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 3bc045d7b0..22469cffd7 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2175,18 +2175,6 @@ "@types/connect" "*" "@types/node" "*" -"@types/chai-subset@^1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@types/chai-subset/-/chai-subset-1.3.3.tgz#97893814e92abd2c534de422cb377e0e0bdaac94" - integrity sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== - dependencies: - "@types/chai" "*" - -"@types/chai@*", "@types/chai@^4.3.5": - version "4.3.5" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.5.tgz#ae69bcbb1bebb68c4ac0b11e9d8ed04526b3562b" - integrity sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== - "@types/connect@*": version "3.4.35" resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" @@ -2620,50 +2608,6 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== -"@vitest/expect@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-0.31.1.tgz#db8cb5a14a91167b948f377b9d29442229c73747" - integrity sha512-BV1LyNvhnX+eNYzJxlHIGPWZpwJFZaCcOIzp2CNG0P+bbetenTupk6EO0LANm4QFt0TTit+yqx7Rxd1qxi/SQA== - dependencies: - "@vitest/spy" "0.31.1" - "@vitest/utils" "0.31.1" - chai "^4.3.7" - -"@vitest/runner@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-0.31.1.tgz#fc06260d4824dde624abaeea1825d6a75bad4583" - integrity sha512-imWuc82ngOtxdCUpXwtEzZIuc1KMr+VlQ3Ondph45VhWoQWit5yvG/fFcldbnCi8DUuFi+NmNx5ehMUw/cGLUw== - dependencies: - "@vitest/utils" "0.31.1" - concordance "^5.0.4" - p-limit "^4.0.0" - pathe "^1.1.0" - -"@vitest/snapshot@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-0.31.1.tgz#7fc3f1e48f0c4313e6cb795c17a2c1aa909a7d64" - integrity sha512-L3w5uU9bMe6asrNzJ8WZzN+jUTX4KSgCinEJPXyny0o90fG4FPQMV0OWsq7vrCWfQlAilMjDnOF9nP8lidsJ+g== - dependencies: - magic-string "^0.30.0" - pathe "^1.1.0" - pretty-format "^27.5.1" - -"@vitest/spy@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-0.31.1.tgz#1c3b6a3eec4ce81b8889e19c7fac6a603b600b14" - integrity sha512-1cTpt2m9mdo3hRLDyCG2hDQvRrePTDgEJBFQQNz1ydHHZy03EiA6EpFxY+7ODaY7vMRCie+WlFZBZ0/dQWyssQ== - dependencies: - tinyspy "^2.1.0" - -"@vitest/utils@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.31.1.tgz#b810a458b37ef16931ab0d384ce79a9500f34e07" - integrity sha512-yFyRD5ilwojsZfo3E0BnH72pSVSuLg2356cN1tCEe/0RtDzxTPYwOomIC+eQbot7m6DRy4tPZw+09mB7NkbMmA== - dependencies: - concordance "^5.0.4" - loupe "^2.3.6" - pretty-format "^27.5.1" - "@volar/language-core@1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" @@ -2840,17 +2784,12 @@ acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-walk@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - acorn@^7.1.1: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.8.0, acorn@^8.8.2: +acorn@^8.8.0: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== @@ -3033,11 +2972,6 @@ assert@^2.0.0: object-is "^1.0.1" util "^0.12.0" -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - ast-types@0.15.2: version "0.15.2" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" @@ -3201,11 +3135,6 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -blueimp-md5@^2.10.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0" - integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w== - body-parser@1.20.1: version "1.20.1" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" @@ -3329,11 +3258,6 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== -cac@^6.7.14: - version "6.7.14" - resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" - integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== - cachedir@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" @@ -3372,19 +3296,6 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -chai@^4.3.7: - version "4.3.7" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51" - integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^4.1.2" - get-func-name "^2.0.0" - loupe "^2.3.1" - pathval "^1.1.1" - type-detect "^4.0.5" - chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3409,11 +3320,6 @@ character-parser@^2.2.0: dependencies: is-regex "^1.0.3" -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" - integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== - check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" @@ -3583,20 +3489,6 @@ concat-stream@^1.6.2: readable-stream "^2.2.2" typedarray "^0.0.6" -concordance@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/concordance/-/concordance-5.0.4.tgz#9896073261adced72f88d60e4d56f8efc4bbbbd2" - integrity sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw== - dependencies: - date-time "^3.1.0" - esutils "^2.0.3" - fast-diff "^1.2.0" - js-string-escape "^1.0.1" - lodash "^4.17.15" - md5-hex "^3.0.1" - semver "^7.3.2" - well-known-symbols "^2.0.0" - console-control-strings@^1.0.0, console-control-strings@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" @@ -3738,13 +3630,6 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -date-time@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/date-time/-/date-time-3.1.0.tgz#0d1e934d170579f481ed8df1e2b8ff70ee845e1e" - integrity sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg== - dependencies: - time-zone "^1.0.0" - dayjs@^1.10.4: version "1.11.7" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2" @@ -3776,13 +3661,6 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -deep-eql@^4.1.2: - version "4.1.3" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" - integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== - dependencies: - type-detect "^4.0.0" - deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -4228,7 +4106,7 @@ estree-walker@^2.0.2: resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== -esutils@^2.0.2, esutils@^2.0.3: +esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== @@ -4358,11 +4236,6 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-diff@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - fast-glob@^3.2.9: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" @@ -4643,11 +4516,6 @@ gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== - get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" @@ -5396,11 +5264,6 @@ js-sdsl@^4.1.4: resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== -js-string-escape@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" - integrity sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg== - js-stringify@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" @@ -5496,11 +5359,6 @@ json5@^2.2.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== -jsonc-parser@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" - integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== - jsonfile@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" @@ -5584,11 +5442,6 @@ listr2@^3.8.3: through "^2.3.8" wrap-ansi "^7.0.0" -local-pkg@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" - integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== - locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" @@ -5656,13 +5509,6 @@ loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" -loupe@^2.3.1, loupe@^2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53" - integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== - dependencies: - get-func-name "^2.0.0" - lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -5733,13 +5579,6 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== -md5-hex@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-3.0.1.tgz#be3741b510591434b2784d79e556eefc2c9a8e5c" - integrity sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw== - dependencies: - blueimp-md5 "^2.10.0" - mdast-util-definitions@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" @@ -5882,16 +5721,6 @@ mkdirp@^1.0.3: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mlly@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.2.1.tgz#cd50151f5712b651c5c379085157bcdff661133b" - integrity sha512-1aMEByaWgBPEbWV2BOPEMySRrzl7rIHXmQxam4DM8jVjalTQDjpN2ZKOLUrwyhfZQO7IXHml2StcHMhooDeEEQ== - dependencies: - acorn "^8.8.2" - pathe "^1.1.0" - pkg-types "^1.0.3" - ufo "^1.1.2" - mri@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" @@ -6122,13 +5951,6 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" -p-limit@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" - integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== - dependencies: - yocto-queue "^1.0.0" - p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -6229,11 +6051,6 @@ pathe@^1.1.0: resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== -pathval@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== - peek-stream@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" @@ -6299,15 +6116,6 @@ pkg-dir@^5.0.0: dependencies: find-up "^5.0.0" -pkg-types@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" - integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== - dependencies: - jsonc-parser "^3.2.0" - mlly "^1.2.0" - pathe "^1.1.0" - polished@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" @@ -6347,7 +6155,7 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -pretty-format@^27.0.2, pretty-format@^27.5.1: +pretty-format@^27.0.2: version "27.5.1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== @@ -7033,11 +6841,6 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -siginfo@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" - integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== - signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -7147,21 +6950,11 @@ sshpk@^1.14.1: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -stackback@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" - integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== - statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== -std-env@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.3.3.tgz#a54f06eb245fdcfef53d56f3c0251f1d5c3d01fe" - integrity sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg== - stop-iteration-iterator@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" @@ -7226,13 +7019,6 @@ strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-literal@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-1.0.1.tgz#0115a332710c849b4e46497891fb8d585e404bd2" - integrity sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q== - dependencies: - acorn "^8.8.2" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -7359,26 +7145,6 @@ through@^2.3.8: resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== -time-zone@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" - integrity sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA== - -tinybench@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.5.0.tgz#4711c99bbf6f3e986f67eb722fed9cddb3a68ba5" - integrity sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA== - -tinypool@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.5.0.tgz#3861c3069bf71e4f1f5aa2d2e6b3aaacc278961e" - integrity sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ== - -tinyspy@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.1.0.tgz#bd6875098f988728e6456cfd5ab8cc06498ecdeb" - integrity sha512-7eORpyqImoOvkQJCSkL0d0mB4NHHIFAy4b1u8PHdDa7SjGS2njzl6/lyGoZLm+eyYEtlUmFGE0rFj66SWxZgQQ== - tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -7472,11 +7238,6 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - type-fest@2.19.0, type-fest@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" @@ -7525,11 +7286,6 @@ typescript@^5.0.0: resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== -ufo@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" - integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== - uglify-js@^3.1.4: version "3.17.4" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" @@ -7697,18 +7453,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vite-node@0.31.1: - version "0.31.1" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.31.1.tgz#9fea18cbf9552ab262b969068249a8b8e7fb8b38" - integrity sha512-BajE/IsNQ6JyizPzu9zRgHrBwczkAs0erQf/JRpgTIESpKvNj9/Gd0vxX905klLkb0I0SJVCKbdrl5c6FnqYKA== - dependencies: - cac "^6.7.14" - debug "^4.3.4" - mlly "^1.2.0" - pathe "^1.1.0" - picocolors "^1.0.0" - vite "^3.0.0 || ^4.0.0" - vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -7718,7 +7462,7 @@ vite-plugin-vuetify@^1.0.0: debug "^4.3.3" upath "^2.0.1" -"vite@^3.0.0 || ^4.0.0", vite@^4.2.0: +vite@^4.2.0: version "4.3.5" resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.5.tgz#3871fe0f4b582ea7f49a85386ac80e84826367d9" integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== @@ -7729,37 +7473,6 @@ vite-plugin-vuetify@^1.0.0: optionalDependencies: fsevents "~2.3.2" -vitest@^0.31.1: - version "0.31.1" - resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.31.1.tgz#e3d1b68a44e76e24f142c1156fe9772ef603e52c" - integrity sha512-/dOoOgzoFk/5pTvg1E65WVaobknWREN15+HF+0ucudo3dDG/vCZoXTQrjIfEaWvQXmqScwkRodrTbM/ScMpRcQ== - dependencies: - "@types/chai" "^4.3.5" - "@types/chai-subset" "^1.3.3" - "@types/node" "*" - "@vitest/expect" "0.31.1" - "@vitest/runner" "0.31.1" - "@vitest/snapshot" "0.31.1" - "@vitest/spy" "0.31.1" - "@vitest/utils" "0.31.1" - acorn "^8.8.2" - acorn-walk "^8.2.0" - cac "^6.7.14" - chai "^4.3.7" - concordance "^5.0.4" - debug "^4.3.4" - local-pkg "^0.4.3" - magic-string "^0.30.0" - pathe "^1.1.0" - picocolors "^1.0.0" - std-env "^3.3.2" - strip-literal "^1.0.1" - tinybench "^2.5.0" - tinypool "^0.5.0" - vite "^3.0.0 || ^4.0.0" - vite-node "0.31.1" - why-is-node-running "^2.2.2" - void-elements@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" @@ -7898,11 +7611,6 @@ webpack-virtual-modules@^0.4.5: resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== -well-known-symbols@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-2.0.0.tgz#e9c7c07dbd132b7b84212c8174391ec1f9871ba5" - integrity sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q== - whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" @@ -7951,14 +7659,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -why-is-node-running@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/why-is-node-running/-/why-is-node-running-2.2.2.tgz#4185b2b4699117819e7154594271e7e344c9973e" - integrity sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== - dependencies: - siginfo "^2.0.0" - stackback "0.0.2" - wide-align@^1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" @@ -8077,8 +7777,3 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -yocto-queue@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" - integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== From 9e25d89279aa1e2b2798fdfd883e228c985af8e8 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 19 May 2023 14:16:53 -0400 Subject: [PATCH 23/70] chore: convert po files to json for i18next --- webapp/src/locale/cs_CZ.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/de_AT.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/de_DE.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/el_GR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/en_CA.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/en_GB.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/en_US.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/es_ES.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/fr_FR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/hr_HR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/hu_HU.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/it_IT.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/ja_JP.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/ko_KR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/nl_NL.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/pl_PL.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/pt_BR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/ru_RU.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/sr_RS.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/tr_TR.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/uk_UA.json | 941 +++++++++++++++++++++++++++++++++++ webapp/src/locale/zh_CN.json | 941 +++++++++++++++++++++++++++++++++++ 22 files changed, 20702 insertions(+) create mode 100644 webapp/src/locale/cs_CZ.json create mode 100644 webapp/src/locale/de_AT.json create mode 100644 webapp/src/locale/de_DE.json create mode 100644 webapp/src/locale/el_GR.json create mode 100644 webapp/src/locale/en_CA.json create mode 100644 webapp/src/locale/en_GB.json create mode 100644 webapp/src/locale/en_US.json create mode 100644 webapp/src/locale/es_ES.json create mode 100644 webapp/src/locale/fr_FR.json create mode 100644 webapp/src/locale/hr_HR.json create mode 100644 webapp/src/locale/hu_HU.json create mode 100644 webapp/src/locale/it_IT.json create mode 100644 webapp/src/locale/ja_JP.json create mode 100644 webapp/src/locale/ko_KR.json create mode 100644 webapp/src/locale/nl_NL.json create mode 100644 webapp/src/locale/pl_PL.json create mode 100644 webapp/src/locale/pt_BR.json create mode 100644 webapp/src/locale/ru_RU.json create mode 100644 webapp/src/locale/sr_RS.json create mode 100644 webapp/src/locale/tr_TR.json create mode 100644 webapp/src/locale/uk_UA.json create mode 100644 webapp/src/locale/zh_CN.json diff --git a/webapp/src/locale/cs_CZ.json b/webapp/src/locale/cs_CZ.json new file mode 100644 index 0000000000..10d04fa53d --- /dev/null +++ b/webapp/src/locale/cs_CZ.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Rok %s musí být v rozmezí 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s není platné datum", + "%s:%s:%s is not a valid time": "%s : %s : %s není platný čas", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendář", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Uživatelé", + "Track Types": "", + "Streams": "Streamy", + "Status": "Stav", + "Analytics": "", + "Playout History": "Historie odvysílaného", + "History Templates": "Historie nastavení", + "Listener Stats": "Statistiky poslechovost", + "Show Listener Stats": "", + "Help": "Nápověda", + "Getting Started": "Začínáme", + "User Manual": "Návod k obsluze", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nemáte udělen přístup k tomuto zdroji.", + "You are not allowed to access this resource. ": "Nemáte udělen přístup k tomuto zdroji. ", + "File does not exist in %s": "Soubor neexistuje v %s", + "Bad request. no 'mode' parameter passed.": "Špatný požadavek. Žádný 'mode' parametr neprošel.", + "Bad request. 'mode' parameter is invalid": "Špatný požadavek. 'Mode' parametr je neplatný.", + "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", + "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", + "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nenalezen", + "Something went wrong.": "Něco je špatně.", + "Preview": "Náhled", + "Add to Playlist": "Přidat do Playlistu", + "Add to Smart Block": "Přidat do chytrého bloku", + "Delete": "Smazat", + "Edit...": "", + "Download": "Stáhnout", + "Duplicate Playlist": "Duplikátní Playlist", + "Duplicate Smartblock": "", + "No action available": "Žádná akce není k dispozici", + "You don't have permission to delete selected items.": "Nemáte oprávnění odstranit vybrané položky.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka.", + "Audio Player": "Audio přehrávač", + "Something went wrong!": "", + "Recording:": "Nahrávání:", + "Master Stream": "Mastr stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nic není naplánované", + "Current Show:": "Stávající vysílání:", + "Current": "Stávající", + "You are running the latest version": "Používáte nejnovější verzi", + "New version available: ": "Nová verze k dispozici: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Přidat do aktuálního playlistu", + "Add to current smart block": "Přidat do aktuálního chytrého bloku", + "Adding 1 Item": "Přidat 1 položku", + "Adding %s Items": "Přidat %s položek", + "You can only add tracks to smart blocks.": "Můžete přidat skladby pouze do chytrých bloků.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů.", + "Please select a cursor position on timeline.": "Prosím vyberte si pozici kurzoru na časové ose.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Přidat", + "New": "", + "Edit": "Upravit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Odstranit", + "Edit Metadata": "Upravit metadata", + "Add to selected show": "Přidat k vybranému vysílání", + "Select": "Vyberte", + "Select this page": "Vyberte tuto stránku", + "Deselect this page": "Zrušte označení této stránky", + "Deselect all": "Zrušte zaškrtnutí všech", + "Are you sure you want to delete the selected item(s)?": "Jste si jisti, že chcete smazat vybranou položku(y)?", + "Scheduled": "Naplánováno", + "Tracks": "", + "Playlist": "", + "Title": "Název", + "Creator": "Tvůrce", + "Album": "Album", + "Bit Rate": "Rychlost přenosu", + "BPM": "BPM", + "Composer": "Skladatel", + "Conductor": "Dirigent", + "Copyright": "Autorská práva", + "Encoded By": "Zakódováno", + "Genre": "Žánr", + "ISRC": "ISRC", + "Label": "Označení ", + "Language": "Jazyk", + "Last Modified": "Naposledy změněno", + "Last Played": "Naposledy vysíláno", + "Length": "Délka", + "Mime": "Mime", + "Mood": "Nálada", + "Owner": "Vlastník", + "Replay Gain": "Opakovat Gain", + "Sample Rate": "Vzorkovací rychlost", + "Track Number": "Číslo stopy", + "Uploaded": "Nahráno", + "Website": "Internetové stránky", + "Year": "Rok ", + "Loading...": "Nahrávání ...", + "All": "Vše", + "Files": "Soubory", + "Playlists": "Playlisty", + "Smart Blocks": "Chytré bloky", + "Web Streams": "Webové streamy", + "Unknown type: ": "Neznámý typ: ", + "Are you sure you want to delete the selected item?": "Jste si jisti, že chcete smazat vybranou položku?", + "Uploading in progress...": "Probíhá nahrávání...", + "Retrieving data from the server...": "Získávání dat ze serveru...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Chybný kód: ", + "Error msg: ": "Chyba msg: ", + "Input must be a positive number": "Vstup musí být kladné číslo", + "Input must be a number": "Vstup musí být číslo", + "Input must be in the format: yyyy-mm-dd": "Vstup musí být ve formátu: rrrr-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Vstup musí být ve formátu: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?", + "Open Media Builder": "Otevřít Media Builder", + "please put in a time '00:00:00 (.0)'": "prosím nastavte čas '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: ", + "Dynamic block is not previewable": "Dynamický blok není možno ukázat předem", + "Limit to: ": "Omezeno na: ", + "Playlist saved": "Playlist uložen", + "Playlist shuffled": "Playlist zamíchán", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'.", + "Listener Count on %s: %s": "Počítat posluchače %s : %s", + "Remind me in 1 week": "Připomenout za 1 týden", + "Remind me never": "Nikdy nepřipomínat", + "Yes, help Airtime": "Ano, pomoc Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obrázek musí být buď jpg, jpeg, png nebo gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Chytré bloky promíchány", + "Smart block generated and criteria saved": "Chytrý blok generován a kritéria uložena", + "Smart block saved": "Chytrý blok uložen", + "Processing...": "Zpracovává se...", + "Select modifier": "Vyberte modifikátor", + "contains": "obsahuje", + "does not contain": "neobsahuje", + "is": "je", + "is not": "není", + "starts with": "začíná s", + "ends with": "končí s", + "is greater than": "je větší než", + "is less than": "je menší než", + "is in the range": "se pohybuje v rozmezí", + "Generate": "Generovat", + "Choose Storage Folder": "Vyberte složku k uložení", + "Choose Folder to Watch": "Vyberte složku ke sledování", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Jste si jisti, že chcete změnit složku úložiště ?\nTímto odstraníte soubry z vaší Airtime knihovny!", + "Manage Media Folders": "Správa složek médií", + "Are you sure you want to remove the watched folder?": "Jste si jisti, že chcete odstranit sledovanou složku?", + "This path is currently not accessible.": "Tato cesta není v současné době dostupná.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány.", + "Connected to the streaming server": "Připojeno k streamovacímu serveru", + "The stream is disabled": "Stream je vypnut", + "Getting information from the server...": "Získávání informací ze serveru...", + "Can not connect to the streaming server": "Nelze se připojit k streamovacímu serveru", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti.", + "Warning: You cannot change this field while the show is currently playing": "Upozornění: Nelze změnit toto pole v průběhu vysílání programu", + "No result found": "Žádný výsledek nenalezen", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit.", + "Specify custom authentication which will work only for this show.": "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání.", + "The show instance doesn't exist anymore!": "Ukázka vysílání již neexistuje!", + "Warning: Shows cannot be re-linked": "Varování: Vysílání nemohou být znovu linkována.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. ", + "Show": "Vysílání", + "Show is empty": "Vysílání je prázdné", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Získávání dat ze serveru ...", + "This show has no scheduled content.": "Toto vysílání nemá naplánovaný obsah.", + "This show is not completely filled with content.": "Toto vysílání není zcela vyplněno.", + "January": "Leden", + "February": "Únor", + "March": "Březen", + "April": "Duben", + "May": "Květen", + "June": "Červen", + "July": "Červenec", + "August": "Srpen", + "September": "Září", + "October": "Říjen", + "November": "Listopad", + "December": "Prosinec", + "Jan": "Leden", + "Feb": "Únor", + "Mar": "Březen", + "Apr": "Duben", + "Jun": "Červen", + "Jul": "Červenec", + "Aug": "Srpen", + "Sep": "Září", + "Oct": "Říjen", + "Nov": "Listopad", + "Dec": "Prosinec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Neděle", + "Monday": "Pondělí", + "Tuesday": "Úterý", + "Wednesday": "Středa", + "Thursday": "Čtvrtek", + "Friday": "Pátek", + "Saturday": "Sobota", + "Sun": "Ne", + "Mon": "Po", + "Tue": "Út", + "Wed": "St", + "Thu": "Čt", + "Fri": "Pá", + "Sat": "So", + "Shows longer than their scheduled time will be cut off by a following show.": "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání.", + "Cancel Current Show?": "Zrušit aktuální vysílání?", + "Stop recording current show?": "Zastavit nahrávání aktuálního vysílání?", + "Ok": "OK", + "Contents of Show": "Obsah vysílání", + "Remove all content?": "Odstranit veškerý obsah?", + "Delete selected item(s)?": "Odstranit vybranou položku(y)?", + "Start": "Začátek", + "End": "Konec", + "Duration": "Trvání", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue in", + "Cue Out": "Cue out", + "Fade In": "Pozvolné zesilování ", + "Fade Out": "Pozvolné zeslabování", + "Show Empty": "Vysílání prázdné", + "Recording From Line In": "Nahrávání z Line In", + "Track preview": "Náhled stopy", + "Cannot schedule outside a show.": "Nelze naplánovat mimo vysílání.", + "Moving 1 Item": "Posunutí 1 položky", + "Moving %s Items": "Posunutí %s položek", + "Save": "Uložit", + "Cancel": "Zrušit", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API", + "Select all": "Vybrat vše", + "Select none": "Nic nevybrat", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Odebrat vybrané naplánované položky", + "Jump to the current playing track": "Přejít na aktuálně přehrávanou skladbu", + "Jump to Current": "", + "Cancel current show": "Zrušit aktuální vysílání", + "Open library to add or remove content": "Otevřít knihovnu pro přidání nebo odebrání obsahu", + "Add / Remove Content": "Přidat / Odebrat obsah", + "in use": "používá se", + "Disk": "Disk", + "Look in": "Podívat se", + "Open": "Otevřít", + "Admin": "Administrátor", + "DJ": "DJ", + "Program Manager": "Program manager", + "Guest": "Host", + "Guests can do the following:": "Hosté mohou dělat následující:", + "View schedule": "Zobrazit plán", + "View show content": "Zobrazit obsah vysílání", + "DJs can do the following:": "DJ může dělat následující:", + "Manage assigned show content": "Spravovat přidělený obsah vysílání", + "Import media files": "Import media souborů", + "Create playlists, smart blocks, and webstreams": "Vytvořit playlisty, smart bloky a webstreamy", + "Manage their own library content": "Spravovat obsah vlastní knihovny", + "Program Managers can do the following:": "", + "View and manage show content": "Zobrazit a spravovat obsah vysílání", + "Schedule shows": "Plán ukazuje", + "Manage all library content": "Spravovat celý obsah knihovny", + "Admins can do the following:": "Správci mohou provést následující:", + "Manage preferences": "Správa předvoleb", + "Manage users": "Správa uživatelů", + "Manage watched folders": "Správa sledovaných složek", + "Send support feedback": "Odeslat zpětnou vazbu", + "View system status": "Zobrazit stav systému", + "Access playout history": "Přístup playout historii", + "View listener stats": "Zobrazit posluchače statistiky", + "Show / hide columns": "Zobrazit / skrýt sloupce", + "Columns": "", + "From {from} to {to}": "Z {z} do {do}", + "kbps": "kbps", + "yyyy-mm-dd": "rrrr-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Út", + "We": "St", + "Th": "Čt", + "Fr": "Pá", + "Sa": "So", + "Close": "Zavřít", + "Hour": "Hodina", + "Minute": "Minuta", + "Done": "Hotovo", + "Select files": "Vyberte soubory", + "Add files to the upload queue and click the start button.": "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start.", + "Filename": "", + "Size": "", + "Add Files": "Přidat soubory.", + "Stop Upload": "Zastavit Nahrávání", + "Start upload": "Začít nahrávat", + "Start Upload": "", + "Add files": "Přidat soubory", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Nahráno %d / %d souborů", + "N/A": "Nedostupné", + "Drag files here.": "Soubory přetáhněte zde.", + "File extension error.": "Chybná přípona souboru", + "File size error.": "Chybná velikost souboru.", + "File count error.": "Chybný součet souborů.", + "Init error.": "Chyba Init.", + "HTTP Error.": "Chyba HTTP.", + "Security error.": "Chyba zabezpečení.", + "Generic error.": "Obecná chyba. ", + "IO error.": "CHyba IO.", + "File: %s": "Soubor: %s", + "%d files queued": "%d souborů ve frontě", + "File: %f, size: %s, max file size: %m": "Soubor: %f , velikost: %s , max. velikost souboru:% m", + "Upload URL might be wrong or doesn't exist": "Přidané URL může být špatné nebo neexistuje", + "Error: File too large: ": "Chyba: Soubor je příliš velký: ", + "Error: Invalid file extension: ": "Chyba: Neplatná přípona souboru: ", + "Set Default": "Nastavit jako default", + "Create Entry": "Vytvořit vstup", + "Edit History Record": "Editovat historii nahrávky", + "No Show": "Žádné vysílání", + "Copied %s row%s to the clipboard": "Kopírovat %s řádků %s do schránky", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Popis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Povoleno", + "Disabled": "Vypnuto", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu.", + "You are viewing an older version of %s": "Prohlížíte si starší verzi %s", + "You cannot add tracks to dynamic blocks.": "Nemůžete přidávat skladby do dynamických bloků.", + "You don't have permission to delete selected %s(s).": "Nemáte oprávnění odstranit vybrané %s (s).", + "You can only add tracks to smart block.": "Můžete pouze přidat skladby do chytrého bloku.", + "Untitled Playlist": "Playlist bez názvu", + "Untitled Smart Block": "Chytrý block bez názvu", + "Unknown Playlist": "Neznámý Playlist", + "Preferences updated.": "Preference aktualizovány.", + "Stream Setting Updated.": "Nastavení streamu aktualizováno.", + "path should be specified": "cesta by měla být specifikována", + "Problem with Liquidsoap...": "Problém s Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Znovu spustit vysílaní %s od %s na %s", + "Select cursor": "Vybrat kurzor", + "Remove cursor": "Odstranit kurzor", + "show does not exist": "vysílání neexistuje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Uživatel byl úspěšně přidán!", + "User updated successfully!": "Uživatel byl úspěšně aktualizován!", + "Settings updated successfully!": "Nastavení úspěšně aktualizováno!", + "Untitled Webstream": "Webstream bez názvu", + "Webstream saved.": "Webstream uložen.", + "Invalid form values.": "Neplatná forma hodnot.", + "Invalid character entered": "Zadán neplatný znak ", + "Day must be specified": "Den musí být zadán", + "Time must be specified": "Čas musí být zadán", + "Must wait at least 1 hour to rebroadcast": "Musíte počkat alespoň 1 hodinu před dalším vysíláním", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Použij %s ověření pravosti:", + "Use Custom Authentication:": "Použít ověření uživatele:", + "Custom Username": "Uživatelské jméno", + "Custom Password": "Uživatelské heslo", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Uživatelské jméno musí být zadáno.", + "Password field cannot be empty.": "Heslo musí být zadáno.", + "Record from Line In?": "Nahráno z Line In?", + "Rebroadcast?": "Vysílat znovu?", + "days": "dny", + "Link:": "Link:", + "Repeat Type:": "Typ opakování:", + "weekly": "týdně", + "every 2 weeks": "každé 2 týdny", + "every 3 weeks": "každé 3 týdny", + "every 4 weeks": "každé 4 týdny", + "monthly": "měsíčně", + "Select Days:": "Vyberte dny:", + "Repeat By:": "Opakovat:", + "day of the month": "den v měsíci", + "day of the week": "den v týdnu", + "Date End:": "Datum ukončení:", + "No End?": "Nekončí?", + "End date must be after start date": "Datum ukončení musí být po počátečním datumu", + "Please select a repeat day": "Prosím vyberte den opakování", + "Background Colour:": "Barva pozadí:", + "Text Colour:": "Barva textu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Název:", + "Untitled Show": "Pořad bez názvu", + "URL:": "URL", + "Genre:": "Žánr:", + "Description:": "Popis:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Doba trvání:", + "Timezone:": "Časová zó", + "Repeats?": "Opakovat?", + "Cannot create show in the past": "Nelze vytvořit vysílání v minulosti", + "Cannot modify start date/time of the show that is already started": "Nelze měnit datum/čas vysílání, které bylo již spuštěno", + "End date/time cannot be in the past": "Datum/čas ukončení nemůže být v minulosti", + "Cannot have duration < 0m": "Nelze mít dobu trvání < 0m", + "Cannot have duration 00h 00m": "Nelze nastavit dobu trvání 00h 00m", + "Cannot have duration greater than 24h": "Nelze mít dobu trvání delší než 24 hodin", + "Cannot schedule overlapping shows": "Nelze nastavit překrývající se vysílání.", + "Search Users:": "Hledat uživatele:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Uživatelské jméno:", + "Password:": "Heslo:", + "Verify Password:": "Ověřit heslo:", + "Firstname:": "Jméno:", + "Lastname:": "Příjmení:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobilní telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ uživatele:", + "Login name is not unique.": "Přihlašovací jméno není jedinečné.", + "Delete All Tracks in Library": "", + "Date Start:": "Datum zahájení:", + "Title:": "Název:", + "Creator:": "Tvůrce:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Označení:", + "Composer:": "Skladatel:", + "Conductor:": "Dirigent:", + "Mood:": "Nálada:", + "BPM:": "BPM:", + "Copyright:": "Autorská práva:", + "ISRC Number:": "ISRC číslo:", + "Website:": "Internetová stránka:", + "Language:": "Jazyk:", + "Publish...": "", + "Start Time": "Čas začátku", + "End Time": "Čas konce", + "Interface Timezone:": "Časové pásmo uživatelského rozhraní", + "Station Name": "Název stanice", + "Station Description": "", + "Station Logo:": "Logo stanice:", + "Note: Anything larger than 600x600 will be resized.": "Poznámka: Cokoli většího než 600x600 bude zmenšeno.", + "Default Crossfade Duration (s):": "Defoltní nastavení doby plynulého přechodu", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Přednastavení Fade In:", + "Default Fade Out (s):": "Přednastavení Fade Out:", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Časové pásmo stanice", + "Week Starts On": "Týden začíná", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Přihlásit", + "Password": "Heslo", + "Confirm new password": "Potvrďte nové heslo", + "Password confirmation does not match your password.": "Potvrzené heslo neodpovídá vašemu heslu.", + "Email": "", + "Username": "Uživatelské jméno", + "Reset password": "Obnovit heslo", + "Back": "", + "Now Playing": "Právě se přehrává", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Všechna má vysílání:", + "My Shows": "", + "Select criteria": "Vyberte kritéria", + "Bit Rate (Kbps)": "Kvalita (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Vzorkovací frekvence (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hodiny", + "minutes": "minuty", + "items": "položka", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamický", + "Static": "Statický", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generovat obsah playlistu a uložit kritéria", + "Shuffle playlist content": "Promíchat obsah playlistu", + "Shuffle": "Promíchat", + "Limit cannot be empty or smaller than 0": "Limit nemůže být prázdný nebo menší než 0", + "Limit cannot be more than 24 hrs": "Limit nemůže být větší než 24 hodin", + "The value should be an integer": "Hodnota by měla být celé číslo", + "500 is the max item limit value you can set": "500 je max hodnota položky, kterou lze nastavit", + "You must select Criteria and Modifier": "Musíte vybrat kritéria a modifikátor", + "'Length' should be in '00:00:00' format": "'Délka' by měla být ve formátu '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Hodnota musí být číslo", + "The value should be less then 2147483648": "Hodnota by měla být menší než 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Hodnota by měla mít méně znaků než %s", + "Value cannot be empty": "Hodnota nemůže být prázdná", + "Stream Label:": "Označení streamu:", + "Artist - Title": "Umělec - Název", + "Show - Artist - Title": "Vysílání - Umělec - Název", + "Station name - Show name": "Název stanice - Název vysílání", + "Off Air Metadata": "Off Air metadata", + "Enable Replay Gain": "Povolit Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifikátor", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Povoleno:", + "Mobile:": "", + "Stream Type:": "Typ streamu:", + "Bit Rate:": "Bit frekvence:", + "Service Type:": "Typ služby:", + "Channels:": "Kanály:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Přípojný bod", + "Name": "Jméno", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importovaná složka:", + "Watched Folders:": "Sledované složky:", + "Not a valid Directory": "Neplatný adresář", + "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", + "'%value%' is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", + "'%value%' is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", + "Passwords do not match": "Hesla se neshodují", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s Heslo onboveno", + "Cue in and cue out are null.": "Cue in a cue out jsou prázné.", + "Can't set cue out to be greater than file length.": "Nelze nastavit delší cue out než je délka souboru.", + "Can't set cue in to be larger than cue out.": "Nelze nastavit větší cue in než cue out.", + "Can't set cue out to be smaller than cue in.": "Nelze nastavit menší cue out než je cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Vyberte zemi", + "livestream": "", + "Cannot move items out of linked shows": "Nemůže přesunout položky z linkovaných vysílání", + "The schedule you're viewing is out of date! (sched mismatch)": "Program, který si prohlížíte, je zastaralý!", + "The schedule you're viewing is out of date! (instance mismatch)": "Program který si prohlížíte je zastaralý!", + "The schedule you're viewing is out of date!": "Program který si prohlížíte je zastaralý! ", + "You are not allowed to schedule show %s.": "Nemáte povoleno plánovat vysílání %s .", + "You cannot add files to recording shows.": "Nemůžete přidávat soubory do nahrávaného vysílání.", + "The show %s is over and cannot be scheduled.": "Vysílání %s skončilo a nemůže být nasazeno.", + "The show %s has been previously updated!": "Vysílání %s bylo již dříve aktualizováno!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nelze naplánovat playlist, který obsahuje chybějící soubory.", + "A selected File does not exist!": "Vybraný soubor neexistuje!", + "Shows can have a max length of 24 hours.": "Vysílání může mít max. délku 24 hodin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nelze naplánovat překrývající se vysílání.\nPoznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání.", + "Rebroadcast of %s from %s": "Znovu odvysílat %s od %s", + "Length needs to be greater than 0 minutes": "Délka musí být větší než 0 minut", + "Length should be of form \"00h 00m\"": "Délka by měla mít tvar \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL by měla mít tvar \"https://example.org\"", + "URL should be 512 characters or less": "URL by měla mít 512 znaků nebo méně", + "No MIME type found for webstream.": "Nenalezen žádný MIME typ pro webstream.", + "Webstream name cannot be empty": "Název webstreamu nemůže být prázdný", + "Could not parse XSPF playlist": "Nelze zpracovat XSPF playlist", + "Could not parse PLS playlist": "Nelze zpracovat PLS playlist", + "Could not parse M3U playlist": "Nelze zpracovat M3U playlist", + "Invalid webstream - This appears to be a file download.": "Neplatný webstream - tento vypadá jako stažení souboru.", + "Unrecognized stream type: %s": "Neznámý typ streamu: %s", + "Record file doesn't exist": "Soubor s nahrávkou neexistuje", + "View Recorded File Metadata": "Zobrazit nahraný soubor metadat", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Upravit vysílání", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Přístup odepřen", + "Can't drag and drop repeating shows": "Nelze přetáhnout opakujícící se vysílání", + "Can't move a past show": "Nelze přesunout vysílání z minulosti", + "Can't move show into past": "Nelze přesunout vysílání do minulosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno.", + "Show was deleted because recorded show does not exist!": "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!", + "Must wait 1 hour to rebroadcast.": "Musíte počkat 1 hodinu před dalším vysíláním.", + "Track": "Stopa", + "Played": "Přehráno", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/de_AT.json b/webapp/src/locale/de_AT.json new file mode 100644 index 0000000000..931008d7d6 --- /dev/null +++ b/webapp/src/locale/de_AT.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Benutzer", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "You are not allowed to access this resource. ": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig.", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zu Playlist hinzufügen", + "Add to Smart Block": "Hinzufügen zu Smart Block", + "Delete": "Löschen", + "Edit...": "", + "Download": "Herunterladen", + "Duplicate Playlist": "Playlist duplizieren", + "Duplicate Smartblock": "", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Aufzeichnung:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Aktuell", + "You are running the latest version": "Sie verwenden die aktuellste Version", + "New version available: ": "Neue Version verfügbar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "Füge 1 Objekt hinzu", + "Adding %s Items": "Füge %s Objekte hinzu", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Hinzufügen", + "New": "", + "Edit": "Bearbeiten", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten bearbeiten", + "Add to selected show": "Zu gewählter Sendung hinzufügen", + "Select": "Auswahl", + "Select this page": "Ganze Seite markieren", + "Deselect this page": "Ganze Seite nicht markieren", + "Deselect all": "Keines Markieren", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "", + "Playlist": "", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "Zuletzt geändert", + "Last Played": "Zuletzt gespielt", + "Length": "Dauer", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ:", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Hochladen wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehler Code:", + "Error msg: ": "Fehlermeldung:", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränkung auf:", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playlist durchgemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein.", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block durchgemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": "Wähle Modifikator", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Storage-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Wollen sie wirklich das Storage-Verzeichnis ändern?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Verwalte Medienverzeichnisse", + "Are you sure you want to remove the watched folder?": "Wollen sie den überwachten Ordner wirklich entfernen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt.", + "Connected to the streaming server": "Mit Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Sendungen können nicht erneut verknüpft werden.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen geplanten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mär", + "Apr": "Apr", + "Jun": "Mai", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "SO", + "Mon": "MO", + "Tue": "DI", + "Wed": "MI", + "Thu": "DO", + "Fri": "FR", + "Sat": "SA", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufzeichnung der aktuellen Sendung stoppen?", + "Ok": "OK", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung leer", + "Recording From Line In": "Aufzeichnen von Line-In", + "Track preview": "Titelvorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alle markieren", + "Select none": "Nichts Markieren", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Gewähltes Objekt entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJ's können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Ordner", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playout Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten zeigen / verbergen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien wählen", + "Add files to the upload queue and click the start button.": "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Hochladen stoppen", + "Start upload": "Hochladen starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "Nicht Verfügbar", + "Drag files here.": "Dateien hierher ziehen", + "File extension error.": "Dateierweiterungsfehler", + "File size error.": "Dateigrößenfehler", + "File count error.": "Dateianzahlfehler", + "Init error.": "Init Fehler", + "HTTP Error.": "HTTP-Fehler", + "Security error.": "Sicherheitsfehler", + "Generic error.": "Allgemeiner Fehler", + "IO error.": "IO-Fehler", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß", + "Error: Invalid file extension: ": "Fehler: Ungültige Dateierweiterung:", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschreibung", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. ", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbenannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung % s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht.", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert", + "Invalid form values.": "Ungültiger Eingabewert", + "Invalid character entered": "Ungültiges Zeichen eingeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefinierte Authentifizierung:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "Wöchentlich", + "every 2 weeks": "jede Zweite Woche", + "every 3 weeks": "jede Dritte Woche", + "every 4 weeks": "jede Vierte Woche", + "monthly": "Monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung am:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach Startdatum liegen.", + "Please select a repeat day": "Bitte Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden", + "End date/time cannot be in the past": "Enddatum / Endzeit darf nicht in der Vergangheit liegen.", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Benutzer suchen:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist nicht einmalig.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Start:", + "Title:": "Titel", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Nummer:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "", + "Start Time": "Beginn", + "End Time": "Ende", + "Interface Timezone:": "Zeitzone Interface", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert.", + "Default Crossfade Duration (s):": "Standarddauer Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Zeitzone Radiostation", + "Week Starts On": "Woche startet mit ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": "Kriterien wählen", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Objekte", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Shuffle Playlist-Inhalt (Durchmischen)", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein.", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein.", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt.", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Wert kann nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Interpret - Titel", + "Station name - Show name": "Radiostation - Sendung", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", + "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", + "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtdauer der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Objekte aus einer verknüpften Sendung können nicht verschoben werden.", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell.", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht festgelegt werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert.", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung von %s am %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "XSPF-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse PLS playlist": "PLS-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse M3U playlist": "M3U-Playlist konnte nicht aufgeschlüsselt werden.", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei ansehen", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung bearbeiten", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert.", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/de_DE.json b/webapp/src/locale/de_DE.json new file mode 100644 index 0000000000..b3e8b1b935 --- /dev/null +++ b/webapp/src/locale/de_DE.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "Englisch", + "Afar": "Afar", + "Abkhazian": "Abchasisch", + "Afrikaans": "Afrikaans", + "Amharic": "Amharisch", + "Arabic": "Arabisch", + "Assamese": "Assamesisch", + "Aymara": "Aymarisch", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkirisch", + "Belarusian": "Belarussisch", + "Bulgarian": "Bulgarisch", + "Bihari": "Biharisch", + "Bislama": "Bislamisch", + "Bengali/Bangla": "Bengalisch", + "Tibetan": "Tibetanisch", + "Breton": "Bretonisch", + "Catalan": "Katalanisch", + "Corsican": "Korsisch", + "Czech": "Tschechisch", + "Welsh": "Walisisch", + "Danish": "Dänisch", + "German": "Deutsch", + "Bhutani": "Dzongkha", + "Greek": "Griechisch", + "Esperanto": "Esperanto", + "Spanish": "Spanisch", + "Estonian": "Estnisch", + "Basque": "Baskisch", + "Persian": "Persisch", + "Finnish": "Finnisch", + "Fiji": "Fijianisch", + "Faeroese": "Färöisch", + "French": "Französisch", + "Frisian": "Friesisch", + "Irish": "Irisch", + "Scots/Gaelic": "Schottisches Gälisch", + "Galician": "Galizisch", + "Guarani": "Guarani", + "Gujarati": "Gujaratisch", + "Hausa": "Haussa", + "Hindi": "Hindi", + "Croatian": "Kroatisch", + "Hungarian": "Ungarisch", + "Armenian": "Armenisch", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesisch", + "Icelandic": "Isländisch", + "Italian": "Italienisch", + "Hebrew": "Hebräisch", + "Japanese": "Japanisch", + "Yiddish": "Jiddisch", + "Javanese": "Javanisch", + "Georgian": "Georgisch", + "Kazakh": "Kasachisch", + "Greenlandic": "Kalaallisut", + "Cambodian": "Kambodschanisch", + "Kannada": "Kannada", + "Korean": "Koreanisch", + "Kashmiri": "Kaschmirisch", + "Kurdish": "Kurdisch", + "Kirghiz": "Kirgisisch", + "Latin": "Latein", + "Lingala": "Lingala", + "Laothian": "Laotisch", + "Lithuanian": "Litauisch", + "Latvian/Lettish": "Lettisch", + "Malagasy": "Madagassisch", + "Maori": "Maorisch", + "Macedonian": "Mazedonisch", + "Malayalam": "Malayalam", + "Mongolian": "Mongolisch", + "Moldavian": "Moldavisch", + "Marathi": "Marathi", + "Malay": "Malaysisch", + "Maltese": "Maltesisch", + "Burmese": "Burmesisch", + "Nauru": "Nauruisch", + "Nepali": "Nepalesisch", + "Dutch": "Niederländisch", + "Norwegian": "Norwegisch", + "Occitan": "Okzitanisch", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Pandschabi", + "Polish": "Polnisch", + "Pashto/Pushto": "Paschtu", + "Portuguese": "Portugiesisch", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rätoromanisch", + "Kirundi": "Kirundisch", + "Romanian": "Rumänisch", + "Russian": "Russisch", + "Kinyarwanda": "Kijarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbokroatisch", + "Singhalese": "Singhalesisch", + "Slovak": "Slowakisch", + "Slovenian": "Slowenisch", + "Samoan": "Samoanisch", + "Shona": "Schonisch", + "Somali": "Somalisch", + "Albanian": "Albanisch", + "Serbian": "Serbisch", + "Siswati": "Swasiländisch", + "Sesotho": "Sesothisch", + "Sundanese": "Sundanesisch", + "Swedish": "Schwedisch", + "Swahili": "Swahili", + "Tamil": "Tamilisch", + "Tegulu": "Tegulu", + "Tajik": "Tadschikisch", + "Thai": "Thai", + "Tigrinya": "Tigrinja", + "Turkmen": "Türkmenisch", + "Tagalog": "Tagalog", + "Setswana": "Sezuan", + "Tonga": "Tongaisch", + "Turkish": "Türkisch", + "Tsonga": "Tsongaisch", + "Tatar": "Tatarisch", + "Twi": "Twi", + "Ukrainian": "Ukrainisch", + "Urdu": "Urdu", + "Uzbek": "Usbekisch", + "Vietnamese": "Vietnamesisch", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinesisch", + "Zulu": "Zulu", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s.", + "Click the 'New Show' button and fill out the required fields.": "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen.", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "LibreTime Playout Service", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "LibreTime Liquidsoap Service", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "LibreTime API Service", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Seite", + "Calendar": "Kalender", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Wochenprogramm", + "Settings": "Einstellungen", + "General": "Allgemein", + "My Profile": "Mein Profil", + "Users": "Benutzer", + "Track Types": "Track-Typ", + "Streams": "Streams", + "Status": "Status", + "Analytics": "Statistiken", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "Zuhörer:innen Statistik anzeigen", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "Bei LibreTime mitmachen", + "What's New?": "Was ist neu?", + "You are not allowed to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen", + "You are not allowed to access this resource. ": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "File does not exist in %s": "Datei existiert nicht in %s.", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Seite nicht gefunden.", + "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", + "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "An internal application error has occurred.": "Ein interner Fehler ist aufgetreten.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Es wurden noch keine Tracks veröffentlicht.", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zur Playlist hinzufügen", + "Add to Smart Block": "Zum Smart Block hinzufügen", + "Delete": "Löschen", + "Edit...": "Bearbeiten …", + "Download": "Herunterladen", + "Duplicate Playlist": "Duplizierte Playlist", + "Duplicate Smartblock": "Smartblock duplizieren", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist.", + "Could not delete file(s).": "Datei(en) konnten nicht gelöscht werden.", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "Etwas ist falsch gelaufen!", + "Recording:": "Aufnahme:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Es ist nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Jetzt", + "You are running the latest version": "Sie verwenden die neueste Version", + "New version available: ": "Neue Version verfügbar: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "Es ist ein Patch für deine LibreTime Installation verfügbar.", + "A feature update for your LibreTime installation is available.": "Es ist ein Feature-Update für deine LibreTime Installation verfügbar.", + "A major update for your LibreTime installation is available.": "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich.", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "1 Objekt hinzufügen", + "Adding %s Items": "%s Objekte hinzufügen", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "Keine Tracks hinzugefügt", + "You haven't added any playlists": "Keine Playlisten hinzugefügt", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Keine Smart Blöcke hinzugefügt", + "You haven't added any webstreams": "Keine Webstreams hinzugefügt", + "Learn about tracks": "Erfahre mehr über Tracks", + "Learn about playlists": "Erfahre mehr über Playlisten", + "Learn about podcasts": "Erfahre mehr über Podcasts", + "Learn about smart blocks": "Erfahre mehr über Smart Blöcke", + "Learn about webstreams": "Erfahre mehr über Webstreams", + "Click 'New' to create one.": "", + "Add": "Hinzufüg.", + "New": "", + "Edit": "Ändern", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Veröffentlichen", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten ändern", + "Add to selected show": "Zur ausgewählten Sendungen hinzufügen", + "Select": "Auswählen", + "Select this page": "Wählen sie diese Seite", + "Deselect this page": "Wählen sie diese Seite ab", + "Deselect all": "Alle Abwählen", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "Tracks", + "Playlist": "Playliste", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "geändert am", + "Last Played": "Zuletzt gespielt", + "Length": "Länge", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ: ", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Upload wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehlercode: ", + "Error msg: ": "Fehlermeldung: ", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "Mein Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?", + "Open Media Builder": "Medienordner", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: ", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränken auf: ", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playliste gemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block gemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": " - Attribut - ", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Speicher-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Medienverzeichnisse verwalten", + "Are you sure you want to remove the watched folder?": "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt.", + "Connected to the streaming server": "Mit dem Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen festgelegten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan.", + "Feb": "Feb.", + "Mar": "Mrz.", + "Apr": "Apr.", + "Jun": "Jun.", + "Jul": "Jul.", + "Aug": "Aug.", + "Sep": "Sep.", + "Oct": "Okt.", + "Nov": "Nov.", + "Dec": "Dez.", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "So.", + "Mon": "Mo.", + "Tue": "Di.", + "Wed": "Mi.", + "Thu": "Do.", + "Fri": "Fr.", + "Sat": "Sa.", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufnahme der aktuellen Sendung stoppen?", + "Ok": "Speichern", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung ist leer", + "Recording From Line In": "Aufnehmen über Line In", + "Track preview": "Titel Vorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alles auswählen", + "Select none": "Nichts auswählen", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ausgewählte Elemente aus dem Programm entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJs können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Verzeichnisse", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playlist Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten auswählen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien auswählen", + "Add files to the upload queue and click the start button.": "Dateien zur Uploadliste hinzufügen und den Startbutton klicken.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Upload stoppen", + "Start upload": "Upload starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "N/A", + "Drag files here.": "Dateien in dieses Feld ziehen.(Drag & Drop)", + "File extension error.": "Fehler in der Dateierweiterung.", + "File size error.": "Fehler in der Dateigröße.", + "File count error.": "Fehler in der Dateianzahl", + "Init error.": "Init Fehler.", + "HTTP Error.": "HTTP Fehler.", + "Security error.": "Sicherheitsfehler.", + "Generic error.": "Allgemeiner Fehler.", + "IO error.": "IO Fehler.", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß: ", + "Error: Invalid file extension: ": "Fehler: ungültige Dateierweiterung: ", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "Autor", + "Description": "Beschreibung", + "Link": "Link", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung.", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbekannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert.", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung %s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert.", + "Invalid form values.": "Ungültige Formularwerte.", + "Invalid character entered": "Ungültiges Zeichen eingegeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefiniertes Login:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "wöchentlich", + "every 2 weeks": "jede zweite Woche", + "every 3 weeks": "jede dritte Woche", + "every 4 weeks": "jede vierte Woche", + "monthly": "monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung von:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach dem Startdatum liegen", + "Please select a repeat day": "Bitte einen Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat.", + "End date/time cannot be in the past": "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Suche Benutzer:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist bereits vorhanden.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Beginn:", + "Title:": "Titel:", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC-Nr.:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "Veröffentlichen...", + "Start Time": "Startzeit", + "End Time": "Endzeit", + "Interface Timezone:": "Interface Zeitzone:", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert.", + "Default Crossfade Duration (s):": "Standard Crossfade Dauer (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Sendestation Zeitzone", + "Week Starts On": "Woche beginnt am", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein.", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": " - Kriterien - ", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Titel", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Inhalt der Playlist Mischen", + "Shuffle": "Mischen", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Der Wert darf nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Artist - Titel", + "Station name - Show name": "Sender - Sendung", + "Off Air Metadata": "Off Air Metadaten", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'", + "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", + "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtlänge der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Inhalte aus verknüpften Sendungen können nicht verschoben werden", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell!", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht verändert werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung der Sendung %s von %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "Die XSPF Playlist konnte nicht eingelesen werden", + "Could not parse PLS playlist": "Die PLS Playlist konnte nicht eingelesen werden", + "Could not parse M3U playlist": "Die M3U Playlist konnte nicht eingelesen werden", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufzeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei anzeigen", + "Schedule Tracks": "Sendungsinhalte verwalten", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung ändern", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/el_GR.json b/webapp/src/locale/el_GR.json new file mode 100644 index 0000000000..e08e8b5294 --- /dev/null +++ b/webapp/src/locale/el_GR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία", + "%s:%s:%s is not a valid time": "%s : %s : %s δεν αποτελεί έγκυρη ώρα", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Ημερολόγιο", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Xρήστες", + "Track Types": "", + "Streams": "Streams", + "Status": "Κατάσταση", + "Analytics": "", + "Playout History": "Ιστορικό Playout", + "History Templates": "Ιστορικό Template", + "Listener Stats": "Στατιστικές Ακροατών", + "Show Listener Stats": "", + "Help": "Βοήθεια", + "Getting Started": "Έναρξη", + "User Manual": "Εγχειρίδιο Χρήστη", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα", + "You are not allowed to access this resource. ": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε.", + "Bad request. 'mode' parameter is invalid": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη", + "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", + "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", + "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s δεν βρέθηκε", + "Something went wrong.": "Κάτι πήγε στραβά.", + "Preview": "Προεπισκόπηση", + "Add to Playlist": "Προσθήκη στη λίστα αναπαραγωγής", + "Add to Smart Block": "Προσθήκη στο Smart Block", + "Delete": "Διαγραφή", + "Edit...": "", + "Download": "Λήψη", + "Duplicate Playlist": "Αντιγραφή Λίστας Αναπαραγωγής", + "Duplicate Smartblock": "", + "No action available": "Καμία διαθέσιμη δράση", + "You don't have permission to delete selected items.": "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Αντιγραφή από %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams.", + "Audio Player": "Αναπαραγωγή ήχου", + "Something went wrong!": "", + "Recording:": "Εγγραφή", + "Master Stream": "Κύριο Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Τίποτα δεν έχει προγραμματιστεί", + "Current Show:": "Τρέχουσα Εκπομπή:", + "Current": "Τρέχουσα", + "You are running the latest version": "Χρησιμοποιείτε την τελευταία έκδοση", + "New version available: ": "Νέα έκδοση διαθέσιμη: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής", + "Add to current smart block": "Προσθήκη στο τρέχον smart block", + "Adding 1 Item": "Προσθήκη 1 Στοιχείου", + "Adding %s Items": "Προσθήκη %s στοιχείου/ων", + "You can only add tracks to smart blocks.": "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής.", + "Please select a cursor position on timeline.": "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Προσθήκη", + "New": "", + "Edit": "Επεξεργασία", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Αφαίρεση", + "Edit Metadata": "Επεξεργασία Μεταδεδομένων", + "Add to selected show": "Προσθήκη στην επιλεγμένη εκπομπή", + "Select": "Επιλογή", + "Select this page": "Επιλέξτε αυτή τη σελίδα", + "Deselect this page": "Καταργήστε αυτήν την σελίδα", + "Deselect all": "Κατάργηση όλων", + "Are you sure you want to delete the selected item(s)?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;", + "Scheduled": "Προγραμματισμένο", + "Tracks": "", + "Playlist": "", + "Title": "Τίτλος", + "Creator": "Δημιουργός", + "Album": "Album", + "Bit Rate": "Ρυθμός Bit", + "BPM": "BPM", + "Composer": "Συνθέτης", + "Conductor": "Ενορχήστρωση", + "Copyright": "Copyright", + "Encoded By": "Κωδικοποιήθηκε από", + "Genre": "Είδος", + "ISRC": "ISRC", + "Label": "Εταιρεία", + "Language": "Γλώσσα", + "Last Modified": "Τελευταία τροποποίηση", + "Last Played": "Τελευταία αναπαραγωγή", + "Length": "Διάρκεια", + "Mime": "Μίμος", + "Mood": "Διάθεση", + "Owner": "Ιδιοκτήτης", + "Replay Gain": "Κέρδος Επανάληψης", + "Sample Rate": "Ρυθμός δειγματοληψίας", + "Track Number": "Αριθμός Κομματιού", + "Uploaded": "Φορτώθηκε", + "Website": "Ιστοσελίδα", + "Year": "Έτος", + "Loading...": "Φόρτωση...", + "All": "Όλα", + "Files": "Αρχεία", + "Playlists": "Λίστες αναπαραγωγής", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Άγνωστος τύπος: ", + "Are you sure you want to delete the selected item?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;", + "Uploading in progress...": "Ανέβασμα σε εξέλιξη...", + "Retrieving data from the server...": "Ανάκτηση δεδομένων από τον διακομιστή...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Κωδικός σφάλματος: ", + "Error msg: ": "Μήνυμα σφάλματος: ", + "Input must be a positive number": "Το input πρέπει να είναι θετικός αριθμός", + "Input must be a number": "Το input πρέπει να είναι αριθμός", + "Input must be in the format: yyyy-mm-dd": "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη", + "Input must be in the format: hh:mm:ss.t": "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;", + "Open Media Builder": "Άνοιγμα Δημιουργού Πολυμέσων", + "please put in a time '00:00:00 (.0)'": "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: ", + "Dynamic block is not previewable": "Αδύνατη η προεπισκόπιση του δυναμικού block", + "Limit to: ": "Όριο για: ", + "Playlist saved": "Οι λίστες αναπαραγωγής αποθηκεύτηκαν", + "Playlist shuffled": "Ανασχηματισμός λίστας αναπαραγωγής", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια.", + "Listener Count on %s: %s": "Καταμέτρηση Ακροατών για %s : %s", + "Remind me in 1 week": "Υπενθύμιση σε 1 εβδομάδα", + "Remind me never": "Καμία υπενθύμιση", + "Yes, help Airtime": "Ναι, βοηθώ το Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif ", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν", + "Smart block saved": "Το Smart block αποθηκεύτηκε", + "Processing...": "Επεξεργασία...", + "Select modifier": "Επιλέξτε τροποποιητή", + "contains": "περιέχει", + "does not contain": "δεν περιέχει", + "is": "είναι", + "is not": "δεν είναι", + "starts with": "ξεκινά με", + "ends with": "τελειώνει με", + "is greater than": "είναι μεγαλύτερος από", + "is less than": "είναι μικρότερος από", + "is in the range": "είναι στην κλίμακα", + "Generate": "Δημιουργία", + "Choose Storage Folder": "Επιλογή Φακέλου Αποθήκευσης", + "Choose Folder to Watch": "Επιλογή Φακέλου για Προβολή", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\nΑυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!", + "Manage Media Folders": "Διαχείριση Φακέλων Πολυμέσων", + "Are you sure you want to remove the watched folder?": "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;", + "This path is currently not accessible.": "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται.", + "Connected to the streaming server": "Συνδέθηκε με τον διακομιστή streaming ", + "The stream is disabled": "Το stream είναι απενεργοποιημένο", + "Getting information from the server...": "Λήψη πληροφοριών από το διακομιστή...", + "Can not connect to the streaming server": "Αδύνατη η σύνδεση με τον διακομιστή streaming ", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών.", + "Warning: You cannot change this field while the show is currently playing": "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής ", + "No result found": "Δεν βρέθηκαν αποτελέσματα", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν.", + "Specify custom authentication which will work only for this show.": "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή.", + "The show instance doesn't exist anymore!": "Η εκπομπή δεν υπάρχει πια!", + "Warning: Shows cannot be re-linked": "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη ", + "Show": "Εκπομπή", + "Show is empty": "Η εκπομπή είναι άδεια", + "1m": "1λ", + "5m": "5λ", + "10m": "10λ", + "15m": "15λ", + "30m": "30λ", + "60m": "60λ", + "Retreiving data from the server...": "Ανάκτηση δεδομένων από το διακομιστή...", + "This show has no scheduled content.": "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο.", + "This show is not completely filled with content.": "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο ", + "January": "Ιανουάριος", + "February": "Φεβρουάριος", + "March": "Μάρτιος", + "April": "Απρίλης", + "May": "Μάιος", + "June": "Ιούνιος", + "July": "Ιούλιος", + "August": "Αύγουστος", + "September": "Σεπτέμβριος", + "October": "Οκτώβριος", + "November": "Νοέμβριος", + "December": "Δεκέμβριος", + "Jan": "Ιαν", + "Feb": "Φεβ", + "Mar": "Μαρ", + "Apr": "Απρ", + "Jun": "Ιουν", + "Jul": "Ιουλ", + "Aug": "Αυγ", + "Sep": "Σεπ", + "Oct": "Οκτ", + "Nov": "Νοε", + "Dec": "Δεκ", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Κυριακή", + "Monday": "Δευτέρα", + "Tuesday": "Τρίτη", + "Wednesday": "Τετάρτη", + "Thursday": "Πέμπτη", + "Friday": "Παρασκευή", + "Saturday": "Σάββατο", + "Sun": "Κυρ", + "Mon": "Δευ", + "Tue": "Τρι", + "Wed": "Τετ", + "Thu": "Πεμ", + "Fri": "Παρ", + "Sat": "Σαβ", + "Shows longer than their scheduled time will be cut off by a following show.": "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή.", + "Cancel Current Show?": "Ακύρωση Τρέχουσας Εκπομπής;", + "Stop recording current show?": "Πάυση ηχογράφησης τρέχουσας εκπομπής;", + "Ok": "Οκ", + "Contents of Show": "Περιεχόμενα Εκπομπής", + "Remove all content?": "Αφαίρεση όλου του περιεχομένου;", + "Delete selected item(s)?": "Διαγραφή επιλεγμένου στοιχείου/ων;", + "Start": "Έναρξη", + "End": "Τέλος", + "Duration": "Διάρκεια", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Η εκπομπή είναι άδεια", + "Recording From Line In": "Ηχογράφηση Από Line In", + "Track preview": "Προεπισκόπηση κομματιού", + "Cannot schedule outside a show.": "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής.", + "Moving 1 Item": "Μετακίνηση 1 Στοιχείου", + "Moving %s Items": "Μετακίνηση Στοιχείων %s", + "Save": "Αποθήκευση", + "Cancel": "Ακύρωση", + "Fade Editor": "Επεξεργαστής Fade", + "Cue Editor": "Επεξεργαστής Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API", + "Select all": "Επιλογή όλων", + "Select none": "Καμία Επιλογή", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων ", + "Jump to the current playing track": "Μετάβαση στο τρέχον κομμάτι ", + "Jump to Current": "", + "Cancel current show": "Ακύρωση τρέχουσας εκπομπής", + "Open library to add or remove content": "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου", + "Add / Remove Content": "Προσθήκη / Αφαίρεση Περιεχομένου", + "in use": "σε χρήση", + "Disk": "Δίσκος", + "Look in": "Κοιτάξτε σε", + "Open": "Άνοιγμα", + "Admin": "Διαχειριστής", + "DJ": "DJ", + "Program Manager": "Διευθυντής Προγράμματος", + "Guest": "Επισκέπτης", + "Guests can do the following:": "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω", + "View schedule": "Προβολή Προγράμματος", + "View show content": "Προβολή περιεχομένου εκπομπής", + "DJs can do the following:": "Οι DJ μπορούν να κάνουν τα παρακάτω", + "Manage assigned show content": "Διαχείριση ανατεθημένου περιεχομένου εκπομπής", + "Import media files": "Εισαγωγή αρχείων πολυμέσων", + "Create playlists, smart blocks, and webstreams": "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams ", + "Manage their own library content": "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης", + "Program Managers can do the following:": "", + "View and manage show content": "Προβολή και διαχείριση περιεχομένου εκπομπής", + "Schedule shows": "Πρόγραμμα εκπομπών", + "Manage all library content": "Διαχείριση όλου του περιεχομένου βιβλιοθήκης", + "Admins can do the following:": "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:", + "Manage preferences": "Διαχείριση προτιμήσεων", + "Manage users": "Διαχείριση Χρηστών", + "Manage watched folders": "Διαχείριση προβεβλημένων φακέλων ", + "Send support feedback": "Αποστολή Σχολίων Υποστήριξης", + "View system status": "Προβολή κατάστασης συστήματος", + "Access playout history": "Πρόσβαση στην ιστορία playout", + "View listener stats": "Προβολή στατιστικών των ακροατών", + "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", + "Columns": "", + "From {from} to {to}": "Από {από} σε {σε}", + "kbps": "Kbps", + "yyyy-mm-dd": "εεεε-μμ-ηη", + "hh:mm:ss.t": "ωω:λλ:δδ.t", + "kHz": "kHz", + "Su": "Κυ", + "Mo": "Δε", + "Tu": "Τρ", + "We": "Τε", + "Th": "Πε", + "Fr": "Πα", + "Sa": "Σα", + "Close": "Κλείσιμο", + "Hour": "Ώρα", + "Minute": "Λεπτό", + "Done": "Ολοκληρώθηκε", + "Select files": "Επιλογή αρχείων", + "Add files to the upload queue and click the start button.": "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης", + "Filename": "", + "Size": "", + "Add Files": "Προσθήκη Αρχείων", + "Stop Upload": "Στάση Ανεβάσματος", + "Start upload": "Έναρξη ανεβάσματος", + "Start Upload": "", + "Add files": "Προσθήκη αρχείων", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Ανέβηκαν %d/%d αρχεία", + "N/A": "N/A", + "Drag files here.": "Σύρετε αρχεία εδώ.", + "File extension error.": "Σφάλμα επέκτασης αρχείου.", + "File size error.": "Σφάλμα μεγέθους αρχείου.", + "File count error.": "Σφάλμα μέτρησης αρχείων.", + "Init error.": "Σφάλμα αρχικοποίησης.", + "HTTP Error.": "Σφάλμα HTTP.", + "Security error.": "Σφάλμα ασφάλειας.", + "Generic error.": "Γενικό σφάλμα.", + "IO error.": "Σφάλμα IO", + "File: %s": "Αρχείο: %s", + "%d files queued": "%d αρχεία σε αναμονή", + "File: %f, size: %s, max file size: %m": "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m", + "Upload URL might be wrong or doesn't exist": "Το URL είτε είναι λάθος ή δεν υφίσταται", + "Error: File too large: ": "Σφάλμα: Πολύ μεγάλο αρχείο: ", + "Error: Invalid file extension: ": "Σφάλμα: Μη έγκυρη προέκταση αρχείου: ", + "Set Default": "Ως Προεπιλογή", + "Create Entry": "Δημιουργία Εισόδου", + "Edit History Record": "Επεξεργασία Ιστορικού", + "No Show": "Καμία Εκπομπή", + "Copied %s row%s to the clipboard": "Αντιγράφηκαν %s σειρές%s στο πρόχειρο", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Περιγραφή", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ενεργοποιημένο", + "Disabled": "Απενεργοποιημένο", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά.", + "You are viewing an older version of %s": "Βλέπετε μια παλαιότερη έκδοση του %s", + "You cannot add tracks to dynamic blocks.": "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks.", + "You don't have permission to delete selected %s(s).": "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s).", + "You can only add tracks to smart block.": "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block.", + "Untitled Playlist": "Λίστα Αναπαραγωγής χωρίς Τίτλο", + "Untitled Smart Block": "Smart Block χωρίς Τίτλο", + "Unknown Playlist": "Άγνωστη λίστα αναπαραγωγής", + "Preferences updated.": "Οι προτιμήσεις ενημερώθηκαν.", + "Stream Setting Updated.": "Η Ρύθμιση Stream Ενημερώθηκε.", + "path should be specified": "η διαδρομή πρέπει να καθοριστεί", + "Problem with Liquidsoap...": "Πρόβλημα με Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Αναμετάδοση της εκπομπής %s από %s σε %s", + "Select cursor": "Επιλέξτε cursor", + "Remove cursor": "Αφαίρεση cursor", + "show does not exist": "η εκπομπή δεν υπάρχει", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Ο χρήστης προστέθηκε επιτυχώς!", + "User updated successfully!": "Ο χρήστης ενημερώθηκε με επιτυχία!", + "Settings updated successfully!": "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!", + "Untitled Webstream": "Webstream χωρίς Τίτλο", + "Webstream saved.": "Το Webstream αποθηκεύτηκε.", + "Invalid form values.": "Άκυρες μορφές αξίας.", + "Invalid character entered": "Εισαγωγή άκυρου χαρακτήρα", + "Day must be specified": "Η μέρα πρέπει να προσδιοριστεί", + "Time must be specified": "Η ώρα πρέπει να προσδιοριστεί", + "Must wait at least 1 hour to rebroadcast": "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Χρήση Προσαρμοσμένης Ταυτοποίησης:", + "Custom Username": "Προσαρμοσμένο Όνομα Χρήστη", + "Custom Password": "Προσαρμοσμένος Κωδικός Πρόσβασης", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό.", + "Password field cannot be empty.": "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό.", + "Record from Line In?": "Ηχογράφηση από Line In;", + "Rebroadcast?": "Αναμετάδοση;", + "days": "ημέρες", + "Link:": "Σύνδεσμος", + "Repeat Type:": "Τύπος Επανάληψης:", + "weekly": "εβδομαδιαία", + "every 2 weeks": "κάθε 2 εβδομάδες", + "every 3 weeks": "κάθε 3 εβδομάδες", + "every 4 weeks": "κάθε 4 εβδομάδες", + "monthly": "μηνιαία", + "Select Days:": "Επιλέξτε Ημέρες:", + "Repeat By:": "Επανάληψη από:", + "day of the month": "ημέρα του μήνα", + "day of the week": "ημέρα της εβδομάδας", + "Date End:": "Ημερομηνία Λήξης:", + "No End?": "Χωρίς Τέλος;", + "End date must be after start date": "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης", + "Please select a repeat day": "Επιλέξτε ημέρα επανάληψης", + "Background Colour:": "Χρώμα Φόντου:", + "Text Colour:": "Χρώμα Κειμένου:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Όνομα:", + "Untitled Show": "Εκπομπή χωρίς Τίτλο", + "URL:": "Διεύθυνση URL:", + "Genre:": "Είδος:", + "Description:": "Περιγραφή:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Διάρκεια:", + "Timezone:": "Ζώνη Ώρας", + "Repeats?": "Επαναλήψεις;", + "Cannot create show in the past": "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν", + "Cannot modify start date/time of the show that is already started": "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει", + "End date/time cannot be in the past": "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν", + "Cannot have duration < 0m": "Δεν μπορεί να έχει διάρκεια < 0m", + "Cannot have duration 00h 00m": "Δεν μπορεί να έχει διάρκεια 00h 00m", + "Cannot have duration greater than 24h": "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες", + "Cannot schedule overlapping shows": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών", + "Search Users:": "Αναζήτηση Χρηστών:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Όνομα Χρήστη:", + "Password:": "Κωδικός πρόσβασης:", + "Verify Password:": "Επαλήθευση κωδικού πρόσβασης", + "Firstname:": "Όνομα:", + "Lastname:": "Επώνυμο:", + "Email:": "Email:", + "Mobile Phone:": "Κινητό Τηλέφωνο:", + "Skype:": "Skype", + "Jabber:": "Jabber", + "User Type:": "Τύπος Χρήστη:", + "Login name is not unique.": "Το όνομα εισόδου δεν είναι μοναδικό.", + "Delete All Tracks in Library": "", + "Date Start:": "Ημερομηνία Έναρξης:", + "Title:": "Τίτλος:", + "Creator:": "Δημιουργός:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Έτος", + "Label:": "Δισκογραφική:", + "Composer:": "Συνθέτης:", + "Conductor:": "Μαέστρος:", + "Mood:": "Διάθεση:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Αριθμός ISRC:", + "Website:": "Ιστοσελίδα:", + "Language:": "Γλώσσα:", + "Publish...": "", + "Start Time": "Ώρα Έναρξης", + "End Time": "Ώρα Τέλους", + "Interface Timezone:": "Interface Ζώνης ώρας:", + "Station Name": "Όνομα Σταθμού", + "Station Description": "", + "Station Logo:": "Λογότυπο Σταθμού:", + "Note: Anything larger than 600x600 will be resized.": "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος.", + "Default Crossfade Duration (s):": "Προεπιλεγμένη Διάρκεια Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Προεπιλεγμένο Fade In (s):", + "Default Fade Out (s):": "Προεπιλεγμένο Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Ζώνη Ώρας Σταθμού", + "Week Starts On": "Η Εβδομάδα αρχίζει ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Σύνδεση", + "Password": "Κωδικός πρόσβασης", + "Confirm new password": "Επιβεβαίωση νέου κωδικού πρόσβασης", + "Password confirmation does not match your password.": "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας.", + "Email": "", + "Username": "Όνομα Χρήστη", + "Reset password": "Επαναφορά κωδικού πρόσβασης", + "Back": "", + "Now Playing": "Αναπαραγωγή σε Εξέλιξη", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Όλες οι Εκπομπές μου:", + "My Shows": "", + "Select criteria": "Επιλέξτε κριτήρια", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Ρυθμός Δειγματοληψίας (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ώρες", + "minutes": "λεπτά", + "items": "στοιχεία", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Δυναμικό", + "Static": "Στατικό", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων", + "Shuffle playlist content": "Περιεχόμενο λίστας Shuffle ", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0", + "Limit cannot be more than 24 hrs": "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες", + "The value should be an integer": "Η τιμή πρέπει να είναι ακέραιος αριθμός", + "500 is the max item limit value you can set": "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε", + "You must select Criteria and Modifier": "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή", + "'Length' should be in '00:00:00' format": "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Η τιμή πρέπει να είναι αριθμός", + "The value should be less then 2147483648": "Η τιμή πρέπει να είναι μικρότερη από 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες", + "Value cannot be empty": "Η αξία δεν μπορεί να είναι κενή", + "Stream Label:": "Stream Label:", + "Artist - Title": "Καλλιτέχνης - Τίτλος", + "Show - Artist - Title": "Εκπομπή - Καλλιτέχνης - Τίτλος", + "Station name - Show name": "Όνομα Σταθμού - Όνομα Εκπομπής", + "Off Air Metadata": "Μεταδεδομένα Off Air", + "Enable Replay Gain": "Ενεργοποίηση Επανάληψη Κέρδους", + "Replay Gain Modifier": "Τροποποιητής Επανάληψης Κέρδους", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ενεργοποιημένο", + "Mobile:": "", + "Stream Type:": "Τύπος Stream:", + "Bit Rate:": "Ρυθμός Δεδομένων:", + "Service Type:": "Τύπος Υπηρεσίας:", + "Channels:": "Κανάλια", + "Server": "Διακομιστής", + "Port": "Θύρα", + "Mount Point": "Σημείο Προσάρτησης", + "Name": "Ονομασία", + "URL": "Διεύθυνση URL:", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Εισαγωγή Φακέλου:", + "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", + "Not a valid Directory": "Μη έγκυρο Ευρετήριο", + "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", + "'%value%' is less than %min% characters long": "'%value%' είναι λιγότερο από %min% χαρακτήρες ", + "'%value%' is more than %max% characters long": "'%value%' είναι περισσότερο από %max% χαρακτήρες ", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά", + "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in και cue out είναι μηδέν.", + "Can't set cue out to be greater than file length.": "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου.", + "Can't set cue in to be larger than cue out.": "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out.", + "Can't set cue out to be smaller than cue in.": "Το cue out δεν μπορεί να είναι μικρότερο από το cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Επιλέξτε Χώρα", + "livestream": "", + "Cannot move items out of linked shows": "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη.", + "The schedule you're viewing is out of date! (sched mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)", + "The schedule you're viewing is out of date! (instance mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)", + "The schedule you're viewing is out of date!": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!", + "You are not allowed to schedule show %s.": "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s..", + "You cannot add files to recording shows.": "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές.", + "The show %s is over and cannot be scheduled.": "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί.", + "The show %s has been previously updated!": "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Ένα επιλεγμένο αρχείο δεν υπάρχει!", + "Shows can have a max length of 24 hours.": "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της.", + "Rebroadcast of %s from %s": "Αναμετάδοση του %s από %s", + "Length needs to be greater than 0 minutes": "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά", + "Length should be of form \"00h 00m\"": "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"", + "URL should be of form \"https://example.org\"": "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"", + "URL should be 512 characters or less": "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες ", + "No MIME type found for webstream.": "Δεν βρέθηκε τύπος MIME για webstream.", + "Webstream name cannot be empty": "Το όνομα του webstream δεν μπορεί να είναι κενό", + "Could not parse XSPF playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF ", + "Could not parse PLS playlist": "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS", + "Could not parse M3U playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U", + "Invalid webstream - This appears to be a file download.": "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης.", + "Unrecognized stream type: %s": "Άγνωστος τύπος stream: %s", + "Record file doesn't exist": "Το αρχείο δεν υπάρχει", + "View Recorded File Metadata": "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων ", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Επεξεργασία Εκπομπής", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Δεν έχετε δικαίωμα πρόσβασης", + "Can't drag and drop repeating shows": "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών", + "Can't move a past show": "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής", + "Can't move show into past": "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της.", + "Show was deleted because recorded show does not exist!": "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!", + "Must wait 1 hour to rebroadcast.": "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση.", + "Track": "Κομμάτι", + "Played": "Παίχτηκε", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/en_CA.json b/webapp/src/locale/en_CA.json new file mode 100644 index 0000000000..d9670b5c7a --- /dev/null +++ b/webapp/src/locale/en_CA.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "First name:", + "Lastname:": "Last name:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/en_GB.json b/webapp/src/locale/en_GB.json new file mode 100644 index 0000000000..72ea305005 --- /dev/null +++ b/webapp/src/locale/en_GB.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "English (United Kingdom)", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Bashkir", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "Hungarian", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Upload some tracks below to add them to your library!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.", + "Click the 'New Show' button and fill out the required fields.": "Please click the 'New Show' button and fill out the required fields.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "It looks like you don't have any shows scheduled yet. %sCreate a show now%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "To start broadcasting, click on the current show and select 'Schedule Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Click on the show starting next and select 'Schedule Tracks'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "It looks like the next show is empty. %sAdd tracks to your show now%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Page", + "Calendar": "Calendar", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Weekly Schedule", + "Settings": "Settings", + "General": "General", + "My Profile": "My Profile", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "Analytics", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "Get Help Online", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "File does not exist in %s", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Page not found.", + "The requested action is not supported.": "The requested action is not supported.", + "You do not have permission to access this resource.": "You do not have permission to access this resource.", + "An internal application error has occurred.": "An internal application error has occurred.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "Could not delete file because it is scheduled in the future.", + "Could not delete file(s).": "Could not delete file(s).", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "Something went wrong!", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "You haven't added any tracks", + "You haven't added any playlists": "You haven't added any playlists", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "You haven't added any smart blocks", + "You haven't added any webstreams": "You haven't added any webstreams", + "Learn about tracks": "Learn about tracks", + "Learn about playlists": "Learn about playlists", + "Learn about podcasts": "", + "Learn about smart blocks": "Learn about smart blocks", + "Learn about webstreams": "Learn about webstreams", + "Click 'New' to create one.": "Click 'New' to create one.", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "Tracks", + "Playlist": "Playlist", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "View", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "WARNING: This will restart your stream and may cause a short dropout for your listeners!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Today", + "Day": "Day", + "Week": "Week", + "Month": "Month", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "Filtering out ", + " of ": " of ", + " records": " records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "Trim overbooked shows", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished.", + "New Show": "New Show", + "New Log Entry": "New Log Entry", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "Smart Block", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Please enter your username and password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "There was a problem with the username or email address you entered.", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "Request method not accepted", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Use %s Authentication:", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "Host:", + "Port:": "Port:", + "Mount:": "Mount:", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "Current Logo:", + "Show Logo:": "Show Logo:", + "Logo Preview:": "Logo Preview:", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "Instance Description:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "Start Time:", + "In the Future:": "In the Future:", + "End Time:": "End Time:", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "Delete All Tracks in Library", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "Station Description", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "Please enter a time in seconds (e.g. 0.5)", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Required for embeddable schedule widget.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.", + "Default Language": "Default Language", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "Display login button on your Radio Page?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Auto Switch Off:", + "Auto Switch On:": "Auto Switch On:", + "Switch Transition Fade (s):": "Switch Transition Fade (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "Email", + "Username": "Username", + "Reset password": "Reset password", + "Back": "Back", + "Now Playing": "Now Playing", + "Select Stream:": "Select Stream:", + "Auto detect the most appropriate stream to use.": "Auto-detect the most appropriate stream to use.", + "Select a stream:": "Select a stream:", + " - Mobile friendly": " - Mobile friendly", + " - The player does not support Opus streams.": " - The player does not support Opus streams.", + "Embeddable code:": "Embeddable code:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copy this code and paste it into your website's HTML to embed the player in your site.", + "Preview:": "Preview:", + "Feed Privacy": "", + "Public": "Public", + "Private": "Private", + "Station Language": "Station Language", + "Filter by Show": "Filter by Show", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "Randomly", + "Newest": "Newest", + "Oldest": "Oldest", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "Select Track Type", + "Type:": "Type:", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "Select track type", + "Allow Repeated Tracks:": "Allow Repeated Tracks:", + "Allow last track to exceed time limit:": "Allow last track to exceed time limit:", + "Sort Tracks:": "Sort Tracks:", + "Limit to:": "Limit to:", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value", + "You must select a time unit for a relative datetime.": "You must select a time unit for a relative date and time.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Only non-negative integer numbers are allowed for a relative date time", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "Hardware Audio Output:", + "Output Type": "Output Type", + "Enabled:": "Enabled:", + "Mobile:": "Mobile:", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Push metadata to your station on TuneIn?", + "Station ID:": "Station ID:", + "Partner Key:": "Partner Key:", + "Partner Id:": "Partner ID:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", + "\n\nThank you,\nThe %s Team": "\n\nThank you,\nThe %s Team", + "%s Password Reset": "%s Password Reset", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "Upload Time", + "None": "None", + "Powered by %s": "Powered by %s", + "Select Country": "Select Country", + "livestream": "livestream", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Cannot schedule a playlist that contains missing files.", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognised stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "Schedule Tracks", + "Clear Show": "Clear Show", + "Cancel Show": "Cancel Show", + "Edit Instance": "Edit Instance", + "Edit Show": "Edit Show", + "Delete Instance": "Delete Instance", + "Delete Instance and All Following": "Delete Instance and All Following", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "Auto-generated smart-block for podcast", + "Webstreams": "Webstreams" +} \ No newline at end of file diff --git a/webapp/src/locale/en_US.json b/webapp/src/locale/en_US.json new file mode 100644 index 0000000000..6f56028a66 --- /dev/null +++ b/webapp/src/locale/en_US.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Color:", + "Text Colour:": "Text Color:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/es_ES.json b/webapp/src/locale/es_ES.json new file mode 100644 index 0000000000..bc9e1295a4 --- /dev/null +++ b/webapp/src/locale/es_ES.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "El año %s debe estar dentro del rango de 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s no es una fecha válida", + "%s:%s:%s is not a valid time": "%s:%s:%s no es una hora válida", + "English": "Inglés", + "Afar": "Pueblo afar", + "Abkhazian": "Abjasia", + "Afrikaans": "Afrikáans", + "Amharic": "Amhárico", + "Arabic": "Árabe", + "Assamese": "Asamés", + "Aymara": "Aimara", + "Azerbaijani": "Azerbaiyano", + "Bashkir": "Idioma Bashkir", + "Belarusian": "Bielorruso", + "Bulgarian": "Búlgaro", + "Bihari": "Lenguas Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengalí/Bangla", + "Tibetan": "Tibetano", + "Breton": "Bretón", + "Catalan": "Catalán", + "Corsican": "Corso", + "Czech": "Checo", + "Welsh": "Galés", + "Danish": "Danés", + "German": "Alemán", + "Bhutani": "Butaní", + "Greek": "Griego", + "Esperanto": "Esperanto", + "Spanish": "Español", + "Estonian": "Estonia", + "Basque": "Vasco", + "Persian": "Persa", + "Finnish": "Finés", + "Fiji": "Fiyi", + "Faeroese": "Feroés", + "French": "Francés", + "Frisian": "Frisón", + "Irish": "Irlandés", + "Scots/Gaelic": "Escocés/Gaelico", + "Galician": "Galego", + "Guarani": "Guaraní", + "Gujarati": "Guyaratí", + "Hausa": "Idioma Hausa", + "Hindi": "Hindú", + "Croatian": "Croata", + "Hungarian": "Húngaro", + "Armenian": "Armenio", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue o Occidental", + "Inupiak": "Iñupiaq", + "Indonesian": "Indonesio", + "Icelandic": "Islandés", + "Italian": "Italiano", + "Hebrew": "Hebreo", + "Japanese": "Japonés", + "Yiddish": "Yidis", + "Javanese": "Javanés", + "Georgian": "Georgiano", + "Kazakh": "Kazajo", + "Greenlandic": "Groenlandés", + "Cambodian": "Camboyano", + "Kannada": "Canarés", + "Korean": "Coreano", + "Kashmiri": "Cachemir", + "Kurdish": "Kurdo", + "Kirghiz": "Kirguís", + "Latin": "Latín", + "Lingala": "Lingala", + "Laothian": "Laosiano", + "Lithuanian": "Lituano", + "Latvian/Lettish": "Letón", + "Malagasy": "Malgache", + "Maori": "Maorí", + "Macedonian": "Macedonio", + "Malayalam": "Malayo", + "Mongolian": "Mongol", + "Moldavian": "Moldavo", + "Marathi": "Maratí", + "Malay": "Malay", + "Maltese": "Maltés", + "Burmese": "Birmano", + "Nauru": "Nauru o Naurú", + "Nepali": "Nepalí", + "Dutch": "Holandés", + "Norwegian": "Noruego", + "Occitan": "Occitano o lengua de oc", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Panyabí", + "Polish": "Polaco", + "Pashto/Pushto": "Pastún/Ushto", + "Portuguese": "Portugués", + "Quechua": "Quechua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi (Rundi)", + "Romanian": "Rumano", + "Russian": "Ruso", + "Kinyarwanda": "Kiñaruanda", + "Sanskrit": "Sánscrito", + "Sindhi": "Sindi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbocroata", + "Singhalese": "Cingalés", + "Slovak": "Eslovaco", + "Slovenian": "Esloveno", + "Samoan": "Samoano", + "Shona": "Shona", + "Somali": "Somalí", + "Albanian": "Albanés", + "Serbian": "Serbio", + "Siswati": "Suazi", + "Sesotho": "Sesoto", + "Sundanese": "Sundanés", + "Swedish": "Sueco", + "Swahili": "Suajili", + "Tamil": "Tamil", + "Tegulu": "Télugu", + "Tajik": "Tayiko", + "Thai": "Tailandés", + "Tigrinya": "Tigriña", + "Turkmen": "Turkmeno o Turkeno", + "Tagalog": "Tagalo o tagálog", + "Setswana": "Setsuana", + "Tonga": "Tongano", + "Turkish": "Turco", + "Tsonga": "Tsonga", + "Tatar": "Tártaro", + "Twi": "Twi o Chuí", + "Ukrainian": "Ucraniano", + "Urdu": "Urdu", + "Uzbek": "Uzbeko", + "Vietnamese": "Vietnamita", + "Volapuk": "Volapük", + "Wolof": "Wólof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chino", + "Zulu": "Zulú", + "Use station default": "Usar el predeterminado de la estación", + "Upload some tracks below to add them to your library!": "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s.", + "Click the 'New Show' button and fill out the required fields.": "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Parece que no tienes shows programados. %sCrea un show ahora%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n %sCrear un show no enlazado ahora%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Parece que el programa actual necesita más pistas. %sAñade pistas a tu programa ahora%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s.", + "LibreTime media analyzer service": "Servicio de análisis multimedia LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Compruebe que el servicio libretime-analyzer está instalado correctamente en ", + " and ensure that it's running with ": " y asegúrate de que se ejecuta con ", + "If not, try ": "Si no, prueba ", + "LibreTime playout service": "Servicio de emisión de LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Compruebe que el servicio libretime-playout está instalado correctamente en ", + "LibreTime liquidsoap service": "Servicio LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Comprueba que el servicio libretime-liquidsoap está instalado correctamente en ", + "LibreTime Celery Task service": "Servicio de tareas LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Compruebe que el servicio libretime-worker está instalado correctamente en ", + "LibreTime API service": "Servicio API de LibreTime", + "Check that the libretime-api service is installed correctly in ": "Comprueba que el servicio libretime-api está instalado correctamente en ", + "Radio Page": "Radio Web", + "Calendar": "Calendario", + "Widgets": "Widgets", + "Player": "Reproductor", + "Weekly Schedule": "Calendario Semanal", + "Settings": "Ajustes", + "General": "General", + "My Profile": "Mi Perfil", + "Users": "Usuarios", + "Track Types": "Tipos de pista", + "Streams": "Streamer", + "Status": "Estado", + "Analytics": "Estadísticas", + "Playout History": "Historial de reproducción", + "History Templates": "Plantillas Historial", + "Listener Stats": "Estadísticas de oyentes", + "Show Listener Stats": "Mostrar las estadísticas de los oyentes", + "Help": "Ayuda", + "Getting Started": "Cómo iniciar", + "User Manual": "Manual para el usuario", + "Get Help Online": "Conseguir ayuda en línea", + "Contribute to LibreTime": "Contribuir a LibreTime", + "What's New?": "¿Qué hay de nuevo?", + "You are not allowed to access this resource.": "No tienes permiso para acceder a este recurso.", + "You are not allowed to access this resource. ": "No tienes permiso para acceder a este recurso. ", + "File does not exist in %s": "El archivo no existe en %s", + "Bad request. no 'mode' parameter passed.": "Solicitud incorrecta. No se pasa el parámetro 'mode'.", + "Bad request. 'mode' parameter is invalid": "Solicitud incorrecta. El parámetro 'mode' pasado es inválido", + "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", + "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", + "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:

\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer
\n 2. Active la API pública LibreTime en Configuración -> Preferencias", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "Page not found.": "Página no encontrada.", + "The requested action is not supported.": "No se admite la acción solicitada.", + "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", + "An internal application error has occurred.": "Se ha producido un error interno de la aplicación.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "No se han publicado pistas todavía.", + "%s not found": "No se encontró %s", + "Something went wrong.": "Algo salió mal.", + "Preview": "Previsualizar", + "Add to Playlist": "Añadir a la lista de reproducción", + "Add to Smart Block": "Agregar un bloque inteligente", + "Delete": "Eliminar", + "Edit...": "Editar...", + "Download": "Descargar", + "Duplicate Playlist": "Duplicar lista de reproducción", + "Duplicate Smartblock": "Bloque inteligente duplicado", + "No action available": "No hay acción disponible", + "You don't have permission to delete selected items.": "No tienes permiso para eliminar los elementos seleccionados.", + "Could not delete file because it is scheduled in the future.": "No se ha podido eliminar el archivo porque está programado para el futuro.", + "Could not delete file(s).": "No se pudo eliminar el archivo(s).", + "Copy of %s": "Copia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Asegúrese de que el usuario/contraseña de administrador es correcto en la página Configuración->Streams.", + "Audio Player": "Reproductor de audio", + "Something went wrong!": "¡Algo salió mal!", + "Recording:": "Grabando:", + "Master Stream": "Stream maestro", + "Live Stream": "Stream en vivo", + "Nothing Scheduled": "Nada programado", + "Current Show:": "Show actual:", + "Current": "Actual", + "You are running the latest version": "Estás usando la versión más reciente", + "New version available: ": "Nueva versión disponible: ", + "You have a pre-release version of LibreTime intalled.": "Tienes una versión pre-lanzamiento de LibreTime instalada.", + "A patch update for your LibreTime installation is available.": "Hay disponible una actualización de parche para la instalación de LibreTime.", + "A feature update for your LibreTime installation is available.": "Hay disponible una actualización de funcionalidad para su instalación de LibreTime.", + "A major update for your LibreTime installation is available.": "Hay disponible una actualización importante para su instalación de LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible.", + "Add to current playlist": "Añadir a la lista de reproducción actual", + "Add to current smart block": "Añadir al bloque inteligente actual", + "Adding 1 Item": "Añadiendo 1 item", + "Adding %s Items": "Añadiendo %s elementos", + "You can only add tracks to smart blocks.": "Solo puede agregar canciones a los bloques inteligentes.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción.", + "Please select a cursor position on timeline.": "Indica tu selección en la lista de reproducción actual.", + "You haven't added any tracks": "No ha añadido ninguna pista", + "You haven't added any playlists": "No has añadido ninguna lista de reproducción", + "You haven't added any podcasts": "No has añadido ningún podcast", + "You haven't added any smart blocks": "No has añadido ningún bloque inteligente", + "You haven't added any webstreams": "No has añadido ningún webstream", + "Learn about tracks": "Aprenda sobre pistas", + "Learn about playlists": "Aprenda sobre listas de reproducción", + "Learn about podcasts": "Aprenda sobre podcasts", + "Learn about smart blocks": "Aprenda sobre bloques inteligentes", + "Learn about webstreams": "Aprenda sobre webstreams", + "Click 'New' to create one.": "Clic 'Nuevo' para crear uno.", + "Add": "Añadir", + "New": "Nuevo", + "Edit": "Editar", + "Add to Schedule": "Añadir al show próximo", + "Add to next show": "Añadir al show próximo", + "Add to current show": "Añadir al show actual", + "Add after selected items": "Añadir después de los elementos seleccionados", + "Publish": "Publicar", + "Remove": "Eliminar", + "Edit Metadata": "Editar metadatos", + "Add to selected show": "Añadir al show seleccionado", + "Select": "Seleccionar", + "Select this page": "Seleccionar esta página", + "Deselect this page": "Deseleccionar esta página", + "Deselect all": "Deseleccionar todo", + "Are you sure you want to delete the selected item(s)?": "¿De verdad quieres eliminar los ítems seleccionados?", + "Scheduled": "Programado", + "Tracks": "Pistas", + "Playlist": "Listas de reproducción", + "Title": "Título", + "Creator": "Creador", + "Album": "Álbum", + "Bit Rate": "Tasa de bits", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Director", + "Copyright": "Derechos de autor", + "Encoded By": "Codificado por", + "Genre": "Género", + "ISRC": "ISRC", + "Label": "Sello", + "Language": "Idioma", + "Last Modified": "Ult.Modificado", + "Last Played": "Ult.Reproducido", + "Length": "Duración", + "Mime": "Mime", + "Mood": "Estilo (mood)", + "Owner": "Propietario", + "Replay Gain": "Ganancia", + "Sample Rate": "Tasa de muestreo", + "Track Number": "Núm.Pista", + "Uploaded": "Subido", + "Website": "Sitio web", + "Year": "Año", + "Loading...": "Cargando...", + "All": "Todo", + "Files": "Archivos", + "Playlists": "Listas", + "Smart Blocks": "Bloques", + "Web Streams": "Web streams", + "Unknown type: ": "Tipo desconocido: ", + "Are you sure you want to delete the selected item?": "¿De verdad deseas eliminar el ítem seleccionado?", + "Uploading in progress...": "Carga en progreso...", + "Retrieving data from the server...": "Recolectando data desde el servidor...", + "Import": "Importar", + "Imported?": "Importado?", + "View": "Ver", + "Error code: ": "Código del error: ", + "Error msg: ": "Msg de error: ", + "Input must be a positive number": "La entrada debe ser un número positivo", + "Input must be a number": "La entrada debe ser un número", + "Input must be in the format: yyyy-mm-dd": "La entrada debe tener el formato: aaaa-mm-dd", + "Input must be in the format: hh:mm:ss.t": "La entrada debe tener el formato: hh:mm:ss.t", + "My Podcast": "Mi Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. %s¿Estás seguro de que quieres salir de la página?", + "Open Media Builder": "Abrir Media Builder", + "please put in a time '00:00:00 (.0)'": "Por favor introduce un tiempo '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Por favor introduce un tiempo en segundos válido. Ej. 0.5", + "Your browser does not support playing this file type: ": "Tu navegador no soporta la reproducción de este tipo de archivos: ", + "Dynamic block is not previewable": "Los bloques dinámicos no se pueden previsualizar", + "Limit to: ": "Limitado a: ", + "Playlist saved": "Se guardó la lista de reproducción", + "Playlist shuffled": "Lista de reproducción mezclada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime no está seguro del estado de este archivo. Esto puede suceder cuando el archivo está en una unidad remota a la que no se puede acceder o el archivo está en un directorio que ya no se 'vigila'.", + "Listener Count on %s: %s": "Número de oyentes en %s: %s", + "Remind me in 1 week": "Recuérdame en 1 semana", + "Remind me never": "Nunca recordarme", + "Yes, help Airtime": "Sí, ayudar a Libretime", + "Image must be one of jpg, jpeg, png, or gif": "La imagen debe ser jpg, jpeg, png, o gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloque inteligente estático guardará los criterios y generará el contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la Biblioteca antes de añadirlo a un programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "No se alcanzará la longitud de bloque deseada si %s no puede encontrar suficientes pistas únicas que coincidan con sus criterios. Active esta opción si desea permitir que las pistas se añadan varias veces al bloque inteligente.", + "Smart block shuffled": "Se reprodujo el bloque inteligente de forma aleatoria", + "Smart block generated and criteria saved": "Bloque inteligente generado y criterios guardados", + "Smart block saved": "Bloque inteligente guardado", + "Processing...": "Procesando...", + "Select modifier": "Elige modificador", + "contains": "contiene", + "does not contain": "no contiene", + "is": "es", + "is not": "no es", + "starts with": "empieza con", + "ends with": "termina con", + "is greater than": "es mayor que", + "is less than": "es menor que", + "is in the range": "está en el rango de", + "Generate": "Generar", + "Choose Storage Folder": "Elegir carpeta de almacenamiento", + "Choose Folder to Watch": "Elegir carpeta a monitorizar", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n ¡Esto eliminará los archivos de tu biblioteca de Airtime!", + "Manage Media Folders": "Administrar las Carpetas de Medios", + "Are you sure you want to remove the watched folder?": "¿Estás seguro de que quieres quitar la carpeta monitorizada?", + "This path is currently not accessible.": "Esta ruta es actualmente inaccesible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s.", + "Connected to the streaming server": "Conectado al servidor de streaming", + "The stream is disabled": "Se desactivó el stream", + "Getting information from the server...": "Obteniendo información desde el servidor...", + "Can not connect to the streaming server": "No es posible conectar el servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s está detrás de un router o firewall, puede que necesites configurar el reenvío de puertos y la información de este campo será incorrecta. En este caso, tendrá que actualizar manualmente este campo para que muestre el host/puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido está entre 1024 y 49151.", + "For more details, please read the %s%s Manual%s": "Para más detalles, lea el %s%s Manual %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opción para activar los metadatos para los flujos OGG (los metadatos del flujo son el título de la pista, el artista y el nombre del programa que se muestran en un reproductor de audio). VLC y mplayer tienen un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la información de metadatos: se desconectarán del flujo después de cada canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte para estos reproductores de audio, entonces siéntete libre de habilitar esta opción.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente).", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes.", + "Warning: You cannot change this field while the show is currently playing": "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show", + "No result found": "Sin resultados", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show.", + "Specify custom authentication which will work only for this show.": "Especifique una autenticación personalizada que funcione solo para este show.", + "The show instance doesn't exist anymore!": "¡La instancia de este show ya no existe!", + "Warning: Shows cannot be re-linked": "Advertencia: Los shows no pueden re-enlazarse", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario.", + "Show": "Mostrar", + "Show is empty": "El show está vacío", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Recopilando información desde el servidor...", + "This show has no scheduled content.": "Este show no cuenta con contenido programado.", + "This show is not completely filled with content.": "Este programa aún no está lleno de contenido.", + "January": "Enero", + "February": "Febrero", + "March": "Marzo", + "April": "Abril", + "May": "Mayo", + "June": "Junio", + "July": "Julio", + "August": "Agosto", + "September": "Septiembre", + "October": "Octubre", + "November": "Noviembre", + "December": "Diciembre", + "Jan": "Ene", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dic", + "Today": "Hoy", + "Day": "Día", + "Week": "Semana", + "Month": "Mes", + "Sunday": "Domingo", + "Monday": "Lunes", + "Tuesday": "Martes", + "Wednesday": "Miércoles", + "Thursday": "Jueves", + "Friday": "Viernes", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mie", + "Thu": "Jue", + "Fri": "Vie", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Los shows más largos que su segmento programado serán cortados por el show que le sigue.", + "Cancel Current Show?": "¿Cancelar el show actual?", + "Stop recording current show?": "¿Detener la grabación del show actual?", + "Ok": "Ok", + "Contents of Show": "Contenidos del show", + "Remove all content?": "¿Eliminar todo el contenido?", + "Delete selected item(s)?": "¿Eliminar los ítems seleccionados?", + "Start": "Inicio", + "End": "Final", + "Duration": "Duración", + "Filtering out ": "Filtrando ", + " of ": " de ", + " records": " registros", + "There are no shows scheduled during the specified time period.": "No hay shows programados durante el período de tiempo especificado.", + "Cue In": "Señal de entrada", + "Cue Out": "Señal de salida", + "Fade In": "Unirse", + "Fade Out": "Desaparecer", + "Show Empty": "Show vacío", + "Recording From Line In": "Grabando desde la entrada", + "Track preview": "Previsualización de la pista", + "Cannot schedule outside a show.": "No es posible programar un show externo.", + "Moving 1 Item": "Moviendo 1 ítem", + "Moving %s Items": "Moviendo %s elementos", + "Save": "Guardar", + "Cancel": "Cancelar", + "Fade Editor": "Editor de desvanecimiento", + "Cue Editor": "Editor de Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio", + "Select all": "Seleccionar todos", + "Select none": "Seleccionar uno", + "Trim overbooked shows": "Recortar exceso de shows", + "Remove selected scheduled items": "Eliminar los ítems programados seleccionados", + "Jump to the current playing track": "Saltar a la pista en reproducción actual", + "Jump to Current": "Saltar a la pista actual", + "Cancel current show": "Cancelar el show actual", + "Open library to add or remove content": "Abrir biblioteca para agregar o eliminar contenido", + "Add / Remove Content": "Agregar / eliminar contenido", + "in use": "en uso", + "Disk": "Disco", + "Look in": "Buscar en", + "Open": "Abrir", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Administrador de programa", + "Guest": "Invitado", + "Guests can do the following:": "Los invitados pueden hacer lo siguiente:", + "View schedule": "Ver programación", + "View show content": "Ver contenido del show", + "DJs can do the following:": "Los DJ pueden hacer lo siguiente:", + "Manage assigned show content": "Administrar el contenido del show asignado", + "Import media files": "Importar archivos de medios", + "Create playlists, smart blocks, and webstreams": "Crear listas de reproducción, bloques inteligentes y webstreams", + "Manage their own library content": "Administrar su propia biblioteca de contenido", + "Program Managers can do the following:": "Los administradores de programas pueden hacer lo siguiente:", + "View and manage show content": "Ver y administrar contenido del show", + "Schedule shows": "Programar shows", + "Manage all library content": "Administrar el contenido de toda la biblioteca", + "Admins can do the following:": "Los administradores pueden:", + "Manage preferences": "Administrar preferencias", + "Manage users": "Administrar usuarios", + "Manage watched folders": "Administrar carpetas monitorizadas", + "Send support feedback": "Enviar opinión de soporte", + "View system status": "Ver el estado del sistema", + "Access playout history": "Acceder al historial de reproducción", + "View listener stats": "Ver estadísticas de oyentes", + "Show / hide columns": "Mostrar / ocultar columnas", + "Columns": "Columnas", + "From {from} to {to}": "De {from} para {to}", + "kbps": "kbps", + "yyyy-mm-dd": "dd-mm-yyyy", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Do", + "Mo": "Lu", + "Tu": "Ma", + "We": "Mi", + "Th": "Ju", + "Fr": "Vi", + "Sa": "Sa", + "Close": "Cerrar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Hecho", + "Select files": "Seleccione los archivos", + "Add files to the upload queue and click the start button.": "Añade los archivos a la cola de carga y haz clic en el botón de iniciar.", + "Filename": "Nombre del archivo", + "Size": "Tamaño", + "Add Files": "Añadir archivos", + "Stop Upload": "Detener carga", + "Start upload": "Iniciar carga", + "Start Upload": "Empezar a cargar", + "Add files": "Añadir archivos", + "Stop current upload": "Detener la carga en curso", + "Start uploading queue": "Iniciar la carga en la cola", + "Uploaded %d/%d files": "Archivos %d/%d cargados", + "N/A": "No disponible", + "Drag files here.": "Arrastra los archivos a esta área.", + "File extension error.": "Error de extensión del archivo.", + "File size error.": "Error de tamaño del archivo.", + "File count error.": "Error de cuenta del archivo.", + "Init error.": "Error de inicialización.", + "HTTP Error.": "Error de HTTP.", + "Security error.": "Error de seguridad.", + "Generic error.": "Error genérico.", + "IO error.": "Error IO.", + "File: %s": "Archivo: %s", + "%d files queued": "%d archivos en cola", + "File: %f, size: %s, max file size: %m": "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m", + "Upload URL might be wrong or doesn't exist": "Puede que el URL de carga no esté funcionando o no exista", + "Error: File too large: ": "Error: Fichero demasiado grande: ", + "Error: Invalid file extension: ": "Error: Extensión de archivo no válida: ", + "Set Default": "Establecer predeterminado", + "Create Entry": "Crear Entrada", + "Edit History Record": "Editar historial", + "No Show": "No hay Show", + "Copied %s row%s to the clipboard": "Se copiaron %s celda%s al portapapeles", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sImprimir vista%sPor favor, utilice la función de impresión de su navegador para imprimir esta tabla. Pulse Escape cuando termine.", + "New Show": "Nuevo Show", + "New Log Entry": "Nueva entrada de registro", + "No data available in table": "No hay datos en la tabla", + "(filtered from _MAX_ total entries)": "(filtrado de _MAX_ entradas totales)", + "First": "Primero", + "Last": "Último", + "Next": "Siguiente", + "Previous": "Anterior", + "Search:": "Buscar:", + "No matching records found": "No se han encontrado coincidencias", + "Drag tracks here from the library": "Arrastre las pistas desde la biblioteca", + "No tracks were played during the selected time period.": "No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado.", + "Unpublish": "Despublicar", + "No matching results found.": "No se ha encontrado ningún resultado.", + "Author": "Autor", + "Description": "Descripción", + "Link": "Enlace", + "Publication Date": "Fecha de publicación", + "Import Status": "Estado de la importación", + "Actions": "Acciones", + "Delete from Library": "Eliminar de la biblioteca", + "Successfully imported": "Importado correctamente", + "Show _MENU_": "Mostrar el _MENU_", + "Show _MENU_ entries": "Mostrar las entradas del _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Mostrando el _START_ a _END_ del _TOTAL_ las pistas", + "Showing _START_ to _END_ of _TOTAL_ track types": "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas", + "Showing _START_ to _END_ of _TOTAL_ users": "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios", + "Showing 0 to 0 of 0 entries": "Mostrando 0 de 0 de 0 entradas", + "Showing 0 to 0 of 0 tracks": "Mostrando 0 a 0 de 0 pistas", + "Showing 0 to 0 of 0 track types": "Mostrando 0 a 0 de 0 tipos de pistas", + "(filtered from _MAX_ total track types)": "(filtrado de _MAX_ tipos de pistas totales)", + "Are you sure you want to delete this tracktype?": "¿Está seguro de que desea eliminar este tipo de pista?", + "No track types were found.": "No se encontró ningún tipo de pista.", + "No track types found": "No se han encontrado tipos de pista", + "No matching track types found": "No se ha encontrado ningún tipo de pista", + "Enabled": "Activado", + "Disabled": "Desactivado", + "Cancel upload": "Cancelar la carga", + "Type": "Tipo", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", + "Podcast settings saved": "Configuración del podcasts guardado", + "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", + "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", + "You haven't published any episodes!": "¡No has publicado ningún episodio!", + "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", + "Try it now": "Pruebalo ahora", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.

Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.

", + "Playlist preview": "Vista previa de la lista de reproducción", + "Smart Block": "Bloque Inteligente", + "Webstream preview": "Vista previa de la transmisión web", + "You don't have permission to view the library.": "No tienes permiso para ver la biblioteca.", + "Now": "Ahora", + "Click 'New' to create one now.": "Haz clic en 'Nuevo' para crear uno ahora.", + "Click 'Upload' to add some now.": "Haz clic en 'Cargar' para agregar algunos ahora.", + "Feed URL": "URL para el canal", + "Import Date": "Fecha de importación", + "Add New Podcast": "Agregar un nuevo podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "No se puede programar fuera de un programa.\nIntente crear primero un programa.", + "No files have been uploaded yet.": "Aún no se han cargado archivos.", + "On Air": "En directo", + "Off Air": "Fuera de antena", + "Offline": "Sin conexión", + "Nothing scheduled": "Nada programado", + "Click 'Add' to create one now.": "Haga clic en 'Agregar' para crear uno ahora.", + "Please enter your username and password.": "Por favor, introduzca su nombre de usuario y contraseña.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta.", + "That username or email address could not be found.": "No se ha podido encontrar ese nombre de usuario o dirección de correo electrónico.", + "There was a problem with the username or email address you entered.": "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste.", + "Wrong username or password provided. Please try again.": "Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo.", + "You are viewing an older version of %s": "Estas viendo una versión antigua de %s", + "You cannot add tracks to dynamic blocks.": "No puedes añadir pistas a los bloques dinámicos.", + "You don't have permission to delete selected %s(s).": "No tienes permiso para eliminar los %s(s) seleccionados.", + "You can only add tracks to smart block.": "Solo puedes añadir pistas a los bloques inteligentes.", + "Untitled Playlist": "Lista de reproducción sin nombre", + "Untitled Smart Block": "Bloque inteligente sin nombre", + "Unknown Playlist": "Lista de reproducción desconocida", + "Preferences updated.": "Se actualizaron las preferencias.", + "Stream Setting Updated.": "Se actualizaron las configuraciones del stream.", + "path should be specified": "se debe especificar la ruta", + "Problem with Liquidsoap...": "Hay un problema con Liquidsoap...", + "Request method not accepted": "Método de solicitud no aceptado", + "Rebroadcast of show %s from %s at %s": "Retransmisión del programa %s de %s en %s", + "Select cursor": "Elegir cursor", + "Remove cursor": "Eliminar cursor", + "show does not exist": "El show no existe", + "Track Type added successfully!": "¡Tipo de pista añadido con éxito!", + "Track Type updated successfully!": "¡Tipo de pista actualizado con éxito!", + "User added successfully!": "¡Usuario añadido correctamente!", + "User updated successfully!": "¡Usuario actualizado correctamente!", + "Settings updated successfully!": "¡Configuración actualizada correctamente!", + "Untitled Webstream": "Webstream sin título", + "Webstream saved.": "Transmisión web guardada.", + "Invalid form values.": "Los valores en el formulario son inválidos.", + "Invalid character entered": "Se introdujo un caracter inválido", + "Day must be specified": "Se debe especificar un día", + "Time must be specified": "Se debe especificar una hora", + "Must wait at least 1 hour to rebroadcast": "Debes esperar al menos 1 hora para reprogramar", + "Add Autoloading Playlist ?": "¿Programar Lista Auto-Cargada?", + "Select Playlist": "Seleccionar Lista", + "Repeat Playlist Until Show is Full ?": "Repitir lista hasta que termine el programa?", + "Use %s Authentication:": "Usar la autenticación %s:", + "Use Custom Authentication:": "Usar la autenticación personalizada:", + "Custom Username": "Usuario personalizado", + "Custom Password": "Contraseña personalizada", + "Host:": "Host:", + "Port:": "Puerto:", + "Mount:": "Montaje:", + "Username field cannot be empty.": "El campo de usuario no puede estar vacío.", + "Password field cannot be empty.": "El campo de contraseña no puede estar vacío.", + "Record from Line In?": "¿Grabar desde la entrada (line in)?", + "Rebroadcast?": "¿Reprogramar?", + "days": "días", + "Link:": "Enlace:", + "Repeat Type:": "Tipo de repetición:", + "weekly": "semanal", + "every 2 weeks": "cada 2 semanas", + "every 3 weeks": "cada 3 semanas", + "every 4 weeks": "cada 4 semanas", + "monthly": "mensual", + "Select Days:": "Seleccione días:", + "Repeat By:": "Repetir por:", + "day of the month": "día del mes", + "day of the week": "día de la semana", + "Date End:": "Fecha de Finalización:", + "No End?": "¿Sin fin?", + "End date must be after start date": "La fecha de finalización debe ser posterior a la inicio", + "Please select a repeat day": "Por favor, selecciona un día de repeticón", + "Background Colour:": "Color de fondo:", + "Text Colour:": "Color del texto:", + "Current Logo:": "Loco actual:", + "Show Logo:": "Logo del Show:", + "Logo Preview:": "Vista previa del Logo:", + "Name:": "Nombre:", + "Untitled Show": "Show sin nombre", + "URL:": "URL:", + "Genre:": "Género:", + "Description:": "Descripción:", + "Instance Description:": "Descripcin de instancia:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' no concuerda con el formato de tiempo 'HH:mm'", + "Start Time:": "Hora de inicio:", + "In the Future:": "En el Futuro:", + "End Time:": "Hora de fin:", + "Duration:": "Duración:", + "Timezone:": "Zona horaria:", + "Repeats?": "¿Se repite?", + "Cannot create show in the past": "No puedes crear un show en el pasado", + "Cannot modify start date/time of the show that is already started": "No puedes modificar la hora/fecha de inicio de un show que ya empezó", + "End date/time cannot be in the past": "La fecha/hora de finalización no puede ser anterior", + "Cannot have duration < 0m": "No puede tener una duración < 0min", + "Cannot have duration 00h 00m": "No puede tener una duración 00h 00m", + "Cannot have duration greater than 24h": "No puede tener una duración mayor a 24 horas", + "Cannot schedule overlapping shows": "No se pueden programar shows traslapados", + "Search Users:": "Buscar usuarios:", + "DJs:": "Disc-jockeys (DJs):", + "Type Name:": "Escribe un nombre:", + "Code:": "Código:", + "Visibility:": "Visibilidad:", + "Analyze cue points:": "Analizar los puntos de referencia:", + "Code is not unique.": "El código no es único.", + "Username:": "Usuario:", + "Password:": "Contraseña:", + "Verify Password:": "Verificar contraseña:", + "Firstname:": "Nombre:", + "Lastname:": "Apellido:", + "Email:": "Correo electrónico:", + "Mobile Phone:": "Teléfono móvil:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Tipo de usuario:", + "Login name is not unique.": "El nombre de usuario no es único.", + "Delete All Tracks in Library": "Eliminar todas las pistas de la biblioteca", + "Date Start:": "Fecha de Inicio:", + "Title:": "Título:", + "Creator:": "Creador:", + "Album:": "Álbum:", + "Owner:": "Propietario:", + "Select a Type": "Seleccionar un tipo", + "Track Type:": "Tipo de pista:", + "Year:": "Año:", + "Label:": "Sello:", + "Composer:": "Compositor:", + "Conductor:": "Conductor:", + "Mood:": "Ánimo (mood):", + "BPM:": "BPM:", + "Copyright:": "Derechos de autor:", + "ISRC Number:": "Número ISRC:", + "Website:": "Sitio web:", + "Language:": "Idioma:", + "Publish...": "Publicar...", + "Start Time": "Hora de Inicio", + "End Time": "Hora de Finalización", + "Interface Timezone:": "Zona horaria de la interfaz:", + "Station Name": "Nombre de la estación", + "Station Description": "Descripción de la estación", + "Station Logo:": "Logo de la estación:", + "Note: Anything larger than 600x600 will be resized.": "Nota: Cualquiera mayor que 600x600 será redimensionada.", + "Default Crossfade Duration (s):": "Duración predeterminada del Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "Por favor, escribe un valor en segundos (eg. 0.5)", + "Default Fade In (s):": "Fade In perdeterminado (s):", + "Default Fade Out (s):": "Fade Out preseterminado (s):", + "Track Type Upload Default": "Tipo de pista cargado predeterminado", + "Intro Autoloading Playlist": "Lista de reproducción automática", + "Outro Autoloading Playlist": "Lista de reproducción de salida automática", + "Overwrite Podcast Episode Metatags": "Sobrescribir el álbum del podcast", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Genere un bloque inteligente y una lista de reproducción al crear un nuevo podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si esta opción está activada, se generará un nuevo bloque inteligente y una nueva lista de reproducción que coincidan con la pista más reciente de un podcast inmediatamente después de la creación de un nuevo podcast. Tenga en cuenta que la función \"Sobrescribir metatags de episodios de podcast\" también debe estar activada para que los smartblocks encuentren episodios de forma fiable.", + "Public LibreTime API": "API Pública de Libretime", + "Required for embeddable schedule widget.": "Requerido para el widget de programación.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Habilitar esta función permite a Libretime proporcionar datos de programación\n a widgets externos que se pueden integrar en tu sitio web.", + "Default Language": "Idioma predeterminado", + "Station Timezone": "Zona horaria de la Estación", + "Week Starts On": "La semana empieza el", + "Display login button on your Radio Page?": "¿Mostrar el botón de inicio de sesión en su página de radio?", + "Feature Previews": "Vistas previas de funciones", + "Enable this to opt-in to test new features.": "Active esta opción para probar nuevas funciones.", + "Auto Switch Off:": "Desconexión automática:", + "Auto Switch On:": "Encendido automático:", + "Switch Transition Fade (s):": "Transición de desvanecimiento (s):", + "Master Source Host:": "Host Fuente Maestro:", + "Master Source Port:": "Puerto Fuente Maestro:", + "Master Source Mount:": "Montaje Fuente Maestro:", + "Show Source Host:": "Host Fuente del Show:", + "Show Source Port:": "Puerto Fuente del Show:", + "Show Source Mount:": "Montaje Fuente del Show:", + "Login": "Iniciar sesión", + "Password": "Contraseña", + "Confirm new password": "Confirma nueva contraseña", + "Password confirmation does not match your password.": "La confirmación de la contraseña no coincide con tu contraseña.", + "Email": "Correo electrónico", + "Username": "Usuario", + "Reset password": "Restablecer contraseña", + "Back": "Atrás", + "Now Playing": "Reproduciéndose ahora", + "Select Stream:": "Seleccionar Stream:", + "Auto detect the most appropriate stream to use.": "Autodetectar el stream más apropiado a reproducir.", + "Select a stream:": "Selecciona un stream:", + " - Mobile friendly": " - Apto para móviles", + " - The player does not support Opus streams.": " - El reproductor no soporta streams Opus.", + "Embeddable code:": "Código de inserción:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio.", + "Preview:": "Vista previa:", + "Feed Privacy": "Privacidad del Feed", + "Public": "Público", + "Private": "Privado", + "Station Language": "Idioma de la Estación", + "Filter by Show": "Filtrar por Show", + "All My Shows:": "Todos mis shows:", + "My Shows": "Mis Shows", + "Select criteria": "Seleccionar criterio", + "Bit Rate (Kbps)": "Tasa de bits (Kbps)", + "Track Type": "Tipo de pista", + "Sample Rate (kHz)": "Tasa de muestreo (kHz)", + "before": "antes", + "after": "después", + "between": "entre", + "Select unit of time": "Seleccionar la unidad de tiempo", + "minute(s)": "minuto(s)", + "hour(s)": "hora(s)", + "day(s)": "día(s)", + "week(s)": "semana(s)", + "month(s)": "mes(es)", + "year(s)": "año(s)", + "hours": "horas", + "minutes": "minutos", + "items": "elementos", + "time remaining in show": "tiempo restante del programa", + "Randomly": "Aleatorio", + "Newest": "Más nuevo", + "Oldest": "Más antiguo", + "Most recently played": "Reproducido más recientemente", + "Least recently played": "Último reproducido", + "Select Track Type": "Seleccione el tipo de pista", + "Type:": "Tipo:", + "Dynamic": "Dinámico", + "Static": "Estático", + "Select track type": "Selecciona el tipo de pista", + "Allow Repeated Tracks:": "Permitir Pistas Repetidas:", + "Allow last track to exceed time limit:": "Permitir que la última pista supere el límite de tiempo:", + "Sort Tracks:": "Ordenar Pistas:", + "Limit to:": "Limitar a:", + "Generate playlist content and save criteria": "Generar contenido para la lista de reproducción y guardar criterios", + "Shuffle playlist content": "Reproducir de forma aleatoria los contenidos de la lista de reproducción", + "Shuffle": "Reproducción aleatoria", + "Limit cannot be empty or smaller than 0": "El límite no puede estar vacío o ser menor que 0", + "Limit cannot be more than 24 hrs": "El límite no puede ser mayor a 24 horas", + "The value should be an integer": "El valor debe ser un número entero", + "500 is the max item limit value you can set": "500 es el valor máximo de ítems que se pueden configurar", + "You must select Criteria and Modifier": "Debes elegir Criterios y Modificador", + "'Length' should be in '00:00:00' format": "'Longitud' debe estar en formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el valor del texto", + "You must select a time unit for a relative datetime.": "Debe seleccionar una unidad de tiempo para una fecha-hora relativa.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Sólo se permiten números enteros no negativos para una fecha-hora relativa", + "The value has to be numeric": "El valor debe ser numérico", + "The value should be less then 2147483648": "El valor debe ser menor a 2147483648", + "The value cannot be empty": "El valor no puede estar vacío", + "The value should be less than %s characters": "El valor debe ser menor que %s caracteres", + "Value cannot be empty": "El valor no puede estar vacío", + "Stream Label:": "Etiqueta del stream:", + "Artist - Title": "Artísta - Título", + "Show - Artist - Title": "Show - Artista - Título", + "Station name - Show name": "Nombre de la estación - nombre del show", + "Off Air Metadata": "Metadatos Off Air", + "Enable Replay Gain": "Activar ajuste del volumen", + "Replay Gain Modifier": "Modificar ajuste de volumen", + "Hardware Audio Output:": "Salida Hardware Audio:", + "Output Type": "Tipo de Salida", + "Enabled:": "Activado:", + "Mobile:": "Móvil:", + "Stream Type:": "Tipo de stream:", + "Bit Rate:": "Tasa de bits:", + "Service Type:": "Tipo de servicio:", + "Channels:": "Canales:", + "Server": "Servidor", + "Port": "Puerto", + "Mount Point": "Punto de montaje", + "Name": "Nombre", + "URL": "URL", + "Stream URL": "URL de la transmisión", + "Push metadata to your station on TuneIn?": "¿Actualizar metadatos de tu estación en TuneIn?", + "Station ID:": "ID Estación:", + "Partner Key:": "Clave Socio:", + "Partner Id:": "Id Socio:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo.", + "Import Folder:": "Carpeta de importación:", + "Watched Folders:": "Carpetas monitorizadas:", + "Not a valid Directory": "No es un directorio válido", + "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' no se ajusta al formato de fecha '%format%'", + "'%value%' is less than %min% characters long": "'%value%' tiene menos de %min% caracteres", + "'%value%' is more than %max% characters long": "'%value%' tiene más de %max% caracteres", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' no está entre '%min%' y '%max%', inclusive", + "Passwords do not match": "Las contraseñas no coinciden", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", + "\n\nThank you,\nThe %s Team": "\n\nGracias,\nEl equipo %s", + "%s Password Reset": "%s Restablecimiento de Contraseña", + "Cue in and cue out are null.": "Cue in y cue out son nulos.", + "Can't set cue out to be greater than file length.": "No se puede asignar un cue out mayor que la duración del archivo.", + "Can't set cue in to be larger than cue out.": "No se puede asignar un cue in mayor al cue out.", + "Can't set cue out to be smaller than cue in.": "No se puede asignar un cue out menor que el cue in.", + "Upload Time": "Hora de Subida", + "None": "Ninguno", + "Powered by %s": "Desarrollado por %s", + "Select Country": "Seleccionar país", + "livestream": "transmisión en directo", + "Cannot move items out of linked shows": "No se pueden mover elementos de los shows enlazados", + "The schedule you're viewing is out of date! (sched mismatch)": "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "¡La programación que estás viendo está desactualizada! (desfase de instancia)", + "The schedule you're viewing is out of date!": "¡La programación que estás viendo está desactualizada!", + "You are not allowed to schedule show %s.": "No tienes permiso para programar el show %s.", + "You cannot add files to recording shows.": "No puedes agregar pistas a shows en grabación.", + "The show %s is over and cannot be scheduled.": "El show %s terminó y no puede ser programado.", + "The show %s has been previously updated!": "¡El show %s ha sido actualizado anteriormente!", + "Content in linked shows cannot be changed while on air!": "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!", + "Cannot schedule a playlist that contains missing files.": "No se puede programar una lista de reproducción que contenga archivos perdidos.", + "A selected File does not exist!": "¡Un Archivo seleccionado no existe!", + "Shows can have a max length of 24 hours.": "Los shows pueden tener una duración máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "No se pueden programar shows solapados.\nNota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones.", + "Rebroadcast of %s from %s": "Retransmisión de %s desde %s", + "Length needs to be greater than 0 minutes": "La duración debe ser mayor de 0 minutos", + "Length should be of form \"00h 00m\"": "La duración debe estar en el formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "El URL debe estar en el formato \"https://example.org\"", + "URL should be 512 characters or less": "El URL debe ser de 512 caracteres o menos", + "No MIME type found for webstream.": "No se encontró ningún tipo MIME para el webstream.", + "Webstream name cannot be empty": "El nombre del webstream no puede estar vacío", + "Could not parse XSPF playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse PLS playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse M3U playlist": "No se pudo procesar el M3U de la lista de reproducción", + "Invalid webstream - This appears to be a file download.": "Webstream inválido - Esto parece ser una descarga de archivo.", + "Unrecognized stream type: %s": "Tipo de stream no reconocido: %s", + "Record file doesn't exist": "No existe el archivo", + "View Recorded File Metadata": "Ver los metadatos del archivo grabado", + "Schedule Tracks": "Programar pistas", + "Clear Show": "Vaciar Show", + "Cancel Show": "Cancelar Show", + "Edit Instance": "Editar instancia", + "Edit Show": "Editar Show", + "Delete Instance": "Eliminar instancia", + "Delete Instance and All Following": "Eliminar instancia y todas las siguientes", + "Permission denied": "Permiso denegado", + "Can't drag and drop repeating shows": "No es posible arrastrar y soltar shows que se repiten", + "Can't move a past show": "No se puede mover un show pasado", + "Can't move show into past": "No se puede mover un show al pasado", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión.", + "Show was deleted because recorded show does not exist!": "¡El show se eliminó porque el show grabado no existe!", + "Must wait 1 hour to rebroadcast.": "Debe esperar 1 hora para retransmitir.", + "Track": "Pista", + "Played": "Reproducido", + "Auto-generated smartblock for podcast": "Bloque inteligente autogenerado para el podcast", + "Webstreams": "Retransmisiones por Internet" +} \ No newline at end of file diff --git a/webapp/src/locale/fr_FR.json b/webapp/src/locale/fr_FR.json new file mode 100644 index 0000000000..a3ab339fdb --- /dev/null +++ b/webapp/src/locale/fr_FR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "L'année %s doit être comprise entre 1753 et 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s n'est pas une date valide", + "%s:%s:%s is not a valid time": "%s:%s:%s n'est pas une durée valide", + "English": "Anglais", + "Afar": "Afar", + "Abkhazian": "Abkhaze", + "Afrikaans": "Afrikaans", + "Amharic": "Amharique", + "Arabic": "Arabe", + "Assamese": "Assamais", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaïdjanais", + "Bashkir": "Bachkir", + "Belarusian": "Biélorusse", + "Bulgarian": "Bulgare", + "Bihari": "Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibétain", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corse", + "Czech": "Tchèque", + "Welsh": "Gallois", + "Danish": "Danois", + "German": "Allemand", + "Bhutani": "Dzongkha", + "Greek": "Grec", + "Esperanto": "Espéranto", + "Spanish": "Espagnol", + "Estonian": "Estonien", + "Basque": "Basque", + "Persian": "Persan", + "Finnish": "Finnois", + "Fiji": "Fidjien", + "Faeroese": "Féroïen", + "French": "Français", + "Frisian": "Frison", + "Irish": "Irlandais", + "Scots/Gaelic": "Gaélique écossais", + "Galician": "Galicien", + "Guarani": "Guarani", + "Gujarati": "Goudjarati", + "Hausa": "Haoussa", + "Hindi": "Hindi", + "Croatian": "Croate", + "Hungarian": "Hongrois", + "Armenian": "Arménien", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonésien", + "Icelandic": "Islandais", + "Italian": "Italien", + "Hebrew": "Hébreu", + "Japanese": "Japonais", + "Yiddish": "Yiddish", + "Javanese": "Javanais", + "Georgian": "Géorgien", + "Kazakh": "Kazakh", + "Greenlandic": "Groenlandais", + "Cambodian": "Cambodgien", + "Kannada": "Kannada", + "Korean": "Coréen", + "Kashmiri": "Cachemire", + "Kurdish": "Kurde", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Lao", + "Lithuanian": "Lituanien", + "Latvian/Lettish": "Letton", + "Malagasy": "Malgache", + "Maori": "Maori", + "Macedonian": "Macédonien", + "Malayalam": "Malayalam", + "Mongolian": "Mongol", + "Moldavian": "Moldave", + "Marathi": "Marathi", + "Malay": "Malais", + "Maltese": "Maltais", + "Burmese": "Birman", + "Nauru": "Nauru", + "Nepali": "Népalais", + "Dutch": "Néerlandais", + "Norwegian": "Norvégien", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan) / Oromoor / Oriya", + "Punjabi": "Pendjabi", + "Polish": "Polonais", + "Pashto/Pushto": "Pachto", + "Portuguese": "Portugais", + "Quechua": "Quetchua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi", + "Romanian": "Roumain", + "Russian": "Russe", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-croate", + "Singhalese": "Singhalais", + "Slovak": "Slovaque", + "Slovenian": "Slovène", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanais", + "Serbian": "Serbe", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Soundanais", + "Swedish": "Suédois", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Télougou", + "Tajik": "Tadjik", + "Thai": "Thaï", + "Tigrinya": "Tigrigna", + "Turkmen": "Turkmène", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonguien", + "Turkish": "Turc", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainien", + "Urdu": "Ourdou", + "Uzbek": "Ouzbek", + "Vietnamese": "Vietnamien", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinois", + "Zulu": "Zoulou", + "Use station default": "Utiliser les réglages par défaut", + "Upload some tracks below to add them to your library!": "Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s.", + "Click the 'New Show' button and fill out the required fields.": "Cliquez sur le bouton « Nouvelle émission » et remplissez les champs requis.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission ».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n %sCréer une émission dé-liée%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "L'émission actuelle est vide. %sAjouter des pistes audio%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "La prochaine émission est vide. %sAjouter des pistes à cette émission%s.", + "LibreTime media analyzer service": "Service d'analyseur de médias LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire ", + " and ensure that it's running with ": " et assurez-vous qu'il fonctionne avec ", + "If not, try ": "Sinon, essayez ", + "LibreTime playout service": "Service de diffusion LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Vérifiez que le service « libretime-playout » est installé correctement dans ", + "LibreTime liquidsoap service": "Service liquidsoap de LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans ", + "LibreTime Celery Task service": "Service Celery Task de LibreTime", + "Check that the libretime-worker service is installed correctly in ": "Vérifiez que le service « libretime-worker » est installé correctement dans ", + "LibreTime API service": "Service API LibreTime", + "Check that the libretime-api service is installed correctly in ": "Vérifiez que le service « libretime-api » est installé correctement dans ", + "Radio Page": "Page de la radio", + "Calendar": "Calendrier", + "Widgets": "Widgets", + "Player": "Lecteur", + "Weekly Schedule": "Grille hebdomadaire", + "Settings": "Paramètres", + "General": "Général", + "My Profile": "Mon profil", + "Users": "Utilisateurs", + "Track Types": "Types de flux", + "Streams": "Flux", + "Status": "Statut", + "Analytics": "Statistiques", + "Playout History": "Historique de diffusion", + "History Templates": "Modèle d'historique", + "Listener Stats": "Statistiques des auditeurs", + "Show Listener Stats": "Afficher les statistiques des auditeurs", + "Help": "Aide", + "Getting Started": "Mise en route", + "User Manual": "Manuel Utilisateur", + "Get Help Online": "Obtenir de l'aide en ligne", + "Contribute to LibreTime": "Contribuer à LibreTime", + "What's New?": "Qu'est-ce qui a changé ?", + "You are not allowed to access this resource.": "Vous n'avez pas le droit d'accéder à cette ressource.", + "You are not allowed to access this resource. ": "Vous n'avez pas le droit d'accéder à cette ressource. ", + "File does not exist in %s": "Le fichier n'existe pas dans %s", + "Bad request. no 'mode' parameter passed.": "Mauvaise requête. pas de « mode » paramètre passé.", + "Bad request. 'mode' parameter is invalid": "Mauvaise requête. Le paramètre « mode » est invalide", + "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", + "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", + "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :

\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "Page not found.": "Page introuvable.", + "The requested action is not supported.": "L'action requise n'est pas implémentée.", + "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", + "An internal application error has occurred.": "Une erreur interne est survenue.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Aucune piste n'a encore été publiée.", + "%s not found": "%s non trouvé", + "Something went wrong.": "Quelque chose s'est mal passé.", + "Preview": "Prévisualisation", + "Add to Playlist": "Ajouter à la liste", + "Add to Smart Block": "Ajouter un bloc intelligent", + "Delete": "Supprimer", + "Edit...": "Modifier…", + "Download": "Téléchargement", + "Duplicate Playlist": "Dupliquer la liste de lecture", + "Duplicate Smartblock": "Dupliquer le bloc intelligent", + "No action available": "Aucune action disponible", + "You don't have permission to delete selected items.": "Vous n'avez pas la permission de supprimer les éléments sélectionnés.", + "Could not delete file because it is scheduled in the future.": "Impossible de supprimer ce fichier car il est dans la programmation.", + "Could not delete file(s).": "Impossible de supprimer ce(s) fichier(s).", + "Copy of %s": "Copie de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux.", + "Audio Player": "Lecteur Audio", + "Something went wrong!": "Quelque chose s'est mal passé !", + "Recording:": "Enregistrement :", + "Master Stream": "Flux Maitre", + "Live Stream": "Flux en Direct", + "Nothing Scheduled": "Rien de Prévu", + "Current Show:": "Émission en cours :", + "Current": "En ce moment", + "You are running the latest version": "Vous exécutez la dernière version", + "New version available: ": "Nouvelle version disponible : ", + "You have a pre-release version of LibreTime intalled.": "Vous avez une version préliminaire de LibreTime intégrée.", + "A patch update for your LibreTime installation is available.": "Une mise à jour du correctif pour votre installation LibreTime est disponible.", + "A feature update for your LibreTime installation is available.": "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible.", + "A major update for your LibreTime installation is available.": "Une mise à jour majeure de votre installation LibreTime est disponible.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible.", + "Add to current playlist": "Ajouter à la liste de lecture", + "Add to current smart block": "Ajouter au bloc intelligent", + "Adding 1 Item": "Ajouter 1 élément", + "Adding %s Items": "Ajout de %s Elements", + "You can only add tracks to smart blocks.": "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture.", + "Please select a cursor position on timeline.": "S'il vous plaît sélectionner un curseur sur la timeline.", + "You haven't added any tracks": "Vous n'avez pas ajouté de pistes", + "You haven't added any playlists": "Vous n'avez pas ajouté de playlists", + "You haven't added any podcasts": "Vous n'avez pas ajouté de podcast", + "You haven't added any smart blocks": "Vous n'avez ajouté aucun bloc intelligent", + "You haven't added any webstreams": "Vous n'avez ajouté aucun flux web", + "Learn about tracks": "A propos des pistes", + "Learn about playlists": "A propos des playlists", + "Learn about podcasts": "A propos des podcasts", + "Learn about smart blocks": "A propos des blocs intelligents", + "Learn about webstreams": "A propos des flux webs", + "Click 'New' to create one.": "Cliquez sur 'Nouveau' pour en créer un.", + "Add": "Ajouter", + "New": "Nouveau", + "Edit": "Edition", + "Add to Schedule": "Ajouter à la grille", + "Add to next show": "Ajouter à la prochaine émission", + "Add to current show": "Ajouter à l'émission actuelle", + "Add after selected items": "Ajouter après les éléments sélectionnés", + "Publish": "Publier", + "Remove": "Enlever", + "Edit Metadata": "Édition des Méta-Données", + "Add to selected show": "Ajouter à l'émission sélectionnée", + "Select": "Sélection", + "Select this page": "Sélectionner cette page", + "Deselect this page": "Dé-selectionner cette page", + "Deselect all": "Tous déselectioner", + "Are you sure you want to delete the selected item(s)?": "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?", + "Scheduled": "Programmé", + "Tracks": "Pistes", + "Playlist": "Playlist", + "Title": "Titre", + "Creator": "Créateur.ice", + "Album": "Album", + "Bit Rate": "Taux d'echantillonage", + "BPM": "BPM", + "Composer": "Compositeur.ice", + "Conductor": "Conducteur", + "Copyright": "Droit d'Auteur.ice", + "Encoded By": "Encodé Par", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Langue", + "Last Modified": "Dernier Modifié", + "Last Played": "Dernier Joué", + "Length": "Durée", + "Mime": "Mime", + "Mood": "Humeur", + "Owner": "Propriétaire", + "Replay Gain": "Replay Gain", + "Sample Rate": "Taux d'échantillonnage", + "Track Number": "Numéro de la Piste", + "Uploaded": "Téléversé", + "Website": "Site Internet", + "Year": "Année", + "Loading...": "Chargement...", + "All": "Tous", + "Files": "Fichiers", + "Playlists": "Listes de lecture", + "Smart Blocks": "Blocs Intelligents", + "Web Streams": "Flux Web", + "Unknown type: ": "Type inconnu : ", + "Are you sure you want to delete the selected item?": "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?", + "Uploading in progress...": "Téléversement en cours...", + "Retrieving data from the server...": "Récupération des données du serveur...", + "Import": "Importer", + "Imported?": "Importé ?", + "View": "Afficher", + "Error code: ": "Code d'erreur : ", + "Error msg: ": "Message d'erreur : ", + "Input must be a positive number": "L'entrée doit être un nombre positif", + "Input must be a number": "L'entrée doit être un nombre", + "Input must be in the format: yyyy-mm-dd": "L'entrée doit être au format : aaaa-mm-jj", + "Input must be in the format: hh:mm:ss.t": "L'entrée doit être au format : hh:mm:ss.t", + "My Podcast": "Section Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?", + "Open Media Builder": "Ouvrir le Constructeur de Média", + "please put in a time '00:00:00 (.0)'": "veuillez mettre la durée '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Veuillez entrer un temps en secondes. Par exemple 0.5", + "Your browser does not support playing this file type: ": "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : ", + "Dynamic block is not previewable": "Le Bloc dynamique n'est pas prévisualisable", + "Limit to: ": "Limiter à : ", + "Playlist saved": "Liste de Lecture sauvegardé", + "Playlist shuffled": "Playlist en aléatoire", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé».", + "Listener Count on %s: %s": "Nombre d'auditeur·ice·s sur %s : %s", + "Remind me in 1 week": "Me le rappeler dans une semain", + "Remind me never": "Ne jamais me le rappeler", + "Yes, help Airtime": "Oui, aider Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'Image doit être du type jpg, jpeg, png, ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent.", + "Smart block shuffled": "Bloc intelligent mélangé", + "Smart block generated and criteria saved": "Bloc intelligent généré et critère(s) sauvegardé(s)", + "Smart block saved": "Bloc intelligent sauvegardé", + "Processing...": "Traitement en cours ...", + "Select modifier": "Sélectionnez modification", + "contains": "contient", + "does not contain": "ne contient pas", + "is": "est", + "is not": "n'est pas", + "starts with": "commence par", + "ends with": "fini par", + "is greater than": "est plus grand que", + "is less than": "est plus petit que", + "is in the range": "est dans le champ", + "Generate": "Générer", + "Choose Storage Folder": "Choisir un Répertoire de Stockage", + "Choose Folder to Watch": "Choisir un Répertoire à Surveiller", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \nCela supprimera les fichiers de votre médiathèque Airtime !", + "Manage Media Folders": "Gérer les Répertoires des Médias", + "Are you sure you want to remove the watched folder?": "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?", + "This path is currently not accessible.": "Ce chemin n'est pas accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus.", + "Connected to the streaming server": "Connecté au serveur de flux", + "The stream is disabled": "Le flux est désactivé", + "Getting information from the server...": "Obtention des informations à partir du serveur ...", + "Can not connect to the streaming server": "Impossible de se connecter au serveur de flux", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151.", + "For more details, please read the %s%s Manual%s": "Pour plus d'informations, veuillez lire le manuel %s%s %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute.", + "Warning: You cannot change this field while the show is currently playing": "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture", + "No result found": "Aucun résultat trouvé", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter.", + "Specify custom authentication which will work only for this show.": "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission.", + "The show instance doesn't exist anymore!": "L'instance de l'émission n'existe plus !", + "Warning: Shows cannot be re-linked": "Attention : Les émissions ne peuvent pas être liées à nouveau", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur.", + "Show": "Émission", + "Show is empty": "L'émission est vide", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Récupération des données du serveur...", + "This show has no scheduled content.": "Cette émission n'a pas de contenu programmée.", + "This show is not completely filled with content.": "Cette émission n'est pas complètement remplie avec ce contenu.", + "January": "Janvier", + "February": "Fevrier", + "March": "Mars", + "April": "Avril", + "May": "Mai", + "June": "Juin", + "July": "Juillet", + "August": "Août", + "September": "Septembre", + "October": "Octobre", + "November": "Novembre", + "December": "Décembre", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Avr", + "Jun": "Jun", + "Jul": "Jui", + "Aug": "Aou", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Aujourd'hui", + "Day": "Jour", + "Week": "Semaine", + "Month": "Mois", + "Sunday": "Dimanche", + "Monday": "Lundi", + "Tuesday": "Mardi", + "Wednesday": "Mercredi", + "Thursday": "Jeudi", + "Friday": "Vendredi", + "Saturday": "Samedi", + "Sun": "Dim", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Jeu", + "Fri": "Ven", + "Sat": "Sam", + "Shows longer than their scheduled time will be cut off by a following show.": "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes.", + "Cancel Current Show?": "Annuler l'émission en cours ?", + "Stop recording current show?": "Arrêter l'enregistrement de l'émission en cours ?", + "Ok": "Ok", + "Contents of Show": "Contenu de l'émission", + "Remove all content?": "Enlever tous les contenus ?", + "Delete selected item(s)?": "Supprimer le(s) élément(s) sélectionné(s) ?", + "Start": "Début", + "End": "Fin", + "Duration": "Durée", + "Filtering out ": "Filtrage ", + " of ": " de ", + " records": " enregistrements", + "There are no shows scheduled during the specified time period.": "Il n'y a pas d'émissions prévues durant cette période.", + "Cue In": "Point d'entrée", + "Cue Out": "Point de sortie", + "Fade In": "Fondu en entrée", + "Fade Out": "Fondu en sortie", + "Show Empty": "Émission vide", + "Recording From Line In": "Enregistrement à partir de 'Line In'", + "Track preview": "Pré-écoute de la piste", + "Cannot schedule outside a show.": "Vous ne pouvez pas programmer en dehors d'une émission.", + "Moving 1 Item": "Déplacer 1 élément", + "Moving %s Items": "Déplacer %s éléments", + "Save": "Sauvegarder", + "Cancel": "Annuler", + "Fade Editor": "Éditeur de fondu", + "Cue Editor": "Éditeur de points d'E/S", + "Waveform features are available in a browser supporting the Web Audio API": "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio", + "Select all": "Tout Selectionner", + "Select none": "Ne Rien Selectionner", + "Trim overbooked shows": "Enlever les émissions surbookées", + "Remove selected scheduled items": "Supprimer les éléments programmés sélectionnés", + "Jump to the current playing track": "Aller à la piste en cours de lecture", + "Jump to Current": "Aller à l'émission en cours", + "Cancel current show": "Annuler l'émission en cours", + "Open library to add or remove content": "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu", + "Add / Remove Content": "Ajouter/Supprimer Contenu", + "in use": "en cours d'utilisation", + "Disk": "Disque", + "Look in": "Regarder à l'intérieur", + "Open": "Ouvrir", + "Admin": "Administrateur·ice", + "DJ": "DeaJee", + "Program Manager": "Programmateur·ice", + "Guest": "Invité·e", + "Guests can do the following:": "Les Invité·e·s peuvent effectuer les opérations suivantes :", + "View schedule": "Voir le calendrier", + "View show content": "Voir le contenu des émissions", + "DJs can do the following:": "Les DJs peuvent effectuer les opérations suivantes :", + "Manage assigned show content": "Gérer le contenu des émissions attribuées", + "Import media files": "Importer des fichiers multimédias", + "Create playlists, smart blocks, and webstreams": "Créez des listes de lectures, des blocs intelligents et des flux web", + "Manage their own library content": "Gérer le contenu de leur propre audiothèque", + "Program Managers can do the following:": "Les gestionnaires de programmes peuvent faire ceci :", + "View and manage show content": "Afficher et gérer le contenu des émissions", + "Schedule shows": "Programmer des émissions", + "Manage all library content": "Gérez tout le contenu de l'audiothèque", + "Admins can do the following:": "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :", + "Manage preferences": "Gérer les préférences", + "Manage users": "Gérer les utilisateur·ice·s", + "Manage watched folders": "Gérer les dossiers surveillés", + "Send support feedback": "Envoyez vos remarques au support", + "View system status": "Voir l'état du système", + "Access playout history": "Accédez à l'historique diffusion", + "View listener stats": "Voir les statistiques d'audience", + "Show / hide columns": "Montrer / cacher les colonnes", + "Columns": "Colonnes", + "From {from} to {to}": "De {from} à {to}", + "kbps": "kbps", + "yyyy-mm-dd": "aaaa-mm-jj", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Di", + "Mo": "Lu", + "Tu": "Ma", + "We": "Me", + "Th": "Je", + "Fr": "Ve", + "Sa": "Sa", + "Close": "Fermer", + "Hour": "Heure", + "Minute": "Minute", + "Done": "Fait", + "Select files": "Sélectionnez les fichiers", + "Add files to the upload queue and click the start button.": "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer.", + "Filename": "Nom du fichier", + "Size": "Taille", + "Add Files": "Ajouter des fichiers", + "Stop Upload": "Arrêter le Téléversement", + "Start upload": "Démarrer le Téléversement", + "Start Upload": "Démarrer le téléversement", + "Add files": "Ajouter des fichiers", + "Stop current upload": "Arrêter le téléversement en cours", + "Start uploading queue": "Démarrer le téléversement de la file", + "Uploaded %d/%d files": "Téléversement de %d sur %d fichiers", + "N/A": "N/A", + "Drag files here.": "Faites glisser les fichiers ici.", + "File extension error.": "Erreur d'extension du fichier.", + "File size error.": "Erreur de la Taille de Fichier.", + "File count error.": "Erreur de comptage des fichiers.", + "Init error.": "Erreur d'initialisation.", + "HTTP Error.": "Erreur HTTP.", + "Security error.": "Erreur de sécurité.", + "Generic error.": "Erreur générique.", + "IO error.": "Erreur d'E/S.", + "File: %s": "Fichier : %s", + "%d files queued": "%d fichiers en file d'attente", + "File: %f, size: %s, max file size: %m": "Fichier : %f, taille : %s, taille de fichier maximale : %m", + "Upload URL might be wrong or doesn't exist": "L'URL de téléversement est peut être erronée ou inexistante", + "Error: File too large: ": "Erreur : Fichier trop grand : ", + "Error: Invalid file extension: ": "Erreur : extension de fichier non valide : ", + "Set Default": "Définir par défaut", + "Create Entry": "Créer une entrée", + "Edit History Record": "Éditer l'enregistrement de l'historique", + "No Show": "Pas d'émission", + "Copied %s row%s to the clipboard": "Copié %s ligne(s)%s dans le presse papier", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé.", + "New Show": "Nouvelle émission", + "New Log Entry": "Nouvelle entrée de log", + "No data available in table": "Aucune date disponible dans le tableau", + "(filtered from _MAX_ total entries)": "(limité à _MAX_ entrées au total)", + "First": "Premier", + "Last": "Dernier", + "Next": "Suivant", + "Previous": "Précédent", + "Search:": "Rechercher :", + "No matching records found": "Aucun enregistrement correspondant trouvé", + "Drag tracks here from the library": "Glissez ici les pistes depuis la bibliothèque", + "No tracks were played during the selected time period.": "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné.", + "Unpublish": "Annuler la publication", + "No matching results found.": "Aucun résultat correspondant trouvé.", + "Author": "Auteur·ice", + "Description": "Description", + "Link": "Lien", + "Publication Date": "Date de publication", + "Import Status": "Statuts d'importation", + "Actions": "Actions", + "Delete from Library": "Supprimer de la bibliothèque", + "Successfully imported": "Succès de l'importation", + "Show _MENU_": "Afficher _MENU_", + "Show _MENU_ entries": "Afficher les entrées du _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Affiche de _START_ à _END_ sur _TOTAL_ entrées", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Affiche de _START_ à _END_ sur _TOTAL_ pistes", + "Showing _START_ to _END_ of _TOTAL_ track types": "Affiche de _START_ à _END_ sur _TOTAL_ types de piste", + "Showing _START_ to _END_ of _TOTAL_ users": "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs", + "Showing 0 to 0 of 0 entries": "Affiche de 0 à 0 sur 0 entrées", + "Showing 0 to 0 of 0 tracks": "Affiche de 0 à 0 sur 0 pistes", + "Showing 0 to 0 of 0 track types": "Affiche de 0 à 0 sur 0 types de piste", + "(filtered from _MAX_ total track types)": "(limité à _MAX_ types de piste au total)", + "Are you sure you want to delete this tracktype?": "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?", + "No track types were found.": "Aucun type de piste trouvé.", + "No track types found": "Aucun type de piste trouvé", + "No matching track types found": "Aucun type de piste correspondant trouvé", + "Enabled": "Activé", + "Disabled": "Désactivé", + "Cancel upload": "Annuler le téléversement", + "Type": "Type", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", + "Podcast settings saved": "Préférences des podcasts enregistrées", + "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", + "Can't delete yourself!": "Impossible de vous supprimer vous-même !", + "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", + "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", + "Try it now": "Essayer maintenant", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

", + "Playlist preview": "Aperçu de la liste de lecture", + "Smart Block": "Bloc intelligent", + "Webstream preview": "Aperçu du webstream", + "You don't have permission to view the library.": "Vous n'avez pas l'autorisation de voir la bibliothèque.", + "Now": "Maintenant", + "Click 'New' to create one now.": "Cliquez « Nouveau » pour en créer un nouveau.", + "Click 'Upload' to add some now.": "Cliquez « Téléverser » pour en ajouter de nouveaux.", + "Feed URL": "URL du flux", + "Import Date": "Date d'importation", + "Add New Podcast": "Ajouter un nouveau podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "Impossible de programmer en-dehors d'un épisode.\nVeuillez d'abord créer un épisode.", + "No files have been uploaded yet.": "Aucun fichier n'a encore été téléversé.", + "On Air": "À l'antenne", + "Off Air": "Hors antenne", + "Offline": "Éteint", + "Nothing scheduled": "Aucun programme", + "Click 'Add' to create one now.": "Cliquez « Ajouter » pour en créer un nouveau maintenant.", + "Please enter your username and password.": "Veuillez entrer vos identifiants.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré.", + "That username or email address could not be found.": "Cet identifiant ou cette adresse courriel n'ont pu être trouvés.", + "There was a problem with the username or email address you entered.": "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e).", + "Wrong username or password provided. Please try again.": "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau.", + "You are viewing an older version of %s": "Vous visualisez l'ancienne version de %s", + "You cannot add tracks to dynamic blocks.": "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques.", + "You don't have permission to delete selected %s(s).": "Vous n'avez pas la permission de supprimer la sélection %s(s).", + "You can only add tracks to smart block.": "Vous pouvez seulement ajouter des pistes au bloc intelligent.", + "Untitled Playlist": "Liste de lecture sans titre", + "Untitled Smart Block": "Bloc intelligent sans titre", + "Unknown Playlist": "Liste de lecture inconnue", + "Preferences updated.": "Préférences mises à jour.", + "Stream Setting Updated.": "Réglages du Flux mis à jour.", + "path should be specified": "le chemin doit être spécifié", + "Problem with Liquidsoap...": "Problème avec Liquidsoap...", + "Request method not accepted": "Cette méthode de requête ne peut aboutir", + "Rebroadcast of show %s from %s at %s": "Rediffusion de l'émission %s de %s à %s", + "Select cursor": "Sélectionner le Curseur", + "Remove cursor": "Enlever le Curseur", + "show does not exist": "l'émission n'existe pas", + "Track Type added successfully!": "Type de piste ajouté avec succès !", + "Track Type updated successfully!": "Type de piste mis à jour avec succès !", + "User added successfully!": "Utilisateur·ice ajouté avec succès !", + "User updated successfully!": "Utilisateur·ice mis à jour avec succès !", + "Settings updated successfully!": "Paramètres mis à jour avec succès !", + "Untitled Webstream": "Flux Web sans Titre", + "Webstream saved.": "Flux Web sauvegardé.", + "Invalid form values.": "Valeurs du formulaire non valides.", + "Invalid character entered": "Caractère Invalide saisi", + "Day must be specified": "Le Jour doit être spécifié", + "Time must be specified": "La durée doit être spécifiée", + "Must wait at least 1 hour to rebroadcast": "Vous devez attendre au moins 1 heure pour retransmettre", + "Add Autoloading Playlist ?": "Ajouter une playlist automatique ?", + "Select Playlist": "Sélectionner la playlist", + "Repeat Playlist Until Show is Full ?": "Répéter la playlist jusqu'à ce que l'émission soit pleine ?", + "Use %s Authentication:": "Utilisez l'authentification %s :", + "Use Custom Authentication:": "Utiliser l'authentification personnalisée :", + "Custom Username": "Nom d'utilisateur·ice personnalisé", + "Custom Password": "Mot de Passe personnalisé", + "Host:": "Hôte :", + "Port:": "Port :", + "Mount:": "Point de Montage :", + "Username field cannot be empty.": "Le champ Nom d'Utilisateur·ice ne peut pas être vide.", + "Password field cannot be empty.": "Le champ Mot de Passe ne peut être vide.", + "Record from Line In?": "Enregistrer à partir de « Line In » ?", + "Rebroadcast?": "Rediffusion ?", + "days": "jours", + "Link:": "Lien :", + "Repeat Type:": "Type de Répétition :", + "weekly": "hebdomadaire", + "every 2 weeks": "toutes les 2 semaines", + "every 3 weeks": "toutes les 3 semaines", + "every 4 weeks": "toutes les 4 semaines", + "monthly": "mensuel", + "Select Days:": "Sélection des jours :", + "Repeat By:": "Répéter par :", + "day of the month": "jour du mois", + "day of the week": "jour de la semaine", + "Date End:": "Date de fin :", + "No End?": "Sans fin ?", + "End date must be after start date": "La Date de Fin doit être postérieure à la Date de Début", + "Please select a repeat day": "Veuillez sélectionner un jour de répétition", + "Background Colour:": "Couleur de fond :", + "Text Colour:": "Couleur du texte :", + "Current Logo:": "Logo actuel :", + "Show Logo:": "Montrer le logo :", + "Logo Preview:": "Aperçu du logo :", + "Name:": "Nom :", + "Untitled Show": "Émission sans Titre", + "URL:": "URL :", + "Genre:": "Genre :", + "Description:": "Description :", + "Instance Description:": "Description de l'instance :", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ne correspond pas au format de durée 'HH:mm'", + "Start Time:": "Heure de début :", + "In the Future:": "À venir :", + "End Time:": "Temps de fin :", + "Duration:": "Durée :", + "Timezone:": "Fuseau horaire :", + "Repeats?": "Répéter ?", + "Cannot create show in the past": "Impossible de créer une émission dans le passé", + "Cannot modify start date/time of the show that is already started": "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé", + "End date/time cannot be in the past": "La date/heure de Fin ne peut être dans le passé", + "Cannot have duration < 0m": "Ne peut pas avoir une durée < 0m", + "Cannot have duration 00h 00m": "Ne peut pas avoir une durée de 00h 00m", + "Cannot have duration greater than 24h": "Ne peut pas avoir une durée supérieure à 24h", + "Cannot schedule overlapping shows": "Ne peut pas programmer des émissions qui se chevauchent", + "Search Users:": "Recherche d'utilisateur·ice·s :", + "DJs:": "DJs :", + "Type Name:": "Nom du type :", + "Code:": "Code :", + "Visibility:": "Visibilité :", + "Analyze cue points:": "Analyser les points d'entrée et de sortie :", + "Code is not unique.": "Ce code n'est pas unique.", + "Username:": "Utilisateur·ice :", + "Password:": "Mot de Passe :", + "Verify Password:": "Vérification du mot de Passe :", + "Firstname:": "Prénom :", + "Lastname:": "Nom :", + "Email:": "Courriel :", + "Mobile Phone:": "Numéro de mobile :", + "Skype:": "Skype :", + "Jabber:": "Jabber :", + "User Type:": "Type d'utilisateur·ice :", + "Login name is not unique.": "Le Nom de connexion n'est pas unique.", + "Delete All Tracks in Library": "Supprimer toutes les pistes de la librairie", + "Date Start:": "Date de début :", + "Title:": "Titre :", + "Creator:": "Créateur·ice :", + "Album:": "Album :", + "Owner:": "Propriétaire :", + "Select a Type": "Sélectionner un type", + "Track Type:": "Type de piste :", + "Year:": "Année :", + "Label:": "Étiquette :", + "Composer:": "Compositeur·ice :", + "Conductor:": "Conducteur :", + "Mood:": "Atmosphère :", + "BPM:": "BPM :", + "Copyright:": "Copyright :", + "ISRC Number:": "Numéro ISRC :", + "Website:": "Site Internet :", + "Language:": "Langue :", + "Publish...": "Publier...", + "Start Time": "Heure de Début", + "End Time": "Heure de Fin", + "Interface Timezone:": "Fuseau horaire de l'interface :", + "Station Name": "Nom de la Station", + "Station Description": "Description de la station", + "Station Logo:": "Logo de la Station :", + "Note: Anything larger than 600x600 will be resized.": "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné.", + "Default Crossfade Duration (s):": "Durée du fondu enchaîné (en sec) :", + "Please enter a time in seconds (eg. 0.5)": "Veuillez entrer un temps en secondes (ex. 0.5)", + "Default Fade In (s):": "Fondu en Entrée par défaut (en sec) :", + "Default Fade Out (s):": "Fondu en Sortie par défaut (en sec) :", + "Track Type Upload Default": "Type de piste par défaut", + "Intro Autoloading Playlist": "Playlist automatique d'intro", + "Outro Autoloading Playlist": "Playlist automatique d'outro", + "Overwrite Podcast Episode Metatags": "Remplacer les metatags de l'épisode", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement.", + "Public LibreTime API": "API publique LibreTime", + "Required for embeddable schedule widget.": "Requis pour le widget de programmation.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n à des widgets externes pouvant être intégrés à votre site Web.", + "Default Language": "Langage par défaut", + "Station Timezone": "Fuseau horaire de la Station", + "Week Starts On": "La semaine commence le", + "Display login button on your Radio Page?": "Afficher le bouton de connexion sur votre page radio ?", + "Feature Previews": "Aperçus de fonctionnalités", + "Enable this to opt-in to test new features.": "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités.", + "Auto Switch Off:": "Arrêt automatique :", + "Auto Switch On:": "Mise en marche automatique :", + "Switch Transition Fade (s):": "Changement de transition en fondu (en sec) :", + "Master Source Host:": "Hôte source maître :", + "Master Source Port:": "Port source maître :", + "Master Source Mount:": "Point de montage principal :", + "Show Source Host:": "Afficher l'hôte de la source :", + "Show Source Port:": "Afficher le port de la source :", + "Show Source Mount:": "Afficher le point de montage de la source :", + "Login": "Connexion", + "Password": "Mot de Passe", + "Confirm new password": "Confirmez le nouveau mot de passe", + "Password confirmation does not match your password.": "La confirmation du mot de passe ne correspond pas à votre mot de passe.", + "Email": "Courriel", + "Username": "Utilisateur", + "Reset password": "Réinitialisation du Mot de Passe", + "Back": "Retour", + "Now Playing": "En Lecture", + "Select Stream:": "Sélectionnez un flux :", + "Auto detect the most appropriate stream to use.": "Détecter automatiquement le flux le plus approprié à utiliser.", + "Select a stream:": "Sélectionnez un flux :", + " - Mobile friendly": " - Interface mobile", + " - The player does not support Opus streams.": " - Le lecteur ne fonctionne pas avec des flux Opus.", + "Embeddable code:": "Code à intégrer :", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur.", + "Preview:": "Aperçu :", + "Feed Privacy": "Confidentialité du flux", + "Public": "Publique", + "Private": "Privé", + "Station Language": "Langage de la station", + "Filter by Show": "Filtrer par émissions", + "All My Shows:": "Toutes mes émissions :", + "My Shows": "Mes émissions", + "Select criteria": "Sélectionner le critère", + "Bit Rate (Kbps)": "Taux d'échantillonage (Kbps)", + "Track Type": "Type de piste", + "Sample Rate (kHz)": "Taux d'échantillonage (Khz)", + "before": "avant", + "after": "après", + "between": "entre", + "Select unit of time": "Sélectionner une unité de temps", + "minute(s)": "minute(s)", + "hour(s)": "heure(s)", + "day(s)": "jour(s)", + "week(s)": "semaine(s)", + "month(s)": "mois", + "year(s)": "année(s)", + "hours": "heures", + "minutes": "minutes", + "items": "éléments", + "time remaining in show": "temps restant de l'émission", + "Randomly": "Aléatoirement", + "Newest": "Plus récent", + "Oldest": "Plus vieux", + "Most recently played": "Les plus joués récemment", + "Least recently played": "Les moins jouées récemment", + "Select Track Type": "Sélectionner un type de piste", + "Type:": "Type :", + "Dynamic": "Dynamique", + "Static": "Statique", + "Select track type": "Sélectionner un type de piste", + "Allow Repeated Tracks:": "Autoriser la répétition de pistes :", + "Allow last track to exceed time limit:": "Autoriser la dernière piste à dépasser l'horaire :", + "Sort Tracks:": "Trier les pistes :", + "Limit to:": "Limiter à :", + "Generate playlist content and save criteria": "Génération de la liste de lecture et sauvegarde des critères", + "Shuffle playlist content": "Contenu de la liste de lecture alèatoire", + "Shuffle": "Aléatoire", + "Limit cannot be empty or smaller than 0": "La Limite ne peut être vide ou plus petite que 0", + "Limit cannot be more than 24 hrs": "La Limite ne peut être supérieure à 24 heures", + "The value should be an integer": "La valeur doit être un entier", + "500 is the max item limit value you can set": "500 est la valeur maximale de l'élément que vous pouvez définir", + "You must select Criteria and Modifier": "Vous devez sélectionner Critères et Modification", + "'Length' should be in '00:00:00' format": "La 'Durée' doit être au format '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte", + "You must select a time unit for a relative datetime.": "Vous devez sélectionner une unité de temps pour une date relative.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Seuls les entiers positifs sont autorisés pour les dates relatives", + "The value has to be numeric": "La valeur doit être numérique", + "The value should be less then 2147483648": "La valeur doit être inférieure à 2147483648", + "The value cannot be empty": "La valeur ne peut pas être vide", + "The value should be less than %s characters": "La valeur doit être inférieure à %s caractères", + "Value cannot be empty": "La Valeur ne peut pas être vide", + "Stream Label:": "Label du Flux :", + "Artist - Title": "Artiste - Titre", + "Show - Artist - Title": "Émission - Artiste - Titre", + "Station name - Show name": "Nom de la Station - Nom de l'émission", + "Off Air Metadata": "Métadonnées Hors Antenne", + "Enable Replay Gain": "Activer", + "Replay Gain Modifier": "Modifier le Niveau du Gain", + "Hardware Audio Output:": "Sortie audio matérielle :", + "Output Type": "Type de Sortie", + "Enabled:": "Activé :", + "Mobile:": "Mobile :", + "Stream Type:": "Type de Flux :", + "Bit Rate:": "Débit :", + "Service Type:": "Type de service :", + "Channels:": "Canaux :", + "Server": "Serveur", + "Port": "Port", + "Mount Point": "Point de Montage", + "Name": "Nom", + "URL": "URL", + "Stream URL": "URL du flux", + "Push metadata to your station on TuneIn?": "Pousser les métadonnées sur votre station sur TuneIn ?", + "Station ID:": "Identifiant de la station :", + "Partner Key:": "Clé partenaire :", + "Partner Id:": "ID partenaire :", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez.", + "Import Folder:": "Répertoire d'importation :", + "Watched Folders:": "Répertoires Surveillés :", + "Not a valid Directory": "N'est pas un Répertoire valide", + "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", + "'%value%' is no valid email address in the basic format local-part@hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine", + "'%value%' does not fit the date format '%format%'": "'%value%' ne correspond pas au format de la date '%format%'", + "'%value%' is less than %min% characters long": "'%value%' est inférieur à %min% charactères", + "'%value%' is more than %max% characters long": "'%value%' est plus grand de %min% charactères", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' n'est pas entre '%min%' et '%max%', inclusivement", + "Passwords do not match": "Les mots de passe ne correspondent pas", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", + "\n\nThank you,\nThe %s Team": "\n\nMerci,\nL'équipe %s", + "%s Password Reset": "%s Réinitialisation du mot de passe", + "Cue in and cue out are null.": "Le points d'entrée et de sortie sont indéfinis.", + "Can't set cue out to be greater than file length.": "Ne peut pas fixer un point de sortie plus grand que la durée du fichier.", + "Can't set cue in to be larger than cue out.": "Impossible de définir un point d'entrée plus grand que le point de sortie.", + "Can't set cue out to be smaller than cue in.": "Ne peux pas fixer un point de sortie plus petit que le point d'entrée.", + "Upload Time": "Temps de téléversement", + "None": "Vide", + "Powered by %s": "Propulsé par %s", + "Select Country": "Selectionner le Pays", + "livestream": "diffusion en direct", + "Cannot move items out of linked shows": "Vous ne pouvez pas déplacer les éléments sur les émissions liées", + "The schedule you're viewing is out of date! (sched mismatch)": "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)", + "The schedule you're viewing is out of date! (instance mismatch)": "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)", + "The schedule you're viewing is out of date!": "Le calendrier que vous consultez n'est pas à jour !", + "You are not allowed to schedule show %s.": "Vous n'êtes pas autorisé à programme l'émission %s.", + "You cannot add files to recording shows.": "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées.", + "The show %s is over and cannot be scheduled.": "L émission %s est terminé et ne peut pas être programmé.", + "The show %s has been previously updated!": "L'émission %s a été précédemment mise à jour !", + "Content in linked shows cannot be changed while on air!": "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !", + "Cannot schedule a playlist that contains missing files.": "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants.", + "A selected File does not exist!": "Un fichier sélectionne n'existe pas !", + "Shows can have a max length of 24 hours.": "Les émissions peuvent avoir une durée maximale de 24 heures.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Ne peux pas programmer des émissions qui se chevauchent. \nRemarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions.", + "Rebroadcast of %s from %s": "Rediffusion de %s à %s", + "Length needs to be greater than 0 minutes": "La durée doit être supérieure à 0 minute", + "Length should be of form \"00h 00m\"": "La durée doit être de la forme \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL doit être de la forme \"https://example.org\"", + "URL should be 512 characters or less": "L'URL doit être de 512 caractères ou moins", + "No MIME type found for webstream.": "Aucun type MIME trouvé pour le Flux Web.", + "Webstream name cannot be empty": "Le Nom du Flux Web ne peut être vide", + "Could not parse XSPF playlist": "Impossible d'analyser la Sélection XSPF", + "Could not parse PLS playlist": "Impossible d'analyser la Sélection PLS", + "Could not parse M3U playlist": "Impossible d'analyser la Séléction M3U", + "Invalid webstream - This appears to be a file download.": "Flux Web Invalide - Ceci semble être un fichier téléchargeable.", + "Unrecognized stream type: %s": "Type de flux non reconnu : %s", + "Record file doesn't exist": "L'enregistrement du fichier n'existe pas", + "View Recorded File Metadata": "Afficher les métadonnées du fichier enregistré", + "Schedule Tracks": "Ajouter des pistes", + "Clear Show": "Vider le contenu de l'émission", + "Cancel Show": "Annuler l'émission", + "Edit Instance": "Modifier cet élément", + "Edit Show": "Édition de l'émission", + "Delete Instance": "Supprimer cet élément", + "Delete Instance and All Following": "Supprimer cet élément et tous les suivants", + "Permission denied": "Permission refusée", + "Can't drag and drop repeating shows": "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois", + "Can't move a past show": "Impossible de déplacer une émission déjà diffusée", + "Can't move show into past": "Impossible de déplacer une émission dans le passé", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions.", + "Show was deleted because recorded show does not exist!": "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !", + "Must wait 1 hour to rebroadcast.": "Doit attendre 1 heure pour retransmettre.", + "Track": "Piste", + "Played": "Joué", + "Auto-generated smartblock for podcast": "Playlist intelligente géré automatiquement pour le podcast", + "Webstreams": "Flux web" +} \ No newline at end of file diff --git a/webapp/src/locale/hr_HR.json b/webapp/src/locale/hr_HR.json new file mode 100644 index 0000000000..847ba38a78 --- /dev/null +++ b/webapp/src/locale/hr_HR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Godina %s mora biti u rasponu od 1753. – 9999.", + "%s-%s-%s is not a valid date": "%s-%s-%s nije ispravan datum", + "%s:%s:%s is not a valid time": "%s:%s:%s nije ispravno vrijeme", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "Koristi standardne podatke stanice", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Stranica radija", + "Calendar": "Kalendar", + "Widgets": "Programčići", + "Player": "Player", + "Weekly Schedule": "Tjedni raspored", + "Settings": "Postavke", + "General": "Opće", + "My Profile": "Moj profil", + "Users": "Korisnici", + "Track Types": "Vrste snimaka", + "Streams": "Prijenosi", + "Status": "Stanje", + "Analytics": "Analitike", + "Playout History": "Povijest reproduciranih pjesama", + "History Templates": "Predlošci za povijest", + "Listener Stats": "Statistika slušatelja", + "Show Listener Stats": "Prikaži statistiku slušatelja", + "Help": "Pomoć", + "Getting Started": "Prvi koraci", + "User Manual": "Korisnički priručnik", + "Get Help Online": "Pomoć na internetu", + "Contribute to LibreTime": "Doprinesi projektu LibreTime", + "What's New?": "Što je novo?", + "You are not allowed to access this resource.": "Ne smiješ pristupiti ovom izvoru.", + "You are not allowed to access this resource. ": "Ne smiješ pristupiti ovom izvoru. ", + "File does not exist in %s": "Datoteka ne postoji u %s", + "Bad request. no 'mode' parameter passed.": "Neispravan zahtjev. Prametar „mode” nije predan.", + "Bad request. 'mode' parameter is invalid": "Neispravan zahtjev. Prametar „mode” je neispravan", + "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", + "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", + "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Stranica nije pronađena.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nije pronađen", + "Something went wrong.": "Dogodila se greška.", + "Preview": "Pregled", + "Add to Playlist": "Dodaj na Popis Pjesama", + "Add to Smart Block": "Dodaj u pametni blok", + "Delete": "Izbriši", + "Edit...": "Uredi …", + "Download": "Preuzimanje", + "Duplicate Playlist": "Dupliciraj playlistu", + "Duplicate Smartblock": "Dupliciraj pametni blok", + "No action available": "Nema dostupnih akcija", + "You don't have permission to delete selected items.": "Nemaš dozvole za brisanje odabrane stavke.", + "Could not delete file because it is scheduled in the future.": "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti.", + "Could not delete file(s).": "Nije bilo moguće izbrisati datoteku(e).", + "Copy of %s": "Kopiranje od %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa.", + "Audio Player": "Audio player", + "Something went wrong!": "Dogodila se greška!", + "Recording:": "Snimanje:", + "Master Stream": "Prijenos mastera", + "Live Stream": "Prijenos uživo", + "Nothing Scheduled": "Ništa nije zakazano", + "Current Show:": "Trenutačna emisija:", + "Current": "Trenutačna", + "You are running the latest version": "Pokrećeš najnoviju verziju", + "New version available: ": "Dostupna je nova verzija: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj u trenutni popis pjesama", + "Add to current smart block": "Dodaj u trenutačni pametni blok", + "Adding 1 Item": "Dodavanje 1 stavke", + "Adding %s Items": "Dodavanje %s stavki", + "You can only add tracks to smart blocks.": "Možeš dodavati samo pjesme u pametne blokove.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste.", + "Please select a cursor position on timeline.": "Odaberi mjesto pokazivača na vremenskoj crti.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "Nova", + "Edit": "Uredi", + "Add to Schedule": "Dodaj rasporedu", + "Add to next show": "Dodaj sljedećoj emisiji", + "Add to current show": "Dodaj trenutačnoj emisiji", + "Add after selected items": "Dodaj nakon odabranih stavki", + "Publish": "Objavi", + "Remove": "Ukloni", + "Edit Metadata": "Uredi metapodatke", + "Add to selected show": "Dodaj odabranoj emisiji", + "Select": "Odaberi", + "Select this page": "Odaberi ovu stranicu", + "Deselect this page": "Odznači ovu stranicu", + "Deselect all": "Odznači sve", + "Are you sure you want to delete the selected item(s)?": "Stvarno želiš izbrisati odabranu(e) stavku(e)?", + "Scheduled": "Zakazano", + "Tracks": "Snimke", + "Playlist": "Playlista", + "Title": "Naslov", + "Creator": "Tvorac", + "Album": "Album", + "Bit Rate": "Brzina prijenosa", + "BPM": "BPM", + "Composer": "Kompozitor", + "Conductor": "Dirigent", + "Copyright": "Autorsko pravo", + "Encoded By": "Kodirano je po", + "Genre": "Žanr", + "ISRC": "ISRC", + "Label": "Etiketa", + "Language": "Jezik", + "Last Modified": "Zadnja promjena", + "Last Played": "Zadnji put svirano", + "Length": "Trajanje", + "Mime": "Vrsta", + "Mood": "Ugođaj", + "Owner": "Vlasnik", + "Replay Gain": "Pojačanje reprodukcije", + "Sample Rate": "Frekvencija", + "Track Number": "Broj snimke", + "Uploaded": "Preneseno", + "Website": "Web stranica", + "Year": "Godina", + "Loading...": "Učitavanje...", + "All": "Sve", + "Files": "Datoteke", + "Playlists": "Playliste", + "Smart Blocks": "Pametni blokovi", + "Web Streams": "Prijenosi", + "Unknown type: ": "Nepoznata vrsta: ", + "Are you sure you want to delete the selected item?": "Stvarno želiš izbrisati odabranu stavku?", + "Uploading in progress...": "Prijenos je u tijeku...", + "Retrieving data from the server...": "Preuzimanje podataka s poslužitelja …", + "Import": "Uvezi", + "Imported?": "Uvezeno?", + "View": "Prikaz", + "Error code: ": "Kod pogreške: ", + "Error msg: ": "Poruka pogreške: ", + "Input must be a positive number": "Unos mora biti pozitivan broj", + "Input must be a number": "Unos mora biti broj", + "Input must be in the format: yyyy-mm-dd": "Unos mora biti u obliku: gggg-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Unos mora biti u obliku: hh:mm:ss.t", + "My Podcast": "Moj Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?", + "Open Media Builder": "Otvori Media Builder", + "please put in a time '00:00:00 (.0)'": "upiši vrijeme „00:00:00 (.0)”", + "Please enter a valid time in seconds. Eg. 0.5": "Upiši ispravno vrijeme u sekundama. Npr. 0,5", + "Your browser does not support playing this file type: ": "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: ", + "Dynamic block is not previewable": "Dinamički blok se ne može pregledati", + "Limit to: ": "Ograniči na: ", + "Playlist saved": "Playlista je spremljena", + "Playlist shuffled": "Playlista je izmiješana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'.", + "Listener Count on %s: %s": "Broj slušatelja %s: %s", + "Remind me in 1 week": "Podsjeti me za 1 tjedan", + "Remind me never": "Nikada me nemoj podsjetiti", + "Yes, help Airtime": "Da, pomažem Airtime-u", + "Image must be one of jpg, jpeg, png, or gif": "Slika mora biti jpg, jpeg, png, ili gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Pametni blok je izmiješan", + "Smart block generated and criteria saved": "Pametni blok je generiran i kriteriji su spremljeni", + "Smart block saved": "Pametni blok je spremljen", + "Processing...": "Obrada...", + "Select modifier": "Odaberi modifikator", + "contains": "sadrži", + "does not contain": "ne sadrži", + "is": "je", + "is not": "nije", + "starts with": "počinje sa", + "ends with": "završava sa", + "is greater than": "je veći od", + "is less than": "je manji od", + "is in the range": "je u rasponu", + "Generate": "Generiraj", + "Choose Storage Folder": "Odaberi mapu za spremanje", + "Choose Folder to Watch": "Odaberi mapu za praćenje", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Stvarno želiš promijeniti mapu za spremanje?\nTo će ukloniti datoteke iz tvoje Airtime medijateke!", + "Manage Media Folders": "Upravljanje Medijske Mape", + "Are you sure you want to remove the watched folder?": "Stvarno želiš ukloniti nadzorsku mapu?", + "This path is currently not accessible.": "Ovaj put nije trenutno dostupan.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni.", + "Connected to the streaming server": "Priključen je na poslužitelju", + "The stream is disabled": "Prijenos je onemogućen", + "Getting information from the server...": "Preuzimanje informacija s poslužitelja …", + "Can not connect to the streaming server": "Ne može se povezati na poslužitelju", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku.", + "Warning: You cannot change this field while the show is currently playing": "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava", + "No result found": "Nema pronađenih rezultata", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju.", + "Specify custom authentication which will work only for this show.": "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju.", + "The show instance doesn't exist anymore!": "Emisija u ovom slučaju više ne postoji!", + "Warning: Shows cannot be re-linked": "Upozorenje: Emisije ne može ponovno se povezati", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima.", + "Show": "Emisija", + "Show is empty": "Emisija je prazna", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Preuzimanje podataka s poslužitelja …", + "This show has no scheduled content.": "Ova emisija nema zakazanog sadržaja.", + "This show is not completely filled with content.": "Ova emisija nije u potpunosti ispunjena sa sadržajem.", + "January": "Siječanj", + "February": "Veljača", + "March": "Ožujak", + "April": "Travanj", + "May": "Svibanj", + "June": "Lipanj", + "July": "Srpanj", + "August": "Kolovoz", + "September": "Rujan", + "October": "Listopad", + "November": "Studeni", + "December": "Prosinac", + "Jan": "Sij", + "Feb": "Vel", + "Mar": "Ožu", + "Apr": "Tra", + "Jun": "Lip", + "Jul": "Srp", + "Aug": "Kol", + "Sep": "Ruj", + "Oct": "Lis", + "Nov": "Stu", + "Dec": "Pro", + "Today": "Danas", + "Day": "Dan", + "Week": "Tjedan", + "Month": "", + "Sunday": "Nedjelja", + "Monday": "Ponedjeljak", + "Tuesday": "Utorak", + "Wednesday": "Srijeda", + "Thursday": "Četvrtak", + "Friday": "Petak", + "Saturday": "Subota", + "Sun": "Ned", + "Mon": "Pon", + "Tue": "Uto", + "Wed": "Sri", + "Thu": "Čet", + "Fri": "Pet", + "Sat": "Sub", + "Shows longer than their scheduled time will be cut off by a following show.": "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom.", + "Cancel Current Show?": "Prekinuti trenutačnu emisiju?", + "Stop recording current show?": "Zaustaviti snimanje emisije?", + "Ok": "U redu", + "Contents of Show": "Sadržaj emisije", + "Remove all content?": "Ukloniti sav sadržaj?", + "Delete selected item(s)?": "Izbrisati odabranu(e) stavku(e)?", + "Start": "Početak", + "End": "Završetak", + "Duration": "Trajanje", + "Filtering out ": "Izdvjanje ", + " of ": " od ", + " records": " snimaka", + "There are no shows scheduled during the specified time period.": "U navedenom vremenskom razdoblju nema zakazanih emisija.", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Postupno pojačavanje glasnoće", + "Fade Out": "Postupno smanjivanje glasnoće", + "Show Empty": "Prazna emisija", + "Recording From Line In": "Snimanje sa Line In", + "Track preview": "Pregled snimaka", + "Cannot schedule outside a show.": "Nije moguće zakazati izvan emisije.", + "Moving 1 Item": "Premještanje 1 stavke", + "Moving %s Items": "Premještanje %s stavki", + "Save": "Spremi", + "Cancel": "Odustani", + "Fade Editor": "Uređivač prijelaza", + "Cue Editor": "Cue Uređivač", + "Waveform features are available in a browser supporting the Web Audio API": "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku", + "Select all": "Odaberi sve", + "Select none": "Odaberi ništa", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ukloni odabrane zakazane stavke", + "Jump to the current playing track": "Skoči na trenutnu sviranu pjesmu", + "Jump to Current": "Skoči na trenutnu", + "Cancel current show": "Prekini trenutačnu emisiju", + "Open library to add or remove content": "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja", + "Add / Remove Content": "Dodaj / Ukloni Sadržaj", + "in use": "u upotrebi", + "Disk": "Disk", + "Look in": "Pogledaj unutra", + "Open": "Otvori", + "Admin": "Administrator", + "DJ": "Disk-džokej", + "Program Manager": "Voditelj programa", + "Guest": "Gost", + "Guests can do the following:": "Gosti mogu učiniti sljedeće:", + "View schedule": "Prikaži raspored", + "View show content": "Prikaži sadržaj emisije", + "DJs can do the following:": "Disk-džokeji mogu učiniti sljedeće:", + "Manage assigned show content": "Upravljanje dodijeljen sadržaj emisije", + "Import media files": "Uvezi medijske datoteke", + "Create playlists, smart blocks, and webstreams": "Izradi popise naslova, pametnih blokova, i prijenose", + "Manage their own library content": "Upravljanje svoje knjižničnog sadržaja", + "Program Managers can do the following:": "Voditelj programa može:", + "View and manage show content": "Prikaži i upravljaj sadržajem emisije", + "Schedule shows": "Zakaži emisije", + "Manage all library content": "Upravljanje sve sadržaje knjižnica", + "Admins can do the following:": "Administratori mogu učiniti sljedeće:", + "Manage preferences": "Upravljanje postavke", + "Manage users": "Upravljanje korisnike", + "Manage watched folders": "Upravljanje nadziranih datoteke", + "Send support feedback": "Pošalji povratne informacije", + "View system status": "Prikaži stanje sustava", + "Access playout history": "Pristup za povijest puštenih pjesama", + "View listener stats": "Prikaži statistiku slušatelja", + "Show / hide columns": "Prikaži/sakrij stupce", + "Columns": "Stupci", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "gggg-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Ut", + "We": "Sr", + "Th": "Če", + "Fr": "Pe", + "Sa": "Su", + "Close": "Zatvori", + "Hour": "Sat", + "Minute": "Minuta", + "Done": "Gotovo", + "Select files": "Odaberi datoteke", + "Add files to the upload queue and click the start button.": "Dodaj datoteke i klikni na 'Pokreni Upload' dugme.", + "Filename": "", + "Size": "", + "Add Files": "Dodaj Datoteke", + "Stop Upload": "Prekini prijenos", + "Start upload": "Započni prijenos", + "Start Upload": "", + "Add files": "Dodaj datoteke", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Preneseno %d/%d datoteka", + "N/A": "N/A", + "Drag files here.": "Povuci datoteke ovamo.", + "File extension error.": "Pogrešan datotečni nastavak.", + "File size error.": "Pogrešna veličina datoteke.", + "File count error.": "Pogrešan broj datoteka.", + "Init error.": "Init pogreška.", + "HTTP Error.": "HTTP pogreška.", + "Security error.": "Sigurnosna pogreška.", + "Generic error.": "Opća pogreška.", + "IO error.": "IO pogreška.", + "File: %s": "Datoteka: %s", + "%d files queued": "%d datoteka na čekanju", + "File: %f, size: %s, max file size: %m": "Datoteka: %f, veličina: %s, maks veličina datoteke: %m", + "Upload URL might be wrong or doesn't exist": "URL prijenosa možda nije ispravan ili ne postoji", + "Error: File too large: ": "Pogreška: Datoteka je prevelika: ", + "Error: Invalid file extension: ": "Pogreška: Nevažeći datotečni nastavak: ", + "Set Default": "Postavi standardne postavke", + "Create Entry": "Stvaranje Unosa", + "Edit History Record": "Uredi zapis povijesti", + "No Show": "Nema Programa", + "Copied %s row%s to the clipboard": "%s red%s je kopiran u međumemoriju", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "Prvo", + "Last": "", + "Next": "", + "Previous": "Prethodno", + "Search:": "Traži:", + "No matching records found": "", + "Drag tracks here from the library": "Povuci snimke ovamo iz medijateke", + "No tracks were played during the selected time period.": "", + "Unpublish": "Poništi objavu", + "No matching results found.": "", + "Author": "Autor", + "Description": "Opis", + "Link": "", + "Publication Date": "Datum objavljivanja", + "Import Status": "Uvezi stanje", + "Actions": "", + "Delete from Library": "Izbriši iz medijateke", + "Successfully imported": "Uspješno uvezeno", + "Show _MENU_": "Prikaži _MENU_", + "Show _MENU_ entries": "Prikaži unose za _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Prikaz _START_ do _END_ od _TOTAL_ unosa", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Prikaz _START_ do _END_ od _TOTAL_ snimaka", + "Showing _START_ to _END_ of _TOTAL_ track types": "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka", + "Showing _START_ to _END_ of _TOTAL_ users": "Prikaz _START_ do _END_ od _TOTAL_ korisnika", + "Showing 0 to 0 of 0 entries": "Prikaz 0 do 0 od 0 unosa", + "Showing 0 to 0 of 0 tracks": "Prikaz 0 do 0 od 0 snimaka", + "Showing 0 to 0 of 0 track types": "Prikaz 0 do 0 od 0 vrsta snimaka", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Stvarno želiš izbrisati ovu vrstu snimke?", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktivirano", + "Disabled": "Deaktivirano", + "Cancel upload": "Prekini prijenos", + "Type": "Vrsta", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Postavke podcasta su spremljene", + "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", + "Can't delete yourself!": "Ne možeš sebe izbrisati!", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "Pregled playliste", + "Smart Block": "Pametni blok", + "Webstream preview": "Pregled internetskog prijenosa", + "You don't have permission to view the library.": "Nemaš dozvole za prikaz medijateke.", + "Now": "Sada", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "URL feeda", + "Import Date": "Uvezi datum", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "Nije moguće zakazati izvan emisije.\nPokušaj najprije stvoriti emisiju.", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Upiši svoje korisničko ime i lozinku.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo.", + "You are viewing an older version of %s": "Gledaš stariju verziju %s", + "You cannot add tracks to dynamic blocks.": "Ne možeš dodavati pjesme u dinamične blokove.", + "You don't have permission to delete selected %s(s).": "Nemaš dozvole za brisanje odabranih %s.", + "You can only add tracks to smart block.": "Možeš samo dodati pjesme u pametni blok.", + "Untitled Playlist": "Neimenovana playlista", + "Untitled Smart Block": "Neimenovan pametni blok", + "Unknown Playlist": "Nepoznata playlista", + "Preferences updated.": "Postavke su ažurirane.", + "Stream Setting Updated.": "Postavka prijenosa je ažurirana.", + "path should be specified": "put bi trebao biti specificiran", + "Problem with Liquidsoap...": "Problem s Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ponovo emitiraj emisiju %s od %s na %s", + "Select cursor": "Odaberi pokazivač", + "Remove cursor": "Ukloni pokazivač", + "show does not exist": "emisija ne postoji", + "Track Type added successfully!": "Vrsta snimke uspješno dodana!", + "Track Type updated successfully!": "Vrsta snimke uspješno ažurirana!", + "User added successfully!": "Korisnik je uspješno dodan!", + "User updated successfully!": "Korisnik je uspješno ažuriran!", + "Settings updated successfully!": "Postavke su uspješno ažurirane!", + "Untitled Webstream": "Neimenovan internetski prijenos", + "Webstream saved.": "Internetski prijenos je spremljen.", + "Invalid form values.": "Nevažeće vrijednosti obrasca.", + "Invalid character entered": "Uneseni su nevažeći znakovi", + "Day must be specified": "Dan se mora navesti", + "Time must be specified": "Vrijeme mora biti navedeno", + "Must wait at least 1 hour to rebroadcast": "Moraš čekati najmanje 1 sat za re-emitiranje", + "Add Autoloading Playlist ?": "", + "Select Playlist": "Odaberi playlistu", + "Repeat Playlist Until Show is Full ?": "Ponavljati playlistu sve dok emisija nije potpuna?", + "Use %s Authentication:": "Koristi %s autentifikaciju:", + "Use Custom Authentication:": "Koristi prilagođenu autentifikaciju:", + "Custom Username": "Prilagođeno korisničko Ime", + "Custom Password": "Prilagođena lozinka", + "Host:": "Host:", + "Port:": "Priključak:", + "Mount:": "", + "Username field cannot be empty.": "Polje korisničkog imena ne smije biti prazno.", + "Password field cannot be empty.": "'Lozinka' polja ne smije ostati prazno.", + "Record from Line In?": "Snimanje sa Line In?", + "Rebroadcast?": "Ponovo emitirati?", + "days": "dani", + "Link:": "Link:", + "Repeat Type:": "Vrsta ponavljanja:", + "weekly": "tjedno", + "every 2 weeks": "svaka 2 tjedna", + "every 3 weeks": "svaka 3 tjedna", + "every 4 weeks": "svaka 4 tjedna", + "monthly": "mjesečno", + "Select Days:": "Odaberi dane:", + "Repeat By:": "Ponavljaj po:", + "day of the month": "dan u mjesecu", + "day of the week": "dan u tjednu", + "Date End:": "Datum završetka:", + "No End?": "Nema Kraja?", + "End date must be after start date": "Datum završetka mora biti nakon datuma početka", + "Please select a repeat day": "Odaberi dan ponavljanja", + "Background Colour:": "Boja pozadine:", + "Text Colour:": "Boja teksta:", + "Current Logo:": "Trenutačni logotip:", + "Show Logo:": "Prikaži logotip:", + "Logo Preview:": "", + "Name:": "Naziv:", + "Untitled Show": "Neimenovana emisija", + "URL:": "URL:", + "Genre:": "Žanr:", + "Description:": "Opis:", + "Instance Description:": "Opis instance:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'", + "Start Time:": "Vrijeme početka:", + "In the Future:": "Ubuduće:", + "End Time:": "Vrijeme završetka:", + "Duration:": "Trajanje:", + "Timezone:": "Vremenska zona:", + "Repeats?": "Ponavljanje?", + "Cannot create show in the past": "Ne može se stvoriti emisija u prošlosti", + "Cannot modify start date/time of the show that is already started": "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela", + "End date/time cannot be in the past": "Datum završetka i vrijeme ne može biti u prošlosti", + "Cannot have duration < 0m": "Ne može trajati kraće od 0 min", + "Cannot have duration 00h 00m": "Ne može trajati 00 h 00 min", + "Cannot have duration greater than 24h": "Ne može trajati duže od 24 h", + "Cannot schedule overlapping shows": "Nije moguće zakazati preklapajuće emisije", + "Search Users:": "Traži korisnike:", + "DJs:": "Disk-džokeji:", + "Type Name:": "Ime vrste:", + "Code:": "Kod:", + "Visibility:": "Vidljivost:", + "Analyze cue points:": "", + "Code is not unique.": "Kod nije jedinstven.", + "Username:": "Korisničko ime:", + "Password:": "Lozinka:", + "Verify Password:": "Potvrdi lozinku:", + "Firstname:": "Ime:", + "Lastname:": "Prezime:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobitel:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Vrsta korisnika:", + "Login name is not unique.": "Ime prijave nije jedinstveno.", + "Delete All Tracks in Library": "Izbriši sve snimke u medijateci", + "Date Start:": "Datum početka:", + "Title:": "Naslov:", + "Creator:": "Tvorac:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "Odaberi jednu vrstu", + "Track Type:": "Vrsta snimke:", + "Year:": "Godina:", + "Label:": "Naljepnica:", + "Composer:": "Kompozitor:", + "Conductor:": "Dirigent:", + "Mood:": "Raspoloženje:", + "BPM:": "BPM:", + "Copyright:": "Autorsko pravo:", + "ISRC Number:": "ISRC Broj:", + "Website:": "Web stranica:", + "Language:": "Jezik:", + "Publish...": "Objavi …", + "Start Time": "Vrijeme početka", + "End Time": "Vrijeme završetka", + "Interface Timezone:": "Vremenska zona sučelja:", + "Station Name": "Ime stanice", + "Station Description": "Opis stanice", + "Station Logo:": "Logotip stanice:", + "Note: Anything larger than 600x600 will be resized.": "Napomena: Sve veća od 600x600 će se mijenjati.", + "Default Crossfade Duration (s):": "Standardno trajanje međuprijelaza (s):", + "Please enter a time in seconds (eg. 0.5)": "Upiši vrijeme u sekundama (npr. 0,5)", + "Default Fade In (s):": "Standardno postupno pojačavanje glasnoće (s):", + "Default Fade Out (s):": "Standardno postupno smanjivanje glasnoće (s):", + "Track Type Upload Default": "Standard za prijenos vrsta snimaka", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Javni LibreTime API", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "Standardni jezik", + "Station Timezone": "Vremenska zona stanice", + "Week Starts On": "Prvi dan tjedna", + "Display login button on your Radio Page?": "", + "Feature Previews": "Pregledi funkcija", + "Enable this to opt-in to test new features.": "Aktiviraj ovo za testiranje novih funkcija.", + "Auto Switch Off:": "Automatsko isključivanje:", + "Auto Switch On:": "Automatsko uključivanje:", + "Switch Transition Fade (s):": "Promijeni postupni prijelaz (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "Prikaži host izvora:", + "Show Source Port:": "Prikaži priključak izvora:", + "Show Source Mount:": "Prikaži pogon izvora:", + "Login": "Prijava", + "Password": "Lozinka", + "Confirm new password": "Potvrdi novu lozinku", + "Password confirmation does not match your password.": "Lozinke koje ste unijeli ne podudaraju se.", + "Email": "E-mail", + "Username": "Korisničko ime", + "Reset password": "Resetuj lozinku", + "Back": "Natrag", + "Now Playing": "Trenutno Izvođena", + "Select Stream:": "Odaberi emisiju:", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "Odaberi jednu emisiju:", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "Ugradiv kod:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "Pregled:", + "Feed Privacy": "Privatnost feeda", + "Public": "Javni", + "Private": "Privatni", + "Station Language": "Jezik stanice", + "Filter by Show": "Filtriraj po emisijama", + "All My Shows:": "Sve moje emisije:", + "My Shows": "", + "Select criteria": "Odaberi kriterije", + "Bit Rate (Kbps)": "Brzina prijenosa (Kbps)", + "Track Type": "Vrsta snimke", + "Sample Rate (kHz)": "Frekvencija (kHz)", + "before": "prije", + "after": "nakon", + "between": "između", + "Select unit of time": "Odaberi vremensku jedinicu", + "minute(s)": "minute", + "hour(s)": "sati", + "day(s)": "dani", + "week(s)": "tjedni", + "month(s)": "mjeseci", + "year(s)": "godine", + "hours": "sati", + "minutes": "minute", + "items": "elementi", + "time remaining in show": "preostalo vrijeme u emisiji", + "Randomly": "Slučajno", + "Newest": "Najnovije", + "Oldest": "Najstarije", + "Most recently played": "Zadnje reproducirane", + "Least recently played": "Najstarije reproducirane", + "Select Track Type": "Odaberi vrstu snimke", + "Type:": "Vrsta:", + "Dynamic": "Dinamički", + "Static": "Statični", + "Select track type": "Odaberi vrstu snimke", + "Allow Repeated Tracks:": "Dozvoli ponavljanje snimaka:", + "Allow last track to exceed time limit:": "Dozvoli da zadnji zapis prekorači vremensko ograničenje:", + "Sort Tracks:": "Redoslijed snimaka:", + "Limit to:": "Ograniči na:", + "Generate playlist content and save criteria": "Generiraj sadržaj playliste i spremi kriterije", + "Shuffle playlist content": "Promiješaj sadržaj playliste", + "Shuffle": "Promiješaj", + "Limit cannot be empty or smaller than 0": "Ograničenje ne može biti prazan ili manji od 0", + "Limit cannot be more than 24 hrs": "Ograničenje ne može biti više od 24 sati", + "The value should be an integer": "Vrijednost bi trebala biti cijeli broj", + "500 is the max item limit value you can set": "500 je max stavku graničnu vrijednost moguće je podesiti", + "You must select Criteria and Modifier": "Moraš odabrati Kriteriju i Modifikaciju", + "'Length' should be in '00:00:00' format": "'Dužina' trebala biti u '00:00:00' obliku", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Vrijednost mora biti numerička", + "The value should be less then 2147483648": "Vrijednost bi trebala biti manja od 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Vrijednost bi trebala biti manja od %s znakova", + "Value cannot be empty": "Vrijednost ne može biti prazna", + "Stream Label:": "Oznaka prijenosa:", + "Artist - Title": "Izvođač – Naslov", + "Show - Artist - Title": "Emisija – Izvođač – Naslov", + "Station name - Show name": "Ime stanice – Ime emisije", + "Off Air Metadata": "Off Air metapodaci", + "Enable Replay Gain": "Aktiviraj pojačanje glasnoće", + "Replay Gain Modifier": "Modifikator pojačanje glasnoće", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktivirano:", + "Mobile:": "Mobitel:", + "Stream Type:": "Vrsta prijenosa:", + "Bit Rate:": "Brzina prijenosa:", + "Service Type:": "Vrsta usluge:", + "Channels:": "Kanali:", + "Server": "Poslužitelj", + "Port": "Priključak", + "Mount Point": "Točka Montiranja", + "Name": "Ime", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "ID stanice:", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Mapa uvoza:", + "Watched Folders:": "Mape praćenja:", + "Not a valid Directory": "Nije ispravan direktorij", + "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' ne odgovara po obliku datuma '%format%'", + "'%value%' is less than %min% characters long": "'%value%' je manji od %min% dugačko znakova", + "'%value%' is more than %max% characters long": "'%value%' je više od %max% dugačko znakova", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nije između '%min%' i '%max%', uključivo", + "Passwords do not match": "Lozinke se ne podudaraju", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "\n\nHvala,\nTim %s", + "%s Password Reset": "Resetiranje lozinke za %s", + "Cue in and cue out are null.": "Cue in i cue out su nule.", + "Can't set cue out to be greater than file length.": "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke.", + "Can't set cue in to be larger than cue out.": "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'.", + "Upload Time": "Vrijeme prijenosa", + "None": "Ništa", + "Powered by %s": "", + "Select Country": "Odaberi zemlju", + "livestream": "prijenos uživo", + "Cannot move items out of linked shows": "Nije moguće premjestiti stavke iz povezanih emisija", + "The schedule you're viewing is out of date! (sched mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)", + "The schedule you're viewing is out of date! (instance mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost instance)", + "The schedule you're viewing is out of date!": "Raspored koji gledaš nije aktualan!", + "You are not allowed to schedule show %s.": "Ne smijes zakazati rasporednu emisiju %s.", + "You cannot add files to recording shows.": "Ne možeš dodavati datoteke za snimljene emisije.", + "The show %s is over and cannot be scheduled.": "Emisija %s je gotova i ne mogu biti zakazana.", + "The show %s has been previously updated!": "Emisija %s je već prije bila ažurirana!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke.", + "A selected File does not exist!": "Odabrana Datoteka ne postoji!", + "Shows can have a max length of 24 hours.": "Emisija može trajati maksimalno 24 sata.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nije moguće zakazati preklapajuće emisije.\nNapomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja.", + "Rebroadcast of %s from %s": "Ponovo emitiraj emisiju %s od %s", + "Length needs to be greater than 0 minutes": "Duljina mora biti veća od 0 minuta", + "Length should be of form \"00h 00m\"": "Duljina mora biti u obliku „00h 00m”", + "URL should be of form \"https://example.org\"": "URL mora biti u obliku „https://example.org”", + "URL should be 512 characters or less": "URL mora sadržati 512 znakova ili manje", + "No MIME type found for webstream.": "Ne postoji MIME tip za prijenos.", + "Webstream name cannot be empty": "Ime internetskog prijenosa ne može biti prazno", + "Could not parse XSPF playlist": "Nije bilo moguće analizirati XSPF playlistu", + "Could not parse PLS playlist": "Nije bilo moguće analizirati PLS playlistu", + "Could not parse M3U playlist": "Nije bilo moguće analizirati M3U playlistu", + "Invalid webstream - This appears to be a file download.": "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke.", + "Unrecognized stream type: %s": "Nepepoznata vrsta prijenosa: %s", + "Record file doesn't exist": "Datoteka snimke ne postoji", + "View Recorded File Metadata": "Prikaži metapodatke snimljene datoteke", + "Schedule Tracks": "Zakaži snimke", + "Clear Show": "Izbriši emisiju", + "Cancel Show": "Prekini emisiju", + "Edit Instance": "Uredi instancu", + "Edit Show": "Uredi emisiju", + "Delete Instance": "Izbriši instancu", + "Delete Instance and All Following": "Izbriši instancu i sva praćenja", + "Permission denied": "Dozvola odbijena", + "Can't drag and drop repeating shows": "Ne možeš povući i ispustiti ponavljajuće emisije", + "Can't move a past show": "Ne možeš premjestiti događane emisije", + "Can't move show into past": "Ne možeš premjestiti emisiju u prošlosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija.", + "Show was deleted because recorded show does not exist!": "Emisija je izbrisana jer snimljena emisija ne postoji!", + "Must wait 1 hour to rebroadcast.": "Moraš pričekati jedan sat za ponovno emitiranje.", + "Track": "Snimka", + "Played": "Reproducirano", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Internetski prijenosi" +} \ No newline at end of file diff --git a/webapp/src/locale/hu_HU.json b/webapp/src/locale/hu_HU.json new file mode 100644 index 0000000000..9a9fd27d5f --- /dev/null +++ b/webapp/src/locale/hu_HU.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Az évnek %s 1753 - 9999 közötti tartományban kell lennie", + "%s-%s-%s is not a valid date": "%s-%s-%s érvénytelen dátum", + "%s:%s:%s is not a valid time": "%s:%s:%s érvénytelen időpont", + "English": "English", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Belarusian", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali/Bangla", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "magyar", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "Burmese", + "Nauru": "Nauru", + "Nepali": "Nepali", + "Dutch": "Dutch", + "Norwegian": "Norwegian", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan)/Oromoor/Oriya", + "Punjabi": "Punjabi", + "Polish": "Polish", + "Pashto/Pushto": "Pashto/Pushto", + "Portuguese": "Portuguese", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rhaeto-Romance", + "Kirundi": "Kirundi", + "Romanian": "Romanian", + "Russian": "Russian", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-Croatian", + "Singhalese": "Singhalese", + "Slovak": "Slovak", + "Slovenian": "Slovenian", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanian", + "Serbian": "Serbian", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Sundanese", + "Swedish": "Swedish", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Tegulu", + "Tajik": "Tajik", + "Thai": "Thai", + "Tigrinya": "Tigrinya", + "Turkmen": "Turkmen", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonga", + "Turkish": "Turkish", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainian", + "Urdu": "Urdu", + "Uzbek": "Uzbek", + "Vietnamese": "Vietnamese", + "Volapuk": "Volapuk", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinese", + "Zulu": "Zulu", + "Use station default": "Állomás alapértelmezések használata", + "Upload some tracks below to add them to your library!": "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s.", + "Click the 'New Show' button and fill out the required fields.": "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n%sNem hivatkozott műsor létrehozása most%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Rádióoldal", + "Calendar": "Naptár", + "Widgets": "Felületi elemek", + "Player": "Lejátszó", + "Weekly Schedule": "Heti ütemterv", + "Settings": "Beállítások", + "General": "Általános", + "My Profile": "Profilom", + "Users": "Felhasználók", + "Track Types": "", + "Streams": "Adásfolyamok", + "Status": "Állapot", + "Analytics": "Elemzések", + "Playout History": "Lejátszási előzmények", + "History Templates": "Naplózási sablonok", + "Listener Stats": "Hallgatói statisztikák", + "Show Listener Stats": "", + "Help": "Segítség", + "Getting Started": "Első lépések", + "User Manual": "Felhasználói kézikönyv", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "Újdonságok", + "You are not allowed to access this resource.": "Az Ön számára nem érhető el az alábbi erőforrás.", + "You are not allowed to access this resource. ": "Az Ön számára nem érhető el az alábbi erőforrás.", + "File does not exist in %s": "A fájl nem elérhető itt: %s", + "Bad request. no 'mode' parameter passed.": "Helytelen kérés. nincs 'mód' paraméter lett átadva.", + "Bad request. 'mode' parameter is invalid": "Helytelen kérés. 'mód' paraméter érvénytelen.", + "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", + "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", + "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "Page not found.": "Oldal nem található.", + "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", + "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", + "An internal application error has occurred.": "Belső alkalmazáshiba történt.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Még nincsenek közzétett sávok.", + "%s not found": "%s nem található", + "Something went wrong.": "Valami hiba történt.", + "Preview": "Előnézet", + "Add to Playlist": "Hozzáadás lejátszási listához", + "Add to Smart Block": "Hozzáadás Okosblokkhoz", + "Delete": "Törlés", + "Edit...": "Szerkesztés...", + "Download": "Letöltés", + "Duplicate Playlist": "Lejátszási lista duplikálása", + "Duplicate Smartblock": "", + "No action available": "Nincs elérhető művelet", + "You don't have permission to delete selected items.": "Nincs engedélye, hogy törölje a kiválasztott elemeket.", + "Could not delete file because it is scheduled in the future.": "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra.", + "Could not delete file(s).": "Nem lehet törölni a fájlokat.", + "Copy of %s": "%s másolata", + "Please make sure admin user/password is correct on Settings->Streams page.": "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon.", + "Audio Player": "Audió lejátszó", + "Something went wrong!": "Valami hiba történt!", + "Recording:": "Felvétel:", + "Master Stream": "Mester-adásfolyam", + "Live Stream": "Élő adásfolyam", + "Nothing Scheduled": "Nincs semmi ütemezve", + "Current Show:": "Jelenlegi műsor:", + "Current": "Jelenleg", + "You are running the latest version": "Ön a legújabb verziót futtatja", + "New version available: ": "Új verzió érhető el:", + "You have a pre-release version of LibreTime intalled.": "A LibreTime egy kiadás-előtti verziója van telepítve.", + "A patch update for your LibreTime installation is available.": "Egy hibajavító frissítés érhető el a LibreTimehoz.", + "A feature update for your LibreTime installation is available.": "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz.", + "A major update for your LibreTime installation is available.": "Elérhető a LibreTime új verzióját tartalmazó frissítés.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni.", + "Add to current playlist": "Hozzáadás a jelenlegi lejátszási listához", + "Add to current smart block": "Hozzáadás a jelenlegi okosblokkhoz", + "Adding 1 Item": "1 elem hozzáadása", + "Adding %s Items": "%s elem hozzáadása", + "You can only add tracks to smart blocks.": "Csak sávokat lehet hozzáadni az okosblokkokhoz.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz.", + "Please select a cursor position on timeline.": "Válasszon kurzor pozíciót az idővonalon.", + "You haven't added any tracks": "Még nincsenek sávok hozzáadva", + "You haven't added any playlists": "Még nincsenek lejátszási listák hozzáadva", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Még nincsenek okosblokkok hozzáadva", + "You haven't added any webstreams": "Még nincsenek web-adásfolyamok hozzáadva", + "Learn about tracks": "Sávok megismerése", + "Learn about playlists": "Lejátszási listák megismerése", + "Learn about podcasts": "Podcastok megismerése", + "Learn about smart blocks": "Okosblokkok megismerése", + "Learn about webstreams": "Web-adásfolyamok megismerése", + "Click 'New' to create one.": "Létrehozni az „Új” gombra kattintással lehet.", + "Add": "Hozzáadás", + "New": "", + "Edit": "Szerkeszt", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Közzététel", + "Remove": "Eltávolítás", + "Edit Metadata": "Metaadatok szerkesztése", + "Add to selected show": "Hozzáadás a kiválasztott műsorhoz", + "Select": "Kijelölés", + "Select this page": "Jelölje ki ezt az oldalt", + "Deselect this page": "Az oldal kijelölésének megszüntetése", + "Deselect all": "Minden kijelölés törlése", + "Are you sure you want to delete the selected item(s)?": "Biztos benne, hogy törli a kijelölt elemeket?", + "Scheduled": "Ütemezett", + "Tracks": "Sávok", + "Playlist": "Lejátszási lista", + "Title": "Cím", + "Creator": "Előadó/Szerző", + "Album": "Album", + "Bit Rate": "Bitráta", + "BPM": "BPM", + "Composer": "Zeneszerző", + "Conductor": "Karmester", + "Copyright": "Szerzői jog", + "Encoded By": "Kódolva", + "Genre": "Műfaj", + "ISRC": "ISRC", + "Label": "Címke", + "Language": "Nyelv", + "Last Modified": "Utoljára módosítva", + "Last Played": "Utoljára játszott", + "Length": "Hossz", + "Mime": "Mime típus", + "Mood": "Hangulat", + "Owner": "Tulajdonos", + "Replay Gain": "Replay Gain", + "Sample Rate": "Mintavétel", + "Track Number": "Sáv sorszáma", + "Uploaded": "Feltöltve", + "Website": "Honlap", + "Year": "Év", + "Loading...": "Betöltés...", + "All": "Összes", + "Files": "Fájlok", + "Playlists": "Lejátszási listák", + "Smart Blocks": "Okosblokkok", + "Web Streams": "Web-adásfolyamok", + "Unknown type: ": "Ismeretlen típus:", + "Are you sure you want to delete the selected item?": "Biztos benne, hogy törli a kijelölt elemet?", + "Uploading in progress...": "Feltöltés folyamatban...", + "Retrieving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "Import": "", + "Imported?": "", + "View": "Megtekintés", + "Error code: ": "Hibakód:", + "Error msg: ": "Hibaüzenet:", + "Input must be a positive number": "A bemenetnek pozitív számnak kell lennie", + "Input must be a number": "A bemenetnek számnak kell lennie", + "Input must be in the format: yyyy-mm-dd": "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn", + "Input must be in the format: hh:mm:ss.t": "A bemenetet ebben a formában kell megadni: óó:pp:mm.t", + "My Podcast": "Podcastom", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?", + "Open Media Builder": "Médiaépítő megnyitása", + "please put in a time '00:00:00 (.0)'": "kérjük, tegye időbe '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Érvényes időt kell megadni másodpercben. Pl.: 0.5", + "Your browser does not support playing this file type: ": "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:", + "Dynamic block is not previewable": "Dinamikus blokknak nincs előnézete", + "Limit to: ": "Korlátozva:", + "Playlist saved": "Lejátszási lista mentve", + "Playlist shuffled": "Lejátszási lista megkeverve", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”.", + "Listener Count on %s: %s": "%s hallgatóinak száma: %s", + "Remind me in 1 week": "Emlékeztessen 1 hét múlva", + "Remind me never": "Soha ne emlékeztessen", + "Yes, help Airtime": "Igen, segítek az Airtime-nak", + "Image must be one of jpg, jpeg, png, or gif": "A képek formátuma jpg, jpeg, png, vagy gif kell legyen", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Okosblokk megkeverve", + "Smart block generated and criteria saved": "Okosblokk létrehozva és a feltételek mentve", + "Smart block saved": "Okosblokk elmentve", + "Processing...": "Feldolgozás...", + "Select modifier": "Módosító választása", + "contains": "tartalmazza", + "does not contain": "nem tartalmazza", + "is": "pontosan", + "is not": "nem", + "starts with": "kezdődik", + "ends with": "végződik", + "is greater than": "nagyobb, mint", + "is less than": "kisebb, mint", + "is in the range": "tartománya", + "Generate": "Létrehozás", + "Choose Storage Folder": "Válasszon tárolómappát", + "Choose Folder to Watch": "Válasszon figyelt mappát", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Biztos benne, hogy meg akarja változtatni a tárolómappát?\nEzzel eltávolítja a fájlokat a saját Airtime könyvtárából!", + "Manage Media Folders": "Médiamappák kezelése", + "Are you sure you want to remove the watched folder?": "Biztos benne, hogy el akarja távolítani a figyelt mappát?", + "This path is currently not accessible.": "Ez az útvonal jelenleg nem elérhető.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban.", + "Connected to the streaming server": "Csatlakozva az adásfolyam kiszolgálóhoz", + "The stream is disabled": "Az adásfolyam ki van kapcsolva", + "Getting information from the server...": "Információk lekérdezése a kiszolgálóról...", + "Can not connect to the streaming server": "Nem lehet kapcsolódni az adásfolyam kiszolgálójához", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani .", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó.", + "Warning: You cannot change this field while the show is currently playing": "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart", + "No result found": "Nem volt találat", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak.", + "Specify custom authentication which will work only for this show.": "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik.", + "The show instance doesn't exist anymore!": "A műsor példány nem létezik többé!", + "Warning: Shows cannot be re-linked": "Figyelem: Műsorokat nem lehet újrahivatkozni", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve.", + "Show": "Műsor", + "Show is empty": "A műsor üres", + "1m": "1p", + "5m": "5p", + "10m": "10p", + "15m": "15p", + "30m": "30p", + "60m": "60p", + "Retreiving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "This show has no scheduled content.": "Ez a műsor nem tartalmaz ütemezett tartalmat.", + "This show is not completely filled with content.": "Ez a műsor nincs teljesen feltöltve tartalommal.", + "January": "Január", + "February": "Február", + "March": "Március", + "April": "Április", + "May": "Május", + "June": "Június", + "July": "Július", + "August": "Augusztus", + "September": "Szeptember", + "October": "Október", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Már", + "Apr": "Ápr", + "Jun": "Jún", + "Jul": "Júl", + "Aug": "Aug", + "Sep": "Sze", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Ma", + "Day": "Nap", + "Week": "Hét", + "Month": "Hónap", + "Sunday": "Vasárnap", + "Monday": "Hétfő", + "Tuesday": "Kedd", + "Wednesday": "Szerda", + "Thursday": "Csütörtök", + "Friday": "Péntek", + "Saturday": "Szombat", + "Sun": "V", + "Mon": "H", + "Tue": "K", + "Wed": "Sze", + "Thu": "Cs", + "Fri": "P", + "Sat": "Szo", + "Shows longer than their scheduled time will be cut off by a following show.": "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét.", + "Cancel Current Show?": "A jelenlegi műsor megszakítása?", + "Stop recording current show?": "A jelenlegi műsor rögzítésének félbeszakítása?", + "Ok": "Ok", + "Contents of Show": "A műsor tartalmai", + "Remove all content?": "Az összes tartalom eltávolítása?", + "Delete selected item(s)?": "Törli a kiválasztott elemeket?", + "Start": "Kezdés", + "End": "Befejezés", + "Duration": "Időtartam", + "Filtering out ": "Kiszűrve", + " of ": "/", + " records": "felvétel", + "There are no shows scheduled during the specified time period.": "A megadott időszakban nincsenek ütemezett műsorok.", + "Cue In": "Felkeverés", + "Cue Out": "Lekeverés", + "Fade In": "Felúsztatás", + "Fade Out": "Leúsztatás", + "Show Empty": "Üres műsor", + "Recording From Line In": "Rögzítés a vonalbemenetről", + "Track preview": "Sáv előnézete", + "Cannot schedule outside a show.": "Nem lehet ütemezni a műsoron kívül.", + "Moving 1 Item": "1 elem áthelyezése", + "Moving %s Items": "%s elem áthelyezése", + "Save": "Mentés", + "Cancel": "Mégse", + "Fade Editor": "Úsztatási Szerkesztő", + "Cue Editor": "Keverési Szerkesztő", + "Waveform features are available in a browser supporting the Web Audio API": "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók", + "Select all": "Az összes kijelölése", + "Select none": "Kijelölés törlése", + "Trim overbooked shows": "Túlnyúló műsorok levágása", + "Remove selected scheduled items": "A kijelölt ütemezett elemek eltávolítása", + "Jump to the current playing track": "Ugrás a jelenleg játszott sávra", + "Jump to Current": "", + "Cancel current show": "A jelenlegi műsor megszakítása", + "Open library to add or remove content": "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához", + "Add / Remove Content": "Tartalom hozzáadása / eltávolítása", + "in use": "használatban van", + "Disk": "Lemez", + "Look in": "Nézze meg", + "Open": "Megnyitás", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programkezelő", + "Guest": "Vendég", + "Guests can do the following:": "A vendégek a következőket tehetik:", + "View schedule": "Az ütemezés megtekintése", + "View show content": "A műsor tartalmának megtekintése", + "DJs can do the following:": "A DJ-k a következőket tehetik:", + "Manage assigned show content": "Hozzárendelt műsor tartalmának kezelése", + "Import media files": "Médiafájlok hozzáadása", + "Create playlists, smart blocks, and webstreams": "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása", + "Manage their own library content": "Saját médiatár tartalmának kezelése", + "Program Managers can do the following:": "", + "View and manage show content": "Műsortartalom megtekintése és kezelése", + "Schedule shows": "A műsorok ütemzései", + "Manage all library content": "A teljes médiatár tartalmának kezelése", + "Admins can do the following:": "Az Adminisztrátorok a következőket tehetik:", + "Manage preferences": "Beállítások kezelései", + "Manage users": "A felhasználók kezelése", + "Manage watched folders": "A figyelt mappák kezelése", + "Send support feedback": "Támogatási visszajelzés küldése", + "View system status": "A rendszer állapot megtekitnése", + "Access playout history": "Hozzáférés lejátszási előzményekhez", + "View listener stats": "A hallgatói statisztikák megtekintése", + "Show / hide columns": "Az oszlopok megjelenítése/elrejtése", + "Columns": "", + "From {from} to {to}": "{from} és {to} között", + "kbps": "kbps", + "yyyy-mm-dd": "éééé-hh-nn", + "hh:mm:ss.t": "óó:pp:mm.t", + "kHz": "kHz", + "Su": "V", + "Mo": "H", + "Tu": "K", + "We": "Sze", + "Th": "Cs", + "Fr": "P", + "Sa": "Szo", + "Close": "Bezárás", + "Hour": "Óra", + "Minute": "Perc", + "Done": "Kész", + "Select files": "Fájlok kiválasztása", + "Add files to the upload queue and click the start button.": "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra.", + "Filename": "", + "Size": "", + "Add Files": "Fájlok hozzáadása", + "Stop Upload": "Feltöltés megszakítása", + "Start upload": "Feltöltés indítása", + "Start Upload": "", + "Add files": "Fájlok hozzáadása", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Feltöltve %d/%d fájl", + "N/A": "N/A", + "Drag files here.": "Húzza a fájlokat ide.", + "File extension error.": "Fájlkiterjesztési hiba.", + "File size error.": "Fájlméret hiba.", + "File count error.": "Fájl számi hiba.", + "Init error.": "Inicializálási hiba.", + "HTTP Error.": "HTTP Hiba.", + "Security error.": "Biztonsági hiba.", + "Generic error.": "Általános hiba.", + "IO error.": "IO hiba.", + "File: %s": "Fájl: %s", + "%d files queued": "%d várakozó fájl", + "File: %f, size: %s, max file size: %m": "Fájl: %f,méret: %s, legnagyobb fájlméret: %m", + "Upload URL might be wrong or doesn't exist": "A feltöltés URL-je rossz vagy nem létezik", + "Error: File too large: ": "Hiba: A fájl túl nagy:", + "Error: Invalid file extension: ": "Hiba: Érvénytelen fájl kiterjesztés:", + "Set Default": "Alapértelmezés beállítása", + "Create Entry": "Bejegyzés létrehozása", + "Edit History Record": "Előzmények szerkesztése", + "No Show": "Nincs műsor", + "Copied %s row%s to the clipboard": "%s sor%s másolva a vágólapra", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett.", + "New Show": "Új műsor", + "New Log Entry": "Új naplóbejegyzés", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "Következő", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "Közzététel megszüntetése", + "No matching results found.": "", + "Author": "Szerző", + "Description": "Leírás", + "Link": "Hivatkozás", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Engedélyezve", + "Disabled": "Letiltva", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "Okosblokk", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "Adásban", + "Off Air": "Adásszünet", + "Offline": "Kapcsolat nélkül", + "Nothing scheduled": "Nincs semmi ütemezve", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Kérjük adja meg felhasználónevét és jelszavát.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció.", + "That username or email address could not be found.": "A felhasználónév vagy email cím nem található.", + "There was a problem with the username or email address you entered.": "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel.", + "Wrong username or password provided. Please try again.": "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra.", + "You are viewing an older version of %s": "Ön %s egy régebbi verzióját tekinti meg", + "You cannot add tracks to dynamic blocks.": "Dinamikus blokkokhoz nem lehet sávokat hozzáadni", + "You don't have permission to delete selected %s(s).": "A kiválasztott %s törléséhez nincs engedélye.", + "You can only add tracks to smart block.": "Csak sávokat lehet hozzáadni az okosblokkhoz.", + "Untitled Playlist": "Névtelen lejátszási lista", + "Untitled Smart Block": "Névtelen okosblokk", + "Unknown Playlist": "Ismeretlen lejátszási lista", + "Preferences updated.": "Beállítások frissítve.", + "Stream Setting Updated.": "Adásfolyam beállítások frissítve.", + "path should be specified": "az útvonalat meg kell határozni", + "Problem with Liquidsoap...": "Probléma lépett fel a Liquidsoap-al...", + "Request method not accepted": "A kérés módja nem elfogadott", + "Rebroadcast of show %s from %s at %s": "A műsor újraközvetítése %s -tól/-től %s a %s", + "Select cursor": "Kurzor kiválasztása", + "Remove cursor": "Kurzor eltávolítása", + "show does not exist": "a műsor nem található", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Felhasználó sikeresen hozzáadva!", + "User updated successfully!": "Felhasználó sikeresen módosítva!", + "Settings updated successfully!": "Beállítások sikeresen módosítva!", + "Untitled Webstream": "Névtelen adásfolyam", + "Webstream saved.": "Web-adásfolyam mentve.", + "Invalid form values.": "Érvénytelen űrlap értékek.", + "Invalid character entered": "Érvénytelen bevitt karakterek", + "Day must be specified": "A napot meg kell határoznia", + "Time must be specified": "Az időt meg kell határoznia", + "Must wait at least 1 hour to rebroadcast": "Az újraközvetítésre legalább 1 órát kell várni", + "Add Autoloading Playlist ?": "Lejátszási lista automatikus ütemezése?", + "Select Playlist": "Lejátszási lista kiválasztása", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s hitelesítés használata:", + "Use Custom Authentication:": "Egyéni hitelesítés használata:", + "Custom Username": "Egyéni felhasználónév", + "Custom Password": "Egyéni jelszó", + "Host:": "Hoszt:", + "Port:": "Port:", + "Mount:": "Csatolási pont:", + "Username field cannot be empty.": "A felhasználónév mező nem lehet üres.", + "Password field cannot be empty.": "A jelszó mező nem lehet üres.", + "Record from Line In?": "Felvétel a vonalbemenetről?", + "Rebroadcast?": "Újraközvetítés?", + "days": "napok", + "Link:": "Hivatkozás:", + "Repeat Type:": "Ismétlés típusa:", + "weekly": "hetente", + "every 2 weeks": "minden második héten", + "every 3 weeks": "minden harmadik héten", + "every 4 weeks": "minden negyedik héten", + "monthly": "havonta", + "Select Days:": "Napok kiválasztása:", + "Repeat By:": "Által Ismételt:", + "day of the month": "a hónap napja", + "day of the week": "a hét napja", + "Date End:": "Befejezés dátuma:", + "No End?": "Nincs vége?", + "End date must be after start date": "A befejezés dátumának a kezdés dátuma után kell lennie", + "Please select a repeat day": "Kérjük válasszon egy ismétlési napot", + "Background Colour:": "Háttérszín:", + "Text Colour:": "Szövegszín:", + "Current Logo:": "Jelenlegi logó:", + "Show Logo:": "Logó mutatása:", + "Logo Preview:": "Logó előnézete:", + "Name:": "Név:", + "Untitled Show": "Cím nélküli műsor", + "URL:": "URL:", + "Genre:": "Műfaj:", + "Description:": "Leírás:", + "Instance Description:": "Példány leírása:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' nem illeszkedik „ÓÓ:pp” formátumra", + "Start Time:": "Kezdési Idő:", + "In the Future:": "A jövőben:", + "End Time:": "Befejezési idő:", + "Duration:": "Időtartam:", + "Timezone:": "Időzóna:", + "Repeats?": "Ismétlések?", + "Cannot create show in the past": "Műsort nem lehet a múltban létrehozni", + "Cannot modify start date/time of the show that is already started": "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött", + "End date/time cannot be in the past": "A befejezési dátum és időpont nem lehet a múltban", + "Cannot have duration < 0m": "Időtartam nem lehet <0p", + "Cannot have duration 00h 00m": "Időtartam nem lehet 0ó 0p", + "Cannot have duration greater than 24h": "Időtartam nem lehet nagyobb mint 24 óra", + "Cannot schedule overlapping shows": "Nem fedhetik egymást a műsorok", + "Search Users:": "Felhasználók keresése:", + "DJs:": "DJ-k:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Felhasználónév:", + "Password:": "Jelszó:", + "Verify Password:": "Jelszóellenőrzés:", + "Firstname:": "Vezetéknév:", + "Lastname:": "Keresztnév:", + "Email:": "Email:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Felhasználótípus:", + "Login name is not unique.": "A bejelentkezési név nem egyedi.", + "Delete All Tracks in Library": "Az összes sáv törlése a könyvtárból", + "Date Start:": "Kezdés Ideje:", + "Title:": "Cím:", + "Creator:": "Létrehozó:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Év:", + "Label:": "Címke:", + "Composer:": "Zeneszerző:", + "Conductor:": "Karmester:", + "Mood:": "Hangulat:", + "BPM:": "BPM:", + "Copyright:": "Szerzői jog:", + "ISRC Number:": "ISRC Szám:", + "Website:": "Honlap:", + "Language:": "Nyelv:", + "Publish...": "Közzététel...", + "Start Time": "Kezdési Idő", + "End Time": "Befejezési idő", + "Interface Timezone:": "Felület időzónája:", + "Station Name": "Állomásnév", + "Station Description": "Állomás leírás", + "Station Logo:": "Állomás logó:", + "Note: Anything larger than 600x600 will be resized.": "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül.", + "Default Crossfade Duration (s):": "Alapértelmezett Áttünési Időtartam (mp):", + "Please enter a time in seconds (eg. 0.5)": "Idő megadása másodpercben (pl.: 0.5)", + "Default Fade In (s):": "Alapértelmezett Felúsztatás (mp)", + "Default Fade Out (s):": "Alapértelmezett Leúsztatás (mp)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "Podcast album felülírása", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül.", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Kötelező a beágyazható ütemezés felületi elemhez.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára.", + "Default Language": "Alapértelmezett nyelv", + "Station Timezone": "Állomás időzóna", + "Week Starts On": "A hét kezdőnapja", + "Display login button on your Radio Page?": "Bejelentkezési gomb megjelenítése a Rádióoldalon?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Automatikus kikapcsolás:", + "Auto Switch On:": "Automatikus bekapcsolás:", + "Switch Transition Fade (s):": "", + "Master Source Host:": "Mester-forrás hoszt:", + "Master Source Port:": "Mester-forrás port:", + "Master Source Mount:": "Mester-forrás csatolási pont:", + "Show Source Host:": "Műsor-forrás hoszt:", + "Show Source Port:": "Műsor-forrás port:", + "Show Source Mount:": "Műsor-forrás csatolási pont:", + "Login": "Bejelentkezés", + "Password": "Jelszó", + "Confirm new password": "Új jelszó megerősítése", + "Password confirmation does not match your password.": "A megadott jelszavak nem egyeznek meg.", + "Email": "Email", + "Username": "Felhasználónév", + "Reset password": "A jelszó visszaállítása", + "Back": "Vissza", + "Now Playing": "Most játszott", + "Select Stream:": "Adásfolyam kiválasztása:", + "Auto detect the most appropriate stream to use.": "A legmegfelelőbb adásfolyam automatikus felismerése.", + "Select a stream:": "Egy adásfolyam kiválasztása:", + " - Mobile friendly": "- Mobilbarát", + " - The player does not support Opus streams.": "- A lejátszó nem támogatja az Opus adásfolyamokat.", + "Embeddable code:": "Beágyazható kód:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába.", + "Preview:": "Előnézet", + "Feed Privacy": "Hírfolyam adatvédelem", + "Public": "Nyilvános", + "Private": "Privát", + "Station Language": "Állomás nyelve", + "Filter by Show": "Szűrés műsor szerint", + "All My Shows:": "Összes műsorom:", + "My Shows": "Műsoraim", + "Select criteria": "A feltételek megadása", + "Bit Rate (Kbps)": "Bitráta (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Mintavételi ráta (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "óra", + "minutes": "perc", + "items": "elem", + "time remaining in show": "", + "Randomly": "Véletlenszerűen", + "Newest": "Legújabb", + "Oldest": "Legrégebbi", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "Típus:", + "Dynamic": "Dinamikus", + "Static": "Statikus", + "Select track type": "", + "Allow Repeated Tracks:": "Ismétlődő sávok engedélyezése:", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "Sávok rendezése:", + "Limit to:": "Korlátozva:", + "Generate playlist content and save criteria": "Lejátszási lista tartalmának létrehozása és a feltétel mentése", + "Shuffle playlist content": "Véletlenszerű lejátszási lista tartalom", + "Shuffle": "Véletlenszerű", + "Limit cannot be empty or smaller than 0": "A határérték nem lehet üres vagy kisebb, mint 0", + "Limit cannot be more than 24 hrs": "A határérték nem lehet hosszabb, mint 24 óra", + "The value should be an integer": "Az érték csak egész szám lehet", + "500 is the max item limit value you can set": "Maximum 500 elem állítható be", + "You must select Criteria and Modifier": "Feltételt és módosítót kell választani", + "'Length' should be in '00:00:00' format": "A „Hosszúság”-ot „00:00:00” formában kell megadni", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Az értéknek numerikusnak kell lennie", + "The value should be less then 2147483648": "Az értéknek kevesebbnek kell lennie, mint 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Az értéknek rövidebb kell lennie, mint %s karakter", + "Value cannot be empty": "Az érték nem lehet üres", + "Stream Label:": "Adásfolyam címke:", + "Artist - Title": "Előadó - Cím", + "Show - Artist - Title": "Műsor - Előadó - Cím", + "Station name - Show name": "Állomásnév - Műsornév", + "Off Air Metadata": "Adásszünet - Metaadat", + "Enable Replay Gain": "Replay Gain Engedélyezése", + "Replay Gain Modifier": "Replay Gain Módosító", + "Hardware Audio Output:": "Hardver audio kimenet:", + "Output Type": "Kimenet típusa", + "Enabled:": "Engedélyezett:", + "Mobile:": "Mobil:", + "Stream Type:": "Adásfolyam típusa:", + "Bit Rate:": "Bitráta:", + "Service Type:": "Szolgáltatás típusa:", + "Channels:": "Csatornák:", + "Server": "Kiszolgáló", + "Port": "Port", + "Mount Point": "Csatolási pont", + "Name": "Név", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Metadata beküldése saját TuneIn állomásba?", + "Station ID:": "Állomás azonosító:", + "Partner Key:": "Partnerkulcs:", + "Partner Id:": "Partnerazonosító:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni.", + "Import Folder:": "Import mappa:", + "Watched Folders:": "Figyelt Mappák:", + "Not a valid Directory": "Érvénytelen könyvtár", + "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)", + "'%value%' does not fit the date format '%format%'": "'%value%' nem illeszkedik '%format%' dátumformátumra", + "'%value%' is less than %min% characters long": "'%value%' rövidebb, mint %min% karakter", + "'%value%' is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' értéknek '%min%' és '%max%' között kell lennie", + "Passwords do not match": "A jelszavak nem egyeznek meg", + "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", + "\n\nThank you,\nThe %s Team": "\n\nKöszönettel,\n%s Csapat", + "%s Password Reset": "%s jelszó visszaállítása", + "Cue in and cue out are null.": "A fel- és a lekeverés értékei nullák.", + "Can't set cue out to be greater than file length.": "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál.", + "Can't set cue in to be larger than cue out.": "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés.", + "Can't set cue out to be smaller than cue in.": "Nem lehet a lekeverés rövidebb, mint a felkeverés.", + "Upload Time": "Feltöltési idő", + "None": "Nincs", + "Powered by %s": "Működteti a %s", + "Select Country": "Ország kiválasztása", + "livestream": "élő adásfolyam", + "Cannot move items out of linked shows": "Nem tud áthelyezni elemeket a kapcsolódó műsorokból", + "The schedule you're viewing is out of date! (sched mismatch)": "A megtekintett ütemterv elavult! (ütem eltérés)", + "The schedule you're viewing is out of date! (instance mismatch)": "A megtekintett ütemterv elavult! (példány eltérés)", + "The schedule you're viewing is out of date!": "A megtekintett ütemterv időpontja elavult!", + "You are not allowed to schedule show %s.": "Nincs jogosultsága %s műsor ütemezéséhez.", + "You cannot add files to recording shows.": "Nem adhat hozzá fájlokat a rögzített műsorokhoz.", + "The show %s is over and cannot be scheduled.": "A műsor %s véget ért és nem lehet ütemezni.", + "The show %s has been previously updated!": "%s műsor már korábban frissítve lett!", + "Content in linked shows cannot be changed while on air!": "A hivatkozott műsorok tartalma nem módosítható adás közben!", + "Cannot schedule a playlist that contains missing files.": "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz.", + "A selected File does not exist!": "Egy kiválasztott fájl nem létezik!", + "Shows can have a max length of 24 hours.": "A műsorok maximum 24 óra hosszúságúak lehetnek.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Átfedő műsorokat nem lehet ütemezni.\nMegjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére.", + "Rebroadcast of %s from %s": "Úrjaközvetítés %s -tól/-től %s", + "Length needs to be greater than 0 minutes": "A hosszúság értékének nagyobb kell lennie, mint 0 perc", + "Length should be of form \"00h 00m\"": "A hosszúság formája \"00ó 00p\"", + "URL should be of form \"https://example.org\"": "Az URL-t „https://example.org” formában kell megadni", + "URL should be 512 characters or less": "Az URL nem lehet 512 karakternél hosszabb", + "No MIME type found for webstream.": "Nem található MIME típus a web-adásfolyamhoz.", + "Webstream name cannot be empty": "A web-adásfolyam neve nem lehet üres", + "Could not parse XSPF playlist": "Nem sikerült feldolgozni az XSPF lejátszási listát", + "Could not parse PLS playlist": "Nem sikerült feldolgozni a PLS lejátszási listát", + "Could not parse M3U playlist": "Nem sikerült feldolgozni az M3U lejátszási listát", + "Invalid webstream - This appears to be a file download.": "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés.", + "Unrecognized stream type: %s": "Ismeretlen típusú adásfolyam: %s", + "Record file doesn't exist": "Rögzített fájl nem létezik", + "View Recorded File Metadata": "A rögzített fájl metaadatai", + "Schedule Tracks": "Sávok ütemezése", + "Clear Show": "Műsor törlése", + "Cancel Show": "Műsor megszakítása", + "Edit Instance": "Példány szerkesztése:", + "Edit Show": "Műsor szerkesztése", + "Delete Instance": "Példány törlése:", + "Delete Instance and All Following": "Ennek a példánynak és minden utána következő példánynak a törlése", + "Permission denied": "Engedély megtagadva", + "Can't drag and drop repeating shows": "Ismétlődő műsorokat nem lehet megfogni és áthúzni", + "Can't move a past show": "Az elhangzott műsort nem lehet áthelyezni", + "Can't move show into past": "A műsort nem lehet a múltba áthelyezni", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig.", + "Show was deleted because recorded show does not exist!": "A műsor törlésre került, mert a rögzített műsor nem létezik!", + "Must wait 1 hour to rebroadcast.": "Az adás újbóli közvetítésére 1 órát kell várni.", + "Track": "Sáv", + "Played": "Lejátszva", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Web-adásfolyamok" +} \ No newline at end of file diff --git a/webapp/src/locale/it_IT.json b/webapp/src/locale/it_IT.json new file mode 100644 index 0000000000..c1a6636313 --- /dev/null +++ b/webapp/src/locale/it_IT.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "L'anno %s deve essere compreso nella serie 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s non è una data valida", + "%s:%s:%s is not a valid time": "%s:%s:%s non è un ora valida", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendario", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Utenti", + "Track Types": "", + "Streams": "Streams", + "Status": "Stato", + "Analytics": "", + "Playout History": "Storico playlist", + "History Templates": "", + "Listener Stats": "Statistiche ascolto", + "Show Listener Stats": "", + "Help": "Aiuto", + "Getting Started": "Iniziare", + "User Manual": "Manuale utente", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Non è permesso l'accesso alla risorsa.", + "You are not allowed to access this resource. ": "Non è permesso l'accesso alla risorsa. ", + "File does not exist in %s": "Il file non esiste in %s", + "Bad request. no 'mode' parameter passed.": "Richiesta errata. «modalità» parametro non riuscito.", + "Bad request. 'mode' parameter is invalid": "Richiesta errata. «modalità» parametro non valido", + "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", + "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", + "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s non trovato", + "Something went wrong.": "Qualcosa è andato storto.", + "Preview": "Anteprima", + "Add to Playlist": "Aggiungi a playlist", + "Add to Smart Block": "Aggiungi al blocco intelligente", + "Delete": "Elimina", + "Edit...": "", + "Download": "Scarica", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "Nessuna azione disponibile", + "You don't have permission to delete selected items.": "Non ha il permesso per cancellare gli elementi selezionati.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Registra:", + "Master Stream": "Stream Principale", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Niente programmato", + "Current Show:": "Show attuale:", + "Current": "Attuale", + "You are running the latest version": "Sta gestendo l'ultima versione", + "New version available: ": "Nuova versione disponibile:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Aggiungi all'attuale playlist", + "Add to current smart block": "Aggiungi all' attuale blocco intelligente", + "Adding 1 Item": "Sto aggiungendo un elemento", + "Adding %s Items": "Aggiunte %s voci", + "You can only add tracks to smart blocks.": "Puoi solo aggiungere tracce ai blocchi intelligenti.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist.", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Aggiungi ", + "New": "", + "Edit": "Edita", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Rimuovi", + "Edit Metadata": "Edita Metadata", + "Add to selected show": "Aggiungi agli show selezionati", + "Select": "Seleziona", + "Select this page": "Seleziona pagina", + "Deselect this page": "Deseleziona pagina", + "Deselect all": "Deseleziona tutto", + "Are you sure you want to delete the selected item(s)?": "E' sicuro di voler eliminare la/e voce/i selezionata/e?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Titolo", + "Creator": "Creatore", + "Album": "Album", + "Bit Rate": "Velocità di trasmissione", + "BPM": "BPM", + "Composer": "Compositore", + "Conductor": "Conduttore", + "Copyright": "Copyright", + "Encoded By": "Codificato da", + "Genre": "Genere", + "ISRC": "ISRC", + "Label": "Etichetta", + "Language": "Lingua", + "Last Modified": "Ultima modifica", + "Last Played": "Ultima esecuzione", + "Length": "Lunghezza", + "Mime": "Formato (Mime)", + "Mood": "Genere (Mood)", + "Owner": "Proprietario", + "Replay Gain": "Ripeti", + "Sample Rate": "Velocità campione", + "Track Number": "Numero traccia", + "Uploaded": "Caricato", + "Website": "Sito web", + "Year": "Anno", + "Loading...": "Caricamento...", + "All": "Tutto", + "Files": "File", + "Playlists": "Playlist", + "Smart Blocks": "Blocchi intelligenti", + "Web Streams": "Web Streams", + "Unknown type: ": "Tipologia sconosciuta:", + "Are you sure you want to delete the selected item?": "Sei sicuro di voler eliminare gli elementi selezionati?", + "Uploading in progress...": "Caricamento in corso...", + "Retrieving data from the server...": "Dati recuperati dal server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Errore codice:", + "Error msg: ": "Errore messaggio:", + "Input must be a positive number": "L'ingresso deve essere un numero positivo", + "Input must be a number": "L'ingresso deve essere un numero", + "Input must be in the format: yyyy-mm-dd": "L'ingresso deve essere nel formato : yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "L'ingresso deve essere nel formato : hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "inserisca per favore il tempo '00:00:00(.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Il suo browser non sopporta la riproduzione di questa tipologia di file:", + "Dynamic block is not previewable": "Il blocco dinamico non c'è in anteprima", + "Limit to: ": "Limitato a:", + "Playlist saved": "Playlist salvata", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato.", + "Listener Count on %s: %s": "Programma in ascolto su %s: %s", + "Remind me in 1 week": "Ricordamelo tra 1 settimana", + "Remind me never": "Non ricordarmelo", + "Yes, help Airtime": "Si, aiuta Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'immagine deve essere in formato jpg, jpeg, png, oppure gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Blocco intelligente casuale", + "Smart block generated and criteria saved": "Blocco Intelligente generato ed criteri salvati", + "Smart block saved": "Blocco intelligente salvato", + "Processing...": "Elaborazione in corso...", + "Select modifier": "Seleziona modificatore", + "contains": "contiene", + "does not contain": "non contiene", + "is": "è ", + "is not": "non è", + "starts with": "inizia con", + "ends with": "finisce con", + "is greater than": "è più di", + "is less than": "è meno di", + "is in the range": "nella seguenza", + "Generate": "Genere", + "Choose Storage Folder": "Scelga l'archivio delle cartelle", + "Choose Folder to Watch": "Scelga le cartelle da guardare", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "E' sicuro di voler cambiare l'archivio delle cartelle?\n Questo rimuoverà i file dal suo archivio Airtime!", + "Manage Media Folders": "Gestisci cartelle media", + "Are you sure you want to remove the watched folder?": "E' sicuro di voler rimuovere le cartelle guardate?", + "This path is currently not accessible.": "Questo percorso non è accessibile attualmente.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Connesso al server di streaming.", + "The stream is disabled": "Stream disattivato", + "Getting information from the server...": "Ottenere informazioni dal server...", + "Can not connect to the streaming server": "Non può connettersi al server di streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nessun risultato trovato", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi.", + "Specify custom authentication which will work only for this show.": "Imposta autenticazione personalizzata che funzionerà solo per questo show.", + "The show instance doesn't exist anymore!": "L'istanza dello show non esiste più!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Show", + "Show is empty": "Lo show è vuoto", + "1m": "1min", + "5m": "5min", + "10m": "10min", + "15m": "15min", + "30m": "30min", + "60m": "60min", + "Retreiving data from the server...": "Recupera data dal server...", + "This show has no scheduled content.": "Lo show non ha un contenuto programmato.", + "This show is not completely filled with content.": "", + "January": "Gennaio", + "February": "Febbraio", + "March": "Marzo", + "April": "Aprile", + "May": "Maggio", + "June": "Giugno", + "July": "Luglio", + "August": "Agosto", + "September": "Settembre", + "October": "Ottobre", + "November": "Novembre", + "December": "Dicembre", + "Jan": "Gen", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Giu", + "Jul": "Lug", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Ott", + "Nov": "Nov", + "Dec": "Dic", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domenica", + "Monday": "Lunedì", + "Tuesday": "Martedì", + "Wednesday": "Mercoledì", + "Thursday": "Giovedì", + "Friday": "Venerdì", + "Saturday": "Sabato", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Gio", + "Fri": "Ven", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo.", + "Cancel Current Show?": "Cancellare lo show attuale?", + "Stop recording current show?": "Fermare registrazione dello show attuale?", + "Ok": "OK", + "Contents of Show": "Contenuti dello Show", + "Remove all content?": "Rimuovere tutto il contenuto?", + "Delete selected item(s)?": "Cancellare la/e voce/i selezionata/e?", + "Start": "Start", + "End": "Fine", + "Duration": "Durata", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Dissolvenza in entrata", + "Fade Out": "Dissolvenza in uscita", + "Show Empty": "Show vuoto", + "Recording From Line In": "Registrando da Line In", + "Track preview": "Anteprima traccia", + "Cannot schedule outside a show.": "Non può programmare fuori show.", + "Moving 1 Item": "Spostamento di un elemento in corso", + "Moving %s Items": "Spostamento degli elementi %s in corso", + "Save": "Salva", + "Cancel": "Cancella", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Seleziona tutto", + "Select none": "Nessuna selezione", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Rimuovi la voce selezionata", + "Jump to the current playing track": "Salta alla traccia dell'attuale playlist", + "Jump to Current": "", + "Cancel current show": "Cancella show attuale", + "Open library to add or remove content": "Apri biblioteca per aggiungere o rimuovere contenuto", + "Add / Remove Content": "Aggiungi/Rimuovi contenuto", + "in use": "in uso", + "Disk": "Disco", + "Look in": "Cerca in", + "Open": "Apri", + "Admin": "Amministratore ", + "DJ": "DJ", + "Program Manager": "Programma direttore", + "Guest": "Ospite", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Invia supporto feedback:", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "Mostra/nascondi colonne", + "Columns": "", + "From {from} to {to}": "Da {da} a {a}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Dom", + "Mo": "Lun", + "Tu": "Mar", + "We": "Mer", + "Th": "Gio", + "Fr": "Ven", + "Sa": "Sab", + "Close": "Chiudi", + "Hour": "Ore", + "Minute": "Minuti", + "Done": "Completato", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "", + "File size error.": "", + "File count error.": "", + "Init error.": "", + "HTTP Error.": "", + "Security error.": "", + "Generic error.": "", + "IO error.": "", + "File: %s": "", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "", + "Error: Invalid file extension: ": "", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrizione", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Abilitato", + "Disabled": "Disattivato", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "Fuori onda", + "Offline": "Fuori linea", + "Nothing scheduled": "Niente di programmato", + "Click 'Add' to create one now.": "Clicca su «Aggiungi» per crearne uno ora.", + "Please enter your username and password.": "Inserisci il tuo nome utente e la tua password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente.", + "That username or email address could not be found.": "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail.", + "There was a problem with the username or email address you entered.": "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito.", + "Wrong username or password provided. Please try again.": "Nome utente o password forniti errati. Per favore riprovi.", + "You are viewing an older version of %s": "Sta visualizzando una versione precedente di %s", + "You cannot add tracks to dynamic blocks.": "Non può aggiungere tracce al blocco dinamico.", + "You don't have permission to delete selected %s(s).": "Non ha i permessi per cancellare la selezione %s(s).", + "You can only add tracks to smart block.": "Puoi solo aggiungere tracce al blocco intelligente.", + "Untitled Playlist": "Playlist senza nome", + "Untitled Smart Block": "Blocco intelligente senza nome", + "Unknown Playlist": "Playlist sconosciuta", + "Preferences updated.": "Preferenze aggiornate.", + "Stream Setting Updated.": "Aggiornamento impostazioni Stream.", + "path should be specified": "il percorso deve essere specificato", + "Problem with Liquidsoap...": "Problemi con Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ritrasmetti show %s da %s a %s", + "Select cursor": "Seleziona cursore", + "Remove cursor": "Rimuovere il cursore", + "show does not exist": "lo show non esiste", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User aggiunto con successo!", + "User updated successfully!": "User aggiornato con successo!", + "Settings updated successfully!": "", + "Untitled Webstream": "Webstream senza titolo", + "Webstream saved.": "Webstream salvate.", + "Invalid form values.": "Valori non validi.", + "Invalid character entered": "Carattere inserito non valido", + "Day must be specified": "Il giorno deve essere specificato", + "Time must be specified": "L'ora dev'essere specificata", + "Must wait at least 1 hour to rebroadcast": "Aspettare almeno un'ora prima di ritrasmettere", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usa autenticazione clienti:", + "Custom Username": "Personalizza nome utente ", + "Custom Password": "Personalizza Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Il campo nome utente non può rimanere vuoto.", + "Password field cannot be empty.": "Il campo della password non può rimanere vuoto.", + "Record from Line In?": "Registra da Line In?", + "Rebroadcast?": "Ritrasmetti?", + "days": "giorni", + "Link:": "", + "Repeat Type:": "Ripeti tipo:", + "weekly": "settimanalmente", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensilmente", + "Select Days:": "Seleziona giorni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data fine:", + "No End?": "Ripeti all'infinito?", + "End date must be after start date": "La data di fine deve essere posteriore a quella di inizio", + "Please select a repeat day": "", + "Background Colour:": "Colore sfondo:", + "Text Colour:": "Colore testo:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Show senza nome", + "URL:": "URL:", + "Genre:": "Genere:", + "Description:": "Descrizione:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' non si adatta al formato dell'ora 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Durata:", + "Timezone:": "", + "Repeats?": "Ripetizioni?", + "Cannot create show in the past": "Non creare show al passato", + "Cannot modify start date/time of the show that is already started": "Non modificare data e ora di inizio degli slot in eseguzione", + "End date/time cannot be in the past": "L'ora e la data finale non possono precedere quelle iniziali", + "Cannot have duration < 0m": "Non ci può essere una durata <0m", + "Cannot have duration 00h 00m": "Non ci può essere una durata 00h 00m", + "Cannot have duration greater than 24h": "Non ci può essere una durata superiore a 24h", + "Cannot schedule overlapping shows": "Non puoi sovrascrivere gli show", + "Search Users:": "Cerca utenti:", + "DJs:": "Dj:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "", + "Firstname:": "Nome:", + "Lastname:": "Cognome:", + "Email:": "E-mail:", + "Mobile Phone:": "Cellulare:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "tipo di utente:", + "Login name is not unique.": "Il nome utente esiste già .", + "Delete All Tracks in Library": "", + "Date Start:": "Data inizio:", + "Title:": "Titolo:", + "Creator:": "Creatore:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Anno:", + "Label:": "Etichetta:", + "Composer:": "Compositore:", + "Conductor:": "Conduttore:", + "Mood:": "Umore:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Numero ISRC :", + "Website:": "Sito web:", + "Language:": "Lingua:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome stazione", + "Station Description": "", + "Station Logo:": "Logo stazione: ", + "Note: Anything larger than 600x600 will be resized.": "Note: La lunghezze superiori a 600x600 saranno ridimensionate.", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "La settimana inizia il", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Accedi", + "Password": "Password", + "Confirm new password": "Conferma nuova password", + "Password confirmation does not match your password.": "La password di conferma non corrisponde con la sua password.", + "Email": "", + "Username": "Nome utente", + "Reset password": "Reimposta password", + "Back": "", + "Now Playing": "In esecuzione", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tutti i miei show:", + "My Shows": "", + "Select criteria": "Seleziona criteri", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Velocità campione (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ore", + "minutes": "minuti", + "items": "elementi", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamico", + "Static": "Statico", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genera contenuto playlist e salva criteri", + "Shuffle playlist content": "Eseguzione casuale playlist", + "Shuffle": "Casuale", + "Limit cannot be empty or smaller than 0": "Il margine non può essere vuoto o più piccolo di 0", + "Limit cannot be more than 24 hrs": "Il margine non può superare le 24ore", + "The value should be an integer": "Il valore deve essere un numero intero", + "500 is the max item limit value you can set": "500 è il limite massimo di elementi che può inserire", + "You must select Criteria and Modifier": "Devi selezionare da Criteri e Modifica", + "'Length' should be in '00:00:00' format": "La lunghezza deve essere nel formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Il valore deve essere numerico", + "The value should be less then 2147483648": "Il valore deve essere inferiore a 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Il valore deve essere inferiore a %s caratteri", + "Value cannot be empty": "Il valore non deve essere vuoto", + "Stream Label:": "Etichetta Stream:", + "Artist - Title": "Artista - Titolo", + "Show - Artist - Title": "Show - Artista - Titolo", + "Station name - Show name": "Nome stazione - Nome show", + "Off Air Metadata": "", + "Enable Replay Gain": "", + "Replay Gain Modifier": "", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Attiva:", + "Mobile:": "", + "Stream Type:": "Tipo di stream:", + "Bit Rate:": "Velocità di trasmissione: ", + "Service Type:": "Tipo di servizio:", + "Channels:": "Canali:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importa Folder:", + "Watched Folders:": "Folder visionati:", + "Not a valid Directory": "Catalogo non valido", + "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' non va bene con il formato data '%formato%'", + "'%value%' is less than %min% characters long": "'%value%' è più corto di %min% caratteri", + "'%value%' is more than %max% characters long": "'%value%' è più lungo di %max% caratteri", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' non è tra '%min%' e '%max%' compresi", + "Passwords do not match": "", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in e cue out sono nulli.", + "Can't set cue out to be greater than file length.": "Il cue out non può essere più grande della lunghezza del file.", + "Can't set cue in to be larger than cue out.": "Il cue in non può essere più grande del cue out.", + "Can't set cue out to be smaller than cue in.": "Il cue out non può essere più piccolo del cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Seleziona paese", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'orario)", + "The schedule you're viewing is out of date! (instance mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)", + "The schedule you're viewing is out of date!": "Il programma che sta visionando è fuori data!", + "You are not allowed to schedule show %s.": "Non è abilitato all'elenco degli show%s", + "You cannot add files to recording shows.": "Non può aggiungere file a show registrati.", + "The show %s is over and cannot be scheduled.": "Lo show % supera la lunghezza massima e non può essere programmato.", + "The show %s has been previously updated!": "Il programma %s è già stato aggiornato!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Il File selezionato non esiste!", + "Shows can have a max length of 24 hours.": "Gli show possono avere una lunghezza massima di 24 ore.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Non si possono programmare show sovrapposti.\n Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni.", + "Rebroadcast of %s from %s": "Ritrasmetti da %s a %s", + "Length needs to be greater than 0 minutes": "La lunghezza deve superare 0 minuti", + "Length should be of form \"00h 00m\"": "La lunghezza deve essere nella forma \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL deve essere nella forma \"https://example.org\"", + "URL should be 512 characters or less": "URL dove essere di 512 caratteri o meno", + "No MIME type found for webstream.": "Nessun MIME type trovato per le webstream.", + "Webstream name cannot be empty": "Webstream non può essere vuoto", + "Could not parse XSPF playlist": "Non è possibile analizzare le playlist XSPF ", + "Could not parse PLS playlist": "Non è possibile analizzare le playlist PLS", + "Could not parse M3U playlist": "Non è possibile analizzare le playlist M3U", + "Invalid webstream - This appears to be a file download.": "Webstream non valido - Questo potrebbe essere un file scaricato.", + "Unrecognized stream type: %s": "Tipo di stream sconosciuto: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Vedi file registrati Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Modifica il programma", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Non puoi spostare show ripetuti", + "Can't move a past show": "Non puoi spostare uno show passato", + "Can't move show into past": "Non puoi spostare uno show nel passato", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso.", + "Show was deleted because recorded show does not exist!": "Lo show è stato cancellato perché lo show registrato non esiste!", + "Must wait 1 hour to rebroadcast.": "Devi aspettare un'ora prima di ritrasmettere.", + "Track": "", + "Played": "Riprodotti", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/ja_JP.json b/webapp/src/locale/ja_JP.json new file mode 100644 index 0000000000..fb53c1dffe --- /dev/null +++ b/webapp/src/locale/ja_JP.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "%s年は、1753 - 9999の範囲内である必要があります", + "%s-%s-%s is not a valid date": "%s-%s-%sは正しい日付ではありません", + "%s:%s:%s is not a valid time": "%s:%s:%sは正しい時間ではありません", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "カレンダー", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "ユーザー", + "Track Types": "", + "Streams": "配信設定", + "Status": "ステータス", + "Analytics": "", + "Playout History": "配信履歴", + "History Templates": "配信履歴のテンプレート", + "Listener Stats": "リスナー統計", + "Show Listener Stats": "", + "Help": "ヘルプ", + "Getting Started": "はじめに", + "User Manual": "ユーザーマニュアル", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "このリソースへのアクセスは許可されていません。", + "You are not allowed to access this resource. ": "このリソースへのアクセスは許可されていません。", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad Request:パスした「mode」パラメータはありません。", + "Bad request. 'mode' parameter is invalid": "Bad Request:'mode' パラメータが無効です。", + "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", + "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", + "You don't have permission to switch source.": "ソースを切り替える権限がありません。", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s は見つかりませんでした。", + "Something went wrong.": "問題が生じました。", + "Preview": "プレビュー", + "Add to Playlist": "プレイリストに追加", + "Add to Smart Block": "スマートブロックに追加", + "Delete": "削除", + "Edit...": "", + "Download": "ダウンロード", + "Duplicate Playlist": "プレイリストのコピー", + "Duplicate Smartblock": "", + "No action available": "実行可能な操作はありません。", + "You don't have permission to delete selected items.": "選択した項目を削除する権限がありません。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%sのコピー", + "Please make sure admin user/password is correct on Settings->Streams page.": "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。", + "Audio Player": "オーディオプレイヤー", + "Something went wrong!": "", + "Recording:": "録音中:", + "Master Stream": "マスターストリーム", + "Live Stream": "ライブ配信", + "Nothing Scheduled": "何も予約されていません。", + "Current Show:": "現在の番組:", + "Current": "Now Playing", + "You are running the latest version": "最新バージョンを使用しています。", + "New version available: ": "新しいバージョンがあります:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "現在のプレイリストに追加", + "Add to current smart block": "現在のスマートブロックに追加", + "Adding 1 Item": "1個の項目を追加", + "Adding %s Items": " %s個の項目を追加", + "You can only add tracks to smart blocks.": "スマートブロックに追加できるのはトラックのみです。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。", + "Please select a cursor position on timeline.": "タイムライン上のカーソル位置を選択して下さい。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "追加", + "New": "", + "Edit": "編集", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "削除", + "Edit Metadata": "メタデータの編集", + "Add to selected show": "選択した番組へ追加", + "Select": "選択", + "Select this page": "このページを選択", + "Deselect this page": "このページを選択解除", + "Deselect all": "全てを選択解除", + "Are you sure you want to delete the selected item(s)?": "選択した項目を削除してもよろしいですか?", + "Scheduled": "配信予約済み", + "Tracks": "", + "Playlist": "", + "Title": "タイトル", + "Creator": "アーティスト", + "Album": "アルバム", + "Bit Rate": "ビットレート", + "BPM": "BPM ", + "Composer": "作曲者", + "Conductor": "コンダクター", + "Copyright": "著作権", + "Encoded By": "エンコード", + "Genre": "ジャンル", + "ISRC": "ISRC", + "Label": "レーベル", + "Language": "言語", + "Last Modified": "最終修正", + "Last Played": "最終配信日", + "Length": "時間", + "Mime": "MIMEタイプ", + "Mood": "ムード", + "Owner": "所有者", + "Replay Gain": "リプレイゲイン", + "Sample Rate": "サンプルレート", + "Track Number": "トラック番号", + "Uploaded": "アップロード完了", + "Website": "ウェブサイト", + "Year": "年", + "Loading...": "ロード中…", + "All": "全て", + "Files": "ファイル", + "Playlists": "プレイリスト", + "Smart Blocks": "スマートブロック", + "Web Streams": "ウェブ配信", + "Unknown type: ": "種類不明:", + "Are you sure you want to delete the selected item?": "選択した項目を削除してもよろしいですか?", + "Uploading in progress...": "アップロード中…", + "Retrieving data from the server...": "サーバーからデータを取得しています…", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "エラーコード:", + "Error msg: ": "エラーメッセージ:", + "Input must be a positive number": "0より大きい半角数字で入力して下さい。", + "Input must be a number": "半角数字で入力して下さい。", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-ddの形で入力して下さい。", + "Input must be in the format: hh:mm:ss.t": "01:22:33.4の形式で入力して下さい。", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?", + "Open Media Builder": "メディアビルダーを開く", + "please put in a time '00:00:00 (.0)'": "時間は01:22:33(.4)の形式で入力して下さい。", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "お使いのブラウザはこのファイル形式の再生に対応していません:", + "Dynamic block is not previewable": "自動生成スマート・ブロックはプレビューできません", + "Limit to: ": "次の値に制限:", + "Playlist saved": "プレイリストが保存されました。", + "Playlist shuffled": "プレイリストがシャッフルされました。", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。", + "Listener Count on %s: %s": "%sのリスナー視聴数:%s", + "Remind me in 1 week": "1週間前に通知", + "Remind me never": "通知しない", + "Yes, help Airtime": "Rakuten.FMを支援します", + "Image must be one of jpg, jpeg, png, or gif": "画像は、jpg, jpeg, png, または gif の形式にしてください。", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "スマートブロックがシャッフルされました。", + "Smart block generated and criteria saved": "スマートブロックが生成されて基準が保存されました。", + "Smart block saved": "スマートブロックを保存しました。", + "Processing...": "処理中…", + "Select modifier": "条件を選択してください", + "contains": "以下を含む", + "does not contain": "以下を含まない", + "is": "以下と一致する", + "is not": "以下と一致しない", + "starts with": "以下で始まる", + "ends with": "以下で終わる", + "is greater than": "次の値より大きい", + "is less than": "次の値より小さい", + "is in the range": "次の範囲内", + "Generate": "生成", + "Choose Storage Folder": "フォルダを選択してください。", + "Choose Folder to Watch": "同期するフォルダを選択", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!", + "Manage Media Folders": "メディアフォルダの管理", + "Are you sure you want to remove the watched folder?": "同期されているフォルダを削除してもよろしいですか?", + "This path is currently not accessible.": "このパスは現在アクセス不可能です。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。", + "Connected to the streaming server": "ストリーミングサーバーに接続しています。", + "The stream is disabled": "配信が切断されています。", + "Getting information from the server...": "サーバーから情報を取得しています…", + "Can not connect to the streaming server": "ストリーミングサーバーに接続できません。", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。", + "Check this box to automatically switch on Master/Show source upon source connection.": "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。", + "If your Icecast server expects a username of 'source', this field can be left blank.": " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。", + "Warning: You cannot change this field while the show is currently playing": "注意:番組の配信中にこの項目は変更できません。", + "No result found": "結果は見つかりませんでした。", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。", + "Specify custom authentication which will work only for this show.": "この番組に対してのみ有効なカスタム認証を指定してください。", + "The show instance doesn't exist anymore!": "この番組の配信回が存在しません。", + "Warning: Shows cannot be re-linked": "注意:番組は再度リンクできません。", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。", + "Show": "番組", + "Show is empty": "番組内容がありません。", + "1m": "1分", + "5m": "5分", + "10m": "10分", + "15m": "15分", + "30m": "30分", + "60m": "60分", + "Retreiving data from the server...": "サーバーからデータを取得しています…", + "This show has no scheduled content.": "この番組には予約されているコンテンツがありません。", + "This show is not completely filled with content.": "この番組はコンテンツが足りていません。", + "January": "1月", + "February": "2月", + "March": "3月", + "April": "4月", + "May": "5月", + "June": "6月", + "July": "7月", + "August": "8月", + "September": "9月", + "October": "10月", + "November": "11月", + "December": "12月", + "Jan": "1月", + "Feb": "2月", + "Mar": "3月", + "Apr": "4月", + "Jun": "6月", + "Jul": "7月", + "Aug": "8月", + "Sep": "9月", + "Oct": "10月", + "Nov": "11月", + "Dec": "12月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "日曜日", + "Monday": "月曜日", + "Tuesday": "火曜日", + "Wednesday": "水曜日", + "Thursday": "木曜日", + "Friday": "金曜日", + "Saturday": "土曜日", + "Sun": "日", + "Mon": "月", + "Tue": "火", + "Wed": "水", + "Thu": "木", + "Fri": "金", + "Sat": "土", + "Shows longer than their scheduled time will be cut off by a following show.": "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。", + "Cancel Current Show?": "現在の番組をキャンセルしますか?", + "Stop recording current show?": "配信中の番組の録音を中止しますか?", + "Ok": "Ok", + "Contents of Show": "番組内容", + "Remove all content?": "全てのコンテンツを削除しますか?", + "Delete selected item(s)?": "選択した項目を削除しますか?", + "Start": "開始", + "End": "終了", + "Duration": "長さ", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "キューイン", + "Cue Out": "キューアウト", + "Fade In": "フェードイン", + "Fade Out": "フェードアウト", + "Show Empty": "番組内容がありません。", + "Recording From Line In": "ライン入力から録音", + "Track preview": "試聴する", + "Cannot schedule outside a show.": "番組外に予約することは出来ません。", + "Moving 1 Item": "1個の項目を移動", + "Moving %s Items": "%s 個の項目を移動", + "Save": "保存", + "Cancel": "キャンセル", + "Fade Editor": "フェードの編集", + "Cue Editor": "キューの編集", + "Waveform features are available in a browser supporting the Web Audio API": "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。", + "Select all": "全て選択", + "Select none": "全て解除", + "Trim overbooked shows": "", + "Remove selected scheduled items": "選択した項目を削除", + "Jump to the current playing track": "現在再生中のトラックに移動", + "Jump to Current": "", + "Cancel current show": "配信中の番組をキャンセル", + "Open library to add or remove content": "ライブラリを開いてコンテンツを追加・削除する", + "Add / Remove Content": "コンテンツの追加・削除", + "in use": "使用中", + "Disk": "ディスク", + "Look in": "閲覧", + "Open": "開く", + "Admin": "管理者", + "DJ": "DJ", + "Program Manager": "プログラムマネージャー", + "Guest": "ゲスト", + "Guests can do the following:": "ゲストは以下の操作ができます:", + "View schedule": "スケジュールを見る", + "View show content": "番組内容を見る", + "DJs can do the following:": "DJは以下の操作ができます:", + "Manage assigned show content": "割り当てられた番組内容を管理", + "Import media files": "メディアファイルをインポートする", + "Create playlists, smart blocks, and webstreams": "プレイリスト・スマートブロック・ウェブストリームを作成", + "Manage their own library content": "ライブラリのコンテンツを管理", + "Program Managers can do the following:": "", + "View and manage show content": "番組内容の表示と管理", + "Schedule shows": "番組を予約する", + "Manage all library content": "ライブラリの全てのコンテンツを管理", + "Admins can do the following:": "管理者は次の操作が可能です:", + "Manage preferences": "設定を管理", + "Manage users": "ユーザー管理", + "Manage watched folders": "同期されているフォルダを管理", + "Send support feedback": "サポートにフィードバックを送る", + "View system status": "システムステータスを見る", + "Access playout history": "配信レポートへ", + "View listener stats": "リスナー統計を確認", + "Show / hide columns": "表示設定", + "Columns": "", + "From {from} to {to}": "{from}から{to}へ", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "日", + "Mo": "月", + "Tu": "火", + "We": "水", + "Th": "木", + "Fr": "金", + "Sa": "土", + "Close": "閉じる", + "Hour": "時", + "Minute": "分", + "Done": "完了", + "Select files": "ファイルを選択", + "Add files to the upload queue and click the start button.": "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。", + "Filename": "", + "Size": "", + "Add Files": "ファイルを追加", + "Stop Upload": "アップロード中止", + "Start upload": "アップロード開始", + "Start Upload": "", + "Add files": "ファイルを追加", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d ファイルをアップロードしました。", + "N/A": "N/A", + "Drag files here.": "こちらにファイルをドラッグしてください。", + "File extension error.": "ファイル拡張子エラーです。", + "File size error.": "ファイルサイズエラーです。", + "File count error.": "ファイルカウントのエラーです。", + "Init error.": "Initエラーです。", + "HTTP Error.": "HTTPエラーです。", + "Security error.": "セキュリティエラーです。", + "Generic error.": "エラーです。", + "IO error.": "入出力エラーです。", + "File: %s": "ファイル: %s", + "%d files queued": "%d のファイルが待機中", + "File: %f, size: %s, max file size: %m": "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m", + "Upload URL might be wrong or doesn't exist": "アップロードURLに誤りがあるか存在しません。", + "Error: File too large: ": "エラー:ファイルサイズが大きすぎます。", + "Error: Invalid file extension: ": "エラー:ファイル拡張子が無効です。", + "Set Default": "初期設定として保存", + "Create Entry": "エントリーを作成", + "Edit History Record": "配信履歴を編集", + "No Show": "番組はありません。", + "Copied %s row%s to the clipboard": "%s 列の%s をクリップボードにコピー しました。", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "説明", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "有効", + "Disabled": "無効", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "メールが送信できませんでした。メールサーバーの設定を確認してください。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "入力されたユーザー名またはパスワードが誤っています。", + "You are viewing an older version of %s": "%sの古いバージョンを閲覧しています。", + "You cannot add tracks to dynamic blocks.": "自動生成スマート・ブロックにトラックを追加することはできません。", + "You don't have permission to delete selected %s(s).": "選択された%sを削除する権限がありません。", + "You can only add tracks to smart block.": "スマートブロックに追加できるのはトラックのみです。", + "Untitled Playlist": "無題のプレイリスト", + "Untitled Smart Block": "無題のスマートブロック", + "Unknown Playlist": "不明なプレイリスト", + "Preferences updated.": "設定が更新されました。", + "Stream Setting Updated.": "配信設定が更新されました。", + "path should be specified": "パスを指定する必要があります", + "Problem with Liquidsoap...": "Liquidsoapに問題があります。", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%sの再配信:%s %s時", + "Select cursor": "カーソルを選択", + "Remove cursor": "カーソルを削除", + "show does not exist": "番組が存在しません。", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "ユーザーの追加に成功しました。", + "User updated successfully!": "ユーザーの更新に成功しました。", + "Settings updated successfully!": "設定の更新に成功しました。", + "Untitled Webstream": "無題のウェブ配信", + "Webstream saved.": "ウェブ配信が保存されました。", + "Invalid form values.": "入力欄に無効な値があります。", + "Invalid character entered": "使用できない文字が入力されました。", + "Day must be specified": "日付を指定する必要があります。", + "Time must be specified": "時間を指定する必要があります。", + "Must wait at least 1 hour to rebroadcast": "再配信するには、1時間以上待たなければなりません", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "カスタム認証を使用:", + "Custom Username": "カスタムユーザー名", + "Custom Password": "カスタムパスワード", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "ユーザー名を入力してください。", + "Password field cannot be empty.": "パスワードを入力してください。", + "Record from Line In?": "ライン入力から録音", + "Rebroadcast?": "再配信", + "days": "日", + "Link:": "配信内容を同期する:", + "Repeat Type:": "リピート形式:", + "weekly": "毎週", + "every 2 weeks": "2週間ごと", + "every 3 weeks": "3週間ごと", + "every 4 weeks": "4週間ごと", + "monthly": "毎月", + "Select Days:": "曜日を選択:", + "Repeat By:": "リピート間隔:", + "day of the month": "毎月特定日", + "day of the week": "毎月特定曜日", + "Date End:": "終了日:", + "No End?": "無期限", + "End date must be after start date": "終了日は開始日より後に設定してください。", + "Please select a repeat day": "繰り返す日を選択してください", + "Background Colour:": "背景色:", + "Text Colour:": "文字色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名前:", + "Untitled Show": "無題の番組", + "URL:": "URL:", + "Genre:": "ジャンル:", + "Description:": "説明:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%'は、'01:22'の形式に適合していません", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "長さ:", + "Timezone:": "タイムゾーン:", + "Repeats?": "定期番組に設定", + "Cannot create show in the past": "過去の日付に番組は作成できません。", + "Cannot modify start date/time of the show that is already started": "すでに開始されている番組の開始日、開始時間を変更することはできません。", + "End date/time cannot be in the past": "終了日時は過去に設定できません。", + "Cannot have duration < 0m": "0分以下の長さに設定することはできません。", + "Cannot have duration 00h 00m": "00h 00mの長さに設定することはできません。", + "Cannot have duration greater than 24h": "24時間を越える長さに設定することはできません。", + "Cannot schedule overlapping shows": "番組を重複して予約することはできません。", + "Search Users:": "ユーザーを検索:", + "DJs:": "DJ:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "ユーザー名:", + "Password:": "パスワード:", + "Verify Password:": "確認用パスワード:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "メール:", + "Mobile Phone:": "携帯電話:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "ユーザー種別:", + "Login name is not unique.": "ログイン名はすでに使用されています。", + "Delete All Tracks in Library": "", + "Date Start:": "開始日:", + "Title:": "タイトル:", + "Creator:": "アーティスト:", + "Album:": "アルバム:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年:", + "Label:": "ラベル:", + "Composer:": "作曲者", + "Conductor:": "コンダクター:", + "Mood:": "ムード:", + "BPM:": "BPM:", + "Copyright:": "著作権:", + "ISRC Number:": "ISRC番号:", + "Website:": "ウェブサイト:", + "Language:": "言語:", + "Publish...": "", + "Start Time": "開始時間", + "End Time": "終了時間", + "Interface Timezone:": "インターフェイスのタイムゾーン:", + "Station Name": "ステーション名", + "Station Description": "", + "Station Logo:": "ステーションロゴ:", + "Note: Anything larger than 600x600 will be resized.": "注意:大きさが600x600以上の場合はサイズが変更されます。", + "Default Crossfade Duration (s):": "クロスフェードの時間(初期値):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "デフォルトフェードイン(初期値):", + "Default Fade Out (s):": "デフォルトフェードアウト(初期値):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "ステーションのタイムゾーン", + "Week Starts On": "週の開始曜日", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "ログイン", + "Password": "パスワード", + "Confirm new password": "新しいパスワードを確認してください。", + "Password confirmation does not match your password.": "パスワード確認がパスワードと一致しません。", + "Email": "", + "Username": "ユーザー名", + "Reset password": "パスワードをリセット", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "全ての番組:", + "My Shows": "", + "Select criteria": "基準を選択してください", + "Bit Rate (Kbps)": "ビットレート (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "サンプリング周波数 (kHz) ", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "時間", + "minutes": "分", + "items": "項目", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "自動生成スマート・ブロック", + "Static": "スマート・ブロック", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "プレイリストコンテンツを生成し、基準を保存", + "Shuffle playlist content": "プレイリストの内容をシャッフル", + "Shuffle": "シャッフル", + "Limit cannot be empty or smaller than 0": "制限は空欄または0以下には設定できません。", + "Limit cannot be more than 24 hrs": "制限は24時間以内に設定してください。", + "The value should be an integer": "値は整数である必要があります。", + "500 is the max item limit value you can set": "設定できるアイテムの最大数は500です。", + "You must select Criteria and Modifier": "「基準」と「条件」を選択してください。", + "'Length' should be in '00:00:00' format": "「長さ」は、'00:00:00'の形式で入力してください。", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "値は数字である必要があります。", + "The value should be less then 2147483648": "値は2147483648未満にする必要があります。", + "The value cannot be empty": "", + "The value should be less than %s characters": "値は%s未満にする必要があります。", + "Value cannot be empty": "値を入力してください。", + "Stream Label:": "配信表示設定:", + "Artist - Title": "アーティスト - タイトル", + "Show - Artist - Title": "番組 - アーティスト - タイトル", + "Station name - Show name": "ステーション名 - 番組名", + "Off Air Metadata": "オフエアーメタデータ", + "Enable Replay Gain": "リプレイゲインを有効化", + "Replay Gain Modifier": "リプレイゲイン調整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "有効:", + "Mobile:": "", + "Stream Type:": "配信種別:", + "Bit Rate:": "ビットレート:", + "Service Type:": "サービスタイプ:", + "Channels:": "再生方式", + "Server": "サーバー", + "Port": "ポート", + "Mount Point": "マウントポイント", + "Name": "名前", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "インポートフォルダ:", + "Watched Folders:": "同期フォルダ:", + "Not a valid Directory": "正しいディレクトリではありません。", + "Value is required and can't be empty": "値を入力してください", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。", + "'%value%' does not fit the date format '%format%'": "'%value%'は、'%format%'の日付形式に一致しません。", + "'%value%' is less than %min% characters long": "'%value%'は、%min%文字より短くなっています。", + "'%value%' is more than %max% characters long": "'%value%'は、%max%文字を越えています。", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。", + "Passwords do not match": "パスワードが一致しません。", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "キューインとキューアウトが設定されていません。", + "Can't set cue out to be greater than file length.": "キューアウトはファイルの長さより長く設定できません。", + "Can't set cue in to be larger than cue out.": "キューインをキューアウトより大きく設定することはできません。", + "Can't set cue out to be smaller than cue in.": "キューアウトをキューインより小さく設定することはできません。", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "国の選択", + "livestream": "", + "Cannot move items out of linked shows": "リンクした番組の外に項目を移動することはできません。", + "The schedule you're viewing is out of date! (sched mismatch)": "参照中のスケジュールはの有効ではありません。", + "The schedule you're viewing is out of date! (instance mismatch)": "参照中のスケジュールは有効ではありません。", + "The schedule you're viewing is out of date!": "参照中のスケジュールは有効ではありません。", + "You are not allowed to schedule show %s.": "番組を%sに予約することはできません。", + "You cannot add files to recording shows.": "録音中の番組にファイルを追加することはできません。", + "The show %s is over and cannot be scheduled.": "番組 %s は終了しておりスケジュールに入れることができません。", + "The show %s has been previously updated!": "番組 %s は以前に更新されています。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "選択したファイルは存在しません。", + "Shows can have a max length of 24 hours.": "番組は最大24時間まで設定可能です。", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "番組を重複して予約することはできません。\n注意:再配信番組のサイズ変更は全ての再配信に反映されます。", + "Rebroadcast of %s from %s": "%sの再配信%sから", + "Length needs to be greater than 0 minutes": "再生時間は0分以上である必要があります。", + "Length should be of form \"00h 00m\"": "時間は \"00h 00m\"の形式にしてください。", + "URL should be of form \"https://example.org\"": "URL は\"https://example.org\"の形式で入力してください。", + "URL should be 512 characters or less": "URLは512文字以下にしてください。", + "No MIME type found for webstream.": "ウェブ配信用のMIMEタイプは見つかりませんでした。", + "Webstream name cannot be empty": "ウェブ配信名を入力して下さい。", + "Could not parse XSPF playlist": "XSPFプレイリストを解析できませんでした。", + "Could not parse PLS playlist": "PLSプレイリストを解析できませんでした。", + "Could not parse M3U playlist": "M3Uプレイリストを解析できませんでした。", + "Invalid webstream - This appears to be a file download.": "無効なウェブ配信です。", + "Unrecognized stream type: %s": "不明な配信種別です: %s", + "Record file doesn't exist": "録音ファイルは存在しません。", + "View Recorded File Metadata": "録音ファイルのメタデータを確認", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "番組の編集", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "許可されていない操作です。", + "Can't drag and drop repeating shows": "定期配信している番組を移動することはできません。", + "Can't move a past show": "過去の番組を移動することはできません。", + "Can't move show into past": "番組を過去の日付に移動することはできません。", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "録音された番組を再配信時間の直前1時間の枠に移動することはできません。", + "Show was deleted because recorded show does not exist!": "録音された番組が存在しないので番組は削除されました。", + "Must wait 1 hour to rebroadcast.": "再配信には1時間待たなければなりません。", + "Track": "トラック", + "Played": "再生済み", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/ko_KR.json b/webapp/src/locale/ko_KR.json new file mode 100644 index 0000000000..d638d5d3a4 --- /dev/null +++ b/webapp/src/locale/ko_KR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "년도 값은 %s 1753 - 9999 입니다", + "%s-%s-%s is not a valid date": "%s-%s-%s는 맞지 않는 날짜 입니다", + "%s:%s:%s is not a valid time": "%s:%s:%s는 맞지 않는 시간 입니다", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "스케쥴", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "계정", + "Track Types": "", + "Streams": "스트림", + "Status": "상태", + "Analytics": "", + "Playout History": "방송 기록", + "History Templates": "", + "Listener Stats": "청취자 통계", + "Show Listener Stats": "", + "Help": "도움", + "Getting Started": "초보자 가이드", + "User Manual": "사용자 메뉴얼", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "권한이 부족합니다", + "You are not allowed to access this resource. ": "권한이 부족합니다", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", + "There is no source connected to this input.": "연결된 소스가 없습니다", + "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s를 찾을수 없습니다", + "Something went wrong.": "알수없는 에러.", + "Preview": "프리뷰", + "Add to Playlist": "재생 목록에 추가", + "Add to Smart Block": "스마트 블록에 추가", + "Delete": "삭제", + "Edit...": "", + "Download": "다운로드", + "Duplicate Playlist": "중복된 플레이 리스트", + "Duplicate Smartblock": "", + "No action available": "액션 없음", + "You don't have permission to delete selected items.": "선택된 아이템을 지울수 있는 권한이 부족합니다.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s의 사본", + "Please make sure admin user/password is correct on Settings->Streams page.": "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요.", + "Audio Player": "오디오 플레이어", + "Something went wrong!": "", + "Recording:": "녹음:", + "Master Stream": "마스터 스트림", + "Live Stream": "라이브 스트림", + "Nothing Scheduled": "스케쥴 없음", + "Current Show:": "현재 쇼:", + "Current": "현재", + "You are running the latest version": "최신 버전입니다.", + "New version available: ": "새 버젼이 있습니다", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "현제 플레이리스트에 추가", + "Add to current smart block": "현제 스마트 블록에 추가", + "Adding 1 Item": "아이템 1개 추가", + "Adding %s Items": "아이템 %s개 추가", + "You can only add tracks to smart blocks.": "스마트 블록에는 파일만 추가 가능합니다", + "You can only add tracks, smart blocks, and webstreams to playlists.": "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다", + "Please select a cursor position on timeline.": "타임 라인에서 커서를 먼져 선택 하여 주세요.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "추가", + "New": "", + "Edit": "수정", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "제거", + "Edit Metadata": "메타데이타 수정", + "Add to selected show": "선택된 쇼에 추가", + "Select": "선택", + "Select this page": "현재 페이지 선택", + "Deselect this page": "현재 페이지 선택 취소 ", + "Deselect all": "모두 선택 취소", + "Are you sure you want to delete the selected item(s)?": "선택된 아이템들을 모두 지우시겠습니다?", + "Scheduled": "스케쥴됨", + "Tracks": "", + "Playlist": "", + "Title": "제목", + "Creator": "제작자", + "Album": "앨범", + "Bit Rate": "비트 레이트", + "BPM": "", + "Composer": "작곡가", + "Conductor": "지휘자", + "Copyright": "저작권", + "Encoded By": "", + "Genre": "장르", + "ISRC": "", + "Label": "레이블", + "Language": "언어", + "Last Modified": "마지막 수정일", + "Last Played": "마지막 방송일", + "Length": "길이", + "Mime": "", + "Mood": "무드", + "Owner": "소유자", + "Replay Gain": "리플레이 게인", + "Sample Rate": "샘플 레이트", + "Track Number": "트랙 번호", + "Uploaded": "업로드 날짜", + "Website": "웹싸이트", + "Year": "년도", + "Loading...": "로딩...", + "All": "전체", + "Files": "파일", + "Playlists": "재생 목록", + "Smart Blocks": "스마트 블록", + "Web Streams": "웹스트림", + "Unknown type: ": "알수 없는 유형:", + "Are you sure you want to delete the selected item?": "선택된 아이템을 모두 삭제 하시겠습니까?", + "Uploading in progress...": "업로딩중...", + "Retrieving data from the server...": "서버에서 정보를 가져오는중...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "에러 코드: ", + "Error msg: ": "에러 메세지: ", + "Input must be a positive number": "이 값은 0보다 큰 숫자만 허용 됩니다", + "Input must be a number": "이 값은 숫자만 허용합니다", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-dd의 형태로 입력해주세요", + "Input must be in the format: hh:mm:ss.t": "hh:mm:ss.t의 형태로 입력해주세요", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?", + "Open Media Builder": "미디아 빌더 열기", + "please put in a time '00:00:00 (.0)'": "'00:00:00 (.0)' 형태로 입력해주세요", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: ", + "Dynamic block is not previewable": "동적인 스마트 블록은 프리뷰 할수 없습니다", + "Limit to: ": "길이 제한: ", + "Playlist saved": "재생 목록이 저장 되었습니다", + "Playlist shuffled": "플레이 리스트가 셔플 되었습니다", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다.", + "Listener Count on %s: %s": "%s의청취자 숫자 : %s", + "Remind me in 1 week": "1주후에 다시 알림", + "Remind me never": "이 창을 다시 표시 하지 않음", + "Yes, help Airtime": "Airtime 도와주기", + "Image must be one of jpg, jpeg, png, or gif": "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 ", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "스마트 블록이 셔플 되었습니다", + "Smart block generated and criteria saved": "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다", + "Smart block saved": "스마트 블록이 저장 되었습니다", + "Processing...": "진행중...", + "Select modifier": "모디파이어 선택", + "contains": "다음을 포합", + "does not contain": "다음을 포함하지 않는", + "is": "다음과 같음", + "is not": "다음과 같지 않음", + "starts with": "다음으로 시작", + "ends with": "다음으로 끝남", + "is greater than": "다음 보다 큰", + "is less than": "다음 보타 작은", + "is in the range": "다음 범위 안에 있는 ", + "Generate": "생성", + "Choose Storage Folder": "저장 폴더 선택", + "Choose Folder to Watch": "모니터 폴더 선택", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다.", + "Manage Media Folders": "미디어 폴더 관리", + "Are you sure you want to remove the watched folder?": "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?", + "This path is currently not accessible.": "경로에 접근할수 없습니다", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명", + "Connected to the streaming server": "스트리밍 서버에 접속됨", + "The stream is disabled": "스트림이 사용되지 않음", + "Getting information from the server...": "서버에서 정보를 받는중...", + "Can not connect to the streaming server": "스트리밍 서버에 접속 할수 없음", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔.", + "Check this box to automatically switch on Master/Show source upon source connection.": "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "결과 없음", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "쇼에 지정된 사람들만 접속 할수 있습니다", + "Specify custom authentication which will work only for this show.": "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다", + "The show instance doesn't exist anymore!": "쇼 인스턴스가 존재 하지 않습니다", + "Warning: Shows cannot be re-linked": "주의: 쇼는 다시 링크 될수 없습니다", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "쇼", + "Show is empty": "쇼가 비어 있습니다", + "1m": "1분", + "5m": "5분", + "10m": "10분", + "15m": "15분", + "30m": "30분", + "60m": "60분", + "Retreiving data from the server...": "서버로부터 데이타를 불러오는중...", + "This show has no scheduled content.": "내용이 없는 쇼입니다", + "This show is not completely filled with content.": "쇼가 완전히 채워지지 않았습니다", + "January": "1월", + "February": "2월", + "March": "3월", + "April": "4월", + "May": "5월", + "June": "6월", + "July": "7월", + "August": "8월", + "September": "9월", + "October": "10월", + "November": "11월", + "December": "12월", + "Jan": "1월", + "Feb": "2월", + "Mar": "3월", + "Apr": "4월", + "Jun": "6월", + "Jul": "7월", + "Aug": "8월", + "Sep": "9월", + "Oct": "10월", + "Nov": "11월", + "Dec": "12월", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "일요일", + "Monday": "월요일", + "Tuesday": "화요일", + "Wednesday": "수요일", + "Thursday": "목요일", + "Friday": "금요일", + "Saturday": "토요일", + "Sun": "일", + "Mon": "월", + "Tue": "화", + "Wed": "수", + "Thu": "목", + "Fri": "금", + "Sat": "토", + "Shows longer than their scheduled time will be cut off by a following show.": "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다", + "Cancel Current Show?": "현재 방송중인 쇼를 중단 하시겠습니까?", + "Stop recording current show?": "현재 녹음 중인 쇼를 중단 하시겠습니까?", + "Ok": "확인", + "Contents of Show": "쇼 내용", + "Remove all content?": "모든 내용물 삭제하시겠습까?", + "Delete selected item(s)?": "선택한 아이템을 삭제 하시겠습니까?", + "Start": "시작", + "End": "종료", + "Duration": "길이", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "큐 인", + "Cue Out": "큐 아웃", + "Fade In": "페이드 인", + "Fade Out": "패이드 아웃", + "Show Empty": "내용 없음", + "Recording From Line In": "라인 인으로 부터 녹음", + "Track preview": "트랙 프리뷰", + "Cannot schedule outside a show.": "쇼 범위 밖에 스케쥴 할수 없습니다", + "Moving 1 Item": "아이템 1개 이동", + "Moving %s Items": "아이템 %s개 이동", + "Save": "저장", + "Cancel": "취소", + "Fade Editor": "페이드 에디터", + "Cue Editor": "큐 에디터", + "Waveform features are available in a browser supporting the Web Audio API": "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다", + "Select all": "전체 선택", + "Select none": "전체 선택 취소", + "Trim overbooked shows": "", + "Remove selected scheduled items": "선택된 아이템 제거", + "Jump to the current playing track": "현재 방송중인 트랙으로 가기", + "Jump to Current": "", + "Cancel current show": "현재 쇼 취소", + "Open library to add or remove content": "라이브러리 열기", + "Add / Remove Content": "내용 추가/제거", + "in use": "사용중", + "Disk": "디스크", + "Look in": "경로", + "Open": "열기", + "Admin": "관리자", + "DJ": "", + "Program Manager": "프로그램 매니저", + "Guest": "손님", + "Guests can do the following:": "손님의 권한:", + "View schedule": "스케쥴 보기", + "View show content": "쇼 내용 보기", + "DJs can do the following:": "DJ의 권한:", + "Manage assigned show content": "할당된 쇼의 내용 관리", + "Import media files": "미디아 파일 추가", + "Create playlists, smart blocks, and webstreams": "플레이 리스트, 스마트 블록, 웹스트림 생성", + "Manage their own library content": "자신의 라이브러리 내용 관리", + "Program Managers can do the following:": "", + "View and manage show content": "쇼 내용 보기및 관리", + "Schedule shows": "쇼 스케쥴 하기", + "Manage all library content": "모든 라이브러리 내용 관리", + "Admins can do the following:": "관리자의 권한:", + "Manage preferences": "설정 관리", + "Manage users": "사용자 관리", + "Manage watched folders": "모니터 폴터 관리", + "Send support feedback": "사용자 피드백을 보냄", + "View system status": "이시스템 상황 보기", + "Access playout history": "방송 기록 접근 권한", + "View listener stats": "청취자 통계 보기", + "Show / hide columns": "컬럼 보이기/숨기기", + "Columns": "", + "From {from} to {to}": " {from}부터 {to}까지", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "", + "Su": "일", + "Mo": "월", + "Tu": "화", + "We": "수", + "Th": "목", + "Fr": "금", + "Sa": "토", + "Close": "닫기", + "Hour": "시", + "Minute": "분", + "Done": "확인", + "Select files": "파일 선택", + "Add files to the upload queue and click the start button.": "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요.", + "Filename": "", + "Size": "", + "Add Files": "파일 추가", + "Stop Upload": "업로드 중지", + "Start upload": "업로드 시작", + "Start Upload": "", + "Add files": "파일 추가", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d 파일이 업로드됨", + "N/A": "", + "Drag files here.": "파일을 여기로 드래그 앤 드랍 하세요", + "File extension error.": "파일 확장자 에러.", + "File size error.": "파일 크기 에러.", + "File count error.": "파일 갯수 에러.", + "Init error.": "초기화 에러.", + "HTTP Error.": "HTTP 에러.", + "Security error.": "보안 에러.", + "Generic error.": "일반적인 에러.", + "IO error.": "IO 에러.", + "File: %s": "파일: %s", + "%d files queued": "%d개의 파일이 대기중", + "File: %f, size: %s, max file size: %m": "파일: %f, 크기: %s, 최대 파일 크기: %m", + "Upload URL might be wrong or doesn't exist": "업로드 URL이 맞지 않거나 존재 하지 않습니다", + "Error: File too large: ": "에러: 파일이 너무 큽니다:", + "Error: Invalid file extension: ": "에러: 지원하지 않는 확장자:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s row %s를 클립보드로 복사 하였습니다", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "설명", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "사용", + "Disabled": "미사용", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "아이디와 암호가 맞지 않습니다. 다시 시도해주세요", + "You are viewing an older version of %s": "오래된 %s를 보고 있습니다", + "You cannot add tracks to dynamic blocks.": "동적인 스마트 블록에는 트랙을 추가 할수 없습니다", + "You don't have permission to delete selected %s(s).": "선택하신 %s를 삭제 할수 있는 권한이 부족합니다.", + "You can only add tracks to smart block.": "스마트 블록에는 트랙만 추가 가능합니다", + "Untitled Playlist": "제목없는 재생목록", + "Untitled Smart Block": "제목없는 스마트 블록", + "Unknown Playlist": "모르는 재생목록", + "Preferences updated.": "설정이 업데이트 되었습니다", + "Stream Setting Updated.": "스트림 설정이 업데이트 되었습니다", + "path should be specified": "경로를 입력해주세요", + "Problem with Liquidsoap...": "Liquidsoap 문제...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%s의 재방송 %s부터 %s까지", + "Select cursor": "커서 선택", + "Remove cursor": "커서 제거", + "show does not exist": "쇼가 존재 하지 않음", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "사용자가 추가 되었습니다!", + "User updated successfully!": "사용자 정보가 업데이트 되었습니다!", + "Settings updated successfully!": "세팅이 성공적으로 업데이트 되었습니다!", + "Untitled Webstream": "제목없는 웹스트림", + "Webstream saved.": "웹스트림이 저장 되었습니다", + "Invalid form values.": "잘못된 값입니다", + "Invalid character entered": "허용되지 않는 문자입니다", + "Day must be specified": "날짜를 설정하세요", + "Time must be specified": "시간을 설정하세요", + "Must wait at least 1 hour to rebroadcast": "재방송 설정까지 1시간 기간이 필요합니다", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Custom 인증 사용", + "Custom Username": "Custom 아이디", + "Custom Password": "Custom 암호", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "아이디를 입력해주세요", + "Password field cannot be empty.": "암호를 입력해주세요", + "Record from Line In?": "Line In으로 녹음", + "Rebroadcast?": "재방송?", + "days": "일", + "Link:": "링크:", + "Repeat Type:": "반복 유형:", + "weekly": "주간", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "월간", + "Select Days:": "날짜 선택", + "Repeat By:": "", + "day of the month": "월중 날짜", + "day of the week": "주중 날짜", + "Date End:": "종료", + "No End?": "무한 반복?", + "End date must be after start date": "종료 일이 시작일 보다 먼져 입니다.", + "Please select a repeat day": "", + "Background Colour:": "배경 색:", + "Text Colour:": "글자 색:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "이름:", + "Untitled Show": "이름없는 쇼", + "URL:": "", + "Genre:": "장르:", + "Description:": "설명:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다.", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "길이:", + "Timezone:": "시간대:", + "Repeats?": "반복?", + "Cannot create show in the past": "쇼를 과거에 생성 할수 없습니다", + "Cannot modify start date/time of the show that is already started": "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다", + "End date/time cannot be in the past": "종료 날짜/시간을 과거로 설정할수 없습니다", + "Cannot have duration < 0m": "길이가 0m 보다 작을수 없습니다", + "Cannot have duration 00h 00m": "길이가 00h 00m인 쇼를 생성 할수 없습니다", + "Cannot have duration greater than 24h": "쇼의 길이가 24h를 넘을수 없습니다", + "Cannot schedule overlapping shows": "쇼를 중복되게 스케쥴할수 없습니다", + "Search Users:": "사용자 검색:", + "DJs:": "DJ들:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "아이디: ", + "Password:": "암호: ", + "Verify Password:": "암호 확인:", + "Firstname:": "이름:", + "Lastname:": "성:", + "Email:": "이메일", + "Mobile Phone:": "휴대전화:", + "Skype:": "스카입:", + "Jabber:": "", + "User Type:": "유저 타입", + "Login name is not unique.": "사용할수 없는 아이디 입니다", + "Delete All Tracks in Library": "", + "Date Start:": "시작", + "Title:": "제목:", + "Creator:": "제작자:", + "Album:": "앨범:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "년도:", + "Label:": "상표:", + "Composer:": "작곡가:", + "Conductor:": "지휘자", + "Mood:": "무드", + "BPM:": "", + "Copyright:": "저작권:", + "ISRC Number:": "ISRC 넘버", + "Website:": "웹사이트", + "Language:": "언어", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "방송국 이름", + "Station Description": "", + "Station Logo:": "방송국 로고", + "Note: Anything larger than 600x600 will be resized.": "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다", + "Default Crossfade Duration (s):": "기본 크로스페이드 길이(s)", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "기본 페이드 인(s)", + "Default Fade Out (s):": "기본 페이드 아웃(s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "주 시작일", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "로그인", + "Password": "암호", + "Confirm new password": "새 암호 확인", + "Password confirmation does not match your password.": "암호와 암호 확인 값이 일치 하지 않습니다.", + "Email": "", + "Username": "아이디", + "Reset password": "암호 초기화", + "Back": "", + "Now Playing": "방송중", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "내 쇼:", + "My Shows": "", + "Select criteria": "기준 선택", + "Bit Rate (Kbps)": "비트 레이트(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "샘플 레이트", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "시간", + "minutes": "분", + "items": "아이템", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "동적(Dynamic)", + "Static": "정적(Static)", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "재생 목록 내용 생성후 설정 저장", + "Shuffle playlist content": "재생 목록 내용 셔플하기", + "Shuffle": "셔플", + "Limit cannot be empty or smaller than 0": "길이 제한은 비어두거나 0으로 설정할수 없습니다", + "Limit cannot be more than 24 hrs": "길이 제한은 24h 보다 클수 없습니다", + "The value should be an integer": "이 값은 정수(integer) 입니다", + "500 is the max item limit value you can set": "아이템 곗수의 최대값은 500 입니다", + "You must select Criteria and Modifier": "기준과 모디파이어를 골라주세요", + "'Length' should be in '00:00:00' format": "길이는 00:00:00 형태로 입력하세요", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "이 값은 숫자만 허용 됩니다", + "The value should be less then 2147483648": "이 값은 2147483648보다 작은 수만 허용 됩니다", + "The value cannot be empty": "", + "The value should be less than %s characters": "이 값은 %s 문자보다 작은 길이만 허용 됩니다", + "Value cannot be empty": "이 값은 비어둘수 없습니다", + "Stream Label:": "스트림 레이블", + "Artist - Title": "아티스트 - 제목", + "Show - Artist - Title": "쇼 - 아티스트 - 제목", + "Station name - Show name": "방송국 이름 - 쇼 이름", + "Off Air Metadata": "오프 에어 메타데이타", + "Enable Replay Gain": "리플레이 게인 활성화", + "Replay Gain Modifier": "리플레이 게인 설정", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "사용:", + "Mobile:": "", + "Stream Type:": "스트림 타입:", + "Bit Rate:": "비트 레이트:", + "Service Type:": "서비스 타입:", + "Channels:": "채널:", + "Server": "서버", + "Port": "포트", + "Mount Point": "마운트 지점", + "Name": "이름", + "URL": "", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "폴더 가져오기", + "Watched Folders:": "모니터중인 폴더", + "Not a valid Directory": "옳치 않은 폴더 입니다", + "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'은 맞지 않는 이메일 형식 입니다.", + "'%value%' does not fit the date format '%format%'": "'%value%'은 날짜 형식('%format%')에 맞지 않습니다.", + "'%value%' is less than %min% characters long": "'%value%'는 %min%글자 보다 짧을수 없습니다", + "'%value%' is more than %max% characters long": "'%value%'는 %max%글자 보다 길수 없습니다", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다.", + "Passwords do not match": "암호가 맞지 않습니다", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "큐-인 과 큐 -아웃 이 null 입니다", + "Can't set cue out to be greater than file length.": "큐-아웃 값은 파일 길이보다 클수 없습니다", + "Can't set cue in to be larger than cue out.": "큐-인 값은 큐-아웃 값보다 클수 없습니다.", + "Can't set cue out to be smaller than cue in.": "큐-아웃 값은 큐-인 값보다 작을수 없습니다.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "국가 선택", + "livestream": "", + "Cannot move items out of linked shows": "링크 쇼에서 아이템을 분리 할수 없습니다", + "The schedule you're viewing is out of date! (sched mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)", + "The schedule you're viewing is out of date!": "현재 보고 계신 스케쥴이 맞지 않습니다", + "You are not allowed to schedule show %s.": "쇼를 스케쥴 할수 있는 권한이 없습니다 %s.", + "You cannot add files to recording shows.": "녹화 쇼에는 파일을 추가 할수 없습니다", + "The show %s is over and cannot be scheduled.": "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다", + "The show %s has been previously updated!": "쇼 %s 업데이트 되었습니다!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "선택하신 파일이 존재 하지 않습니다", + "Shows can have a max length of 24 hours.": "쇼 길이는 24시간을 넘을수 없습니다.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "쇼를 중복되게 스케줄 할수 없습니다.\n주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다.", + "Rebroadcast of %s from %s": "%s 재방송( %s에 시작) ", + "Length needs to be greater than 0 minutes": "길이가 0분 보다 길어야 합니다", + "Length should be of form \"00h 00m\"": "길이는 \"00h 00m\"의 형태 여야 합니다 ", + "URL should be of form \"https://example.org\"": "URL은 \"https://example.org\" 형태여야 합니다", + "URL should be 512 characters or less": "URL은 512캐릭터 까지 허용합니다", + "No MIME type found for webstream.": "웹 스트림의 MIME 타입을 찾을수 없습니다", + "Webstream name cannot be empty": "웹스트림의 이름을 지정하십시오", + "Could not parse XSPF playlist": "XSPF 재생목록을 분석 할수 없습니다", + "Could not parse PLS playlist": "PLS 재생목록을 분석 할수 없습니다", + "Could not parse M3U playlist": "M3U 재생목록을 분석할수 없습니다", + "Invalid webstream - This appears to be a file download.": "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다", + "Unrecognized stream type: %s": "알수 없는 스트림 타입: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "녹음된 파일의 메타데이타 보기", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "쇼 수정", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "권한이 부족합니다", + "Can't drag and drop repeating shows": "반복쇼는 드래그 앤 드롭 할수 없습니다", + "Can't move a past show": "지난 쇼는 이동할수 없습니다", + "Can't move show into past": "과거로 쇼를 이동할수 없습니다", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다", + "Show was deleted because recorded show does not exist!": "녹화 쇼가 없으로 쇼가 삭제 되었습니다", + "Must wait 1 hour to rebroadcast.": "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 ", + "Track": "", + "Played": "방송됨", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/nl_NL.json b/webapp/src/locale/nl_NL.json new file mode 100644 index 0000000000..67b4e8e406 --- /dev/null +++ b/webapp/src/locale/nl_NL.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Het jaar %s moet binnen het bereik van 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s dit is geen geldige datum", + "%s:%s:%s is not a valid time": "%s:%s:%s Dit is geen geldige tijd", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s.", + "Click the 'New Show' button and fill out the required fields.": "Klik op de knop 'Nieuwe Show' en vul de vereiste velden.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n%sCreate een niet-gekoppelde Toon nu%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "gebruikers", + "Track Types": "", + "Streams": "streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout geschiedenis", + "History Templates": "Geschiedenis sjablonen", + "Listener Stats": "luister status", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Aan de slag", + "User Manual": "Gebruikershandleiding", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "U bent niet toegestaan voor toegang tot deze bron.", + "You are not allowed to access this resource. ": "U bent niet toegestaan voor toegang tot deze bron.", + "File does not exist in %s": "Bestand bestaat niet in %s", + "Bad request. no 'mode' parameter passed.": "Slecht verzoek. geen 'mode' parameter doorgegeven.", + "Bad request. 'mode' parameter is invalid": "Slecht verzoek. 'mode' parameter is ongeldig", + "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", + "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", + "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Pagina niet gevonden", + "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", + "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", + "An internal application error has occurred.": "Een interne toepassingsfout opgetreden.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s niet gevonden", + "Something went wrong.": "Er ging iets mis.", + "Preview": "Voorbeeld", + "Add to Playlist": "Toevoegen aan afspeellijst", + "Add to Smart Block": "Toevoegen aan slimme blok", + "Delete": "Verwijderen", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Dubbele afspeellijst", + "Duplicate Smartblock": "", + "No action available": "Geen actie beschikbaar", + "You don't have permission to delete selected items.": "Je hebt geen toestemming om geselecteerde items te verwijderen", + "Could not delete file because it is scheduled in the future.": "Kan bestand niet verwijderen omdat het in de toekomst is gepland.", + "Could not delete file(s).": "Bestand(en) kan geen gegevens verwijderen.", + "Copy of %s": "Kopie van %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Opname", + "Master Stream": "Master Stream", + "Live Stream": "Live stream", + "Nothing Scheduled": "Niets gepland", + "Current Show:": "Huidige Show:", + "Current": "Huidige", + "You are running the latest version": "U werkt de meest recente versie", + "New version available: ": "Nieuwe versie beschikbaar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Toevoegen aan huidige afspeellijst", + "Add to current smart block": "Toevoegen aan huidigeslimme block", + "Adding 1 Item": "1 Item toevoegen", + "Adding %s Items": "%s Items toe te voegen", + "You can only add tracks to smart blocks.": "U kunt alleen nummers naar slimme blokken toevoegen.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten.", + "Please select a cursor position on timeline.": "Selecteer een cursorpositie op de tijdlijn.", + "You haven't added any tracks": "U hebt de nummers nog niet toegevoegd", + "You haven't added any playlists": "U heb niet alle afspeellijsten toegevoegd", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "U nog niet toegevoegd een slimme blokken", + "You haven't added any webstreams": "U hebt webstreams nog niet toegevoegd", + "Learn about tracks": "Informatie over nummers", + "Learn about playlists": "Meer informatie over afspeellijsten", + "Learn about podcasts": "", + "Learn about smart blocks": "Informatie over slimme blokken", + "Learn about webstreams": "Meer informatie over webstreams", + "Click 'New' to create one.": "Klik op 'Nieuw' te maken.", + "Add": "toevoegen", + "New": "", + "Edit": "Bewerken", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "verwijderen", + "Edit Metadata": "Metagegevens bewerken", + "Add to selected show": "Toevoegen aan geselecteerde Toon", + "Select": "Selecteer", + "Select this page": "Selecteer deze pagina", + "Deselect this page": "Hef de selectie van deze pagina", + "Deselect all": "Alle selecties opheffen", + "Are you sure you want to delete the selected item(s)?": "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?", + "Scheduled": "Gepland", + "Tracks": "track", + "Playlist": "Afspeellijsten", + "Title": "Titel", + "Creator": "Aangemaakt door", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Componist", + "Conductor": "Dirigent", + "Copyright": "Copyright:", + "Encoded By": "Encoded Bij", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "label", + "Language": "Taal", + "Last Modified": "Laatst Gewijzigd", + "Last Played": "Laatst gespeeld", + "Length": "Lengte", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Eigenaar", + "Replay Gain": "Herhalen Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track nummer", + "Uploaded": "Uploaded", + "Website": "Website:", + "Year": "Jaar", + "Loading...": "Bezig met laden...", + "All": "Alle", + "Files": "Bestanden", + "Playlists": "Afspeellijsten", + "Smart Blocks": "slimme blokken", + "Web Streams": "Web Streams", + "Unknown type: ": "Onbekend type", + "Are you sure you want to delete the selected item?": "Wilt u de geselecteerde gegevens werkelijk verwijderen?", + "Uploading in progress...": "Uploaden in vooruitgang...", + "Retrieving data from the server...": "Gegevens op te halen van de server...", + "Import": "", + "Imported?": "", + "View": "Weergeven", + "Error code: ": "foutcode", + "Error msg: ": "Fout msg:", + "Input must be a positive number": "Invoer moet een positief getal", + "Input must be a number": "Invoer moet een getal", + "Input must be in the format: yyyy-mm-dd": "Invoer moet worden in de indeling: jjjj-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Invoer moet worden in het formaat: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?", + "Open Media Builder": "Open Media opbouw", + "please put in a time '00:00:00 (.0)'": "Gelieve te zetten in een tijd '00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:", + "Dynamic block is not previewable": "Dynamische blok is niet previewable", + "Limit to: ": "Beperk tot:", + "Playlist saved": "Afspeellijst opgeslagen", + "Playlist shuffled": "Afspeellijst geschud", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken.", + "Listener Count on %s: %s": "Luisteraar rekenen op %s: %s", + "Remind me in 1 week": "Stuur me een herinnering in 1 week", + "Remind me never": "Herinner me nooit", + "Yes, help Airtime": "Ja, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Afbeelding moet een van jpg, jpeg, png of gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "slimme blok geschud", + "Smart block generated and criteria saved": "slimme blok gegenereerd en opgeslagen criteria", + "Smart block saved": "Smart blok opgeslagen", + "Processing...": "Wordt verwerkt...", + "Select modifier": "Selecteer modifier", + "contains": "bevat", + "does not contain": "bevat niet", + "is": "is", + "is not": "is niet gelijk aan", + "starts with": "Begint met", + "ends with": "Eindigt op", + "is greater than": "is groter dan", + "is less than": "is minder dan", + "is in the range": "in het gebied", + "Generate": "Genereren", + "Choose Storage Folder": "Kies opslagmap", + "Choose Folder to Watch": "Kies map voor bewaken", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!", + "Manage Media Folders": "Mediamappen beheren", + "Are you sure you want to remove the watched folder?": "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?", + "This path is currently not accessible.": "Dit pad is momenteel niet toegankelijk.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt.", + "Connected to the streaming server": "Aangesloten op de streaming server", + "The stream is disabled": "De stream is uitgeschakeld", + "Getting information from the server...": "Het verkrijgen van informatie van de server ...", + "Can not connect to the streaming server": "Kan geen verbinding maken met de streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken.", + "Warning: You cannot change this field while the show is currently playing": "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen", + "No result found": "Geen resultaat gevonden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken.", + "Specify custom authentication which will work only for this show.": "Geef aangepaste verificatie die alleen voor deze show werken zal.", + "The show instance doesn't exist anymore!": "De Toon-exemplaar bestaat niet meer!", + "Warning: Shows cannot be re-linked": "Waarschuwing: Shows kunnen niet opnieuw gekoppelde", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen.", + "Show": "Show", + "Show is empty": "Show Is leeg", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retreiving gegevens van de server...", + "This show has no scheduled content.": "Deze show heeft geen geplande inhoud.", + "This show is not completely filled with content.": "Deze show is niet volledig gevuld met inhoud.", + "January": "Januari", + "February": "Februari", + "March": "maart", + "April": "april", + "May": "mei", + "June": "juni", + "July": "juli", + "August": "augustus", + "September": "september", + "October": "oktober", + "November": "november", + "December": "december", + "Jan": "jan", + "Feb": "feb", + "Mar": "maa", + "Apr": "apr", + "Jun": "jun", + "Jul": "jul", + "Aug": "aug", + "Sep": "sep", + "Oct": "okt", + "Nov": "nov", + "Dec": "dec", + "Today": "vandaag", + "Day": "dag", + "Week": "week", + "Month": "maand", + "Sunday": "zondag", + "Monday": "maandag", + "Tuesday": "dinsdag", + "Wednesday": "woensdag", + "Thursday": "donderdag", + "Friday": "vrijdag", + "Saturday": "zaterdag", + "Sun": "zon", + "Mon": "ma", + "Tue": "di", + "Wed": "wo", + "Thu": "do", + "Fri": "vrij", + "Sat": "zat", + "Shows longer than their scheduled time will be cut off by a following show.": "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling.", + "Cancel Current Show?": "Annuleer Huidige Show?", + "Stop recording current show?": "Stop de opname huidige show?", + "Ok": "oke", + "Contents of Show": "Inhoud van Show", + "Remove all content?": "Alle inhoud verwijderen?", + "Delete selected item(s)?": "verwijderd geselecteerd object(en)?", + "Start": "Start", + "End": "einde", + "Duration": "Duur", + "Filtering out ": "Filteren op", + " of ": "of", + " records": "records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Infaden", + "Fade Out": "uitfaden", + "Show Empty": "Show leeg", + "Recording From Line In": "Opname van de Line In", + "Track preview": "Track Voorbeeld", + "Cannot schedule outside a show.": "Niet gepland buiten een show.", + "Moving 1 Item": "1 Item verplaatsen", + "Moving %s Items": "%s Items verplaatsen", + "Save": "opslaan", + "Cancel": "anuleren", + "Fade Editor": "Fade Bewerken", + "Cue Editor": "Cue Bewerken", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API", + "Select all": "Selecteer alles", + "Select none": "Niets selecteren", + "Trim overbooked shows": "Trim overboekte shows", + "Remove selected scheduled items": "Geselecteerde geplande items verwijderen", + "Jump to the current playing track": "Jump naar de huidige playing track", + "Jump to Current": "", + "Cancel current show": "Annuleren van de huidige show", + "Open library to add or remove content": "Open bibliotheek toevoegen of verwijderen van inhoud", + "Add / Remove Content": "Toevoegen / verwijderen van inhoud", + "in use": "In gebruik", + "Disk": "hardeschijf", + "Look in": "Zoeken in:", + "Open": "open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programmabeheer", + "Guest": "gast", + "Guests can do the following:": "Gasten kunnen het volgende doen:", + "View schedule": "Schema weergeven", + "View show content": "Weergave show content", + "DJs can do the following:": "DJ's kunnen het volgende doen:", + "Manage assigned show content": "Toegewezen Toon inhoud beheren", + "Import media files": "Mediabestanden importeren", + "Create playlists, smart blocks, and webstreams": "Maak afspeellijsten, slimme blokken en webstreams", + "Manage their own library content": "De inhoud van hun eigen bibliotheek beheren", + "Program Managers can do the following:": "", + "View and manage show content": "Bekijken en beheren van inhoud weergeven", + "Schedule shows": "Schema shows", + "Manage all library content": "Alle inhoud van de bibliotheek beheren", + "Admins can do the following:": "Beheerders kunnen het volgende doen:", + "Manage preferences": "Voorkeuren beheren", + "Manage users": "Gebruikers beheren", + "Manage watched folders": "Bewaakte mappen beheren", + "Send support feedback": "Ondersteuning feedback verzenden", + "View system status": "Bekijk systeem status", + "Access playout history": "Toegang playout geschiedenis", + "View listener stats": "Weergave luisteraar status", + "Show / hide columns": "Geef weer / verberg kolommen", + "Columns": "", + "From {from} to {to}": "Van {from} tot {to}", + "kbps": "kbps", + "yyyy-mm-dd": "jjjj-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Zo", + "Mo": "Ma", + "Tu": "Di", + "We": "Wo", + "Th": "Do", + "Fr": "Vr", + "Sa": "Za", + "Close": "Sluiten", + "Hour": "Uur", + "Minute": "Minuut", + "Done": "Klaar", + "Select files": "Selecteer bestanden", + "Add files to the upload queue and click the start button.": "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop", + "Filename": "", + "Size": "", + "Add Files": "Bestanden toevoegen", + "Stop Upload": "Stop upload", + "Start upload": "Begin upload", + "Start Upload": "", + "Add files": "Bestanden toevoegen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Geüploade %d/%d bestanden", + "N/A": "N/B", + "Drag files here.": "Sleep bestanden hierheen.", + "File extension error.": "Bestandsextensie fout", + "File size error.": "Bestandsgrote fout.", + "File count error.": "Graaf bestandsfout.", + "Init error.": "Init fout.", + "HTTP Error.": "HTTP fout.", + "Security error.": "Beveiligingsfout.", + "Generic error.": "Generieke fout.", + "IO error.": "IO fout.", + "File: %s": "Bestand: %s", + "%d files queued": "%d bestanden in de wachtrij", + "File: %f, size: %s, max file size: %m": "File: %f, grootte: %s, max bestandsgrootte: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL zou verkeerd kunnen zijn of bestaat niet", + "Error: File too large: ": "Fout: Bestand is te groot", + "Error: Invalid file extension: ": "Fout: Niet toegestane bestandsextensie ", + "Set Default": "Standaard instellen", + "Create Entry": "Aangemaakt op:", + "Edit History Record": "Geschiedenis Record bewerken", + "No Show": "geen show", + "Copied %s row%s to the clipboard": "Rij gekopieerde %s %s naar het Klembord", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent.", + "New Show": "Nieuw Show", + "New Log Entry": "Nieuwe logboekvermelding", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschrijving", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ingeschakeld", + "Disabled": "Uitgeschakeld", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Voer uw gebruikersnaam en wachtwoord.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd.", + "Wrong username or password provided. Please try again.": "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw.", + "You are viewing an older version of %s": "U bekijkt een oudere versie van %s", + "You cannot add tracks to dynamic blocks.": "U kunt nummers toevoegen aan dynamische blokken.", + "You don't have permission to delete selected %s(s).": "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)", + "You can only add tracks to smart block.": "U kunt alleen nummers toevoegen aan smart blok.", + "Untitled Playlist": "Naamloze afspeellijst", + "Untitled Smart Block": "Naamloze slimme block", + "Unknown Playlist": "Onbekende afspeellijst", + "Preferences updated.": "Voorkeuren bijgewerkt.", + "Stream Setting Updated.": "Stream vaststelling van bijgewerkte.", + "path should be specified": "pad moet worden opgegeven", + "Problem with Liquidsoap...": "Probleem met Liquidsoap...", + "Request method not accepted": "Verzoek methode niet geaccepteerd", + "Rebroadcast of show %s from %s at %s": "Rebroadcast van show %s van %s in %s", + "Select cursor": "Selecteer cursor", + "Remove cursor": "Cursor verwijderen", + "show does not exist": "show bestaat niet", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "gebruiker Succesvol Toegevoegd", + "User updated successfully!": "gebruiker Succesvol bijgewerkt", + "Settings updated successfully!": "Instellingen met succes bijgewerkt!", + "Untitled Webstream": "Naamloze Webstream", + "Webstream saved.": "Webstream opgeslagen.", + "Invalid form values.": "Ongeldige formulierwaarden.", + "Invalid character entered": "Ongeldig teken ingevoerd", + "Day must be specified": "Dag moet worden opgegeven", + "Time must be specified": "Tijd moet worden opgegeven", + "Must wait at least 1 hour to rebroadcast": "Ten minste 1 uur opnieuw uitzenden moet wachten", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "verificatie %s gebruiken:", + "Use Custom Authentication:": "Gebruik aangepaste verificatie:", + "Custom Username": "Aangepaste gebruikersnaam", + "Custom Password": "Aangepaste wachtwoord", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Veld Gebruikersnaam mag niet leeg.", + "Password field cannot be empty.": "veld wachtwoord mag niet leeg.", + "Record from Line In?": "Opnemen vanaf de lijn In?", + "Rebroadcast?": "Rebroadcast?", + "days": "dagen", + "Link:": "link", + "Repeat Type:": "Herhaal Type:", + "weekly": "wekelijks", + "every 2 weeks": "elke 2 weken", + "every 3 weeks": "elke 3 weken", + "every 4 weeks": "elke 4 weken", + "monthly": "per maand", + "Select Days:": "Selecteer dagen:", + "Repeat By:": "Herhaal door:", + "day of the month": "dag van de maand", + "day of the week": "Dag van de week", + "Date End:": "datum einde", + "No End?": "Geen einde?", + "End date must be after start date": "Einddatum moet worden na begindatum ligt", + "Please select a repeat day": "Selecteer een Herhaal dag", + "Background Colour:": "achtergrond kleur", + "Text Colour:": "tekst kleur", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "naam", + "Untitled Show": "Zonder titel show", + "URL:": "URL", + "Genre:": "genre:", + "Description:": "Omschrijving:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' past niet de tijdnotatie 'UU:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Looptijd:", + "Timezone:": "tijdzone:", + "Repeats?": "herhaalt?", + "Cannot create show in the past": "kan niet aanmaken show in het verleden weergeven", + "Cannot modify start date/time of the show that is already started": "Start datum/tijd van de show die is al gestart wijzigen niet", + "End date/time cannot be in the past": "Eind datum/tijd mogen niet in het verleden", + "Cannot have duration < 0m": "Geen duur hebben < 0m", + "Cannot have duration 00h 00m": "Kan niet hebben duur 00h 00m", + "Cannot have duration greater than 24h": "Duur groter is dan 24h kan niet hebben", + "Cannot schedule overlapping shows": "kan Niet gepland overlappen shows", + "Search Users:": "zoek gebruikers", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "gebuikersnaam", + "Password:": "wachtwoord", + "Verify Password:": "Wachtwoord verifiëren:", + "Firstname:": "voornaam", + "Lastname:": "achternaam", + "Email:": "e-mail", + "Mobile Phone:": "mobiel nummer", + "Skype:": "skype", + "Jabber:": "Jabber:", + "User Type:": "Gebruiker Type :", + "Login name is not unique.": "Login naam is niet uniek.", + "Delete All Tracks in Library": "", + "Date Start:": "datum start", + "Title:": "Titel", + "Creator:": "Aangemaakt door", + "Album:": "Album", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jaar", + "Label:": "label", + "Composer:": "schrijver van een muziekwerk", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC nummer:", + "Website:": "Website:", + "Language:": "Taal:", + "Publish...": "", + "Start Time": "Begintijd", + "End Time": "Eindtijd", + "Interface Timezone:": "Interface tijdzone:", + "Station Name": "station naam", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast.", + "Default Crossfade Duration (s):": "Standaardduur Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "standaard fade in (s):", + "Default Fade Out (s):": "standaard fade uit (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "station tijdzone", + "Week Starts On": "Week start aan", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Inloggen", + "Password": "wachtwoord", + "Confirm new password": "Bevestig nieuw wachtwoord", + "Password confirmation does not match your password.": "Wachtwoord bevestiging komt niet overeen met uw wachtwoord.", + "Email": "", + "Username": "gebuikersnaam", + "Reset password": "Reset wachtwoord", + "Back": "", + "Now Playing": "Nu spelen", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "al mij shows", + "My Shows": "", + "Select criteria": "Selecteer criteria", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Uren", + "minutes": "minuten", + "items": "artikelen", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "status", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genereren van inhoud van de afspeellijst en criteria opslaan", + "Shuffle playlist content": "Shuffle afspeellijst inhoud", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limiet kan niet leeg zijn of kleiner is dan 0", + "Limit cannot be more than 24 hrs": "Limiet mag niet meer dan 24 uur", + "The value should be an integer": "De waarde moet een geheel getal", + "500 is the max item limit value you can set": "500 is de grenswaarde max object die kunt u instellen", + "You must select Criteria and Modifier": "U moet Criteria en Modifier selecteren", + "'Length' should be in '00:00:00' format": "'Lengte' moet in ' 00:00:00 ' formaat", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "De waarde moet worden numerieke", + "The value should be less then 2147483648": "De waarde moet minder dan 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "De waarde moet kleiner zijn dan %s tekens", + "Value cannot be empty": "Waarde kan niet leeg", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artiest - Titel", + "Show - Artist - Title": "Show - Artiest - titel", + "Station name - Show name": "Station naam - Show naam", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Inschakelen Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ingeschakeld", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "kanalen:", + "Server": "Server", + "Port": "poort", + "Mount Point": "Aankoppelpunt", + "Name": "naam", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "mappen importeren", + "Watched Folders:": "Gecontroleerde mappen:", + "Not a valid Directory": "Niet een geldige map", + "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam", + "'%value%' does not fit the date format '%format%'": "'%value%' past niet in de datumnotatie '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is minder dan %min% tekens lang", + "'%value%' is more than %max% characters long": "'%value%' is meer dan %max% karakters lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is niet tussen '%min%' en '%max%', inclusief", + "Passwords do not match": "Wachtwoorden komen niet overeen.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s wachtwoord Reset", + "Cue in and cue out are null.": "Het Cue in en cue uit null zijn.", + "Can't set cue out to be greater than file length.": "Niet instellen cue uit groter zijn dan de bestandslengte van het", + "Can't set cue in to be larger than cue out.": "Niet instellen cue in groter dan cue uit.", + "Can't set cue out to be smaller than cue in.": "Niet instellen cue uit op kleiner zijn dan het cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecteer land", + "livestream": "", + "Cannot move items out of linked shows": "Items uit gekoppelde toont kan niet verplaatsen", + "The schedule you're viewing is out of date! (sched mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)", + "The schedule you're viewing is out of date! (instance mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)", + "The schedule you're viewing is out of date!": "Het schema dat u aan het bekijken bent is verouderd!", + "You are not allowed to schedule show %s.": "U zijn niet toegestaan om te plannen show %s.", + "You cannot add files to recording shows.": "U kunt bestanden toevoegen aan het opnemen van programma's.", + "The show %s is over and cannot be scheduled.": "De show %s is voorbij en kan niet worden gepland.", + "The show %s has been previously updated!": "De show %s heeft al eerder zijn bijgewerkt!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Niet gepland een afspeellijst die ontbrekende bestanden bevat.", + "A selected File does not exist!": "Een geselecteerd bestand bestaat niet!", + "Shows can have a max length of 24 hours.": "Shows kunnen hebben een maximale lengte van 24 uur.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen.", + "Rebroadcast of %s from %s": "Rebroadcast van %s van %s", + "Length needs to be greater than 0 minutes": "Lengte moet groter zijn dan 0 minuten", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL moet 512 tekens of minder", + "No MIME type found for webstream.": "Geen MIME-type gevonden voor webstream.", + "Webstream name cannot be empty": "Webstream naam mag niet leeg zijn", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Kon niet ontleden PLS afspeellijst", + "Could not parse M3U playlist": "Kon niet ontleden M3U playlist", + "Invalid webstream - This appears to be a file download.": "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden.", + "Unrecognized stream type: %s": "Niet herkende type stream: %s", + "Record file doesn't exist": "Record bestand bestaat niet", + "View Recorded File Metadata": "Weergave opgenomen bestand Metadata", + "Schedule Tracks": "Schema Tracks", + "Clear Show": "Wissen show", + "Cancel Show": "Annuleren show", + "Edit Instance": "Aanleg bewerken", + "Edit Show": "Bewerken van Show", + "Delete Instance": "Exemplaar verwijderen", + "Delete Instance and All Following": "Exemplaar verwijderen en alle volgende", + "Permission denied": "Toestemming geweigerd", + "Can't drag and drop repeating shows": "Kan niet slepen en neerzetten herhalende shows", + "Can't move a past show": "Een verleden Show verplaatsen niet", + "Can't move show into past": "Niet verplaatsen show in verleden", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet.", + "Show was deleted because recorded show does not exist!": "Toon is verwijderd omdat opgenomen programma niet bestaat!", + "Must wait 1 hour to rebroadcast.": "Moet wachten 1 uur opnieuw uitzenden..", + "Track": "track", + "Played": "Gespeeld", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/pl_PL.json b/webapp/src/locale/pl_PL.json new file mode 100644 index 0000000000..fb284f9bd3 --- /dev/null +++ b/webapp/src/locale/pl_PL.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Rok %s musi być w przedziale od 1753 do 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s nie jest poprawną datą", + "%s:%s:%s is not a valid time": "%s:%s:%s nie jest prawidłowym czasem", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendarz", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Użytkownicy", + "Track Types": "", + "Streams": "Strumienie", + "Status": "Status", + "Analytics": "", + "Playout History": "Historia odtwarzania", + "History Templates": "", + "Listener Stats": "Statystyki słuchaczy", + "Show Listener Stats": "", + "Help": "Pomoc", + "Getting Started": "Jak zacząć", + "User Manual": "Instrukcja użytkowania", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nie masz dostępu do tej lokalizacji", + "You are not allowed to access this resource. ": "Nie masz dostępu do tej lokalizacji.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Złe zapytanie. Nie zaakceprtowano parametru 'mode'", + "Bad request. 'mode' parameter is invalid": "Złe zapytanie. Parametr 'mode' jest nieprawidłowy", + "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", + "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", + "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "nie znaleziono %s", + "Something went wrong.": "Wystapił błąd", + "Preview": "Podgląd", + "Add to Playlist": "Dodaj do listy odtwarzania", + "Add to Smart Block": "Dodaj do smartblocku", + "Delete": "Usuń", + "Edit...": "", + "Download": "Pobierz", + "Duplicate Playlist": "Skopiuj listę odtwarzania", + "Duplicate Smartblock": "", + "No action available": "Brak dostepnych czynności", + "You don't have permission to delete selected items.": "Nie masz uprawnień do usunięcia wybranych elementów", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopia %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie.", + "Audio Player": "Odtwrzacz ", + "Something went wrong!": "", + "Recording:": "Nagrywanie:", + "Master Stream": "Strumień Nadrzędny", + "Live Stream": "Transmisja na żywo", + "Nothing Scheduled": "Nic nie zaplanowano", + "Current Show:": "Aktualna audycja:", + "Current": "Aktualny", + "You are running the latest version": "Używasz najnowszej wersji", + "New version available: ": "Dostępna jest nowa wersja:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj do bieżącej listy odtwarzania", + "Add to current smart block": "Dodaj do bieżącego smart blocku", + "Adding 1 Item": "Dodawanie 1 elementu", + "Adding %s Items": "Dodawanie %s elementów", + "You can only add tracks to smart blocks.": "do smart blocków mozna dodawać tylko utwory.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy", + "Please select a cursor position on timeline.": "Proszę wybrać pozycję kursora na osi czasu.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "", + "Edit": "Edytuj", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Usuń", + "Edit Metadata": "Edytuj Metadane.", + "Add to selected show": "Dodaj do wybranej audycji", + "Select": "Zaznacz", + "Select this page": "Zaznacz tę stronę", + "Deselect this page": "Odznacz tę stronę", + "Deselect all": "Odznacz wszystko", + "Are you sure you want to delete the selected item(s)?": "Czy na pewno chcesz usunąć wybrane elementy?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Tytuł", + "Creator": "Twórca", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Kompozytor", + "Conductor": "Dyrygent/Pod batutą", + "Copyright": "Prawa autorskie", + "Encoded By": "Kodowane przez", + "Genre": "Gatunek", + "ISRC": "ISRC", + "Label": "Wydawnictwo", + "Language": "Język", + "Last Modified": "Ostatnio zmodyfikowany", + "Last Played": "Ostatnio odtwarzany", + "Length": "Długość", + "Mime": "Podobne do", + "Mood": "Nastrój", + "Owner": "Właściciel", + "Replay Gain": "Normalizacja głośności (Replay Gain)", + "Sample Rate": "Wartość próbkowania", + "Track Number": "Numer utworu", + "Uploaded": "Przesłano", + "Website": "Strona internetowa", + "Year": "Rok", + "Loading...": "Ładowanie", + "All": "Wszystko", + "Files": "Pliki", + "Playlists": "Listy odtwarzania", + "Smart Blocks": "Smart Blocki", + "Web Streams": "Web Stream", + "Unknown type: ": "Nieznany typ:", + "Are you sure you want to delete the selected item?": "Czy na pewno chcesz usunąć wybrany element?", + "Uploading in progress...": "Wysyłanie w toku...", + "Retrieving data from the server...": "Pobieranie danych z serwera...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Kod błędu:", + "Error msg: ": "Komunikat błędu:", + "Input must be a positive number": "Podana wartość musi być liczbą dodatnią", + "Input must be a number": "Podana wartość musi być liczbą", + "Input must be in the format: yyyy-mm-dd": "Podana wartość musi mieć format yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Podana wartość musi mieć format hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "Wprowadź czas w formacie: '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:", + "Dynamic block is not previewable": "Podgląd bloku dynamicznego nie jest możliwy", + "Limit to: ": "Ograniczenie do:", + "Playlist saved": "Lista odtwarzania została zapisana", + "Playlist shuffled": "Playlista została przemieszana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\".", + "Listener Count on %s: %s": "Licznik słuchaczy na %s: %s", + "Remind me in 1 week": "Przypomnij mi za 1 tydzień", + "Remind me never": "Nie przypominaj nigdy", + "Yes, help Airtime": "Tak, wspieraj Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obraz musi mieć format jpg, jpeg, png lub gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart blocku został przemieszany", + "Smart block generated and criteria saved": "Utworzono smartblock i zapisano kryteria", + "Smart block saved": "Smart block został zapisany", + "Processing...": "Przetwarzanie...", + "Select modifier": "Wybierz modyfikator", + "contains": "zawiera", + "does not contain": "nie zawiera", + "is": "to", + "is not": "to nie", + "starts with": "zaczyna się od", + "ends with": "kończy się", + "is greater than": "jest większa niż", + "is less than": "jest mniejsza niż", + "is in the range": "mieści się w zakresie", + "Generate": "Utwórz", + "Choose Storage Folder": "Wybierz ścieżkę do katalogu importu", + "Choose Folder to Watch": "Wybierz katalog do obserwacji", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\nWszystkie pliki z biblioteki Airtime zostaną usunięte.", + "Manage Media Folders": "Zarządzaj folderami mediów", + "Are you sure you want to remove the watched folder?": "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?", + "This path is currently not accessible.": "Ściezka jest obecnie niedostepna.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Połączono z serwerem streamingu", + "The stream is disabled": "Strumień jest odłączony", + "Getting information from the server...": "Pobieranie informacji z serwera...", + "Can not connect to the streaming server": "Nie można połączyć z serwerem streamującym", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu.", + "Check this box to automatically switch on Master/Show source upon source connection.": "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nie znaleziono wyników", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć.", + "Specify custom authentication which will work only for this show.": "Ustal własne uwierzytelnienie tylko dla tej audycji.", + "The show instance doesn't exist anymore!": "Instancja audycji już nie istnieje.", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Audycja", + "Show is empty": "Audycja jest pusta", + "1m": "1 min", + "5m": "5 min", + "10m": "10 min", + "15m": "15 min", + "30m": "30 min", + "60m": "60 min", + "Retreiving data from the server...": "Odbieranie danych z serwera", + "This show has no scheduled content.": "Ta audycja nie ma zawartości", + "This show is not completely filled with content.": "Brak pełnej zawartości tej audycji.", + "January": "Styczeń", + "February": "Luty", + "March": "Marzec", + "April": "Kwiecień", + "May": "Maj", + "June": "Czerwiec", + "July": "Lipiec", + "August": "Sierpień", + "September": "Wrzesień", + "October": "Październik", + "November": "Listopad", + "December": "Grudzień", + "Jan": "Sty", + "Feb": "Lut", + "Mar": "Mar", + "Apr": "Kwi", + "Jun": "Cze", + "Jul": "Lip", + "Aug": "Sie", + "Sep": "Wrz", + "Oct": "Paź", + "Nov": "Lis", + "Dec": "Gru", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Niedziela", + "Monday": "Poniedziałek", + "Tuesday": "Wtorek", + "Wednesday": "Środa", + "Thursday": "Czwartek", + "Friday": "Piątek", + "Saturday": "Sobota", + "Sun": "Nie", + "Mon": "Pon", + "Tue": "Wt", + "Wed": "Śr", + "Thu": "Czw", + "Fri": "Pt", + "Sat": "Sob", + "Shows longer than their scheduled time will be cut off by a following show.": "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne .", + "Cancel Current Show?": "Skasować obecną audycję?", + "Stop recording current show?": "Przerwać nagrywanie aktualnej audycji?", + "Ok": "Ok", + "Contents of Show": "Zawartośc audycji", + "Remove all content?": "Usunąć całą zawartość?", + "Delete selected item(s)?": "Skasować wybrane elementy?", + "Start": "Rozpocznij", + "End": "Zakończ", + "Duration": "Czas trwania", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue out", + "Fade In": "Zgłaśnianie [Fade In]", + "Fade Out": "Wyciszanie [Fade out]", + "Show Empty": "Audycja jest pusta", + "Recording From Line In": "Nagrywaanie z wejścia liniowego", + "Track preview": "Podgląd utworu", + "Cannot schedule outside a show.": "Nie ma możliwości planowania poza audycją.", + "Moving 1 Item": "Przenoszenie 1 elementu", + "Moving %s Items": "Przenoszenie %s elementów", + "Save": "Zapisz", + "Cancel": "Anuluj", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Zaznacz wszystko", + "Select none": "Odznacz wszystkie", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Usuń wybrane elementy", + "Jump to the current playing track": "Przejdź do obecnie odtwarzanej ściezki", + "Jump to Current": "", + "Cancel current show": "Skasuj obecną audycję", + "Open library to add or remove content": "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości", + "Add / Remove Content": "Dodaj/usuń zawartość", + "in use": "W użyciu", + "Disk": "Dysk", + "Look in": "Sprawdź", + "Open": "Otwórz", + "Admin": "Administrator", + "DJ": "Prowadzący", + "Program Manager": "Menedżer programowy", + "Guest": "Gość", + "Guests can do the following:": "Goście mają mozliwość:", + "View schedule": "Przeglądanie harmonogramu", + "View show content": "Przeglądanie zawartości audycji", + "DJs can do the following:": "Prowadzący ma możliwość:", + "Manage assigned show content": "Zarządzać przypisaną sobie zawartością audycji", + "Import media files": "Importować pliki mediów", + "Create playlists, smart blocks, and webstreams": "Tworzyć playlisty, smart blocki i webstreamy", + "Manage their own library content": "Zarządzać zawartością własnej biblioteki", + "Program Managers can do the following:": "", + "View and manage show content": "Przeglądać i zarządzać zawartością audycji", + "Schedule shows": "Planować audycję", + "Manage all library content": "Zarządzać całą zawartością biblioteki", + "Admins can do the following:": "Administrator ma mozliwość:", + "Manage preferences": "Zarządzać preferencjami", + "Manage users": "Zarządzać użytkownikami", + "Manage watched folders": "Zarządzać przeglądanymi katalogami", + "Send support feedback": "Wyślij informację zwrotną", + "View system status": "Sprawdzać status systemu", + "Access playout history": "Przeglądać historię odtworzeń", + "View listener stats": "Sprawdzać statystyki słuchaczy", + "Show / hide columns": "Pokaż/ukryj kolumny", + "Columns": "", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Nd", + "Mo": "Pn", + "Tu": "Wt", + "We": "Śr", + "Th": "Cz", + "Fr": "Pt", + "Sa": "So", + "Close": "Zamknij", + "Hour": "Godzina", + "Minute": "Minuta", + "Done": "Gotowe", + "Select files": "Wybierz pliki", + "Add files to the upload queue and click the start button.": "Dodaj pliki do kolejki i wciśnij \"start\"", + "Filename": "", + "Size": "", + "Add Files": "Dodaj pliki", + "Stop Upload": "Zatrzymaj przesyłanie", + "Start upload": "Rozpocznij przesyłanie", + "Start Upload": "", + "Add files": "Dodaj pliki", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Dodano pliki %d%d", + "N/A": "Nie dotyczy", + "Drag files here.": "Przeciągnij pliki tutaj.", + "File extension error.": "Błąd rozszerzenia pliku.", + "File size error.": "Błąd rozmiaru pliku.", + "File count error.": "Błąd liczenia plików", + "Init error.": "Błąd inicjalizacji", + "HTTP Error.": "Błąd HTTP.", + "Security error.": "Błąd zabezpieczeń.", + "Generic error.": "Błąd ogólny.", + "IO error.": "Błąd I/O", + "File: %s": "Plik: %s", + "%d files queued": "%d plików oczekujących", + "File: %f, size: %s, max file size: %m": "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m", + "Upload URL might be wrong or doesn't exist": "URL nie istnieje bądź jest niewłaściwy", + "Error: File too large: ": "Błąd: plik jest za duży:", + "Error: Invalid file extension: ": "Błąd: nieprawidłowe rozszerzenie pliku:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "Skopiowano %srow%s do schowka", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Opis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Włączone", + "Disabled": "Wyłączone", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie.", + "You are viewing an older version of %s": "Przeglądasz starszą wersję %s", + "You cannot add tracks to dynamic blocks.": "Nie można dodać ścieżek do bloków dynamicznych", + "You don't have permission to delete selected %s(s).": "Nie masz pozwolenia na usunięcie wybranych %s(s)", + "You can only add tracks to smart block.": "Utwory mogą być dodane tylko do smartblocku", + "Untitled Playlist": "Lista odtwarzania bez tytułu", + "Untitled Smart Block": "Smartblock bez tytułu", + "Unknown Playlist": "Nieznana playlista", + "Preferences updated.": "Zaktualizowano preferencje.", + "Stream Setting Updated.": "Zaktualizowano ustawienia strumienia", + "path should be specified": "należy okreslić ścieżkę", + "Problem with Liquidsoap...": "Problem z Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmisja audycji %s z %s o %s", + "Select cursor": "Wybierz kursor", + "Remove cursor": "Usuń kursor", + "show does not exist": "audycja nie istnieje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Użytkownik został dodany poprawnie!", + "User updated successfully!": "Użytkownik został poprawnie zaktualizowany!", + "Settings updated successfully!": "Ustawienia zostały poprawnie zaktualizowane!", + "Untitled Webstream": "Webstream bez nazwy", + "Webstream saved.": "Zapisano webstream", + "Invalid form values.": "Nieprawidłowe wartości formularzy", + "Invalid character entered": "Wprowadzony znak jest nieprawidłowy", + "Day must be specified": "Należy określić dzień", + "Time must be specified": "Należy określić czas", + "Must wait at least 1 hour to rebroadcast": "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Zastosuj własne uwierzytelnienie:", + "Custom Username": "Nazwa użytkownika", + "Custom Password": "Hasło", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Pole nazwy użytkownika nie może być puste.", + "Password field cannot be empty.": "Pole hasła nie może być puste.", + "Record from Line In?": "Nagrywać z wejścia liniowego?", + "Rebroadcast?": "Odtwarzać ponownie?", + "days": "dni", + "Link:": "", + "Repeat Type:": "Typ powtarzania:", + "weekly": "tygodniowo", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "miesięcznie", + "Select Days:": "Wybierz dni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data zakończenia:", + "No End?": "Bez czasu końcowego?", + "End date must be after start date": "Data końcowa musi występować po dacie początkowej", + "Please select a repeat day": "", + "Background Colour:": "Kolor tła:", + "Text Colour:": "Kolor tekstu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nazwa:", + "Untitled Show": "Audycja bez nazwy", + "URL:": "Adres URL", + "Genre:": "Rodzaj:", + "Description:": "Opis:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Czas trwania:", + "Timezone:": "Strefa czasowa:", + "Repeats?": "Powtarzanie?", + "Cannot create show in the past": "Nie można utworzyć audycji w przeszłości", + "Cannot modify start date/time of the show that is already started": "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła", + "End date/time cannot be in the past": "Data lub czas zakończenia nie może być z przeszłości.", + "Cannot have duration < 0m": "Czas trwania nie może być mniejszy niż 0m", + "Cannot have duration 00h 00m": "Czas trwania nie może wynosić 00h 00m", + "Cannot have duration greater than 24h": "Czas trwania nie może być dłuższy niż 24h", + "Cannot schedule overlapping shows": "Nie można planować nakładających się audycji", + "Search Users:": "Szukaj Użytkowników:", + "DJs:": "Prowadzący:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Nazwa użytkownika:", + "Password:": "Hasło:", + "Verify Password:": "Potwierdź hasło:", + "Firstname:": "Imię:", + "Lastname:": "Nazwisko:", + "Email:": "Email:", + "Mobile Phone:": "Telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ użytkownika:", + "Login name is not unique.": "Nazwa użytkownika musi być unikalna.", + "Delete All Tracks in Library": "", + "Date Start:": "Data rozpoczęcia:", + "Title:": "Tytuł:", + "Creator:": "Autor:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Wydawnictwo:", + "Composer:": "Kompozytor:", + "Conductor:": "Dyrygent/Pod batutą:", + "Mood:": "Nastrój:", + "BPM:": "BPM:", + "Copyright:": "Prawa autorskie:", + "ISRC Number:": "Numer ISRC:", + "Website:": "Strona internetowa:", + "Language:": "Język:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nazwa stacji", + "Station Description": "", + "Station Logo:": "Logo stacji:", + "Note: Anything larger than 600x600 will be resized.": "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Tydzień zaczynaj od", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Zaloguj", + "Password": "Hasło", + "Confirm new password": "Potwierdź nowe hasło", + "Password confirmation does not match your password.": "Hasła muszą się zgadzać.", + "Email": "", + "Username": "Nazwa użytkownika", + "Reset password": "Resetuj hasło", + "Back": "", + "Now Playing": "Aktualnie odtwarzane", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Wszystkie moje audycje:", + "My Shows": "", + "Select criteria": "Wybierz kryteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Częstotliwość próbkowania (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "godzin(y)", + "minutes": "minut(y)", + "items": "elementy", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamiczny", + "Static": "Statyczny", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Tworzenie zawartości listy odtwarzania i zapisz kryteria", + "Shuffle playlist content": "Losowa kolejność odtwarzania", + "Shuffle": "Przemieszaj", + "Limit cannot be empty or smaller than 0": "Limit nie może być pusty oraz mniejszy od 0", + "Limit cannot be more than 24 hrs": "Limit nie może być większy niż 24 godziny", + "The value should be an integer": "Wartość powinna być liczbą całkowitą", + "500 is the max item limit value you can set": "Maksymalna liczba elementów do ustawienia to 500", + "You must select Criteria and Modifier": "Należy wybrać kryteria i modyfikator", + "'Length' should be in '00:00:00' format": "Długość powinna być wprowadzona w formacie '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Wartość musi być liczbą", + "The value should be less then 2147483648": "Wartość powinna być mniejsza niż 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Wartość powinna posiadać mniej niż %s znaków", + "Value cannot be empty": "Wartość nie może być pusta", + "Stream Label:": "Nazwa strumienia:", + "Artist - Title": "Artysta - Tytuł", + "Show - Artist - Title": "Audycja - Artysta -Tytuł", + "Station name - Show name": "Nazwa stacji - Nazwa audycji", + "Off Air Metadata": "Metadane Off Air", + "Enable Replay Gain": "Włącz normalizację głośności (Replay Gain)", + "Replay Gain Modifier": "Modyfikator normalizacji głośności", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Włączony:", + "Mobile:": "", + "Stream Type:": "Typ strumienia:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Typ usługi:", + "Channels:": "Kanały:", + "Server": "Serwer", + "Port": "Port", + "Mount Point": "Punkt montowania", + "Name": "Nazwa", + "URL": "adres URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Katalog importu:", + "Watched Folders:": "Katalogi obserwowane:", + "Not a valid Directory": "Nieprawidłowy katalog", + "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' nie pasuje do formatu daty '%format%'", + "'%value%' is less than %min% characters long": "'%value%' zawiera mniej niż %min% znaków", + "'%value%' is more than %max% characters long": "'%value%' zawiera więcej niż %max% znaków", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'", + "Passwords do not match": "Hasła muszą się zgadzać", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue-in i cue-out mają wartość zerową.", + "Can't set cue out to be greater than file length.": "Wartość cue-out nie może być większa niż długość pliku.", + "Can't set cue in to be larger than cue out.": "Wartość cue-in nie może być większa niż cue-out.", + "Can't set cue out to be smaller than cue in.": "Wartość cue-out nie może być mniejsza od cue-in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Wybierz kraj", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)", + "The schedule you're viewing is out of date! (instance mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)", + "The schedule you're viewing is out of date!": "Harmonogram, który przeglądasz jest nieaktualny!", + "You are not allowed to schedule show %s.": "Nie posiadasz uprawnień, aby zaplanować audycję %s.", + "You cannot add files to recording shows.": "Nie można dodawać plików do nagrywanych audycji.", + "The show %s is over and cannot be scheduled.": "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana.", + "The show %s has been previously updated!": "Audycja %s została zaktualizowana wcześniej!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Wybrany plik nie istnieje!", + "Shows can have a max length of 24 hours.": "Audycje mogą mieć maksymalną długość 24 godzin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nie można planować audycji nakładających się na siebie.\nUwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń.", + "Rebroadcast of %s from %s": "Retransmisja z %s do %s", + "Length needs to be greater than 0 minutes": "Długość musi być większa niż 0 minut", + "Length should be of form \"00h 00m\"": "Długość powinna mieć postać \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL powinien mieć postać \"https://example.org\"", + "URL should be 512 characters or less": "URL powinien mieć 512 znaków lub mniej", + "No MIME type found for webstream.": "Nie znaleziono typu MIME dla webstreamu", + "Webstream name cannot be empty": "Nazwa webstreamu nie może być pusta", + "Could not parse XSPF playlist": "Nie można przeanalizować playlisty XSPF", + "Could not parse PLS playlist": "Nie można przeanalizować playlisty PLS", + "Could not parse M3U playlist": "Nie można przeanalizować playlisty M3U", + "Invalid webstream - This appears to be a file download.": "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku.", + "Unrecognized stream type: %s": "Nie rozpoznano typu strumienia: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Przeglądaj metadane nagrania", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edytuj audycję", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji.", + "Can't move a past show": "Nie można przenieść audycji archiwalnej", + "Can't move show into past": "Nie można przenieść audycji w przeszłość", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką.", + "Show was deleted because recorded show does not exist!": "Audycja została usunięta, ponieważ nagranie nie istnieje!", + "Must wait 1 hour to rebroadcast.": "Należy odczekać 1 godzinę przed ponownym odtworzeniem.", + "Track": "", + "Played": "Odtwarzane", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/pt_BR.json b/webapp/src/locale/pt_BR.json new file mode 100644 index 0000000000..1241097228 --- /dev/null +++ b/webapp/src/locale/pt_BR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "O ano %s deve estar compreendido no intervalo entre 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s não é uma data válida", + "%s:%s:%s is not a valid time": "%s:%s:%s não é um horário válido", + "English": "Inglês", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "Catalão", + "Corsican": "", + "Czech": "Tcheco", + "Welsh": "", + "Danish": "", + "German": "Alemão", + "Bhutani": "", + "Greek": "Grego", + "Esperanto": "", + "Spanish": "Espanhol", + "Estonian": "", + "Basque": "", + "Persian": "Persa", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "Francês", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "Italiano", + "Hebrew": "Hebraíco", + "Japanese": "Japonês", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "Português", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Chinês", + "Zulu": "", + "Use station default": "Usar estação padrão", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "Seviço de API do LibreTime", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendário", + "Widgets": "", + "Player": "Reprodutor", + "Weekly Schedule": "", + "Settings": "Configurações", + "General": "Geral", + "My Profile": "Meu perfil", + "Users": "Usuários", + "Track Types": "", + "Streams": "Fluxos", + "Status": "Estado", + "Analytics": "", + "Playout History": "Histórico da Programação", + "History Templates": "", + "Listener Stats": "Estatísticas de Ouvintes", + "Show Listener Stats": "", + "Help": "Ajuda", + "Getting Started": "Iniciando", + "User Manual": "Manual do Usuário", + "Get Help Online": "", + "Contribute to LibreTime": "Contribua para o LibreTime", + "What's New?": "O que há de novo?", + "You are not allowed to access this resource.": "Você não tem permissão para acessar esta funcionalidade.", + "You are not allowed to access this resource. ": "Você não tem permissão para acessar esta funcionalidade.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Requisição inválida. Parâmetro não informado.", + "Bad request. 'mode' parameter is invalid": "Requisição inválida. Parâmetro informado é inválido.", + "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", + "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", + "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Página não encontrada.", + "The requested action is not supported.": "A ação solicitada não é suportada.", + "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", + "An internal application error has occurred.": "", + "%s Podcast": "Podcast %s", + "No tracks have been published yet.": "", + "%s not found": "%s não encontrado", + "Something went wrong.": "Ocorreu algo errado.", + "Preview": "Visualizar", + "Add to Playlist": "Adicionar à Lista", + "Add to Smart Block": "Adicionar ao Bloco", + "Delete": "Excluir", + "Edit...": "Editar...", + "Download": "Download", + "Duplicate Playlist": "Duplicar Lista", + "Duplicate Smartblock": "", + "No action available": "Nenhuma ação disponível", + "You don't have permission to delete selected items.": "Você não tem permissão para excluir os itens selecionados.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "Não foi possível apagar arquivo(s).", + "Copy of %s": "Cópia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos.", + "Audio Player": "Player de Áudio", + "Something went wrong!": "", + "Recording:": "Gravando:", + "Master Stream": "Fluxo Mestre", + "Live Stream": "Fluxo Ao Vivo", + "Nothing Scheduled": "Nada Programado", + "Current Show:": "Programa em Exibição:", + "Current": "Agora", + "You are running the latest version": "Você está executando a versão mais recente", + "New version available: ": "Nova versão disponível:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Adicionar a esta lista de reprodução", + "Add to current smart block": "Adiconar a este bloco", + "Adding 1 Item": "Adicionando 1 item", + "Adding %s Items": "Adicionando %s items", + "You can only add tracks to smart blocks.": "Você pode adicionar somente faixas a um bloco inteligente.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução", + "Please select a cursor position on timeline.": "Por favor selecione um posição do cursor na linha do tempo.", + "You haven't added any tracks": "", + "You haven't added any playlists": "Você não adicionou nenhuma playlist", + "You haven't added any podcasts": "Você não adicionou nenhum podcast", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Adicionar", + "New": "Novo", + "Edit": "Editar", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Publicar", + "Remove": "Remover", + "Edit Metadata": "Editar Metadados", + "Add to selected show": "Adicionar ao programa selecionado", + "Select": "Selecionar", + "Select this page": "Selecionar esta página", + "Deselect this page": "Desmarcar esta página", + "Deselect all": "Desmarcar todos", + "Are you sure you want to delete the selected item(s)?": "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?", + "Scheduled": "Agendado", + "Tracks": "", + "Playlist": "", + "Title": "Título", + "Creator": "Criador", + "Album": "Álbum", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Maestro", + "Copyright": "Copyright", + "Encoded By": "Convertido por", + "Genre": "Gênero", + "ISRC": "ISRC", + "Label": "Legenda", + "Language": "Idioma", + "Last Modified": "Última Ateração", + "Last Played": "Última Execução", + "Length": "Duração", + "Mime": "Mime", + "Mood": "Humor", + "Owner": "Prorietário", + "Replay Gain": "Ganho de Reprodução", + "Sample Rate": "Taxa de Amostragem", + "Track Number": "Número de Faixa", + "Uploaded": "Adicionado", + "Website": "Website", + "Year": "Ano", + "Loading...": "Carregando...", + "All": "Todos", + "Files": "Arquivos", + "Playlists": "Listas", + "Smart Blocks": "Blocos", + "Web Streams": "Fluxos", + "Unknown type: ": "Tipo Desconhecido:", + "Are you sure you want to delete the selected item?": "Você tem certeza que deseja excluir o item selecionado?", + "Uploading in progress...": "Upload em andamento...", + "Retrieving data from the server...": "Obtendo dados do servidor...", + "Import": "Importar", + "Imported?": "", + "View": "", + "Error code: ": "Código do erro:", + "Error msg: ": "Mensagem de erro:", + "Input must be a positive number": "A entrada deve ser um número positivo", + "Input must be a number": "A entrada deve ser um número", + "Input must be in the format: yyyy-mm-dd": "A entrada deve estar no formato yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "A entrada deve estar no formato hh:mm:ss.t", + "My Podcast": "Meu Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "por favor informe o tempo no formato '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Seu navegador não suporta a execução deste tipo de arquivo:", + "Dynamic block is not previewable": "Não é possível o preview de blocos dinâmicos", + "Limit to: ": "Limitar em:", + "Playlist saved": "A lista foi salva", + "Playlist shuffled": "A lista foi embaralhada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'.", + "Listener Count on %s: %s": "Número de Ouvintes em %s: %s", + "Remind me in 1 week": "Lembrar-me dentro de uma semana", + "Remind me never": "Não me lembrar novamente", + "Yes, help Airtime": "Sim, quero colaborar com o Airtime", + "Image must be one of jpg, jpeg, png, or gif": "A imagem precisa conter extensão jpg, jpeg, png ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "O bloco foi embaralhado", + "Smart block generated and criteria saved": "O bloco foi gerado e o criterio foi salvo", + "Smart block saved": "O bloco foi salvo", + "Processing...": "Processando...", + "Select modifier": "Selecionar modificador", + "contains": "contém", + "does not contain": "não contém", + "is": "é", + "is not": "não é", + "starts with": "começa com", + "ends with": "termina com", + "is greater than": "é maior que", + "is less than": "é menor que", + "is in the range": "está no intervalo", + "Generate": "Gerar", + "Choose Storage Folder": "Selecione o Diretório de Armazenamento", + "Choose Folder to Watch": "Selecione o Diretório para Monitoramento", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Tem certeza de que deseja alterar o diretório de armazenamento? \nIsto irá remover os arquivos de sua biblioteca Airtime!", + "Manage Media Folders": "Gerenciar Diretórios de Mídia", + "Are you sure you want to remove the watched folder?": "Tem certeza que deseja remover o diretório monitorado?", + "This path is currently not accessible.": "O caminho está inacessível no momento.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Conectado ao servidor de fluxo", + "The stream is disabled": "O fluxo está desabilitado", + "Getting information from the server...": "Obtendo informações do servidor...", + "Can not connect to the streaming server": "Não é possível conectar ao servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\".", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes.", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nenhum resultado encontrado", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar.", + "Specify custom authentication which will work only for this show.": "Defina uma autenticação personalizada que funcionará apenas neste programa.", + "The show instance doesn't exist anymore!": "A instância deste programa não existe mais!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Programa", + "Show is empty": "O programa está vazio", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Obtendo dados do servidor...", + "This show has no scheduled content.": "Este programa não possui conteúdo agendado.", + "This show is not completely filled with content.": "Este programa não possui duração completa de conteúdos.", + "January": "Janeiro", + "February": "Fevereiro", + "March": "Março", + "April": "Abril", + "May": "Maio", + "June": "Junho", + "July": "Julho", + "August": "Agosto", + "September": "Setembro", + "October": "Outubro", + "November": "Novembro", + "December": "Dezembro", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Out", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domingo", + "Monday": "Segunda", + "Tuesday": "Terça", + "Wednesday": "Quarta", + "Thursday": "Quinta", + "Friday": "Sexta", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Seg", + "Tue": "Ter", + "Wed": "Qua", + "Thu": "Qui", + "Fri": "Sex", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte.", + "Cancel Current Show?": "Cancelar Programa em Execução?", + "Stop recording current show?": "Parar gravação do programa em execução?", + "Ok": "Ok", + "Contents of Show": "Conteúdos do Programa", + "Remove all content?": "Remover todos os conteúdos?", + "Delete selected item(s)?": "Excluir item(ns) selecionado(s)?", + "Start": "Início", + "End": "Fim", + "Duration": "Duração", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue Entrada", + "Cue Out": "Cue Saída", + "Fade In": "Fade Entrada", + "Fade Out": "Fade Saída", + "Show Empty": "Programa vazio", + "Recording From Line In": "Gravando a partir do Line In", + "Track preview": "Prévia da faixa", + "Cannot schedule outside a show.": "Não é possível realizar agendamento fora de um programa.", + "Moving 1 Item": "Movendo 1 item", + "Moving %s Items": "Movendo %s itens", + "Save": "Salvar", + "Cancel": "Cancelar", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Selecionar todos", + "Select none": "Selecionar nenhum", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remover seleção de itens agendados", + "Jump to the current playing track": "Saltar para faixa em execução", + "Jump to Current": "", + "Cancel current show": "Cancelar programa atual", + "Open library to add or remove content": "Abrir biblioteca para adicionar ou remover conteúdo", + "Add / Remove Content": "Adicionar / Remover Conteúdo", + "in use": "em uso", + "Disk": "Disco", + "Look in": "Explorar", + "Open": "Abrir", + "Admin": "Administrador", + "DJ": "DJ", + "Program Manager": "Gerente de Programação", + "Guest": "Visitante", + "Guests can do the following:": "Visitantes podem fazer o seguinte:", + "View schedule": "Visualizar agendamentos", + "View show content": "Visualizar conteúdo dos programas", + "DJs can do the following:": "DJs podem fazer o seguinte:", + "Manage assigned show content": "Gerenciar o conteúdo de programas delegados a ele", + "Import media files": "Importar arquivos de mídia", + "Create playlists, smart blocks, and webstreams": "Criar listas de reprodução, blocos inteligentes e fluxos", + "Manage their own library content": "Gerenciar sua própria blblioteca de conteúdos", + "Program Managers can do the following:": "", + "View and manage show content": "Visualizar e gerenciar o conteúdo dos programas", + "Schedule shows": "Agendar programas", + "Manage all library content": "Gerenciar bibliotecas de conteúdo", + "Admins can do the following:": "Administradores podem fazer o seguinte:", + "Manage preferences": "Gerenciar configurações", + "Manage users": "Gerenciar usuários", + "Manage watched folders": "Gerenciar diretórios monitorados", + "Send support feedback": "Enviar informações de suporte", + "View system status": "Visualizar estado do sistema", + "Access playout history": "Acessar o histórico da programação", + "View listener stats": "Ver estado dos ouvintes", + "Show / hide columns": "Exibir / ocultar colunas", + "Columns": "", + "From {from} to {to}": "De {from} até {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "khz", + "Su": "Do", + "Mo": "Se", + "Tu": "Te", + "We": "Qu", + "Th": "Qu", + "Fr": "Se", + "Sa": "Sa", + "Close": "Fechar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Concluído", + "Select files": "Selecionar arquivos", + "Add files to the upload queue and click the start button.": "Adicione arquivos para a fila de upload e pressione o botão iniciar ", + "Filename": "", + "Size": "", + "Add Files": "Adicionar Arquivos", + "Stop Upload": "Parar Upload", + "Start upload": "Iniciar Upload", + "Start Upload": "", + "Add files": "Adicionar arquivos", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d arquivos importados", + "N/A": "N/A", + "Drag files here.": "Arraste arquivos nesta área.", + "File extension error.": "Erro na extensão do arquivo.", + "File size error.": "Erro no tamanho do arquivo.", + "File count error.": "Erro na contagem dos arquivos.", + "Init error.": "Erro de inicialização.", + "HTTP Error.": "Erro HTTP.", + "Security error.": "Erro de segurança.", + "Generic error.": "Erro genérico.", + "IO error.": "Erro de I/O.", + "File: %s": "Arquivos: %s.", + "%d files queued": "%d arquivos adicionados à fila.", + "File: %f, size: %s, max file size: %m": "Arquivo: %f, tamanho: %s, tamanho máximo: %m", + "Upload URL might be wrong or doesn't exist": "URL de upload pode estar incorreta ou inexiste.", + "Error: File too large: ": "Erro: Arquivo muito grande:", + "Error: Invalid file extension: ": "Erro: Extensão de arquivo inválida.", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s linhas%s copiadas para a área de transferência", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrição", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ativo", + "Disabled": "Inativo", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Usuário ou senha inválidos. Tente novamente.", + "You are viewing an older version of %s": "Você está vendo uma versão obsoleta de %s", + "You cannot add tracks to dynamic blocks.": "Você não pode adicionar faixas a um bloco dinâmico", + "You don't have permission to delete selected %s(s).": "Você não tem permissão para excluir os %s(s) selecionados.", + "You can only add tracks to smart block.": "Você pode somente adicionar faixas um bloco inteligente.", + "Untitled Playlist": "Lista Sem Título", + "Untitled Smart Block": "Bloco Sem Título", + "Unknown Playlist": "Lista Desconhecida", + "Preferences updated.": "Preferências atualizadas.", + "Stream Setting Updated.": "Preferências de fluxo atualizadas.", + "path should be specified": "o caminho precisa ser informado", + "Problem with Liquidsoap...": "Problemas com o Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmissão do programa %s de %s as %s", + "Select cursor": "Selecione o cursor", + "Remove cursor": "Remover o cursor", + "show does not exist": "programa inexistente", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Usuário adicionado com sucesso!", + "User updated successfully!": "Usuário atualizado com sucesso!", + "Settings updated successfully!": "Configurações atualizadas com sucesso!", + "Untitled Webstream": "Fluxo Sem Título", + "Webstream saved.": "Fluxo gravado.", + "Invalid form values.": "Valores do formulário inválidos.", + "Invalid character entered": "Caracter inválido informado", + "Day must be specified": "O dia precisa ser especificado", + "Time must be specified": "O horário deve ser especificado", + "Must wait at least 1 hour to rebroadcast": "É preciso aguardar uma hora para retransmitir", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usar Autenticação Personalizada:", + "Custom Username": "Definir Usuário:", + "Custom Password": "Definir Senha:", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "O usuário não pode estar em branco.", + "Password field cannot be empty.": "A senha não pode estar em branco.", + "Record from Line In?": "Gravar a partir do Line In?", + "Rebroadcast?": "Retransmitir?", + "days": "dias", + "Link:": "", + "Repeat Type:": "Tipo de Reexibição:", + "weekly": "semanal", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensal", + "Select Days:": "Selecione os Dias:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data de Fim:", + "No End?": "Sem fim?", + "End date must be after start date": "A data de fim deve ser posterior à data de início", + "Please select a repeat day": "", + "Background Colour:": "Cor de Fundo:", + "Text Colour:": "Cor da Fonte:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Programa Sem Título", + "URL:": "URL:", + "Genre:": "Gênero:", + "Description:": "Descrição:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' não corresponde ao formato 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duração:", + "Timezone:": "Fuso Horário:", + "Repeats?": "Reexibir?", + "Cannot create show in the past": "Não é possível criar um programa no passado.", + "Cannot modify start date/time of the show that is already started": "Não é possível alterar o início de um programa que está em execução", + "End date/time cannot be in the past": "Data e horário finais não podem ser definidos no passado.", + "Cannot have duration < 0m": "Não pode ter duração < 0m", + "Cannot have duration 00h 00m": "Não pode ter duração 00h 00m", + "Cannot have duration greater than 24h": "Não pode ter duração maior que 24 horas", + "Cannot schedule overlapping shows": "Não é permitido agendar programas sobrepostos", + "Search Users:": "Procurar Usuários:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Usuário:", + "Password:": "Senha:", + "Verify Password:": "Confirmar Senha:", + "Firstname:": "Primeiro nome:", + "Lastname:": "Último nome:", + "Email:": "Email:", + "Mobile Phone:": "Celular:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Perfil do Usuário:", + "Login name is not unique.": "Usuário já existe.", + "Delete All Tracks in Library": "", + "Date Start:": "Data de Início:", + "Title:": "Título:", + "Creator:": "Criador:", + "Album:": "Álbum:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Ano:", + "Label:": "Legenda:", + "Composer:": "Compositor:", + "Conductor:": "Maestro:", + "Mood:": "Humor:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Número ISRC:", + "Website:": "Website:", + "Language:": "Idioma:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome da Estação", + "Station Description": "", + "Station Logo:": "Logo da Estação:", + "Note: Anything larger than 600x600 will be resized.": "Nota: qualquer arquivo maior que 600x600 será redimensionado", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Semana Inicia Em", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Acessar", + "Password": "Senha", + "Confirm new password": "Confirmar nova senha", + "Password confirmation does not match your password.": "A senha de confirmação não confere.", + "Email": "", + "Username": "Usuário", + "Reset password": "Redefinir senha", + "Back": "", + "Now Playing": "Tocando agora", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Meus Programas:", + "My Shows": "", + "Select criteria": "Selecione um critério", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Taxa de Amostragem (khz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "horas", + "minutes": "minutos", + "items": "itens", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinâmico", + "Static": "Estático", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Gerar conteúdo da lista e salvar critério", + "Shuffle playlist content": "Embaralhar conteúdo da lista", + "Shuffle": "Embaralhar", + "Limit cannot be empty or smaller than 0": "O limite não pode ser vazio ou menor que 0", + "Limit cannot be more than 24 hrs": "O limite não pode ser maior que 24 horas", + "The value should be an integer": "O valor deve ser um número inteiro", + "500 is the max item limit value you can set": "O número máximo de itens é 500", + "You must select Criteria and Modifier": "Você precisa selecionar Critério e Modificador ", + "'Length' should be in '00:00:00' format": "A duração deve ser informada no formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "O valor deve ser numérico", + "The value should be less then 2147483648": "O valor precisa ser menor que 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "O valor deve conter no máximo %s caracteres", + "Value cannot be empty": "O valor não pode estar em branco", + "Stream Label:": "Legenda do Fluxo:", + "Artist - Title": "Artista - Título", + "Show - Artist - Title": "Programa - Artista - Título", + "Station name - Show name": "Nome da Estação - Nome do Programa", + "Off Air Metadata": "Metadados Off Air", + "Enable Replay Gain": "Habilitar Ganho de Reprodução", + "Replay Gain Modifier": "Modificador de Ganho de Reprodução", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Habilitado:", + "Mobile:": "", + "Stream Type:": "Tipo de Fluxo:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Tipo de Serviço:", + "Channels:": "Canais:", + "Server": "Servidor", + "Port": "Porta", + "Mount Point": "Ponto de Montagem", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Diretório de Importação:", + "Watched Folders:": "Diretórios Monitorados: ", + "Not a valid Directory": "Não é um diretório válido", + "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", + "'%value%' is no valid email address in the basic format local-part@hostname": "%value%' não é um enderçeo de email válido", + "'%value%' does not fit the date format '%format%'": "'%value%' não corresponde a uma data válida '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is menor que comprimento mínimo %min% de caracteres", + "'%value%' is more than %max% characters long": "'%value%' is maior que o número máximo %max% de caracteres", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' não está compreendido entre '%min%' e '%max%', inclusive", + "Passwords do not match": "Senhas não conferem", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue de entrada e saída são nulos.", + "Can't set cue out to be greater than file length.": "O ponto de saída não pode ser maior que a duração do arquivo", + "Can't set cue in to be larger than cue out.": "A duração do ponto de entrada não pode ser maior que a do ponto de saída.", + "Can't set cue out to be smaller than cue in.": "A duração do ponto de saída não pode ser menor que a do ponto de entrada.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecione o País", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "A programação que você está vendo está desatualizada! (programação incompatível)", + "The schedule you're viewing is out of date! (instance mismatch)": "A programação que você está vendo está desatualizada! (instância incompatível)", + "The schedule you're viewing is out of date!": "A programação que você está vendo está desatualizada!", + "You are not allowed to schedule show %s.": "Você não tem permissão para agendar programa %s.", + "You cannot add files to recording shows.": "Você não pode adicionar arquivos para gravação de programas.", + "The show %s is over and cannot be scheduled.": "O programa %s terminou e não pode ser agendado.", + "The show %s has been previously updated!": "O programa %s foi previamente atualizado!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Um dos arquivos selecionados não existe!", + "Shows can have a max length of 24 hours.": "Os programas podem ter duração máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Não é possível agendar programas sobrepostos.\nNota: Redimensionar um programa repetitivo afeta todas as suas repetições.", + "Rebroadcast of %s from %s": "Retransmissão de %s a partir de %s", + "Length needs to be greater than 0 minutes": "A duração precisa ser maior que 0 minuto", + "Length should be of form \"00h 00m\"": "A duração deve ser informada no formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "A URL deve estar no formato \"https://example.org\"", + "URL should be 512 characters or less": "A URL de conter no máximo 512 caracteres", + "No MIME type found for webstream.": "Nenhum tipo MIME encontrado para o fluxo.", + "Webstream name cannot be empty": "O nome do fluxo não pode estar vazio", + "Could not parse XSPF playlist": "Não foi possível analisar a lista XSPF", + "Could not parse PLS playlist": "Não foi possível analisar a lista PLS", + "Could not parse M3U playlist": "Não foi possível analisar a lista M3U", + "Invalid webstream - This appears to be a file download.": "Fluxo web inválido. A URL parece tratar-se de download de arquivo.", + "Unrecognized stream type: %s": "Tipo de fluxo não reconhecido: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Visualizar Metadados do Arquivo Gravado", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Editar Programa", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Não é possível arrastar e soltar programas repetidos", + "Can't move a past show": "Não é possível mover um programa anterior", + "Can't move show into past": "Não é possível mover um programa anterior", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões.", + "Show was deleted because recorded show does not exist!": "O programa foi excluído porque a gravação prévia não existe!", + "Must wait 1 hour to rebroadcast.": "É necessário aguardar 1 hora antes de retransmitir.", + "Track": "", + "Played": "Executado", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/ru_RU.json b/webapp/src/locale/ru_RU.json new file mode 100644 index 0000000000..d443da1f94 --- /dev/null +++ b/webapp/src/locale/ru_RU.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "%s год должен быть в пределах 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s недопустимая дата", + "%s:%s:%s is not a valid time": "%s : %s : %s недопустимое время", + "English": "Английский", + "Afar": "Афар", + "Abkhazian": "Абхазский", + "Afrikaans": "Африкаанс", + "Amharic": "Амхарский", + "Arabic": "Арабский", + "Assamese": "Ассамский", + "Aymara": "Аймара", + "Azerbaijani": "Азербаджанский", + "Bashkir": "Башкирский", + "Belarusian": "Белорусский", + "Bulgarian": "Болгарский", + "Bihari": "Бихари", + "Bislama": "Бислама", + "Bengali/Bangla": "Бенгали", + "Tibetan": "Тибетский", + "Breton": "Бретонский", + "Catalan": "Каталанский", + "Corsican": "Корсиканский", + "Czech": "Чешский", + "Welsh": "Вэльский", + "Danish": "Данский", + "German": "Немецкий", + "Bhutani": "Бутан", + "Greek": "Греческий", + "Esperanto": "Эсперанто", + "Spanish": "Испанский", + "Estonian": "Эстонский", + "Basque": "Басков", + "Persian": "Персидский", + "Finnish": "Финский", + "Fiji": "Фиджи", + "Faeroese": "Фарси", + "French": "Французский", + "Frisian": "Фризский", + "Irish": "Ирландский", + "Scots/Gaelic": "Шотландский", + "Galician": "Галицийский", + "Guarani": "Гуананский", + "Gujarati": "Гуджарати", + "Hausa": "Науса", + "Hindi": "Хинди", + "Croatian": "Хорватский", + "Hungarian": "Венгерский", + "Armenian": "Армянский", + "Interlingua": "Интернациональный", + "Interlingue": "Интерлинг", + "Inupiak": "Инупиак", + "Indonesian": "Индонезийский", + "Icelandic": "Исландский", + "Italian": "Итальянский", + "Hebrew": "Иврит", + "Japanese": "Японский", + "Yiddish": "Иудейский", + "Javanese": "Яванский", + "Georgian": "Грузинский", + "Kazakh": "Казахский", + "Greenlandic": "Гренландский", + "Cambodian": "Камбоджийский", + "Kannada": "Каннадский", + "Korean": "Корейский", + "Kashmiri": "Кашмирский", + "Kurdish": "Курдский", + "Kirghiz": "Киргизский", + "Latin": "Латынь", + "Lingala": "Лингала", + "Laothian": "Лаосский", + "Lithuanian": "Литовский", + "Latvian/Lettish": "Латвийский", + "Malagasy": "Малайзийский", + "Maori": "Маори", + "Macedonian": "Македонский", + "Malayalam": "Малаямский", + "Mongolian": "Монгольский", + "Moldavian": "Молдавский", + "Marathi": "Маратхи", + "Malay": "Малайзийский", + "Maltese": "Мальтийский", + "Burmese": "Бирманский", + "Nauru": "Науру", + "Nepali": "Непальский", + "Dutch": "Немецкий", + "Norwegian": "Норвежский", + "Occitan": "Окситанский", + "(Afan)/Oromoor/Oriya": "(Афан)/Оромур/Ория", + "Punjabi": "Панджаби Эм Си", + "Polish": "Польский", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальский", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рэето-романс", + "Kirundi": "Кирунди", + "Romanian": "Румынский", + "Russian": "Русский", + "Kinyarwanda": "Киньяруанда", + "Sanskrit": "Санскрит", + "Sindhi": "Синди", + "Sangro": "Сангро", + "Serbo-Croatian": "Сербский", + "Singhalese": "Синигальский", + "Slovak": "Словацкий", + "Slovenian": "Славянский", + "Samoan": "Самоанский", + "Shona": "Шона", + "Somali": "Сомалийский", + "Albanian": "Албанский", + "Serbian": "Сербский", + "Siswati": "Сисвати", + "Sesotho": "Сесото", + "Sundanese": "Сунданский", + "Swedish": "Шведский", + "Swahili": "Суахили", + "Tamil": "Тамильский", + "Tegulu": "Телугу", + "Tajik": "Таджикский", + "Thai": "Тайский", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменский", + "Tagalog": "Тагальский", + "Setswana": "Сетсвана", + "Tonga": "Тонга", + "Turkish": "Турецкий", + "Tsonga": "Тсонга", + "Tatar": "Татарский", + "Twi": "Тви", + "Ukrainian": "Украинский", + "Urdu": "Урду", + "Uzbek": "Узбекский", + "Vietnamese": "Въетнамский", + "Volapuk": "Волапукский", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубский", + "Chinese": "Китайский", + "Zulu": "Зулу", + "Use station default": "Время станции по умолчанию", + "Upload some tracks below to add them to your library!": "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s.", + "Click the 'New Show' button and fill out the required fields.": "Нажмите на кнопку «Новая Программа» и заполните необходимые поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Выберите следующую Программу и нажмите «Запланировать Треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s.", + "LibreTime media analyzer service": "Служба медиа анализатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Проверьте, что служба libretime-analyzer правильно установлена в ", + " and ensure that it's running with ": " а также убедитесь, что она запущена ", + "If not, try ": "Если нет - попробуйте запустить", + "LibreTime playout service": "Служба воспроизведения LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Проверьте, что служба libretime-playout правильно установлена в ", + "LibreTime liquidsoap service": "Служба Liquidsoap LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Проверьте, что служба libretime-liquidsoap правильно установлена в ", + "LibreTime Celery Task service": "Служба Celery Task LibreTime", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Страница Радио", + "Calendar": "Календарь", + "Widgets": "Виджеты", + "Player": "Плеер", + "Weekly Schedule": "Расписание программ", + "Settings": "Настройки", + "General": "Основные", + "My Profile": "Мой профиль", + "Users": "Пользователи", + "Track Types": "Типы треков", + "Streams": "Аудио потоки", + "Status": "Статус системы", + "Analytics": "Аналитика", + "Playout History": "История воспроизведения треков", + "History Templates": "Шаблоны истории", + "Listener Stats": "Статистика по слушателям", + "Show Listener Stats": "Статистика прослушиваний", + "Help": "Справка", + "Getting Started": "С чего начать", + "User Manual": "Руководство пользователя", + "Get Help Online": "Получить справку онлайн", + "Contribute to LibreTime": "", + "What's New?": "Что нового?", + "You are not allowed to access this resource.": "Вы не имеете доступа к этому ресурсу.", + "You are not allowed to access this resource. ": "Вы не имеете доступа к этому ресурсу. ", + "File does not exist in %s": "Файл не существует в %s", + "Bad request. no 'mode' parameter passed.": "Неверный запрос. Параметр «режим» не прошел.", + "Bad request. 'mode' parameter is invalid": "Неверный запрос. Параметр «режим» является недопустимым", + "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", + "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", + "You don't have permission to switch source.": "У вас нет прав для переключения источника.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:

\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "Page not found.": "Страница не найдена.", + "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", + "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", + "An internal application error has occurred.": "Произошла внутренняя ошибка.", + "%s Podcast": "%s Подкаст", + "No tracks have been published yet.": "Ни одного трека пока не опубликовано.", + "%s not found": "%s не найден", + "Something went wrong.": "Что-то пошло не так.", + "Preview": "Прослушать", + "Add to Playlist": "Добавить в Плейлист", + "Add to Smart Block": "Добавить в Смарт-блок", + "Delete": "Удалить", + "Edit...": "Редактировать...", + "Download": "Загрузка", + "Duplicate Playlist": "Дублировать Плейлист", + "Duplicate Smartblock": "Дублировать Смарт-блок", + "No action available": "Нет доступных действий", + "You don't have permission to delete selected items.": "У вас нет разрешения на удаление выбранных объектов.", + "Could not delete file because it is scheduled in the future.": "Нельзя удалить запланированный файл.", + "Could not delete file(s).": "Нельзя удалить файл(ы)", + "Copy of %s": "Копия %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки.", + "Audio Player": "Аудио плеер", + "Something went wrong!": "Что-то пошло не так!", + "Recording:": "Запись:", + "Master Stream": "Master-Steam", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Ничего нет", + "Current Show:": "Текущая Программа:", + "Current": "Играет", + "You are running the latest version": "Вы используете последнюю версию", + "New version available: ": "Доступна новая версия: ", + "You have a pre-release version of LibreTime intalled.": "У вас установлена предварительная версия LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступен патч обновлений для текущей версии LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступно обновление функций для текущей версии LibreTime.", + "A major update for your LibreTime installation is available.": "Доступно важное обновление для текущей версии LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее.", + "Add to current playlist": "Добавить в текущий Плейлист", + "Add to current smart block": "Добавить в текущий Смарт-блок", + "Adding 1 Item": "Добавление одного элемента", + "Adding %s Items": "Добавление %s элементов", + "You can only add tracks to smart blocks.": "Вы можете добавить только треки в Смарт-блоки.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты.", + "Please select a cursor position on timeline.": "Переместите курсор по временной шкале.", + "You haven't added any tracks": "Вы не добавили ни одного трека", + "You haven't added any playlists": "Вы не добавили ни одного Плейлиста", + "You haven't added any podcasts": "У вас не добавлено ни одного подкаста", + "You haven't added any smart blocks": "Вы не добавили ни одного Смарт-блока", + "You haven't added any webstreams": "Вы не добавили ни одного веб-потока", + "Learn about tracks": "Узнать больше о треках", + "Learn about playlists": "Узнать больше о Плейлистах", + "Learn about podcasts": "Узнать больше о Подкастах", + "Learn about smart blocks": "Узнать больше об Смарт-блоках", + "Learn about webstreams": "Узнать больше о веб-потоках", + "Click 'New' to create one.": "Выберите «Новый» для создания.", + "Add": "Добавить", + "New": "Новый", + "Edit": "Редактировать", + "Add to Schedule": "Добавить в расписание", + "Add to next show": "Добавить к следующему шоу", + "Add to current show": "Добавить к текущему шоу", + "Add after selected items": "", + "Publish": "Опубликовать", + "Remove": "Удалить", + "Edit Metadata": "Править мета-данные", + "Add to selected show": "Добавить в выбранную Программу", + "Select": "Выбрать", + "Select this page": "Выбрать текущую страницу", + "Deselect this page": "Отменить выбор текущей страницы", + "Deselect all": "Отменить все выделения", + "Are you sure you want to delete the selected item(s)?": "Вы действительно хотите удалить выбранные элементы?", + "Scheduled": "Запланирован", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Название", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Битрейт", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Дирижер", + "Copyright": "Копирайт", + "Encoded By": "Закодировано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Метка", + "Language": "Язык", + "Last Modified": "Изменен", + "Last Played": "Последнее проигрывание", + "Length": "Длительность", + "Mime": "Mime", + "Mood": "Настроение", + "Owner": "Владелец", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Номер трека", + "Uploaded": "Загружено", + "Website": "Вебсайт", + "Year": "Год", + "Loading...": "Загрузка...", + "All": "Все", + "Files": "Файлы", + "Playlists": "Плейлисты", + "Smart Blocks": "Смарт-блоки", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Неизвестный тип: ", + "Are you sure you want to delete the selected item?": "Вы действительно хотите удалить выбранный элемент?", + "Uploading in progress...": "Загружается ...", + "Retrieving data from the server...": "Получение данных с сервера ...", + "Import": "Импорт", + "Imported?": "Импортировано?", + "View": "Посмотреть", + "Error code: ": "Код ошибки: ", + "Error msg: ": "Сообщение об ошибке: ", + "Input must be a positive number": "Ввод должен быть положительным числом", + "Input must be a number": "Ввод должен быть числом", + "Input must be in the format: yyyy-mm-dd": "Ввод должен быть в формате: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Ввод должен быть в формате: чч:мм:сс", + "My Podcast": "Мой Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?", + "Open Media Builder": "Открыть медиа-построитель", + "please put in a time '00:00:00 (.0)'": "пожалуйста, установите время '00:00:00.0'", + "Please enter a valid time in seconds. Eg. 0.5": "Пожалуйста, укажите допустимое время в секундах. Например: 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не поддерживает воспроизведения данного типа файлов: ", + "Dynamic block is not previewable": "Динамический Блок не подлежит предпросмотру", + "Limit to: ": "Ограничить до: ", + "Playlist saved": "Плейлист сохранен", + "Playlist shuffled": "Плейлист перемешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра.", + "Listener Count on %s: %s": "Количество слушателей %s : %s", + "Remind me in 1 week": "Напомнить мне через одну неделю", + "Remind me never": "Никогда не напоминать", + "Yes, help Airtime": "Да, помочь LibreTime", + "Image must be one of jpg, jpeg, png, or gif": "Изображение должно быть в формате: jpg, jpeg, png или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке.", + "Smart block shuffled": "Смарт-блок перемешан", + "Smart block generated and criteria saved": "Смарт-блок создан и критерии сохранены", + "Smart block saved": "Смарт-блок сохранен", + "Processing...": "Подождите...", + "Select modifier": "Выберите модификатор", + "contains": "содержит", + "does not contain": "не содержит", + "is": "является", + "is not": "не является", + "starts with": "начинается с", + "ends with": "заканчивается", + "is greater than": "больше, чем", + "is less than": "меньше, чем", + "is in the range": "в диапазоне", + "Generate": "Сгенерировать", + "Choose Storage Folder": "Выберите папку хранения", + "Choose Folder to Watch": "Выберите папку для просмотра", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Вы уверены, что хотите изменить папку хранения? \n Файлы из вашей Библиотеки будут удалены!", + "Manage Media Folders": "Управление папками медиа-файлов", + "Are you sure you want to remove the watched folder?": "Вы уверены, что хотите удалить просматриваемую папку?", + "This path is currently not accessible.": "Этот путь в настоящий момент недоступен.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены.", + "Connected to the streaming server": "Подключено к потоковому серверу", + "The stream is disabled": "Поток отключен", + "Getting information from the server...": "Получение информации с сервера ...", + "Can not connect to the streaming server": "Не удалось подключиться к потоковому серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151.", + "For more details, please read the %s%s Manual%s": "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях.", + "Warning: You cannot change this field while the show is currently playing": "Внимание: Вы не можете изменить данное поле, пока Программа в эфире", + "No result found": "Не найдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться.", + "Specify custom authentication which will work only for this show.": "Укажите пользователя, который будет работать только в этой Программе.", + "The show instance doesn't exist anymore!": "Программы больше не существует!", + "Warning: Shows cannot be re-linked": "Внимание: Программы не могут быть пересвязаны", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса.", + "Show": "Программа", + "Show is empty": "Пустая Программа", + "1m": "1 мин", + "5m": "5 мин", + "10m": "10 мин", + "15m": "15 мин", + "30m": "30 мин", + "60m": "60 мин", + "Retreiving data from the server...": "Получение данных с сервера ...", + "This show has no scheduled content.": "В этой Программе нет запланированного контента.", + "This show is not completely filled with content.": "Данная Программа не до конца заполнена контентом.", + "January": "Январь", + "February": "Февраль", + "March": "Март", + "April": "Апрель", + "May": "Май", + "June": "Июнь", + "July": "Июль", + "August": "Август", + "September": "Сентябрь", + "October": "Октябрь", + "November": "Ноябрь", + "December": "Декабрь", + "Jan": "Янв", + "Feb": "Фев", + "Mar": "Март", + "Apr": "Апр", + "Jun": "Июн", + "Jul": "Июл", + "Aug": "Авг", + "Sep": "Сент", + "Oct": "Окт", + "Nov": "Нояб", + "Dec": "Дек", + "Today": "Сегодня", + "Day": "День", + "Week": "Неделя", + "Month": "Месяц", + "Sunday": "Воскресенье", + "Monday": "Понедельник", + "Tuesday": "Вторник", + "Wednesday": "Среда", + "Thursday": "Четверг", + "Friday": "Пятница", + "Saturday": "Суббота", + "Sun": "Вс", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой.", + "Cancel Current Show?": "Отменить эту Программу?", + "Stop recording current show?": "Остановить запись текущей Программы?", + "Ok": "Оk", + "Contents of Show": "Содержимое Программы", + "Remove all content?": "Удалить все содержимое?", + "Delete selected item(s)?": "Удалить выбранные элементы?", + "Start": "Начало", + "End": "Конец", + "Duration": "Длительность", + "Filtering out ": "Фильтрация ", + " of ": " из ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "Нет Программ, запланированных в указанный период времени.", + "Cue In": "Начало звучания", + "Cue Out": "Окончание звучания", + "Fade In": "Сведение", + "Fade Out": "Затухание", + "Show Empty": "Программа пуста", + "Recording From Line In": "Запись с линейного входа", + "Track preview": "Предпросмотр трека", + "Cannot schedule outside a show.": "Нельзя планировать вне рамок Программы.", + "Moving 1 Item": "Перемещение одного элемента", + "Moving %s Items": "Перемещение %s элементов", + "Save": "Сохранить", + "Cancel": "Отменить", + "Fade Editor": "Редактор затухания", + "Cue Editor": "Редактор начала трека", + "Waveform features are available in a browser supporting the Web Audio API": "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API", + "Select all": "Выбрать все", + "Select none": "Снять выделения", + "Trim overbooked shows": "Обрезать пересекающиеся Программы", + "Remove selected scheduled items": "Удалить выбранные запланированные элементы", + "Jump to the current playing track": "Перейти к текущей проигрываемой дорожке", + "Jump to Current": "Перейти к текущему треку", + "Cancel current show": "Отмена текущей Программы", + "Open library to add or remove content": "Открыть Библиотеку, чтобы добавить или удалить содержимое", + "Add / Remove Content": "Добавить/удалить содержимое", + "in use": "используется", + "Disk": "Диск", + "Look in": "Посмотреть", + "Open": "Открыть", + "Admin": "Админ", + "DJ": "Диджей", + "Program Manager": "Менеджер", + "Guest": "Гость", + "Guests can do the following:": "Гости могут следующее:", + "View schedule": "Просматривать расписание", + "View show content": "Просматривать содержимое программы", + "DJs can do the following:": "DJ может:", + "Manage assigned show content": "- Управлять контентом назначенной ему Программы;", + "Import media files": "Импортировать медиа-файлы", + "Create playlists, smart blocks, and webstreams": "Создавать плейлисты, смарт-блоки и вебстримы", + "Manage their own library content": "Управлять содержимым собственной библиотеки", + "Program Managers can do the following:": "Менеджеры Программ могут следующее:", + "View and manage show content": "Просматривать и управлять содержимым программы", + "Schedule shows": "Планировать программы", + "Manage all library content": "Управлять содержимым всех библиотек", + "Admins can do the following:": "Администраторы могут:", + "Manage preferences": "Управлять настройками", + "Manage users": "Управлять пользователями", + "Manage watched folders": "Управлять просматриваемыми папками", + "Send support feedback": "Отправлять отзыв поддержке", + "View system status": "Просматривать статус системы", + "Access playout history": "Получить доступ к истории воспроизведений", + "View listener stats": "Видеть статистику слушателей", + "Show / hide columns": "Показать/скрыть столбцы", + "Columns": "Столбцы", + "From {from} to {to}": "С {from} до {to}", + "kbps": "кбит/с", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "чч:мм:сс.t", + "kHz": "кГц", + "Su": "Вс", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрыть", + "Hour": "Часы", + "Minute": "Минуты", + "Done": "Готово", + "Select files": "Выбрать файлы", + "Add files to the upload queue and click the start button.": "Добавьте файлы в очередь загрузки и нажмите кнопку Старт.", + "Filename": "", + "Size": "", + "Add Files": "Добавить файлы", + "Stop Upload": "Остановить загрузку", + "Start upload": "Начать загрузку", + "Start Upload": "", + "Add files": "Добавить файлы", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Загружено %d/%d файлов", + "N/A": "н/д", + "Drag files here.": "Перетащите файлы сюда.", + "File extension error.": "Неверное расширение файла.", + "File size error.": "Неверный размер файла.", + "File count error.": "Ошибка подсчета файла.", + "Init error.": "Ошибка инициализации.", + "HTTP Error.": "Ошибка HTTP.", + "Security error.": "Ошибка безопасности.", + "Generic error.": "Общая ошибка.", + "IO error.": "Ошибка записи/чтения.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлов в очереди", + "File: %f, size: %s, max file size: %m": "Файл: %f, размер: %s, максимальный размер файла: %m", + "Upload URL might be wrong or doesn't exist": "URL загрузки указан неверно или не существует", + "Error: File too large: ": "Ошибка: Файл слишком большой: ", + "Error: Invalid file extension: ": "Ошибка: Неверное расширение файла: ", + "Set Default": "Установить по умолчанию", + "Create Entry": "Создать", + "Edit History Record": "Редактировать историю", + "No Show": "Нет программы", + "Copied %s row%s to the clipboard": "Скопировано %s строк %s в буфер обмена", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения.", + "New Show": "Новая Программа", + "New Log Entry": "Новая запись в журнале", + "No data available in table": "В таблице нет данных", + "(filtered from _MAX_ total entries)": "(отфильтровано из _MAX_ записей)", + "First": "Первая", + "Last": "Последняя", + "Next": "Следующая", + "Previous": "Предыдущая", + "Search:": "Поиск:", + "No matching records found": "Записи отсутствуют.", + "Drag tracks here from the library": "Перетащите треки сюда из Библиотеки", + "No tracks were played during the selected time period.": "В течение выбранного периода времени треки не воспроизводились.", + "Unpublish": "Снять с публикации", + "No matching results found.": "Результаты не найдены.", + "Author": "Автор", + "Description": "Описание", + "Link": "Ссылка", + "Publication Date": "Дата публикации", + "Import Status": "Статус загрузки", + "Actions": "Действия", + "Delete from Library": "Удалить из Библиотеки", + "Successfully imported": "Успешно загружено", + "Show _MENU_": "Показать _MENU_", + "Show _MENU_ entries": "Показать _MENU_ записей", + "Showing _START_ to _END_ of _TOTAL_ entries": "Записи с _START_ до _END_ из _TOTAL_ записей", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано с _START_ по _END_ из _TOTAL_ треков", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано с _START_ по _END_ из _TOTAL_ типов трека", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано с _START_ по _END_ из _TOTAL_ пользователей", + "Showing 0 to 0 of 0 entries": "Записи с 0 до 0 из 0 записей", + "Showing 0 to 0 of 0 tracks": "Показано с 0 по 0 из 0 треков", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Вы уверены что хотите удалить этот тип трека?", + "No track types were found.": "Типы треков не были найдены.", + "No track types found": "Типы треков не найдены", + "No matching track types found": "Не найдено подходящих типов треков", + "Enabled": "Включено", + "Disabled": "Отключено", + "Cancel upload": "Отменить загрузку", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Настройки подкаста сохранены", + "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", + "Can't delete yourself!": "Вы не можете удалить себя!", + "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", + "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", + "Try it now": "Попробовать сейчас", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

", + "Playlist preview": "Предпросмотр плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Предпросмотр веб-потока", + "You don't have permission to view the library.": "У вас нет разрешений для просмотра Библиотеки", + "Now": "С текущего момента", + "Click 'New' to create one now.": "Нажмите «Новый» чтобы создать новый", + "Click 'Upload' to add some now.": "Нажмите «Загрузить» чтобы добавить новый", + "Feed URL": "Ссылка на ленту", + "Import Date": "Дата импорта", + "Add New Podcast": "Добавить новый подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Нельзя планировать аудио вне рамок Программы.\nПопробуйте сначала создать Программу", + "No files have been uploaded yet.": "Еще ни одного файла не загружено", + "On Air": "В прямом эфире", + "Off Air": "Не в эфире", + "Offline": "Офлайн", + "Nothing scheduled": "Ничего не запланировано", + "Click 'Add' to create one now.": "Нажмите «Добавить» чтобы создать новый", + "Please enter your username and password.": "Пожалуйста введите ваш логин и пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом.", + "That username or email address could not be found.": "Такой пользователь или e-mail не найдены.", + "There was a problem with the username or email address you entered.": "Неправильно ввели логин или e-mail.", + "Wrong username or password provided. Please try again.": "Неверный логин или пароль. Пожалуйста, попробуйте еще раз.", + "You are viewing an older version of %s": "Вы просматриваете старые версии %s", + "You cannot add tracks to dynamic blocks.": "Вы не можете добавить треки в динамические блоки.", + "You don't have permission to delete selected %s(s).": "У вас нет разрешения на удаление выбранных %s(s).", + "You can only add tracks to smart block.": "Вы можете добавить треки только в Смарт-блок.", + "Untitled Playlist": "Плейлист без названия", + "Untitled Smart Block": "Смарт-блок без названия", + "Unknown Playlist": "Неизвестный Плейлист", + "Preferences updated.": "Настройки сохранены.", + "Stream Setting Updated.": "Настройки потока обновлены.", + "path should be specified": "необходимо указать путь", + "Problem with Liquidsoap...": "Проблема с Liquidsoap ...", + "Request method not accepted": "Метод запроса не принят", + "Rebroadcast of show %s from %s at %s": "Ретрансляция Программы %s от %s в %s", + "Select cursor": "Выбрать курсор", + "Remove cursor": "Удалить курсор", + "show does not exist": "Программы не существует", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Пользователь успешно добавлен!", + "User updated successfully!": "Пользователь успешно обновлен!", + "Settings updated successfully!": "Настройки успешно обновлены!", + "Untitled Webstream": "Веб-поток без названия", + "Webstream saved.": "Веб-поток сохранен.", + "Invalid form values.": "Недопустимые значения.", + "Invalid character entered": "Неверно введенный символ", + "Day must be specified": "Укажите день", + "Time must be specified": "Укажите время", + "Must wait at least 1 hour to rebroadcast": "Нужно подождать хотя бы один час для ретрансляции", + "Add Autoloading Playlist ?": "Добавить?", + "Select Playlist": "Выбрать Плейлист", + "Repeat Playlist Until Show is Full ?": "Повторять Плейлист, пока Программа не заполнится?", + "Use %s Authentication:": "Использовать %s Аутентификацию:", + "Use Custom Authentication:": "Использование пользовательской идентификации:", + "Custom Username": "Пользовательский логин", + "Custom Password": "Пользовательский пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтирования:", + "Username field cannot be empty.": "Поле «Логин» не может быть пустым.", + "Password field cannot be empty.": "Поле «Пароль» не может быть пустым.", + "Record from Line In?": "Запись с линейного входа?", + "Rebroadcast?": "Ретрансляция?", + "days": "дней", + "Link:": "Связать?", + "Repeat Type:": "Тип повтора:", + "weekly": "еженедельно", + "every 2 weeks": "каждые 2 недели", + "every 3 weeks": "каждые 3 недели", + "every 4 weeks": "каждые 4 недели", + "monthly": "ежемесячно", + "Select Days:": "Выберите дни недели:", + "Repeat By:": "Повторять:", + "day of the month": "день месяца", + "day of the week": "день недели", + "Date End:": "Дата окончания:", + "No End?": "Бесконечно?", + "End date must be after start date": "Дата окончания должна быть после даты начала", + "Please select a repeat day": "Укажите день повтора", + "Background Colour:": "Цвет фона:", + "Text Colour:": "Цвет текста:", + "Current Logo:": "Текущий логотип:", + "Show Logo:": "Логотип Программы:", + "Logo Preview:": "Предпросмотр логотипа:", + "Name:": "Имя:", + "Untitled Show": "Программа без названия", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Описание:", + "Instance Description:": "Описание экземпляра:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' не соответствует формату времени 'HH:mm'", + "Start Time:": "Время начала:", + "In the Future:": "В будущем:", + "End Time:": "Время завершения:", + "Duration:": "Длительность:", + "Timezone:": "Часовой пояс:", + "Repeats?": "Повторы?", + "Cannot create show in the past": "Нельзя создать Программу в прошлом", + "Cannot modify start date/time of the show that is already started": "Нельзя изменить дату/время начала Программы, которая уже началась", + "End date/time cannot be in the past": "Дата/время окончания не могут быть в прошлом", + "Cannot have duration < 0m": "Не может длиться меньше 0 мин.", + "Cannot have duration 00h 00m": "Не может длиться 00 ч 00 мин", + "Cannot have duration greater than 24h": "Программа не может длиться больше 24 часов", + "Cannot schedule overlapping shows": "Нельзя запланировать пересекающиеся Программы.", + "Search Users:": "Поиск пользователей:", + "DJs:": "Диджеи:", + "Type Name:": "Название типа", + "Code:": "Код:", + "Visibility:": "Видимость:", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Логин:", + "Password:": "Пароль:", + "Verify Password:": "Пароль еще раз:", + "Firstname:": "Имя:", + "Lastname:": "Фамилия:", + "Email:": "E-mail:", + "Mobile Phone:": "Номер телефона:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Категория:", + "Login name is not unique.": "Логин не является уникальным.", + "Delete All Tracks in Library": "Удалить все треки в Библиотеке", + "Date Start:": "Дата начала:", + "Title:": "Название:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Владелец:", + "Select a Type": "", + "Track Type:": "", + "Year:": "Год:", + "Label:": "Метка:", + "Composer:": "Композитор:", + "Conductor:": "Исполнитель:", + "Mood:": "Настроение:", + "BPM:": "BPM:", + "Copyright:": "Авторское право:", + "ISRC Number:": "ISRC номер:", + "Website:": "Сайт:", + "Language:": "Язык:", + "Publish...": "Опубликовать...", + "Start Time": "Время начала", + "End Time": "Время окончания", + "Interface Timezone:": "Часовой пояс:", + "Station Name": "Название Станции:", + "Station Description": "Описание Станции:", + "Station Logo:": "Логотип Станции:", + "Note: Anything larger than 600x600 will be resized.": "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены.", + "Default Crossfade Duration (s):": "Стандартная длительность сведения треков (сек):", + "Please enter a time in seconds (eg. 0.5)": "Пожалуйста введите время в секундах (например 0.5)", + "Default Fade In (s):": "Сведение по умолчанию (сек):", + "Default Fade Out (s):": "Затухание по умолчанию (сек):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "Вступительный автозагружаемый плейлист (Intro)", + "Outro Autoloading Playlist": "Завершающий автозагружаемый плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезапись мета-тегов эпизодов Подкастов:", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды.", + "Public LibreTime API": "Разрешить публичный API для LibreTime?", + "Required for embeddable schedule widget.": "Требуется для встраиваемого виджета-расписания.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт.", + "Default Language": "Язык по умолчанию:", + "Station Timezone": "Часовой пояс станции:", + "Week Starts On": "Неделя начинается с:", + "Display login button on your Radio Page?": "Отображать кнопку «Вход» на Странице Радио?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Авто-откл. внешнего потока:", + "Auto Switch On:": "Авто-вкл. внешнего потока:", + "Switch Transition Fade (s):": "Затухание при переключ. (сек):", + "Master Source Host:": "Хост для источника Master:", + "Master Source Port:": "Порт для источника Master:", + "Master Source Mount:": "Точка монтирования для источника Master:", + "Show Source Host:": "Хост для источника Show:", + "Show Source Port:": "Порт для источника Show:", + "Show Source Mount:": "Точка монтирования для источника Show:", + "Login": "Вход", + "Password": "Пароль", + "Confirm new password": "Подтвердить новый пароль", + "Password confirmation does not match your password.": "Подтверждение пароля не совпадает с вашим паролем.", + "Email": "Электронная почта", + "Username": "Логин", + "Reset password": "Сбросить пароль", + "Back": "Назад", + "Now Playing": "Сейчас играет", + "Select Stream:": "Выбрать поток:", + "Auto detect the most appropriate stream to use.": "Автоопределение наиболее приоритетного потока вещания.", + "Select a stream:": "Выберите поток:", + " - Mobile friendly": " - Совместимость с мобильными", + " - The player does not support Opus streams.": " - Проигрыватель не поддерживает вещание Opus .", + "Embeddable code:": "Встраиваемый код:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер.", + "Preview:": "Предпросмотр:", + "Feed Privacy": "Приватность ленты", + "Public": "Публичный", + "Private": "Частный", + "Station Language": "Язык радиостанции", + "Filter by Show": "Фильтровать по Программам", + "All My Shows:": "Все мои Программы:", + "My Shows": "Мои Программы", + "Select criteria": "Выбрать критерии", + "Bit Rate (Kbps)": "Битрейт (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Частота дискретизации (кГц)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "часов", + "minutes": "минут", + "items": "элементы", + "time remaining in show": "оставшееся время программы", + "Randomly": "Случайно", + "Newest": "Новые", + "Oldest": "Старые", + "Most recently played": "Давно проигранные", + "Least recently played": "Недавно проигранные", + "Select Track Type": "", + "Type:": "Тип:", + "Dynamic": "Динамический", + "Static": "Статический", + "Select track type": "", + "Allow Repeated Tracks:": "Разрешить повторение треков:", + "Allow last track to exceed time limit:": "Разрешить последнему треку превышать лимит времени:", + "Sort Tracks:": "Сортировка треков:", + "Limit to:": "Ограничить в:", + "Generate playlist content and save criteria": "Сгенерировать содержимое Плейлиста и сохранить критерии", + "Shuffle playlist content": "Перемешать содержимое Плейлиста", + "Shuffle": "Перемешать", + "Limit cannot be empty or smaller than 0": "Интервал не может быть пустым или менее 0", + "Limit cannot be more than 24 hrs": "Интервал не может быть более 24 часов", + "The value should be an integer": "Значение должно быть целым числом", + "500 is the max item limit value you can set": "500 является максимально допустимым значением", + "You must select Criteria and Modifier": "Вы должны выбрать Критерии и Модификаторы", + "'Length' should be in '00:00:00' format": "«Длительность» должна быть в формате '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Значение должно быть числом", + "The value should be less then 2147483648": "Значение должно быть меньше, чем 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Значение должно быть менее %s символов", + "Value cannot be empty": "Значение не может быть пустым", + "Stream Label:": "Мета-данные потока:", + "Artist - Title": "Исполнитель - Название трека ", + "Show - Artist - Title": "Программа - Исполнитель - Название трека", + "Station name - Show name": "Название станции - Программа", + "Off Air Metadata": "Мета-данные при выкл. эфире", + "Enable Replay Gain": "Включить коэфф. усиления", + "Replay Gain Modifier": "Изменить коэфф. усиления", + "Hardware Audio Output:": "Аппаратный аудио выход", + "Output Type": "Тип выхода", + "Enabled:": "Активировать:", + "Mobile:": "Мобильный:", + "Stream Type:": "Тип потока:", + "Bit Rate:": "Битрейт:", + "Service Type:": "Тип сервиса:", + "Channels:": "Аудио каналы:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтирования", + "Name": "Название", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Добавить мета-данные вашей станции в TuneIn?", + "Station ID:": "ID станции:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "Идентификатор партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку.", + "Import Folder:": "Импорт папки:", + "Watched Folders:": "Просматриваемые папки:", + "Not a valid Directory": "Не является допустимой папкой", + "Value is required and can't be empty": "Поля не могут быть пустыми", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не является действительным адресом электронной почты в формате local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не соответствует формату даты '%format%'", + "'%value%' is less than %min% characters long": "'%value%' имеет менее %min% символов", + "'%value%' is more than %max% characters long": "'%value%' имеет более %max% символов", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не входит в промежуток '%min%' и '%max%', включительно", + "Passwords do not match": "Пароли не совпадают", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", + "\n\nThank you,\nThe %s Team": "\n\nСпасибо,\nКоманда %s", + "%s Password Reset": "%s Сброс пароля", + "Cue in and cue out are null.": "Время начала и окончания звучания трека не заполнены.", + "Can't set cue out to be greater than file length.": "Время окончания звучания не может превышать длину трека.", + "Can't set cue in to be larger than cue out.": "Время начала звучания не может быть позже времени окончания.", + "Can't set cue out to be smaller than cue in.": "Время окончания звучания не может быть раньше времени начала.", + "Upload Time": "Время загрузки", + "None": "Ничего", + "Powered by %s": "При поддержке %s", + "Select Country": "Выберите страну", + "livestream": "живой аудио поток", + "Cannot move items out of linked shows": "Невозможно переместить элементы из связанных Программ", + "The schedule you're viewing is out of date! (sched mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)", + "The schedule you're viewing is out of date! (instance mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)", + "The schedule you're viewing is out of date!": "Расписание, которое вы просматриваете - устарело!", + "You are not allowed to schedule show %s.": "Вы не допущены к планированию Программы %s.", + "You cannot add files to recording shows.": "Вы не можете добавлять файлы в записываемую Программу.", + "The show %s is over and cannot be scheduled.": "Программа %s окончилась и не может быть добавлена в расписание.", + "The show %s has been previously updated!": "Программа %s была обновлена ранее!", + "Content in linked shows cannot be changed while on air!": "Контент в связанных Программах не может быть изменен пока Программа в эфире!", + "Cannot schedule a playlist that contains missing files.": "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы.", + "A selected File does not exist!": "Выбранный файл не существует!", + "Shows can have a max length of 24 hours.": "Максимальная продолжительность Программы - 24 часа.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Нельзя планировать пересекающиеся Программы.\nПримечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры.", + "Rebroadcast of %s from %s": "Ретрансляция %s из %s", + "Length needs to be greater than 0 minutes": "Длительность должна быть более 0 минут", + "Length should be of form \"00h 00m\"": "Длительность должна быть указана в формате '00h 00min'", + "URL should be of form \"https://example.org\"": "URL должен быть в формате \"http://домен\"", + "URL should be 512 characters or less": "Длина URL должна составлять не более 512 символов", + "No MIME type found for webstream.": "Для веб-потока не найдено MIME типа.", + "Webstream name cannot be empty": "Имя веб-потока должно быть заполнено", + "Could not parse XSPF playlist": "Не удалось анализировать XSPF Плейлист", + "Could not parse PLS playlist": "Не удалось анализировать PLS Плейлист", + "Could not parse M3U playlist": "Не удалось анализировать M3U Плейлист", + "Invalid webstream - This appears to be a file download.": "Неверный веб-поток - скорее всего это загрузка файла.", + "Unrecognized stream type: %s": "Нераспознанный тип потока: %s", + "Record file doesn't exist": "Записанный файл не существует", + "View Recorded File Metadata": "Просмотр мета-данных записанного файла", + "Schedule Tracks": "Запланировать Треки", + "Clear Show": "Очистить Программу", + "Cancel Show": "Отменить Программу", + "Edit Instance": "Редактировать этот Экземпляр", + "Edit Show": "Редактировать Программу", + "Delete Instance": "Удалить этот Экземпляр", + "Delete Instance and All Following": "Удалить этот Экземпляр и все связанные", + "Permission denied": "Доступ запрещен", + "Can't drag and drop repeating shows": "Невозможно перетащить повторяющиеся Программы", + "Can't move a past show": "Невозможно переместить завершившуюся Программу", + "Can't move show into past": "Невозможно переместить Программу в прошлое", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции.", + "Show was deleted because recorded show does not exist!": "Программа была удалена, потому что записанной Программы не существует!", + "Must wait 1 hour to rebroadcast.": "Подождите один час до ретрансляции.", + "Track": "Трек", + "Played": "Проиграно", + "Auto-generated smartblock for podcast": "Автоматически сгенерированный Смарт-блок для подкаста", + "Webstreams": "Веб-потоки" +} \ No newline at end of file diff --git a/webapp/src/locale/sr_RS.json b/webapp/src/locale/sr_RS.json new file mode 100644 index 0000000000..020b341ce6 --- /dev/null +++ b/webapp/src/locale/sr_RS.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Година %s мора да буде у распону између 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s није исправан датум", + "%s:%s:%s is not a valid time": "%s:%s:%s није исправан датум", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Календар", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Корисници", + "Track Types": "", + "Streams": "Преноси", + "Status": "Стање", + "Analytics": "", + "Playout History": "Историја Пуштених Песама", + "History Templates": "Историјски Шаблони", + "Listener Stats": "Слушатељска Статистика", + "Show Listener Stats": "", + "Help": "Помоћ", + "Getting Started": "Почетак Коришћења", + "User Manual": "Упутство", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Не смеш да приступиш овог извора.", + "You are not allowed to access this resource. ": "Не смеш да приступите овог извора.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Неисправан захтев.", + "Bad request. 'mode' parameter is invalid": "Неисправан захтев", + "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", + "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", + "You don't have permission to switch source.": "Немаш дозволу за промену извора.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s није пронађен", + "Something went wrong.": "Нешто је пошло по криву.", + "Preview": "Преглед", + "Add to Playlist": "Додај на Списак Песама", + "Add to Smart Block": "Додај у Smart Block", + "Delete": "Обриши", + "Edit...": "", + "Download": "Преузимање", + "Duplicate Playlist": "Удвостручавање", + "Duplicate Smartblock": "", + "No action available": "Нема доступних акција", + "You don't have permission to delete selected items.": "Немаш допуштење за брисање одабране ставке.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Копирање од %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси.", + "Audio Player": "Аудио Уређај", + "Something went wrong!": "", + "Recording:": "Снимање:", + "Master Stream": "Мајсторски Пренос", + "Live Stream": "Пренос Уживо", + "Nothing Scheduled": "Ништа по распореду", + "Current Show:": "Садашња Емисија:", + "Current": "Тренутна", + "You are running the latest version": "Ти имаш инсталирану најновију верзију", + "New version available: ": "Нова верзија је доступна:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Додај у тренутни списак песама", + "Add to current smart block": "Додај у тренутни smart block", + "Adding 1 Item": "Додавање 1 Ставке", + "Adding %s Items": "Додавање %s Ставке", + "You can only add tracks to smart blocks.": "Можеш да додаш само песме код паметних блокова.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера.", + "Please select a cursor position on timeline.": "Молимо одабери место показивача на временској црти.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Додај", + "New": "", + "Edit": "Уређивање", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Уклони", + "Edit Metadata": "Уреди Метаподатке", + "Add to selected show": "Додај у одабраној емисији", + "Select": "Одабери", + "Select this page": "Одабери ову страницу", + "Deselect this page": "Одзначи ову страницу", + "Deselect all": "Одзначи све", + "Are you sure you want to delete the selected item(s)?": "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?", + "Scheduled": "Заказана", + "Tracks": "", + "Playlist": "", + "Title": "Назив", + "Creator": "Творац", + "Album": "Албум", + "Bit Rate": "Пренос Бита", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Диригент", + "Copyright": "Ауторско право", + "Encoded By": "Кодирано је по", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Налепница", + "Language": "Језик", + "Last Modified": "Последња Измена", + "Last Played": "Задњи Пут Одиграна", + "Length": "Дужина", + "Mime": "Mime", + "Mood": "Расположење", + "Owner": "Власник", + "Replay Gain": "Replay Gain", + "Sample Rate": "Узорак Стопа", + "Track Number": "Број Песма", + "Uploaded": "Додата", + "Website": "Веб страница", + "Year": "Година", + "Loading...": "Учитавање...", + "All": "Све", + "Files": "Датотеке", + "Playlists": "Листе песама", + "Smart Blocks": "Smart Block-ови", + "Web Streams": "Преноси", + "Unknown type: ": "Непознати тип:", + "Are you sure you want to delete the selected item?": "Јеси ли сигуран да желиш да обришеш изабрану ставку?", + "Uploading in progress...": "Пренос је у току...", + "Retrieving data from the server...": "Преузимање података са сервера...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Шифра грешке:", + "Error msg: ": "Порука о грешци:", + "Input must be a positive number": "Мора да буде позитиван број", + "Input must be a number": "Мора да буде број", + "Input must be in the format: yyyy-mm-dd": "Мора да буде у облику: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Мора да буде у облику: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s", + "Open Media Builder": "Отвори Медијског Градитеља", + "please put in a time '00:00:00 (.0)'": "молимо стави у време '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Твој претраживач не подржава ову врсту аудио фајл:", + "Dynamic block is not previewable": "Динамички блок није доступан за преглед", + "Limit to: ": "Ограничити се на:", + "Playlist saved": "Списак песама је спремљена", + "Playlist shuffled": "Списак песама је измешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'.", + "Listener Count on %s: %s": "Број Слушалаца %s: %s", + "Remind me in 1 week": "Подсети ме за 1 недељу", + "Remind me never": "Никад ме више не подсети", + "Yes, help Airtime": "Да, помажем Airtime-у", + "Image must be one of jpg, jpeg, png, or gif": "Слика мора да буде jpg, jpeg, png, или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block је измешан", + "Smart block generated and criteria saved": "Smart block је генерисан и критеријуме су спремне", + "Smart block saved": "Smart block је сачуван", + "Processing...": "Обрада...", + "Select modifier": "Одабери модификатор", + "contains": "садржи", + "does not contain": "не садржи", + "is": "је", + "is not": "није", + "starts with": "почиње се са", + "ends with": "завршава се са", + "is greater than": "је већи од", + "is less than": "је мањи од", + "is in the range": "је у опсегу", + "Generate": "Генериши", + "Choose Storage Folder": "Одабери Мапу за Складиштење", + "Choose Folder to Watch": "Одабери Мапу за Праћење", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Јеси ли сигуран да желиш да промениш мапу за складиштење?\nТо ће да уклони датотеке из твоје библиотеке!", + "Manage Media Folders": "Управљање Медијске Мапе", + "Are you sure you want to remove the watched folder?": "Јеси ли сигуран да желиш да уклониш надзорску мапу?", + "This path is currently not accessible.": "Овај пут није тренутно доступан.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни.", + "Connected to the streaming server": "Прикључен је на серверу", + "The stream is disabled": "Пренос је онемогућен", + "Getting information from the server...": "Добијање информација са сервера...", + "Can not connect to the streaming server": "Не може да се повеже на серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Провери ову опцију како би се омогућило метаподатака за OGG потоке.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику.", + "Warning: You cannot change this field while the show is currently playing": "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава", + "No result found": "Нема пронађених резултата", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију.", + "Specify custom authentication which will work only for this show.": "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију.", + "The show instance doesn't exist anymore!": "Емисија у овом случају више не постоји!", + "Warning: Shows cannot be re-linked": "Упозорење: Емисије не може поново да се повеже", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци.", + "Show": "Емисија", + "Show is empty": "Емисија је празна", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Добијање података са сервера...", + "This show has no scheduled content.": "Ова емисија нема заказаног садржаја.", + "This show is not completely filled with content.": "Ова емисија није у потпуности испуњена са садржајем.", + "January": "Јануар", + "February": "Фебруар", + "March": "Март", + "April": "Април", + "May": "Мај", + "June": "Јун", + "July": "Јул", + "August": "Август", + "September": "Септембар", + "October": "Октобар", + "November": "Новембар", + "December": "Децембар", + "Jan": "Јан", + "Feb": "Феб", + "Mar": "Мар", + "Apr": "Апр", + "Jun": "Јун", + "Jul": "Јул", + "Aug": "Авг", + "Sep": "Сеп", + "Oct": "Окт", + "Nov": "Нов", + "Dec": "Дец", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Недеља", + "Monday": "Понедељак", + "Tuesday": "Уторак", + "Wednesday": "Среда", + "Thursday": "Четвртак", + "Friday": "Петак", + "Saturday": "Субота", + "Sun": "Нед", + "Mon": "Пон", + "Tue": "Уто", + "Wed": "Сре", + "Thu": "Чет", + "Fri": "Пет", + "Sat": "Суб", + "Shows longer than their scheduled time will be cut off by a following show.": "Емисија дуже од предвиђеног времена ће да буде одсечен.", + "Cancel Current Show?": "Откажи Тренутног Програма?", + "Stop recording current show?": "Заустављање снимање емисије?", + "Ok": "Ок", + "Contents of Show": "Садржај Емисије", + "Remove all content?": "Уклониш све садржаје?", + "Delete selected item(s)?": "Обришеш ли одабрану (е) ставу (е)?", + "Start": "Почетак", + "End": "Завршетак", + "Duration": "Трајање", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Одтамњење", + "Fade Out": "Затамњење", + "Show Empty": "Празна Емисија", + "Recording From Line In": "Снимање са Line In", + "Track preview": "Преглед песма", + "Cannot schedule outside a show.": "Не може да се заказује ван емисије.", + "Moving 1 Item": "Премештање 1 Ставка", + "Moving %s Items": "Премештање %s Ставке", + "Save": "Сачувај", + "Cancel": "Одустани", + "Fade Editor": "Уређивач за (Од-/За-)тамњивање", + "Cue Editor": "Cue Уређивач", + "Waveform features are available in a browser supporting the Web Audio API": "Таласни облик функције су доступне у споредну Web Audio API прегледачу", + "Select all": "Одабери све", + "Select none": "Не одабери ништа", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Уклони одабране заказане ставке", + "Jump to the current playing track": "Скочи на тренутну свирану песму", + "Jump to Current": "", + "Cancel current show": "Поништи тренутну емисију", + "Open library to add or remove content": "Отвори библиотеку за додавање или уклањање садржаја", + "Add / Remove Content": "Додај / Уклони Садржај", + "in use": "у употреби", + "Disk": "Диск", + "Look in": "Погледај унутра", + "Open": "Отвори", + "Admin": "Администратор", + "DJ": "Диск-џокеј", + "Program Manager": "Водитељ Програма", + "Guest": "Гост", + "Guests can do the following:": "Гости могу да уради следеће:", + "View schedule": "Преглед распореда", + "View show content": "Преглед садржај емисије", + "DJs can do the following:": "Диск-џокеји могу да уради следеће:", + "Manage assigned show content": "Управљање додељен садржај емисије", + "Import media files": "Увоз медијске фајлове", + "Create playlists, smart blocks, and webstreams": "Изради листе песама, паметне блокове, и преносе", + "Manage their own library content": "Управљање своје библиотечког садржаја", + "Program Managers can do the following:": "", + "View and manage show content": "Приказ и управљање садржај емисије", + "Schedule shows": "Распоредне емисије", + "Manage all library content": "Управљање све садржаје библиотека", + "Admins can do the following:": "Администратори могу да уради следеће:", + "Manage preferences": "Управљање подешавања", + "Manage users": "Управљање кориснике", + "Manage watched folders": "Управљање надзираних датотеке", + "Send support feedback": "Пошаљи повратне информације", + "View system status": "Преглед стања система", + "Access playout history": "Приступ за историју пуштених песама", + "View listener stats": "Погледај статистику слушаоце", + "Show / hide columns": "Покажи/сакриј колоне", + "Columns": "", + "From {from} to {to}": "Од {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Не", + "Mo": "По", + "Tu": "Ут", + "We": "Ср", + "Th": "Че", + "Fr": "Пе", + "Sa": "Су", + "Close": "Затвори", + "Hour": "Сат", + "Minute": "Минута", + "Done": "Готово", + "Select files": "Изабери датотеке", + "Add files to the upload queue and click the start button.": "Додај датотеке и кликни на 'Покрени Upload' дугме.", + "Filename": "", + "Size": "", + "Add Files": "Додај Датотеке", + "Stop Upload": "Заустави Upload", + "Start upload": "Покрени upload", + "Start Upload": "", + "Add files": "Додај датотеке", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Послата %d/%d датотека", + "N/A": "N/A", + "Drag files here.": "Повуци датотеке овде.", + "File extension error.": "Грешка (ознаку типа датотеке).", + "File size error.": "Грешка величине датотеке.", + "File count error.": "Грешка број датотеке.", + "Init error.": "Init грешка.", + "HTTP Error.": "HTTP Грешка.", + "Security error.": "Безбедносна грешка.", + "Generic error.": "Генеричка грешка.", + "IO error.": "IO грешка.", + "File: %s": "Фајл: %s", + "%d files queued": "%d датотека на чекању", + "File: %f, size: %s, max file size: %m": "Датотека: %f, величина: %s, макс величина датотеке: %m", + "Upload URL might be wrong or doesn't exist": "Преносни URL може да буде у криву или не постоји", + "Error: File too large: ": "Грешка: Датотека је превелика:", + "Error: Invalid file extension: ": "Грешка: Неважећи ознак типа датотека:", + "Set Default": "Постави Подразумевано", + "Create Entry": "Стварање Уноса", + "Edit History Record": "Уреди Историјат Уписа", + "No Show": "Нема Програма", + "Copied %s row%s to the clipboard": "%s ред%s је копиран у међумеморију", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Опис", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Омогућено", + "Disabled": "Онемогућено", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Погрешно корисничко име или лозинка. Молимо покушај поново.", + "You are viewing an older version of %s": "Гледаш старију верзију %s", + "You cannot add tracks to dynamic blocks.": "Не можеш да додаш песме за динамичне блокове.", + "You don't have permission to delete selected %s(s).": "Немаш допуштење за брисање одабраног (е) %s.", + "You can only add tracks to smart block.": "Можеш само песме да додаш за паметног блока.", + "Untitled Playlist": "Неименовани Списак Песама", + "Untitled Smart Block": "Неименовани Smart Block", + "Unknown Playlist": "Непознати Списак Песама", + "Preferences updated.": "Подешавања су ажуриране.", + "Stream Setting Updated.": "Пренос Подешавање је Ажурирано.", + "path should be specified": "пут би требао да буде специфициран", + "Problem with Liquidsoap...": "Проблем са Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Реемитовање емисија %s од %s на %s", + "Select cursor": "Одабери показивач", + "Remove cursor": "Уклони показивач", + "show does not exist": "емисија не постоји", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Корисник је успешно додат!", + "User updated successfully!": "Корисник је успешно ажуриран!", + "Settings updated successfully!": "Подешавања су успешно ажуриране!", + "Untitled Webstream": "Неименовани Пренос", + "Webstream saved.": "Пренос је сачуван.", + "Invalid form values.": "Неважећи вредности обрасца.", + "Invalid character entered": "Унесени су неважећи знакови", + "Day must be specified": "Дан мора да буде наведен", + "Time must be specified": "Време мора да буде наведено", + "Must wait at least 1 hour to rebroadcast": "Мораш да чекаш најмање 1 сат за ре-емитовање", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Користи Прилагођено потврду идентитета:", + "Custom Username": "Прилагођено Корисничко Име", + "Custom Password": "Прилагођена Лозинка", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "'Корисничко Име' поља не сме да остане празно.", + "Password field cannot be empty.": "'Лозинка' поља не сме да остане празно.", + "Record from Line In?": "Снимање са Line In?", + "Rebroadcast?": "Поново да емитује?", + "days": "дани", + "Link:": "Link:", + "Repeat Type:": "Тип Понављање:", + "weekly": "недељно", + "every 2 weeks": "сваке 2 недеље", + "every 3 weeks": "свака 3 недеље", + "every 4 weeks": "свака 4 недеље", + "monthly": "месечно", + "Select Days:": "Одабери Дане:", + "Repeat By:": "Понављање По:", + "day of the month": "дан у месецу", + "day of the week": "дан у недељи", + "Date End:": "Датум Завршетка:", + "No End?": "Нема Краја?", + "End date must be after start date": "Датум завршетка мора да буде после датума почетка", + "Please select a repeat day": "Молимо, одабери којег дана", + "Background Colour:": "Боја Позадине:", + "Text Colour:": "Боја Текста:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Назив:", + "Untitled Show": "Неименована Емисија", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' се не уклапа у временском формату 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Трајање:", + "Timezone:": "Временска Зона:", + "Repeats?": "Понављање?", + "Cannot create show in the past": "Не може да се створи емисију у прошлости", + "Cannot modify start date/time of the show that is already started": "Не можеш да мењаш датум/време почетак емисије, ако је већ почела", + "End date/time cannot be in the past": "Датум завршетка и време не може да буде у прошлости", + "Cannot have duration < 0m": "Не може да траје < 0m", + "Cannot have duration 00h 00m": "Не може да траје 00h 00m", + "Cannot have duration greater than 24h": "Не може да траје више од 24h", + "Cannot schedule overlapping shows": "Не можеш заказати преклапајуће емисије", + "Search Users:": "Тражи Кориснике:", + "DJs:": "Диск-џокеји:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Корисничко име:", + "Password:": "Лозинка:", + "Verify Password:": "Потврди Лозинку:", + "Firstname:": "Име:", + "Lastname:": "Презиме:", + "Email:": "Е-маил:", + "Mobile Phone:": "Мобилни Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Типова Корисника:", + "Login name is not unique.": "Име пријаве није јединствено.", + "Delete All Tracks in Library": "", + "Date Start:": "Датум Почетка:", + "Title:": "Назив:", + "Creator:": "Творац:", + "Album:": "Aлбум:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Година:", + "Label:": "Налепница:", + "Composer:": "Композитор:", + "Conductor:": "Диригент:", + "Mood:": "Расположење:", + "BPM:": "BPM:", + "Copyright:": "Ауторско право:", + "ISRC Number:": "ISRC Број:", + "Website:": "Веб страница:", + "Language:": "Језик:", + "Publish...": "", + "Start Time": "Време Почетка", + "End Time": "Време Завршетка", + "Interface Timezone:": "Временска Зона Интерфејси:", + "Station Name": "Назив Станице", + "Station Description": "", + "Station Logo:": "Лого:", + "Note: Anything larger than 600x600 will be resized.": "Напомена: Све већа од 600к600 ће да се мењају.", + "Default Crossfade Duration (s):": "Подразумевано Трајање Укрштено Стишавање (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Подразумевано Одтамњење (s):", + "Default Fade Out (s):": "Подразумевано Затамњење (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Станична Временска Зона", + "Week Starts On": "Први Дан у Недељи", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Пријава", + "Password": "Лозинка", + "Confirm new password": "Потврди нову лозинку", + "Password confirmation does not match your password.": "Лозинке које сте унели не подударају се.", + "Email": "", + "Username": "Корисничко име", + "Reset password": "Ресетуј лозинку", + "Back": "", + "Now Playing": "Тренутно Извођена", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Све Моје Емисије:", + "My Shows": "", + "Select criteria": "Одабери критеријуме", + "Bit Rate (Kbps)": "Брзина у Битовима (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Узорак Стопа (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "сати", + "minutes": "минути", + "items": "елементи", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Динамички", + "Static": "Статички", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Генерисање листе песама и чување садржаја критеријуме", + "Shuffle playlist content": "Садржај случајни избор списак песама", + "Shuffle": "Мешање", + "Limit cannot be empty or smaller than 0": "Ограничење не може да буде празан или мањи од 0", + "Limit cannot be more than 24 hrs": "Ограничење не може да буде више од 24 сати", + "The value should be an integer": "Вредност мора да буде цео број", + "500 is the max item limit value you can set": "500 је макс ставу граничну вредност могуће је да подесиш", + "You must select Criteria and Modifier": "Мораш да изабереш Критерију и Модификацију", + "'Length' should be in '00:00:00' format": "'Дужина' требала да буде у '00:00:00' облику", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Вредност мора да буде нумеричка", + "The value should be less then 2147483648": "Вредност би требала да буде мања од 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Вредност мора да буде мања од %s знакова", + "Value cannot be empty": "Вредност не може да буде празна", + "Stream Label:": "Видљиви Подаци:", + "Artist - Title": "Аутор - Назив", + "Show - Artist - Title": "Емисија - Аутор - Назив", + "Station name - Show name": "Назив станице - Назив емисије", + "Off Air Metadata": "Off Air Метаподаци", + "Enable Replay Gain": "Укључи Replay Gain", + "Replay Gain Modifier": "Replay Gain Модификатор", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Омогућено:", + "Mobile:": "", + "Stream Type:": "Пренос Типа:", + "Bit Rate:": "Брзина у Битовима:", + "Service Type:": "Тип Услуге:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Тачка Монтирања", + "Name": "Назив", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Увозна Мапа:", + "Watched Folders:": "Мапе Под Надзором:", + "Not a valid Directory": "Не важећи Директоријум", + "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не одговара по облику датума '%format%'", + "'%value%' is less than %min% characters long": "'%value%' је мањи од %min% дугачко знакова", + "'%value%' is more than %max% characters long": "'%value%' је више од %max% дугачко знакова", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' није између '%min%' и '%max%', укључиво", + "Passwords do not match": "Лозинке се не подударају", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "'Cue in' и 'cue out' су нуле.", + "Can't set cue out to be greater than file length.": "Не можеш да подесиш да 'cue out' буде веће од дужине фајла.", + "Can't set cue in to be larger than cue out.": "Не можеш да подесиш да 'cue in' буде веће него 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Не можеш да подесиш да 'cue out' буде мање него 'cue in'.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Одабери Државу", + "livestream": "", + "Cannot move items out of linked shows": "Не можеш да преместиш ставке из повезаних емисија", + "The schedule you're viewing is out of date! (sched mismatch)": "Застарео се прегледан распоред! (неважећи распоред)", + "The schedule you're viewing is out of date! (instance mismatch)": "Застарео се прегледан распоред! (пример неусклађеност)", + "The schedule you're viewing is out of date!": "Застарео се прегледан распоред!", + "You are not allowed to schedule show %s.": "Не смеш да закажеш распоредну емисију %s.", + "You cannot add files to recording shows.": "Не можеш да додаш датотеке за снимљене емисије.", + "The show %s is over and cannot be scheduled.": "Емисија %s је готова и не могу да буде заказана.", + "The show %s has been previously updated!": "Раније је %s емисија већ била ажурирана!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Изабрани Фајл не постоји!", + "Shows can have a max length of 24 hours.": "Емисије могу да имају највећу дужину 24 сата.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не може да се закаже преклапајуће емисије.\nНапомена: Промена величине понављане емисије утиче на све њене понављање.", + "Rebroadcast of %s from %s": "Реемитовање од %s од %s", + "Length needs to be greater than 0 minutes": "Дужина мора да буде већа од 0 минута", + "Length should be of form \"00h 00m\"": "Дужина мора да буде у облику \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL мора да буде у облику \"https://example.org\"", + "URL should be 512 characters or less": "URL мора да буде 512 знакова или мање", + "No MIME type found for webstream.": "Не постоји MIME тип за пренос.", + "Webstream name cannot be empty": "Име преноса не може да да буде празно", + "Could not parse XSPF playlist": "Нисмо могли анализирати XSPF списак песама", + "Could not parse PLS playlist": "Нисмо могли анализирати PLS списак песама", + "Could not parse M3U playlist": "Нисмо могли анализирати M3U списак песама", + "Invalid webstream - This appears to be a file download.": "Неважећи пренос - Чини се да је ово преузимање.", + "Unrecognized stream type: %s": "Непознати преносни тип: %s", + "Record file doesn't exist": "Снимљена датотека не постоји", + "View Recorded File Metadata": "Метаподаци снимљеног фајла", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Уређивање Програма", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Дозвола одбијена", + "Can't drag and drop repeating shows": "Не можеш повући и испустити понављајуће емисије", + "Can't move a past show": "Не можеш преместити догађане емисије", + "Can't move show into past": "Не можеш преместити емисију у прошлости", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања.", + "Show was deleted because recorded show does not exist!": "Емисија је избрисана јер је снимљена емисија не постоји!", + "Must wait 1 hour to rebroadcast.": "Мораш причекати 1 сат за ре-емитовање.", + "Track": "Песма", + "Played": "Пуштена", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/tr_TR.json b/webapp/src/locale/tr_TR.json new file mode 100644 index 0000000000..4d11cf7ad0 --- /dev/null +++ b/webapp/src/locale/tr_TR.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "%s yılı 1753 - 9999 aralığında olmalıdır", + "%s-%s-%s is not a valid date": "%s-%s-%s geçerli bir tarih değil", + "%s:%s:%s is not a valid time": "%s:%s:%s geçerli bir zaman değil", + "English": "İngilizce", + "Afar": "Afarca", + "Abkhazian": "Abhazca", + "Afrikaans": "Afrikanca", + "Amharic": "Amharca", + "Arabic": "Arapça", + "Assamese": "Assam dili", + "Aymara": "Aymaraca", + "Azerbaijani": "Azerice", + "Bashkir": "Başkurtça", + "Belarusian": "Belarusça", + "Bulgarian": "Bulgarca", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengalce", + "Tibetan": "Tibetçe", + "Breton": "Bretonca", + "Catalan": "Katalanca", + "Corsican": "Korsikaca", + "Czech": "Çekçe", + "Welsh": "Galce", + "Danish": "Danca", + "German": "Almanca", + "Bhutani": "Bhutani", + "Greek": "Yunanca", + "Esperanto": "Esperanto", + "Spanish": "İspanyolca", + "Estonian": "Estonca", + "Basque": "Baskça", + "Persian": "Farsça", + "Finnish": "Fince", + "Fiji": "Fiji", + "Faeroese": "Faroece", + "French": "Fransızca", + "Frisian": "Frizce", + "Irish": "İrlandaca", + "Scots/Gaelic": "İskoçça", + "Galician": "Galiçyaca", + "Guarani": "Guarani", + "Gujarati": "Guceratça", + "Hausa": "Hausa dili", + "Hindi": "Hintçe", + "Croatian": "Hırvatça", + "Hungarian": "Macarca", + "Armenian": "Ermenice", + "Interlingua": "İnterlingua", + "Interlingue": "İnterlingue", + "Inupiak": "", + "Indonesian": "Endonezyaca", + "Icelandic": "İzlandaca", + "Italian": "İtalyanca", + "Hebrew": "İbranice", + "Japanese": "Japonca", + "Yiddish": "Yidçe", + "Javanese": "Cavaca", + "Georgian": "Gürcüce", + "Kazakh": "Kazakça", + "Greenlandic": "Grönlandca", + "Cambodian": "", + "Kannada": "Kannada", + "Korean": "Korece", + "Kashmiri": "", + "Kurdish": "Kürtçe", + "Kirghiz": "Kırgızca", + "Latin": "Latince", + "Lingala": "", + "Laothian": "", + "Lithuanian": "Litvanyaca", + "Latvian/Lettish": "Letonca/Lettçe", + "Malagasy": "Madagaskarca", + "Maori": "Maori dili", + "Macedonian": "Makedonca", + "Malayalam": "Malayalamca", + "Mongolian": "Moğolca", + "Moldavian": "Moldovyaca", + "Marathi": "", + "Malay": "Malayca", + "Maltese": "Maltaca", + "Burmese": "", + "Nauru": "", + "Nepali": "Nepalce", + "Dutch": "Felemenkçe", + "Norwegian": "Norveççe", + "Occitan": "Oksitanca", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "Pencapça", + "Polish": "Lehçe", + "Pashto/Pushto": "Peştuca/Puşto", + "Portuguese": "Portekizce", + "Quechua": "Keçuva", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "Rumence", + "Russian": "Rusça", + "Kinyarwanda": "", + "Sanskrit": "Sanskritçe", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "Sırpça-Hırvatça", + "Singhalese": "", + "Slovak": "Slovakça", + "Slovenian": "Slovence", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "Arnavutça", + "Serbian": "Sırpça", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "İsveççe", + "Swahili": "", + "Tamil": "Tamilce", + "Tegulu": "", + "Tajik": "Tacikçe", + "Thai": "", + "Tigrinya": "", + "Turkmen": "Türkmence", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "Türkçe", + "Tsonga": "", + "Tatar": "Tatarca", + "Twi": "", + "Ukrainian": "Ukraynaca", + "Urdu": "Urduca", + "Uzbek": "Özbekçe", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Çince", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "Profilim", + "Users": "Kullanıcılar", + "Track Types": "", + "Streams": "", + "Status": "Durum", + "Analytics": "", + "Playout History": "", + "History Templates": "", + "Listener Stats": "", + "Show Listener Stats": "", + "Help": "Yardım", + "Getting Started": "Başlarken", + "User Manual": "Kullanım Kılavuzu", + "Get Help Online": "Çevrim İçi Yardım Alın", + "Contribute to LibreTime": "LibreTime'a Katkıda Bulunun", + "What's New?": "", + "You are not allowed to access this resource.": "", + "You are not allowed to access this resource. ": "", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "", + "There is no source connected to this input.": "", + "You don't have permission to switch source.": "", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Sayfa bulunamadı.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "", + "Something went wrong.": "Bir şeyler yanlış gitti.", + "Preview": "Ön izleme", + "Add to Playlist": "", + "Add to Smart Block": "", + "Delete": "Sil", + "Edit...": "Düzenle...", + "Download": "İndir", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "", + "You don't have permission to delete selected items.": "", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "Bir şeyler yanlış gitti!", + "Recording:": "", + "Master Stream": "", + "Live Stream": "Canlı yayın", + "Nothing Scheduled": "", + "Current Show:": "", + "Current": "", + "You are running the latest version": "", + "New version available: ": "", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "", + "Add to current smart block": "", + "Adding 1 Item": "", + "Adding %s Items": "", + "You can only add tracks to smart blocks.": "", + "You can only add tracks, smart blocks, and webstreams to playlists.": "", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Ekle", + "New": "Yeni", + "Edit": "Düzenle", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Kaldır", + "Edit Metadata": "", + "Add to selected show": "", + "Select": "Seç", + "Select this page": "Bu sayfayı seç", + "Deselect this page": "Bu sayfanın seçimini kaldır", + "Deselect all": "Tümünün seçimini kaldır", + "Are you sure you want to delete the selected item(s)?": "", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Parça Adı", + "Creator": "Oluşturan", + "Album": "Albüm", + "Bit Rate": "Bit Hızı", + "BPM": "BPM", + "Composer": "Besteleyen", + "Conductor": "Orkestra Şefi", + "Copyright": "Telif Hakkı", + "Encoded By": "Encode eden", + "Genre": "Tür", + "ISRC": "ISRC", + "Label": "Plak Şirketi", + "Language": "Dil", + "Last Modified": "Son Değiştirilme Zamanı", + "Last Played": "Son Oynatma Zamanı", + "Length": "Uzunluk", + "Mime": "Mime", + "Mood": "Ruh Hali", + "Owner": "Sahibi", + "Replay Gain": "Replay Gain", + "Sample Rate": "", + "Track Number": "Parça Numarası", + "Uploaded": "Yüklenme Tarihi", + "Website": "Website'si", + "Year": "Yıl", + "Loading...": "Yükleniyor...", + "All": "Tümü", + "Files": "Dosyalar", + "Playlists": "", + "Smart Blocks": "", + "Web Streams": "", + "Unknown type: ": "Bilinmeyen tür: ", + "Are you sure you want to delete the selected item?": "", + "Uploading in progress...": "", + "Retrieving data from the server...": "", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Hata kodu: ", + "Error msg: ": "Hata mesajı: ", + "Input must be a positive number": "", + "Input must be a number": "", + "Input must be in the format: yyyy-mm-dd": "", + "Input must be in the format: hh:mm:ss.t": "", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "", + "Dynamic block is not previewable": "", + "Limit to: ": "", + "Playlist saved": "", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "", + "Listener Count on %s: %s": "", + "Remind me in 1 week": "", + "Remind me never": "", + "Yes, help Airtime": "", + "Image must be one of jpg, jpeg, png, or gif": "", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "", + "Smart block generated and criteria saved": "", + "Smart block saved": "", + "Processing...": "", + "Select modifier": "Değişken seçin", + "contains": "içersin", + "does not contain": "içermesin", + "is": "eşittir", + "is not": "eşit değildir", + "starts with": "ile başlayan", + "ends with": "ile biten", + "is greater than": "büyüktür", + "is less than": "küçüktür", + "is in the range": "aralıkta", + "Generate": "Oluştur", + "Choose Storage Folder": "", + "Choose Folder to Watch": "", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "", + "Manage Media Folders": "", + "Are you sure you want to remove the watched folder?": "", + "This path is currently not accessible.": "", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "", + "The stream is disabled": "", + "Getting information from the server...": "Sunucudan bilgiler getiriliyor...", + "Can not connect to the streaming server": "", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "", + "Check this box to automatically switch on Master/Show source upon source connection.": "", + "If your Icecast server expects a username of 'source', this field can be left blank.": "", + "If your live streaming client does not ask for a username, this field should be 'source'.": "", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "", + "Specify custom authentication which will work only for this show.": "", + "The show instance doesn't exist anymore!": "", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "", + "Show is empty": "", + "1m": "", + "5m": "", + "10m": "", + "15m": "", + "30m": "", + "60m": "", + "Retreiving data from the server...": "", + "This show has no scheduled content.": "", + "This show is not completely filled with content.": "", + "January": "Ocak", + "February": "Şubat", + "March": "Mart", + "April": "Nisan", + "May": "Mayıs", + "June": "Haziran", + "July": "Temmuz", + "August": "Ağustos", + "September": "Eylül", + "October": "Ekim", + "November": "Kasım", + "December": "Aralık", + "Jan": "Oca", + "Feb": "Şub", + "Mar": "Mar", + "Apr": "Nis", + "Jun": "Haz", + "Jul": "Tem", + "Aug": "Ağu", + "Sep": "Eyl", + "Oct": "Eki", + "Nov": "Kas", + "Dec": "Ara", + "Today": "Bugün", + "Day": "Gün", + "Week": "Hafta", + "Month": "Ay", + "Sunday": "Pazar", + "Monday": "Pazartesi", + "Tuesday": "Salı", + "Wednesday": "Çarşamba", + "Thursday": "Perşembe", + "Friday": "Cuma", + "Saturday": "Cumartesi", + "Sun": "Paz", + "Mon": "Pzt", + "Tue": "Sal", + "Wed": "Çar", + "Thu": "Per", + "Fri": "Cum", + "Sat": "Cmt", + "Shows longer than their scheduled time will be cut off by a following show.": "", + "Cancel Current Show?": "", + "Stop recording current show?": "", + "Ok": "OK", + "Contents of Show": "", + "Remove all content?": "", + "Delete selected item(s)?": "", + "Start": "", + "End": "", + "Duration": "", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "", + "Recording From Line In": "", + "Track preview": "", + "Cannot schedule outside a show.": "", + "Moving 1 Item": "", + "Moving %s Items": "", + "Save": "Kaydet", + "Cancel": "İptal", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "", + "Select none": "", + "Trim overbooked shows": "", + "Remove selected scheduled items": "", + "Jump to the current playing track": "", + "Jump to Current": "", + "Cancel current show": "", + "Open library to add or remove content": "", + "Add / Remove Content": "", + "in use": "", + "Disk": "", + "Look in": "", + "Open": "", + "Admin": "Yönetici (Admin)", + "DJ": "DJ", + "Program Manager": "Program Yöneticisi", + "Guest": "Ziyaretçi", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Destek Geribildirimi gönder", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "", + "Columns": "", + "From {from} to {to}": "", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "kHz", + "Su": "Pa", + "Mo": "Pt", + "Tu": "Sa", + "We": "Ça", + "Th": "Pe", + "Fr": "Cu", + "Sa": "Ct", + "Close": "Kapat", + "Hour": "Saat", + "Minute": "Dakika", + "Done": "Bitti", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "Dosya uzantısı hatası.", + "File size error.": "Dosya boyutu hatası.", + "File count error.": "Dosya sayısı hatası.", + "Init error.": "", + "HTTP Error.": "HTTP hatası.", + "Security error.": "Güvenlik hatası.", + "Generic error.": "Genel hata.", + "IO error.": "GÇ hatası.", + "File: %s": "Dosya: %s", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "Hata: Dosya çok büyük: ", + "Error: Invalid file extension: ": "Hata: Geçersiz dosya uzantısı: ", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "Show Yok", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Tanım", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktif", + "Disabled": "Devre dışı", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "", + "You are viewing an older version of %s": "", + "You cannot add tracks to dynamic blocks.": "", + "You don't have permission to delete selected %s(s).": "", + "You can only add tracks to smart block.": "", + "Untitled Playlist": "", + "Untitled Smart Block": "", + "Unknown Playlist": "", + "Preferences updated.": "", + "Stream Setting Updated.": "", + "path should be specified": "", + "Problem with Liquidsoap...": "", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "", + "Select cursor": "", + "Remove cursor": "", + "show does not exist": "", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Kullanıcı başarıyla eklendi!", + "User updated successfully!": "Kullanıcı başarıyla güncellendi!", + "Settings updated successfully!": "Ayarlar başarıyla güncellendi!", + "Untitled Webstream": "", + "Webstream saved.": "", + "Invalid form values.": "", + "Invalid character entered": "Yanlış karakter girdiniz", + "Day must be specified": "Günü belirtmelisiniz", + "Time must be specified": "Zamanı belirtmelisiniz", + "Must wait at least 1 hour to rebroadcast": "Tekrar yayın yapmak için en az bir saat bekleyiniz", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s Kimlik Doğrulamasını Kullan", + "Use Custom Authentication:": "Özel Kimlik Doğrulama Kullan", + "Custom Username": "Özel Kullanıcı Adı", + "Custom Password": "Özel Şifre", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Kullanıcı adı kısmı boş bırakılamaz.", + "Password field cannot be empty.": "Şifre kısmı boş bırakılamaz.", + "Record from Line In?": "Line In'den Kaydet?", + "Rebroadcast?": "Tekrar yayınla?", + "days": "gün", + "Link:": "Birbirine Bağla:", + "Repeat Type:": "Tekrar Türü:", + "weekly": "haftalık", + "every 2 weeks": "2 haftada bir", + "every 3 weeks": "3 haftada bir", + "every 4 weeks": "4 haftada bir", + "monthly": "aylık", + "Select Days:": "Günleri Seçin:", + "Repeat By:": "Şuna göre tekrar et:", + "day of the month": "Ayın günü", + "day of the week": "Haftanın günü", + "Date End:": "Tarih Bitişi:", + "No End?": "Sonu yok?", + "End date must be after start date": "Bitiş tarihi başlangıç tarihinden sonra olmalı", + "Please select a repeat day": "Lütfen tekrar edilmesini istediğiniz günleri seçiniz", + "Background Colour:": "Arkaplan Rengi", + "Text Colour:": "Metin Rengi:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "İsim:", + "Untitled Show": "İsimsiz Show", + "URL:": "URL", + "Genre:": "Tür:", + "Description:": "Açıklama:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' değeri 'HH:mm' saat formatına uymuyor", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Uzunluğu:", + "Timezone:": "Zaman Dilimi:", + "Repeats?": "Tekrar Ediyor mu?", + "Cannot create show in the past": "Geçmiş tarihli bir show oluşturamazsınız", + "Cannot modify start date/time of the show that is already started": "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz", + "End date/time cannot be in the past": "Bitiş tarihi geçmişte olamaz", + "Cannot have duration < 0m": "Uzunluk < 0dk'dan kısa olamaz", + "Cannot have duration 00h 00m": "00s 00dk Uzunluk olamaz", + "Cannot have duration greater than 24h": "Yayın süresi 24 saati geçemez", + "Cannot schedule overlapping shows": "Üst üste binen show'lar olamaz", + "Search Users:": "Kullanıcıları Ara:", + "DJs:": "DJ'ler:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Kullanıcı Adı:", + "Password:": "Şifre:", + "Verify Password:": "Şifre Onayı:", + "Firstname:": "İsim:", + "Lastname:": "Soyisim:", + "Email:": "Eposta:", + "Mobile Phone:": "Cep Telefonu:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Kullanıcı Tipi:", + "Login name is not unique.": "Kullanıcı adı eşsiz değil.", + "Delete All Tracks in Library": "", + "Date Start:": "Tarih Başlangıcı:", + "Title:": "Parça Adı:", + "Creator:": "Oluşturan:", + "Album:": "Albüm:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Yıl:", + "Label:": "Plak Şirketi:", + "Composer:": "Besteleyen:", + "Conductor:": "Orkestra Şefi:", + "Mood:": "Ruh Hali:", + "BPM:": "BPM:", + "Copyright:": "Telif Hakkı:", + "ISRC Number:": "ISRC No:", + "Website:": "Websitesi:", + "Language:": "Dil:", + "Publish...": "", + "Start Time": "Başlangıç Saati", + "End Time": "Bitiş Saati", + "Interface Timezone:": "Arayüz Zaman Dilimi", + "Station Name": "Radyo Adı", + "Station Description": "", + "Station Logo:": "Radyo Logosu:", + "Note: Anything larger than 600x600 will be resized.": "", + "Default Crossfade Duration (s):": "Varsayılan Çarpraz Geçiş Süresi:", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Varsayılan Fade In geçişi (s)", + "Default Fade Out (s):": "Varsayılan Fade Out geçişi (s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Radyo Saat Dilimi", + "Week Starts On": "Hafta Başlangıcı", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Giriş yap", + "Password": "Şifre", + "Confirm new password": "Yeni şifreyi onayla", + "Password confirmation does not match your password.": "Onay şifresiyle şifreniz aynı değil.", + "Email": "", + "Username": "Kullanıcı adı", + "Reset password": "Parolayı değiştir", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tüm Şovlarım:", + "My Shows": "Şovlarım", + "Select criteria": "Kriter seçin", + "Bit Rate (Kbps)": "Bit Oranı (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Örnekleme Oranı (kHz)", + "before": "önce", + "after": "sonra", + "between": "arasında", + "Select unit of time": "Zaman birimi seçin", + "minute(s)": "dakika", + "hour(s)": "saat", + "day(s)": "gün", + "week(s)": "hafta", + "month(s)": "ay", + "year(s)": "yıl", + "hours": "saat", + "minutes": "dakika", + "items": "parça", + "time remaining in show": "", + "Randomly": "Rastgele", + "Newest": "En yeni", + "Oldest": "En eski", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamik", + "Static": "Sabit", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Çalma listesi içeriği oluştur ve kriterleri kaydet", + "Shuffle playlist content": "Çalma listesi içeriğini karıştır", + "Shuffle": "Karıştır", + "Limit cannot be empty or smaller than 0": "Sınırlama boş veya 0'dan küçük olamaz", + "Limit cannot be more than 24 hrs": "Sınırlama 24 saati geçemez", + "The value should be an integer": "Değer tamsayı olmalıdır", + "500 is the max item limit value you can set": "Ayarlayabileceğiniz azami parça sınırı 500'dür", + "You must select Criteria and Modifier": "Kriter ve Değişken seçin", + "'Length' should be in '00:00:00' format": "Uzunluk '00:00:00' türünde olmalıdır", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Değer rakam cinsinden girilmelidir", + "The value should be less then 2147483648": "Değer 2147483648'den küçük olmalıdır", + "The value cannot be empty": "", + "The value should be less than %s characters": "Değer %s karakter'den az olmalıdır", + "Value cannot be empty": "Değer boş bırakılamaz", + "Stream Label:": "Yayın Etiketi:", + "Artist - Title": "Şarkıcı - Parça Adı", + "Show - Artist - Title": "Show - Şarkıcı - Parça Adı", + "Station name - Show name": "Radyo adı - Show adı", + "Off Air Metadata": "Yayın Dışında Gösterilecek Etiket", + "Enable Replay Gain": "ReplayGain'i aktif et", + "Replay Gain Modifier": "ReplayGain Değeri", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Etkin:", + "Mobile:": "", + "Stream Type:": "Yayın Türü:", + "Bit Rate:": "Bit Değeri:", + "Service Type:": "Servis Türü:", + "Channels:": "Kanallar:", + "Server": "Sunucu", + "Port": "Port", + "Mount Point": "Bağlama Noktası", + "Name": "İsim", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "İçe Aktarım Klasörü", + "Watched Folders:": "İzlenen Klasörler:", + "Not a valid Directory": "Geçerli bir Klasör değil.", + "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres", + "'%value%' does not fit the date format '%format%'": "'%value%' değeri '%format%' zaman formatına uymuyor", + "'%value%' is less than %min% characters long": "'%value%' değeri olması gereken '%min%' karakterden daha az", + "'%value%' is more than %max% characters long": "'%value%' değeri olması gereken '%max%' karakterden daha fazla", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil", + "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "", + "Can't set cue out to be greater than file length.": "", + "Can't set cue in to be larger than cue out.": "", + "Can't set cue out to be smaller than cue in.": "", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "", + "The schedule you're viewing is out of date! (instance mismatch)": "", + "The schedule you're viewing is out of date!": "", + "You are not allowed to schedule show %s.": "", + "You cannot add files to recording shows.": "", + "The show %s is over and cannot be scheduled.": "", + "The show %s has been previously updated!": "", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "", + "Shows can have a max length of 24 hours.": "", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "", + "Rebroadcast of %s from %s": "", + "Length needs to be greater than 0 minutes": "", + "Length should be of form \"00h 00m\"": "", + "URL should be of form \"https://example.org\"": "", + "URL should be 512 characters or less": "", + "No MIME type found for webstream.": "", + "Webstream name cannot be empty": "", + "Could not parse XSPF playlist": "", + "Could not parse PLS playlist": "", + "Could not parse M3U playlist": "", + "Invalid webstream - This appears to be a file download.": "", + "Unrecognized stream type: %s": "", + "Record file doesn't exist": "", + "View Recorded File Metadata": "", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "", + "Can't move a past show": "", + "Can't move show into past": "", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "", + "Show was deleted because recorded show does not exist!": "", + "Must wait 1 hour to rebroadcast.": "", + "Track": "", + "Played": "", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file diff --git a/webapp/src/locale/uk_UA.json b/webapp/src/locale/uk_UA.json new file mode 100644 index 0000000000..e1fe10eff2 --- /dev/null +++ b/webapp/src/locale/uk_UA.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "Рік %s має бути в діапазоні 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s дата недійсна", + "%s:%s:%s is not a valid time": "%s:%s:%s недійсний час", + "English": "Англійська", + "Afar": "Афар", + "Abkhazian": "Абхазька", + "Afrikaans": "Африканська", + "Amharic": "Амхарська", + "Arabic": "Арабська", + "Assamese": "Асамська", + "Aymara": "Аймара", + "Azerbaijani": "Азербайджанська", + "Bashkir": "Башкирська", + "Belarusian": "Білоруська", + "Bulgarian": "Болгарська", + "Bihari": "Біхарі", + "Bislama": "Біслама", + "Bengali/Bangla": "Бенгальська/Бангла", + "Tibetan": "Тибетська", + "Breton": "Бретонська", + "Catalan": "Каталонська", + "Corsican": "Корсиканська", + "Czech": "Чеська", + "Welsh": "Валлійська", + "Danish": "Датська", + "German": "Німецька", + "Bhutani": "Мови Бутану", + "Greek": "Грецька", + "Esperanto": "Есперанто", + "Spanish": "Іспанська", + "Estonian": "Естонська", + "Basque": "Баскська", + "Persian": "Перська", + "Finnish": "Фінська", + "Fiji": "Фіджійська", + "Faeroese": "Фарерська", + "French": "Французька", + "Frisian": "Фризька", + "Irish": "Ірландська", + "Scots/Gaelic": "Шотландська/Гельська", + "Galician": "Галісійська", + "Guarani": "Гуарані", + "Gujarati": "Гуджаратська", + "Hausa": "Хауса", + "Hindi": "Хінді", + "Croatian": "Хорватська", + "Hungarian": "Угорська", + "Armenian": "Вірменська", + "Interlingua": "Інтерлінгва", + "Interlingue": "Окциденталь", + "Inupiak": "Аляскинсько-інуїтська", + "Indonesian": "Індонезійська", + "Icelandic": "Ісландська", + "Italian": "Італійська", + "Hebrew": "Іврит", + "Japanese": "Японська", + "Yiddish": "Ідиш", + "Javanese": "Яванська", + "Georgian": "Грузинська", + "Kazakh": "Казахська", + "Greenlandic": "Гренландська", + "Cambodian": "Камбоджійська", + "Kannada": "Каннада", + "Korean": "Корейська", + "Kashmiri": "Кашмірська", + "Kurdish": "Курдська", + "Kirghiz": "Киргизька", + "Latin": "Латинська", + "Lingala": "Лінґала", + "Laothian": "Лаоська", + "Lithuanian": "Литовська", + "Latvian/Lettish": "Латиська", + "Malagasy": "Малагасійська", + "Maori": "Маорійська", + "Macedonian": "Македонська", + "Malayalam": "Малаялам", + "Mongolian": "Монгольська", + "Moldavian": "Молдавська", + "Marathi": "Мара́тська", + "Malay": "Малайська", + "Maltese": "Мальтійська", + "Burmese": "Бірманська", + "Nauru": "Науруанська", + "Nepali": "Непальська", + "Dutch": "Голландська", + "Norwegian": "Норвезька", + "Occitan": "Окситанська", + "(Afan)/Oromoor/Oriya": "Оромо", + "Punjabi": "Пенджабська", + "Polish": "Польська", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальська", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рето-романська", + "Kirundi": "Кірунді", + "Romanian": "Румунська", + "Russian": "Російська", + "Kinyarwanda": "Руандійська", + "Sanskrit": "Санскрит", + "Sindhi": "Сіндхі", + "Sangro": "Санго", + "Serbo-Croatian": "Сербохорватська", + "Singhalese": "Сингальська", + "Slovak": "Словацька", + "Slovenian": "Словенська", + "Samoan": "Самоанська", + "Shona": "Шона", + "Somali": "Сомалійська", + "Albanian": "Албанська", + "Serbian": "Сербська", + "Siswati": "Сваті", + "Sesotho": "Сесото", + "Sundanese": "Сунданська", + "Swedish": "Шведська", + "Swahili": "Суахілі", + "Tamil": "Тамільська", + "Tegulu": "Телугу", + "Tajik": "Таджицька", + "Thai": "Тайська", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменський", + "Tagalog": "Тагальська", + "Setswana": "Тсвана", + "Tonga": "Тонганська", + "Turkish": "Турецька", + "Tsonga": "Тсонга", + "Tatar": "Татарська", + "Twi": "Чві", + "Ukrainian": "Українська", + "Urdu": "Урду", + "Uzbek": "Узбецька", + "Vietnamese": "В'єтнамська", + "Volapuk": "Волапюк", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубський", + "Chinese": "Китайська", + "Zulu": "Зулуська", + "Use station default": "Використовувати станцію за замовчуванням", + "Upload some tracks below to add them to your library!": "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s.", + "Click the 'New Show' button and fill out the required fields.": "Натисніть кнопку «Нова програма» та заповніть необхідні поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n %sСтворіть непов'язану програму зараз%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s.", + "LibreTime media analyzer service": "Служба медіааналізатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Переконайтеся, що службу libretime-analyzer встановлено правильно ", + " and ensure that it's running with ": " і переконайтеся, що вона працює ", + "If not, try ": "Якщо ні, спробуйте запустити ", + "LibreTime playout service": "Сервіс відтворення LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Переконайтеся, що службу libretime-playout встановлено правильно ", + "LibreTime liquidsoap service": "Служба LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Переконайтеся, що службу libretime-liquidsoap встановлено правильно ", + "LibreTime Celery Task service": "Служба завдань LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Переконайтеся, що служба libretime-worker коректно встановлена в ", + "LibreTime API service": "LibreTime API service", + "Check that the libretime-api service is installed correctly in ": "Переконайтеся, що службу libretime-api встановлено правильно ", + "Radio Page": "Сторінка радіо", + "Calendar": "Календар", + "Widgets": "Віджети", + "Player": "Плеєр", + "Weekly Schedule": "Тижневий розклад", + "Settings": "Налаштування", + "General": "Основні", + "My Profile": "Мій профіль", + "Users": "Користувачі", + "Track Types": "Типи треків", + "Streams": "Потоки", + "Status": "Статус", + "Analytics": "Аналітика", + "Playout History": "Історія відтворення", + "History Templates": "Історія шаблонів", + "Listener Stats": "Статистика слухачів", + "Show Listener Stats": "Показати статистику слухачів", + "Help": "Допомога", + "Getting Started": "Починаємо", + "User Manual": "Посібник користувача", + "Get Help Online": "Отримати допомогу онлайн", + "Contribute to LibreTime": "Зробіть внесок у LibreTime", + "What's New?": "Що нового?", + "You are not allowed to access this resource.": "Ви не маєте доступу до цього ресурсу.", + "You are not allowed to access this resource. ": "Ви не маєте доступу до цього ресурсу. ", + "File does not exist in %s": "Файл не існує в %s", + "Bad request. no 'mode' parameter passed.": "Неправильний запит. параметр 'mode' не передано.", + "Bad request. 'mode' parameter is invalid": "Неправильний запит. Параметр 'mode' недійсний", + "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", + "There is no source connected to this input.": "До цього входу не підключено джерело.", + "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "Page not found.": "Сторінку не знайдено.", + "The requested action is not supported.": "Задана дія не підтримується.", + "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", + "An internal application error has occurred.": "Сталася внутрішня помилка програми.", + "%s Podcast": "%s Підкаст", + "No tracks have been published yet.": "Треків ще не опубліковано.", + "%s not found": "%s не знайдено", + "Something went wrong.": "Щось пішло не так.", + "Preview": "Попередній перегляд", + "Add to Playlist": "Додати в плейлист", + "Add to Smart Block": "Додати до Смарт Блоку", + "Delete": "Видалити", + "Edit...": "Редагувати...", + "Download": "Завантажити", + "Duplicate Playlist": "Дублікат плейлиста", + "Duplicate Smartblock": "Дублікат Смарт-блоку", + "No action available": "Немає доступних дій", + "You don't have permission to delete selected items.": "Ви не маєте дозволу на видалення вибраних елементів.", + "Could not delete file because it is scheduled in the future.": "Не вдалося видалити файл, оскільки його заплановано в майбутньому.", + "Could not delete file(s).": "Не вдалося видалити файл(и).", + "Copy of %s": "Копія %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки.", + "Audio Player": "Аудіоплеєр", + "Something went wrong!": "Щось пішло не так!", + "Recording:": "Запис:", + "Master Stream": "Головний потік", + "Live Stream": "Наживо", + "Nothing Scheduled": "Нічого не заплановано", + "Current Show:": "Поточна програма:", + "Current": "Поточний", + "You are running the latest version": "Ви використовуєте останню версію", + "New version available: ": "Доступна нова версія: ", + "You have a pre-release version of LibreTime intalled.": "У вас встановлено попередню версію LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступне оновлення для вашої інсталяції LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступне оновлення функції для вашої інсталяції LibreTime.", + "A major update for your LibreTime installation is available.": "Доступне велике оновлення для вашої інсталяції LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше.", + "Add to current playlist": "Додати до поточного списку відтворення", + "Add to current smart block": "Додати до поточного смарт-блоку", + "Adding 1 Item": "Додавання 1 елемента", + "Adding %s Items": "Додавання %s Елемента(ів)", + "You can only add tracks to smart blocks.": "Ви можете додавати треки лише до смарт-блоків.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки.", + "Please select a cursor position on timeline.": "Виберіть позицію курсору на часовій шкалі.", + "You haven't added any tracks": "Ви не додали жодної композиції", + "You haven't added any playlists": "Ви не додали жодного плейлиста", + "You haven't added any podcasts": "Ви не додали подкастів", + "You haven't added any smart blocks": "Ви не додали смарт-блоків", + "You haven't added any webstreams": "Ви не додали жодного веб-потоку", + "Learn about tracks": "Дізнайтеся про треки", + "Learn about playlists": "Дізнайтеся про плейлисти", + "Learn about podcasts": "Дізнайтеся про подкасти", + "Learn about smart blocks": "Дізнайтеся про смарт-блоки", + "Learn about webstreams": "Дізнайтеся про веб-потоки", + "Click 'New' to create one.": "Натисніть «Новий», щоб створити.", + "Add": "Додати", + "New": "Новий", + "Edit": "Редагувати", + "Add to Schedule": "Додати до розкладу", + "Add to next show": "Додати до наступної програми", + "Add to current show": "Додати до поточної програми", + "Add after selected items": "Додати після вибраних елементів", + "Publish": "Опублікувати", + "Remove": "Видалити", + "Edit Metadata": "Редагувати метадані", + "Add to selected show": "Додати до вибраної програми", + "Select": "Вибрати", + "Select this page": "Вибрати поточну сторінку", + "Deselect this page": "Скасувати вибір поточної сторінки", + "Deselect all": "Скасувати виділення з усіх", + "Are you sure you want to delete the selected item(s)?": "Ви впевнені, що бажаєте видалити вибрані елементи?", + "Scheduled": "Запланований", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Назва", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Виконавець", + "Copyright": "Авторське право", + "Encoded By": "Закодовано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Мова", + "Last Modified": "Остання зміна", + "Last Played": "Останнє програвання", + "Length": "Довжина", + "Mime": "Mime", + "Mood": "Настрій", + "Owner": "Власник", + "Replay Gain": "Вирівнювання гучності", + "Sample Rate": "Частота дискретизації", + "Track Number": "Номер треку", + "Uploaded": "Завантажено", + "Website": "Веб-Сайт", + "Year": "Рік", + "Loading...": "Завантаження...", + "All": "Всі", + "Files": "Файли", + "Playlists": "Плейлист", + "Smart Blocks": "Смарт-блок", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Невідомий тип: ", + "Are you sure you want to delete the selected item?": "Ви впевнені, що бажаєте видалити вибраний елемент?", + "Uploading in progress...": "Виконується завантаження...", + "Retrieving data from the server...": "Отримання даних із сервера...", + "Import": "Імпорт", + "Imported?": "Імпортований?", + "View": "Переглянути", + "Error code: ": "Код помилки: ", + "Error msg: ": "Повідомлення про помилку: ", + "Input must be a positive number": "Введене значення має бути позитивним числом", + "Input must be a number": "Введене значення має бути числом", + "Input must be in the format: yyyy-mm-dd": "Вхідні дані мають бути у такому форматі: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Вхідні дані мають бути у такому форматі: hh:mm:ss.t", + "My Podcast": "Мій Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?", + "Open Media Builder": "Відкрити Конструктор Медіафайлів", + "please put in a time '00:00:00 (.0)'": "будь ласка, вкажіть час '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Введіть дійсний час у секундах. напр. 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не підтримує відтворення цього типу файлу: ", + "Dynamic block is not previewable": "Динамічний блок не доступний для попереднього перегляду", + "Limit to: ": "Обмеження до: ", + "Playlist saved": "Плейлист збережено", + "Playlist shuffled": "Плейлист перемішано", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується».", + "Listener Count on %s: %s": "Кількість слухачів %s: %s", + "Remind me in 1 week": "Нагадати через 1 тиждень", + "Remind me never": "Ніколи не нагадувати", + "Yes, help Airtime": "Так, допоможи Libretime", + "Image must be one of jpg, jpeg, png, or gif": "Зображення має бути jpg, jpeg, png, або gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку.", + "Smart block shuffled": "Смарт-блок перемішано", + "Smart block generated and criteria saved": "Створено смарт-блок і збережено критерії", + "Smart block saved": "Смарт-блок збережено", + "Processing...": "Обробка...", + "Select modifier": "Виберіть модифікатор", + "contains": "містить", + "does not contain": "не містить", + "is": "є", + "is not": "не", + "starts with": "починається з", + "ends with": "закінчується на", + "is greater than": "більше ніж", + "is less than": "менше ніж", + "is in the range": "знаходиться в діапазоні", + "Generate": "Генерувати", + "Choose Storage Folder": "Виберіть папку зберігання", + "Choose Folder to Watch": "Виберіть папку для перегляду", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Ви впевнені, що бажаєте змінити папку для зберігання?\nЦе видалить файли з вашої бібліотеки!", + "Manage Media Folders": "Керування медіа-папками", + "Are you sure you want to remove the watched folder?": "Ви впевнені, що хочете видалити переглянуту папку?", + "This path is currently not accessible.": "Цей шлях зараз недоступний.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s.", + "Connected to the streaming server": "Підключено до потокового сервера", + "The stream is disabled": "Потік вимкнено", + "Getting information from the server...": "Отримання інформації з сервера...", + "Can not connect to the streaming server": "Не вдається підключитися до потокового сервера", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151.", + "For more details, please read the %s%s Manual%s": "Щоб дізнатися більше, прочитайте %s%s Мануал%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів.", + "Warning: You cannot change this field while the show is currently playing": "Попередження: Ви не можете змінити це поле під час відтворення програми", + "No result found": "Результатів не знайдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися.", + "Specify custom authentication which will work only for this show.": "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми.", + "The show instance doesn't exist anymore!": "Екземпляр програми більше не існує!", + "Warning: Shows cannot be re-linked": "Застереження: програму не можна повторно пов’язати", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача.", + "Show": "Програма", + "Show is empty": "Програма порожня", + "1m": "1хв", + "5m": "5хв", + "10m": "10хв", + "15m": "15хв", + "30m": "30хв", + "60m": "60хв", + "Retreiving data from the server...": "Отримання даних із сервера...", + "This show has no scheduled content.": "Це програма не має запланованого вмісту.", + "This show is not completely filled with content.": "Це програма не повністю наповнена контентом.", + "January": "Січень", + "February": "Лютий", + "March": "Березень", + "April": "Квітень", + "May": "Травень", + "June": "Червень", + "July": "Липень", + "August": "Серпень", + "September": "Вересень", + "October": "Жовтень", + "November": "Листопад", + "December": "Грудень", + "Jan": "Січ", + "Feb": "Лют", + "Mar": "Бер", + "Apr": "Квіт", + "Jun": "Черв", + "Jul": "Лип", + "Aug": "Серп", + "Sep": "Вер", + "Oct": "Жовт", + "Nov": "Лист", + "Dec": "Груд", + "Today": "Сьогодні", + "Day": "День", + "Week": "Тиждень", + "Month": "Місяць", + "Sunday": "Неділя", + "Monday": "Понеділок", + "Tuesday": "Вівторок", + "Wednesday": "Середа", + "Thursday": "Четвер", + "Friday": "П'ятниця", + "Saturday": "Субота", + "Sun": "Нд", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Програма, яка триває довше запланованого часу, буде перервана наступною програмою.", + "Cancel Current Show?": "Скасувати поточну програму?", + "Stop recording current show?": "Зупинити запис поточної програми?", + "Ok": "Ok", + "Contents of Show": "Зміст програми", + "Remove all content?": "Видалити весь вміст?", + "Delete selected item(s)?": "Видалити вибрані елементи?", + "Start": "Старт", + "End": "Кінець", + "Duration": "Тривалість", + "Filtering out ": "Фільтрація ", + " of ": " з ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "На зазначений період часу не заплановано жодної програми.", + "Cue In": "Початок звучання", + "Cue Out": "Закінчення звучання", + "Fade In": "Зведення", + "Fade Out": "Затухання", + "Show Empty": "Програма порожня", + "Recording From Line In": "Запис з лінійного входу", + "Track preview": "Попередній перегляд треку", + "Cannot schedule outside a show.": "Не можна планувати поза програмою.", + "Moving 1 Item": "Переміщення 1 елементу", + "Moving %s Items": "Переміщення %s елементів", + "Save": "Зберегти", + "Cancel": "Відміна", + "Fade Editor": "Редактор Fade", + "Cue Editor": "Редактор Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Функції Waveform доступні в браузері, який підтримує API Web Audio", + "Select all": "Вибрати все", + "Select none": "Зняти виділення", + "Trim overbooked shows": "Обрізати переповнені програми", + "Remove selected scheduled items": "Видалити вибрані заплановані елементи", + "Jump to the current playing track": "Перехід до поточного треку", + "Jump to Current": "Перейти до поточного", + "Cancel current show": "Скасувати поточну програму", + "Open library to add or remove content": "Відкрийте бібліотеку, щоб додати або видалити вміст", + "Add / Remove Content": "Додати / видалити вміст", + "in use": "у вживанні", + "Disk": "Диск", + "Look in": "Подивитись", + "Open": "Відкрити", + "Admin": "Адмін", + "DJ": "DJ", + "Program Manager": "Менеджер програми", + "Guest": "Гість", + "Guests can do the following:": "Гості можуть зробити наступне:", + "View schedule": "Переглянути розклад", + "View show content": "Переглянути вміст програм", + "DJs can do the following:": "DJs можуть робити наступне:", + "Manage assigned show content": "Керуйте призначеним вмістом програм", + "Import media files": "Імпорт медіафайлів", + "Create playlists, smart blocks, and webstreams": "Створюйте списки відтворення, смарт-блоки та веб-потоки", + "Manage their own library content": "Керувати вмістом власної бібліотеки", + "Program Managers can do the following:": "Керівники програм можуть робити наступне:", + "View and manage show content": "Перегляд вмісту програм та керування ними", + "Schedule shows": "Розклад програм", + "Manage all library content": "Керуйте всім вмістом бібліотеки", + "Admins can do the following:": "Адміністратори можуть робити наступне:", + "Manage preferences": "Керувати налаштуваннями", + "Manage users": "Керувати користувачами", + "Manage watched folders": "Керування папками, які переглядаються", + "Send support feedback": "Надіслати відгук у службу підтримки", + "View system status": "Переглянути стан системи", + "Access playout history": "Доступ до історії відтворення", + "View listener stats": "Переглянути статистику слухачів", + "Show / hide columns": "Показати/сховати стовпці", + "Columns": "Стовпці", + "From {from} to {to}": "З {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "рррр-мм-дд", + "hh:mm:ss.t": "гг:хх:ss.t", + "kHz": "кГц", + "Su": "Нд", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрити", + "Hour": "Година", + "Minute": "Хвилина", + "Done": "Готово", + "Select files": "Виберіть файли", + "Add files to the upload queue and click the start button.": "Додайте файли до черги завантаження та натисніть кнопку «Пуск».", + "Filename": "Назва файлу", + "Size": "Розмір", + "Add Files": "Додати файли", + "Stop Upload": "Зупинити завантаження", + "Start upload": "Почати завантаження", + "Start Upload": "Розпочати вивантаження", + "Add files": "Додати файли", + "Stop current upload": "Припинити поточне вивантаження", + "Start uploading queue": "Почати вивантаження черги", + "Uploaded %d/%d files": "Завантажено %d/%d файлів", + "N/A": "N/A", + "Drag files here.": "Перетягніть файли сюди.", + "File extension error.": "Помилка розширення файлу.", + "File size error.": "Помилка розміру файлу.", + "File count error.": "Помилка підрахунку файлів.", + "Init error.": "Помилка ініціалізації.", + "HTTP Error.": "HTTP помилка.", + "Security error.": "Помилка безпеки.", + "Generic error.": "Загальна помилка.", + "IO error.": "IO помилка.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлів у черзі", + "File: %f, size: %s, max file size: %m": "Файл: %f, розмір: %s, макс. розмір файлу: %m", + "Upload URL might be wrong or doesn't exist": "URL-адреса завантаження може бути неправильною або не існує", + "Error: File too large: ": "Помилка: Файл завеликий: ", + "Error: Invalid file extension: ": "Помилка: Недійсне розширення файлу: ", + "Set Default": "Встановити за замовчуванням", + "Create Entry": "Створити запис", + "Edit History Record": "Редагувати запис історії", + "No Show": "Немає програми", + "Copied %s row%s to the clipboard": "Скопійовано %s рядок%s у буфер обміну", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape.", + "New Show": "Нова програма", + "New Log Entry": "Новий запис журналу", + "No data available in table": "Дані в таблиці відсутні", + "(filtered from _MAX_ total entries)": "(відфільтровано з _MAX_ всього записів)", + "First": "Спочатку", + "Last": "Останній", + "Next": "Наступний", + "Previous": "Попередній", + "Search:": "Пошук:", + "No matching records found": "Відповідних записів не знайдено", + "Drag tracks here from the library": "Перетягніть треки сюди з бібліотеки", + "No tracks were played during the selected time period.": "Жоден трек не відтворювався протягом вибраного періоду часу.", + "Unpublish": "Зняти з публікації", + "No matching results found.": "Відповідних результатів не знайдено.", + "Author": "Автор", + "Description": "Опис", + "Link": "Посилання", + "Publication Date": "Дата публікації", + "Import Status": "Статус імпорту", + "Actions": "Дії", + "Delete from Library": "Видалити з бібліотеки", + "Successfully imported": "Успішно імпортовано", + "Show _MENU_": "Показати _MENU_", + "Show _MENU_ entries": "Показати _MENU_ записів", + "Showing _START_ to _END_ of _TOTAL_ entries": "Показано від _START_ to _END_ of _TOTAL_ записів", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано від _START_ to _END_ of _TOTAL_ треків", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано від _START_ to _END_ of _TOTAL_типів треків", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано від _START_ to _END_ of _TOTAL_ користувачів", + "Showing 0 to 0 of 0 entries": "Показано від 0 до 0 із 0 записів", + "Showing 0 to 0 of 0 tracks": "Показано від 0 до 0 із 0 треків", + "Showing 0 to 0 of 0 track types": "Показано від 0 до 0 із 0 типів треків", + "(filtered from _MAX_ total track types)": "(відфільтровано з _MAX_ загальних типів доріжок)", + "Are you sure you want to delete this tracktype?": "Ви впевнені, що хочете видалити цей тип треку?", + "No track types were found.": "Типи треків не знайдено.", + "No track types found": "Типи треків не знайдено", + "No matching track types found": "Відповідних типів треків не знайдено", + "Enabled": "Увімкнено", + "Disabled": "Вимкнено", + "Cancel upload": "Скасувати завантаження", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", + "Podcast settings saved": "Налаштування подкасту збережено", + "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", + "Can't delete yourself!": "Неможливо видалити себе!", + "You haven't published any episodes!": "Ви не опублікували жодного випуску!", + "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", + "Try it now": "Спробуй зараз", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

", + "Playlist preview": "Попередній перегляд плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Попередній перегляд веб-потоку", + "You don't have permission to view the library.": "Ви не маєте дозволу переглядати бібліотеку.", + "Now": "Зараз", + "Click 'New' to create one now.": "Натисніть «Новий», щоб створити.", + "Click 'Upload' to add some now.": "Натисніть «Завантажити», щоб додати.", + "Feed URL": "URL стрічки", + "Import Date": "Дата імпорту", + "Add New Podcast": "Додати новий подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Не можна планувати за межами програми.\nСпочатку створіть програму.", + "No files have been uploaded yet.": "Файли ще не завантажено.", + "On Air": "В ефірі", + "Off Air": "Не в ефірі", + "Offline": "Offline", + "Nothing scheduled": "Нічого не заплановано", + "Click 'Add' to create one now.": "Натисніть «Додати», щоб створити зараз.", + "Please enter your username and password.": "Будь ласка, введіть своє ім'я користувача та пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином.", + "That username or email address could not be found.": "Не вдалося знайти це ім’я користувача чи електронну адресу.", + "There was a problem with the username or email address you entered.": "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели.", + "Wrong username or password provided. Please try again.": "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз.", + "You are viewing an older version of %s": "Ви переглядаєте старішу версію %s", + "You cannot add tracks to dynamic blocks.": "До динамічних блоків не можна додавати треки.", + "You don't have permission to delete selected %s(s).": "Ви не маєте дозволу на видалення вибраного %s(х).", + "You can only add tracks to smart block.": "Ви можете додавати треки лише в смарт-блок.", + "Untitled Playlist": "Плейлист без назви", + "Untitled Smart Block": "Смарт-блок без назви", + "Unknown Playlist": "Невідомий плейлист", + "Preferences updated.": "Налаштування оновлено.", + "Stream Setting Updated.": "Налаштування потоку оновлено.", + "path should be specified": "слід вказати шлях", + "Problem with Liquidsoap...": "Проблема з Liquidsoap...", + "Request method not accepted": "Метод запиту не прийнято", + "Rebroadcast of show %s from %s at %s": "Ретрансяція програми %s від %s в %s", + "Select cursor": "Вибрати курсор", + "Remove cursor": "Видалити курсор", + "show does not exist": "програми не існує", + "Track Type added successfully!": "Тип треку успішно додано!", + "Track Type updated successfully!": "Тип треку успішно оновлено!", + "User added successfully!": "Користувача успішно додано!", + "User updated successfully!": "Користувача успішно оновлено!", + "Settings updated successfully!": "Налаштування успішно оновлено!", + "Untitled Webstream": "Веб-потік без назви", + "Webstream saved.": "Веб-потік збережено.", + "Invalid form values.": "Недійсні значення форми.", + "Invalid character entered": "Введено недійсний символ", + "Day must be specified": "Необхідно вказати день", + "Time must be specified": "Необхідно вказати час", + "Must wait at least 1 hour to rebroadcast": "Для повторної трансляції потрібно зачекати принаймні 1 годину", + "Add Autoloading Playlist ?": "Додати плейлист з автозавантаженням?", + "Select Playlist": "Вибір плейлиста", + "Repeat Playlist Until Show is Full ?": "Повторювати список відтворення до заповнення програми?", + "Use %s Authentication:": "Використовувати %s Аутентифікацію:", + "Use Custom Authentication:": "Використовувати спеціальну автентифікацію:", + "Custom Username": "Спеціальне ім'я користувача", + "Custom Password": "Користувацький пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтування:", + "Username field cannot be empty.": "Поле імені користувача не може бути порожнім.", + "Password field cannot be empty.": "Поле пароля не може бути порожнім.", + "Record from Line In?": "Записувати з лінійного входу?", + "Rebroadcast?": "Повторна трансляція?", + "days": "днів", + "Link:": "Посилання:", + "Repeat Type:": "Тип повтору:", + "weekly": "щотижня", + "every 2 weeks": "кожні 2 тижні", + "every 3 weeks": "кожні 3 тижні", + "every 4 weeks": "кожні 4 тижні", + "monthly": "щомісяця", + "Select Days:": "Оберіть дні:", + "Repeat By:": "Повторити:", + "day of the month": "день місяця", + "day of the week": "день тижня", + "Date End:": "Кінцева дата:", + "No End?": "Немає кінця?", + "End date must be after start date": "Дата завершення має бути після дати початку", + "Please select a repeat day": "Виберіть день повторення", + "Background Colour:": "Колір фону:", + "Text Colour:": "Колір тексту:", + "Current Logo:": "Поточний логотип:", + "Show Logo:": "Показати логотип:", + "Logo Preview:": "Попередній перегляд логотипу:", + "Name:": "Ім'я:", + "Untitled Show": "Програма без назви", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "Опис екземпляру:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' не відповідає часовому формату 'HH:mm'", + "Start Time:": "Час початку:", + "In the Future:": "У майбутньому:", + "End Time:": "Час закінчення:", + "Duration:": "Тривалість:", + "Timezone:": "Часовий пояс:", + "Repeats?": "Повторювати?", + "Cannot create show in the past": "Неможливо створити програму в минулому часі", + "Cannot modify start date/time of the show that is already started": "Неможливо змінити дату/час початку програми, яка вже розпочата", + "End date/time cannot be in the past": "Дата/час завершення не можуть бути в минулому", + "Cannot have duration < 0m": "Не може мати тривалість < 0хв", + "Cannot have duration 00h 00m": "Не може мати тривалість 00год 00хв", + "Cannot have duration greater than 24h": "Тривалість не може перевищувати 24 год", + "Cannot schedule overlapping shows": "Неможливо запланувати накладені програми", + "Search Users:": "Пошук користувачів:", + "DJs:": "Діджеї:", + "Type Name:": "Назва типу:", + "Code:": "Код:", + "Visibility:": "Видимість:", + "Analyze cue points:": "Проаналізуйте контрольні точки:", + "Code is not unique.": "Код не унікальний.", + "Username:": "Ім'я користувача:", + "Password:": "Пароль:", + "Verify Password:": "Підтвердіть пароль:", + "Firstname:": "Ім'я:", + "Lastname:": "Прізвище:", + "Email:": "Email:", + "Mobile Phone:": "Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Тип користувача:", + "Login name is not unique.": "Логін не є унікальним.", + "Delete All Tracks in Library": "Видалити всі треки з бібліотеки", + "Date Start:": "Дата початку:", + "Title:": "Назва:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Власник:", + "Select a Type": "Виберіть тип", + "Track Type:": "Тип треку:", + "Year:": "Рік:", + "Label:": "Label:", + "Composer:": "Композитор:", + "Conductor:": "Виконавець:", + "Mood:": "Настрій:", + "BPM:": "BPM:", + "Copyright:": "Авторське право:", + "ISRC Number:": "Номер ISRC:", + "Website:": "Веб-сайт:", + "Language:": "Мова:", + "Publish...": "Опублікувати...", + "Start Time": "Час початку", + "End Time": "Час закінчення", + "Interface Timezone:": "Часовий пояс інтерфейсу:", + "Station Name": "Назва станції", + "Station Description": "Опис Станції", + "Station Logo:": "Лого Станції:", + "Note: Anything larger than 600x600 will be resized.": "Примітка: все, що перевищує 600x600, буде змінено.", + "Default Crossfade Duration (s):": "Тривалість переходу за замовчуванням (с):", + "Please enter a time in seconds (eg. 0.5)": "Будь ласка, введіть час у секундах (наприклад, 0,5)", + "Default Fade In (s):": "За замовчуванням Fade In (s):", + "Default Fade Out (s):": "За замовчуванням Fade Out (s):", + "Track Type Upload Default": "Тип доріжки Завантаження за замовчуванням", + "Intro Autoloading Playlist": "Вступний автозавантажуваний плейлист (Intro)", + "Outro Autoloading Playlist": "Завершальний автозавантажувальний плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезаписати метатеги епізоду подкасту", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Створіть смартблок і список відтворення після створення нового подкасту", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди.", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Потрібний для вбудованого віджета розкладу.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт.", + "Default Language": "Мова за замовчуванням", + "Station Timezone": "Часовий пояс станції", + "Week Starts On": "Тиждень починається з", + "Display login button on your Radio Page?": "Відображати кнопку входу на сторінці радіо?", + "Feature Previews": "Попередній перегляд функцій", + "Enable this to opt-in to test new features.": "Увімкніть це, щоб тестувати нові функції.", + "Auto Switch Off:": "Автоматичне вимкнення:", + "Auto Switch On:": "Автоматичне ввімкнення:", + "Switch Transition Fade (s):": "Перемикання переходу Fade (s):", + "Master Source Host:": "Головний вихідний хост:", + "Master Source Port:": "Головний вихідний порт:", + "Master Source Mount:": "Головне джерело монтування:", + "Show Source Host:": "Показати вихідний хост:", + "Show Source Port:": "Показати вихідний порт:", + "Show Source Mount:": "Показати джерела монтування:", + "Login": "Логін", + "Password": "Пароль", + "Confirm new password": "Підтвердити новий пароль", + "Password confirmation does not match your password.": "Підтвердження пароля не збігається з вашим.", + "Email": "Email", + "Username": "Ім'я користувача", + "Reset password": "Скинути пароль", + "Back": "Назад", + "Now Playing": "Зараз грає", + "Select Stream:": "Виберіть потік:", + "Auto detect the most appropriate stream to use.": "Автоматичне визначення потоку, який найбільше підходить для використання.", + "Select a stream:": "Виберіть потік:", + " - Mobile friendly": " - Зручний для мобільних пристроїв", + " - The player does not support Opus streams.": " - Плеєр не підтримує потоки Opus.", + "Embeddable code:": "Код для вбудовування:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт.", + "Preview:": "Попередній перегляд:", + "Feed Privacy": "Конфіденційність стрічки", + "Public": "Публічний", + "Private": "Приватний", + "Station Language": "Мова станції", + "Filter by Show": "Фільтрувати мої програми", + "All My Shows:": "Усі мої програми:", + "My Shows": "Мої програми", + "Select criteria": "Виберіть критерії", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "Тип треку", + "Sample Rate (kHz)": "Частота дискретизації (kHz)", + "before": "раніше", + "after": "після", + "between": "між", + "Select unit of time": "Виберіть одиницю часу", + "minute(s)": "хвилина(и)", + "hour(s)": "година(и)", + "day(s)": "День(Дні)", + "week(s)": "Тиждень(і)", + "month(s)": "місяць(і)", + "year(s)": "Рік(и)", + "hours": "година(и)", + "minutes": "хвилина(и)", + "items": "елементи", + "time remaining in show": "час, що залишився у програмі", + "Randomly": "Довільно", + "Newest": "Найновіший(і)", + "Oldest": "Найстаріший(і)", + "Most recently played": "Нещодавно зіграно", + "Least recently played": "Нещодавно грали", + "Select Track Type": "Виберіть тип доріжки", + "Type:": "Тип:", + "Dynamic": "Динамічний", + "Static": "Статичний", + "Select track type": "Виберіть тип доріжки", + "Allow Repeated Tracks:": "Дозволити повторення треків:", + "Allow last track to exceed time limit:": "Дозволити останньому треку перевищити ліміт часу:", + "Sort Tracks:": "Сортування треків:", + "Limit to:": "Обмежити в:", + "Generate playlist content and save criteria": "Створення вмісту списку відтворення та збереження критеріїв", + "Shuffle playlist content": "Перемішати вміст плейлиста", + "Shuffle": "Перемішати", + "Limit cannot be empty or smaller than 0": "Ліміт не може бути порожнім або меншим за 0", + "Limit cannot be more than 24 hrs": "Ліміт не може перевищувати 24 год", + "The value should be an integer": "Значення має бути цілим числом", + "500 is the max item limit value you can set": "500 максимальне граничне значення", + "You must select Criteria and Modifier": "Ви повинні вибрати Критерії і Модифікатор", + "'Length' should be in '00:00:00' format": "'Довжина має бути введена у '00:00:00' форматі", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)", + "You must select a time unit for a relative datetime.": "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа", + "The value has to be numeric": "Значення має бути числовим", + "The value should be less then 2147483648": "Значення має бути меншим, ніж 2147483648", + "The value cannot be empty": "Значення не може бути порожнім", + "The value should be less than %s characters": "Значення має бути менше ніж %s символів", + "Value cannot be empty": "Значення не може бути порожнім", + "Stream Label:": "Метадані потоку:", + "Artist - Title": "Виконавець - Назва", + "Show - Artist - Title": "Програма - Виконавець - Назва", + "Station name - Show name": "Назва станції - Показати назву", + "Off Air Metadata": "Метадані при вимкненому ефірі", + "Enable Replay Gain": "Вмикнути Replay Gain", + "Replay Gain Modifier": "Змінити Replay Gain", + "Hardware Audio Output:": "Апаратний аудіовихід:", + "Output Type": "Тип виходу", + "Enabled:": "Увімкнено:", + "Mobile:": "Телефон:", + "Stream Type:": "Тип потоку:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Тип сервіса:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтування", + "Name": "Ім'я", + "URL": "URL", + "Stream URL": "URL-адреса трансляції", + "Push metadata to your station on TuneIn?": "Надішлати метадані на свою станцію в TuneIn?", + "Station ID:": "ID Станції:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "ID партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу.", + "Import Folder:": "Імпорт папки:", + "Watched Folders:": "Переглянути папки:", + "Not a valid Directory": "Недійсний каталог", + "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не є дійсною електронною адресою в форматі local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не відповідає формату дати '%format%'", + "'%value%' is less than %min% characters long": "'%value%' є меншим ніж %min% довжина символів", + "'%value%' is more than %max% characters long": "'%value%' це більше ніж %max% довжина символів", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не знаходиться між '%min%' і '%max%', включно", + "Passwords do not match": "Паролі не співпадають", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", + "\n\nThank you,\nThe %s Team": "\n\nДякую Вам,\nThe %s Team", + "%s Password Reset": "%s Скидання паролю", + "Cue in and cue out are null.": "Час початку та закінчення звучання треку не заповнені.", + "Can't set cue out to be greater than file length.": "Час закінчення звучання не може перевищувати довжину треку.", + "Can't set cue in to be larger than cue out.": "Час початку звучання може бути пізніше часу закінчення.", + "Can't set cue out to be smaller than cue in.": "Час закінчення звучання не може бути раніше початку.", + "Upload Time": "Час завантаження", + "None": "Жодного", + "Powered by %s": "На основі %s", + "Select Country": "Оберіть Країну", + "livestream": "Наживо", + "Cannot move items out of linked shows": "Неможливо перемістити елементи з пов’язаних програм", + "The schedule you're viewing is out of date! (sched mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)", + "The schedule you're viewing is out of date! (instance mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)", + "The schedule you're viewing is out of date!": "Розклад, який ви переглядаєте, застарів!", + "You are not allowed to schedule show %s.": "Вам не дозволено планувати програму %s.", + "You cannot add files to recording shows.": "Ви не можете додавати файли до Програми, що записується.", + "The show %s is over and cannot be scheduled.": "Програма %s закінчилась, її не можливо запланувати.", + "The show %s has been previously updated!": "Програма %s була оновлена раніше!", + "Content in linked shows cannot be changed while on air!": "Вміст пов’язаних програм не можна змінювати під час трансляції!", + "Cannot schedule a playlist that contains missing files.": "Неможливо запланувати плейлист, який містить відсутні файли.", + "A selected File does not exist!": "Вибраний файл не існує!", + "Shows can have a max length of 24 hours.": "Програма може тривати не більше 24 годин.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не можна планувати Програми, що перетинаються.\nПримітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники.", + "Rebroadcast of %s from %s": "Ретрансляція %s від %s", + "Length needs to be greater than 0 minutes": "Довжина повинна бути більше ніж 0 хвилин", + "Length should be of form \"00h 00m\"": "Довжина повинна відповідати формі \"00год 00хв\"", + "URL should be of form \"https://example.org\"": "URL має бути форми \"https://example.org\"", + "URL should be 512 characters or less": "URL-адреса має містити не більше 512 символів", + "No MIME type found for webstream.": "Для веб-потоку не знайдено тип MIME.", + "Webstream name cannot be empty": "Назва веб-потоку не може бути пустою", + "Could not parse XSPF playlist": "Не вдалося проаналізувати XSPF плейлист", + "Could not parse PLS playlist": "Не вдалося проаналізувати PLS плейлист", + "Could not parse M3U playlist": "Не вдалося проаналізувати M3U плейлист", + "Invalid webstream - This appears to be a file download.": "Недійсний веб-потік. Здається, це завантажений файл.", + "Unrecognized stream type: %s": "Нерозпізнаний тип потоку: %s", + "Record file doesn't exist": "Файл запису не існує", + "View Recorded File Metadata": "Перегляд метаданих записаного файлу", + "Schedule Tracks": "Заплановані треки", + "Clear Show": "Очистити програму", + "Cancel Show": "Відміна програми", + "Edit Instance": "Редагувати екземпляр", + "Edit Show": "Редагування програми", + "Delete Instance": "Видалити екземпляр", + "Delete Instance and All Following": "Видалити екземпляр і все наступне", + "Permission denied": "У дозволі відмовлено", + "Can't drag and drop repeating shows": "Не можна перетягувати повторювані програми", + "Can't move a past show": "Неможливо перемістити минулу програму", + "Can't move show into past": "Неможливо перенести програму в минуле", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції.", + "Show was deleted because recorded show does not exist!": "Програму видалено, оскільки записаної програми не існує!", + "Must wait 1 hour to rebroadcast.": "Для повторної трансляції потрібно почекати 1 годину.", + "Track": "Трек", + "Played": "Програно", + "Auto-generated smartblock for podcast": "Автоматично створений смарт-блок для подкасту", + "Webstreams": "Веб-потоки" +} \ No newline at end of file diff --git a/webapp/src/locale/zh_CN.json b/webapp/src/locale/zh_CN.json new file mode 100644 index 0000000000..16a5826314 --- /dev/null +++ b/webapp/src/locale/zh_CN.json @@ -0,0 +1,941 @@ +{ + "The year %s must be within the range of 1753 - 9999": "1753 - 9999 是可以接受的年代值,而不是“%s”", + "%s-%s-%s is not a valid date": "%s-%s-%s采用了错误的日期格式", + "%s:%s:%s is not a valid time": "%s:%s:%s 采用了错误的时间格式", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "节目日程", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "用户管理", + "Track Types": "", + "Streams": "媒体流设置", + "Status": "系统状态", + "Analytics": "", + "Playout History": "播出历史", + "History Templates": "历史记录模板", + "Listener Stats": "收听状态", + "Show Listener Stats": "", + "Help": "帮助", + "Getting Started": "基本用法", + "User Manual": "用户手册", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "你没有访问该资源的权限", + "You are not allowed to access this resource. ": "你没有访问该资源的权限", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "请求错误。没有提供‘模式’参数。", + "Bad request. 'mode' parameter is invalid": "请求错误。提供的‘模式’参数无效。", + "You don't have permission to disconnect source.": "你没有断开输入源的权限。", + "There is no source connected to this input.": "没有连接上的输入源。", + "You don't have permission to switch source.": "你没有切换的权限。", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s不存在", + "Something went wrong.": "未知错误。", + "Preview": "预览", + "Add to Playlist": "添加到播放列表", + "Add to Smart Block": "添加到智能模块", + "Delete": "删除", + "Edit...": "", + "Download": "下载", + "Duplicate Playlist": "复制播放列表", + "Duplicate Smartblock": "", + "No action available": "没有操作选择", + "You don't have permission to delete selected items.": "你没有删除选定项目的权限。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s的副本", + "Please make sure admin user/password is correct on Settings->Streams page.": "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。", + "Audio Player": "音频播放器", + "Something went wrong!": "", + "Recording:": "录制:", + "Master Stream": "主输入源", + "Live Stream": "节目定制输入源", + "Nothing Scheduled": "没有安排节目内容", + "Current Show:": "当前节目:", + "Current": "当前的", + "You are running the latest version": "你已经在使用最新版", + "New version available: ": "版本有更新:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "添加到播放列表", + "Add to current smart block": "添加到只能模块", + "Adding 1 Item": "添加1项", + "Adding %s Items": "添加%s项", + "You can only add tracks to smart blocks.": "智能模块只能添加声音文件。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "播放列表只能添加声音文件,只能模块和网络流媒体。", + "Please select a cursor position on timeline.": "请在右部的时间表视图中选择一个游标位置。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "添加", + "New": "", + "Edit": "编辑", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "移除", + "Edit Metadata": "编辑元数据", + "Add to selected show": "添加到所选的节目", + "Select": "选择", + "Select this page": "选择此页", + "Deselect this page": "取消整页", + "Deselect all": "全部取消", + "Are you sure you want to delete the selected item(s)?": "确定删除选择的项?", + "Scheduled": "已安排进日程", + "Tracks": "", + "Playlist": "", + "Title": "标题", + "Creator": "作者", + "Album": "专辑", + "Bit Rate": "比特率", + "BPM": "每分钟拍子数", + "Composer": "作曲", + "Conductor": "指挥", + "Copyright": "版权", + "Encoded By": "编曲", + "Genre": "风格", + "ISRC": "ISRC码", + "Label": "标签", + "Language": "语种", + "Last Modified": "最近更新于", + "Last Played": "上次播放于", + "Length": "时长", + "Mime": "MIME信息", + "Mood": "风格", + "Owner": "所有者", + "Replay Gain": "回放增益", + "Sample Rate": "样本率", + "Track Number": "曲目", + "Uploaded": "上传于", + "Website": "网址", + "Year": "年代", + "Loading...": "加载中...", + "All": "全部", + "Files": "文件", + "Playlists": "播放列表", + "Smart Blocks": "智能模块", + "Web Streams": "网络流媒体", + "Unknown type: ": "位置类型:", + "Are you sure you want to delete the selected item?": "确定删除所选项?", + "Uploading in progress...": "正在上传...", + "Retrieving data from the server...": "数据正在从服务器下载中...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "错误代码:", + "Error msg: ": "错误信息:", + "Input must be a positive number": "输入只能为正数", + "Input must be a number": "只允许数字输入", + "Input must be in the format: yyyy-mm-dd": "输入格式应为:年-月-日(yyyy-mm-dd)", + "Input must be in the format: hh:mm:ss.t": "输入格式应为:时:分:秒 (hh:mm:ss.t)", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?", + "Open Media Builder": "打开媒体编辑器", + "please put in a time '00:00:00 (.0)'": "请输入时间‘00:00:00(.0)’", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "你的浏览器不支持这种文件类型:", + "Dynamic block is not previewable": "动态智能模块无法预览", + "Limit to: ": "限制在:", + "Playlist saved": "播放列表已存储", + "Playlist shuffled": "播放列表已经随机化", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。", + "Listener Count on %s: %s": "听众统计%s:%s", + "Remind me in 1 week": "一周以后再提醒我", + "Remind me never": "不再提醒", + "Yes, help Airtime": "是的,帮助Airtime", + "Image must be one of jpg, jpeg, png, or gif": "图像文件格式只能是jpg,jpeg,png或者gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "智能模块已经随机排列", + "Smart block generated and criteria saved": "智能模块已经生成,条件设置已经保存", + "Smart block saved": "智能模块已经保存", + "Processing...": "加载中...", + "Select modifier": "选择操作符", + "contains": "包含", + "does not contain": "不包含", + "is": "是", + "is not": "不是", + "starts with": "起始于", + "ends with": "结束于", + "is greater than": "大于", + "is less than": "小于", + "is in the range": "处于", + "Generate": "开始生成", + "Choose Storage Folder": "选择存储文件夹", + "Choose Folder to Watch": "选择监控的文件夹", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "确定更改存储路径?\n这项操作将从媒体库中删除所有文件!", + "Manage Media Folders": "管理媒体文件夹", + "Are you sure you want to remove the watched folder?": "确定取消该文件夹的监控?", + "This path is currently not accessible.": "指定的路径无法访问。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。", + "Connected to the streaming server": "流服务器已连接", + "The stream is disabled": "输出流已禁用", + "Getting information from the server...": "从服务器加载中...", + "Can not connect to the streaming server": "无法连接流服务器", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。", + "Check this box to automatically switch on Master/Show source upon source connection.": "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。", + "If your Icecast server expects a username of 'source', this field can be left blank.": "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "如果你的流客户端不需要用户名,那么当前项可以留空", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "搜索无结果", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。", + "Specify custom authentication which will work only for this show.": "所设置的自定义认证设置只对当前的节目有效。", + "The show instance doesn't exist anymore!": "此节目已不存在", + "Warning: Shows cannot be re-linked": "注意:节目取消绑定后无法再次绑定", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。", + "Show": "节目", + "Show is empty": "节目内容为空", + "1m": "1分钟", + "5m": "5分钟", + "10m": "10分钟", + "15m": "15分钟", + "30m": "30分钟", + "60m": "60分钟", + "Retreiving data from the server...": "从服务器下载数据中...", + "This show has no scheduled content.": "此节目没有安排内容。", + "This show is not completely filled with content.": "节目内容只填充了一部分。", + "January": "一月", + "February": "二月", + "March": "三月", + "April": "四月", + "May": "五月", + "June": "六月", + "July": "七月", + "August": "八月", + "September": "九月", + "October": "十月", + "November": "十一月", + "December": "十二月", + "Jan": "一月", + "Feb": "二月", + "Mar": "三月", + "Apr": "四月", + "Jun": "六月", + "Jul": "七月", + "Aug": "八月", + "Sep": "九月", + "Oct": "十月", + "Nov": "十一月", + "Dec": "十二月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "周日", + "Monday": "周一", + "Tuesday": "周二", + "Wednesday": "周三", + "Thursday": "周四", + "Friday": "周五", + "Saturday": "周六", + "Sun": "周日", + "Mon": "周一", + "Tue": "周二", + "Wed": "周三", + "Thu": "周四", + "Fri": "周五", + "Sat": "周六", + "Shows longer than their scheduled time will be cut off by a following show.": "超出的节目内容将被随后的节目所取代。", + "Cancel Current Show?": "取消当前的节目?", + "Stop recording current show?": "停止录制当前的节目?", + "Ok": "确定", + "Contents of Show": "浏览节目内容", + "Remove all content?": "清空全部内容?", + "Delete selected item(s)?": "删除选定的项目?", + "Start": "开始", + "End": "结束", + "Duration": "时长", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "切入", + "Cue Out": "切出", + "Fade In": "淡入", + "Fade Out": "淡出", + "Show Empty": "节目无内容", + "Recording From Line In": "从线路输入录制", + "Track preview": "试听媒体", + "Cannot schedule outside a show.": "没有指定节目,无法凭空安排内容。", + "Moving 1 Item": "移动1个项目", + "Moving %s Items": "移动%s个项目", + "Save": "保存", + "Cancel": "取消", + "Fade Editor": "淡入淡出编辑器", + "Cue Editor": "切入切出编辑器", + "Waveform features are available in a browser supporting the Web Audio API": "想要启用波形图功能,需要支持Web Audio API的浏览器。", + "Select all": "全选", + "Select none": "全不选", + "Trim overbooked shows": "", + "Remove selected scheduled items": "移除所选的项目", + "Jump to the current playing track": "跳转到当前播放的项目", + "Jump to Current": "", + "Cancel current show": "取消当前的节目", + "Open library to add or remove content": "打开媒体库,添加或者删除节目内容", + "Add / Remove Content": "添加 / 删除内容", + "in use": "使用中", + "Disk": "磁盘", + "Look in": "查询", + "Open": "打开", + "Admin": "系统管理员", + "DJ": "节目编辑", + "Program Manager": "节目主管", + "Guest": "游客", + "Guests can do the following:": "游客的权限包括:", + "View schedule": "显示节目日程", + "View show content": "显示节目内容", + "DJs can do the following:": "节目编辑的权限包括:", + "Manage assigned show content": "为指派的节目管理节目内容", + "Import media files": "导入媒体文件", + "Create playlists, smart blocks, and webstreams": "创建播放列表,智能模块和网络流媒体", + "Manage their own library content": "管理媒体库中属于自己的内容", + "Program Managers can do the following:": "", + "View and manage show content": "查看和管理节目内容", + "Schedule shows": "安排节目日程", + "Manage all library content": "管理媒体库的所有内容", + "Admins can do the following:": "管理员的权限包括:", + "Manage preferences": "属性管理", + "Manage users": "管理用户", + "Manage watched folders": "管理监控文件夹", + "Send support feedback": "提交反馈意见", + "View system status": "显示系统状态", + "Access playout history": "查看播放历史", + "View listener stats": "显示收听统计数据", + "Show / hide columns": "显示/隐藏栏", + "Columns": "", + "From {from} to {to}": "从{from}到{to}", + "kbps": "千比特每秒", + "yyyy-mm-dd": "年-月-日", + "hh:mm:ss.t": "时:分:秒", + "kHz": "千赫兹", + "Su": "周天", + "Mo": "周一", + "Tu": "周二", + "We": "周三", + "Th": "周四", + "Fr": "周五", + "Sa": "周六", + "Close": "关闭", + "Hour": "小时", + "Minute": "分钟", + "Done": "设定", + "Select files": "选择文件", + "Add files to the upload queue and click the start button.": "添加需要上传的文件到传输队列中,然后点击开始上传。", + "Filename": "", + "Size": "", + "Add Files": "添加文件", + "Stop Upload": "停止上传", + "Start upload": "开始上传", + "Start Upload": "", + "Add files": "添加文件", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "已经上传%d/%d个文件", + "N/A": "未知", + "Drag files here.": "拖拽文件到此处。", + "File extension error.": "文件后缀名出错。", + "File size error.": "文件大小出错。", + "File count error.": "发生文件统计错误。", + "Init error.": "发生初始化错误。", + "HTTP Error.": "发生HTTP类型的错误", + "Security error.": "发生安全性错误。", + "Generic error.": "发生通用类型的错误。", + "IO error.": "输入输出错误。", + "File: %s": "文件:%s", + "%d files queued": "队列中有%d个文件", + "File: %f, size: %s, max file size: %m": "文件:%f,大小:%s,最大的文件大小:%m", + "Upload URL might be wrong or doesn't exist": "用于上传的地址有误或者不存在", + "Error: File too large: ": "错误:文件过大:", + "Error: Invalid file extension: ": "错误:无效的文件后缀名:", + "Set Default": "设为默认", + "Create Entry": "创建项目", + "Edit History Record": "编辑历史记录", + "No Show": "无节目", + "Copied %s row%s to the clipboard": "复制%s行%s到剪贴板", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "描述", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "启用", + "Disabled": "禁用", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "邮件发送失败。请检查邮件服务器设置,并确定设置无误。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "用户名或密码错误,请重试。", + "You are viewing an older version of %s": "你所查看的%s已更改", + "You cannot add tracks to dynamic blocks.": "动态智能模块不能添加声音文件。", + "You don't have permission to delete selected %s(s).": "你没有删除所选%s的权限。", + "You can only add tracks to smart block.": "智能模块只能添加媒体文件。", + "Untitled Playlist": "未命名的播放列表", + "Untitled Smart Block": "未命名的智能模块", + "Unknown Playlist": "位置播放列表", + "Preferences updated.": "属性已更新。", + "Stream Setting Updated.": "流设置已更新。", + "path should be specified": "请指定路径", + "Problem with Liquidsoap...": "Liquidsoap出错...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "节目%s是节目%s的重播,时间是%s", + "Select cursor": "选择游标", + "Remove cursor": "删除游标", + "show does not exist": "节目不存在", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "用户已添加成功!", + "User updated successfully!": "用于已成功更新!", + "Settings updated successfully!": "设置更新成功!", + "Untitled Webstream": "未命名的网络流媒体", + "Webstream saved.": "网络流媒体已保存。", + "Invalid form values.": "无效的表格内容。", + "Invalid character entered": "输入的字符不合要求", + "Day must be specified": "请指定天", + "Time must be specified": "请指定时间", + "Must wait at least 1 hour to rebroadcast": "至少间隔一个小时", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "使用自定义的用户认证:", + "Custom Username": "自定义用户名", + "Custom Password": "自定义密码", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "请填写用户名", + "Password field cannot be empty.": "请填写密码", + "Record from Line In?": "从线路输入录制?", + "Rebroadcast?": "重播?", + "days": "天", + "Link:": "绑定:", + "Repeat Type:": "类型:", + "weekly": "每周", + "every 2 weeks": "每隔2周", + "every 3 weeks": "每隔3周", + "every 4 weeks": "每隔4周", + "monthly": "每月", + "Select Days:": "选择天数:", + "Repeat By:": "重复类型:", + "day of the month": "按月的同一日期", + "day of the week": "一个星期的同一日子", + "Date End:": "结束日期:", + "No End?": "无休止?", + "End date must be after start date": "结束日期应晚于开始日期", + "Please select a repeat day": "请选择在哪一天重复", + "Background Colour:": "背景色:", + "Text Colour:": "文字颜色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名字:", + "Untitled Show": "未命名节目", + "URL:": "链接地址:", + "Genre:": "风格:", + "Description:": "描述:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "时长:", + "Timezone:": "时区", + "Repeats?": "是否设置为系列节目?", + "Cannot create show in the past": "节目不能设置为过去的时间", + "Cannot modify start date/time of the show that is already started": "节目已经启动,无法修改开始时间/日期", + "End date/time cannot be in the past": "节目结束的时间或日期不能设置为过去的时间", + "Cannot have duration < 0m": "节目时长不能小于0", + "Cannot have duration 00h 00m": "节目时长不能为0", + "Cannot have duration greater than 24h": "节目时长不能超过24小时", + "Cannot schedule overlapping shows": "节目时间设置与其他节目有冲突", + "Search Users:": "查找用户:", + "DJs:": "选择节目编辑:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "用户名:", + "Password:": "密码:", + "Verify Password:": "再次输入密码:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "电邮:", + "Mobile Phone:": "手机:", + "Skype:": "Skype帐号:", + "Jabber:": "Jabber帐号:", + "User Type:": "用户类型:", + "Login name is not unique.": "帐号重名。", + "Delete All Tracks in Library": "", + "Date Start:": "开始日期:", + "Title:": "歌曲名:", + "Creator:": "作者:", + "Album:": "专辑名:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年份:", + "Label:": "标签:", + "Composer:": "编曲:", + "Conductor:": "制作:", + "Mood:": "情怀:", + "BPM:": "拍子(BPM):", + "Copyright:": "版权:", + "ISRC Number:": "ISRC编号:", + "Website:": "网站:", + "Language:": "语言:", + "Publish...": "", + "Start Time": "开始时间", + "End Time": "结束时间", + "Interface Timezone:": "用户界面使用的时区:", + "Station Name": "电台名称", + "Station Description": "", + "Station Logo:": "电台标志:", + "Note: Anything larger than 600x600 will be resized.": "注意:大于600x600的图片将会被缩放", + "Default Crossfade Duration (s):": "默认混合淡入淡出效果(秒):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "默认淡入效果(秒):", + "Default Fade Out (s):": "默认淡出效果(秒):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "系统使用的时区", + "Week Starts On": "一周开始于", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "登录", + "Password": "密码", + "Confirm new password": "确认新密码", + "Password confirmation does not match your password.": "新密码不匹配", + "Email": "", + "Username": "用户名", + "Reset password": "重置密码", + "Back": "", + "Now Playing": "直播室", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "我的全部节目:", + "My Shows": "", + "Select criteria": "选择属性", + "Bit Rate (Kbps)": "比特率(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "样本率(KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "小时", + "minutes": "分钟", + "items": "个数", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "动态", + "Static": "静态", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "保存条件设置并生成播放列表内容", + "Shuffle playlist content": "随机打乱歌曲次序", + "Shuffle": "随机", + "Limit cannot be empty or smaller than 0": "限制的设置不能比0小", + "Limit cannot be more than 24 hrs": "限制的设置不能大于24小时", + "The value should be an integer": "值只能为整数", + "500 is the max item limit value you can set": "最多只能允许500条内容", + "You must select Criteria and Modifier": "条件和操作符不能为空", + "'Length' should be in '00:00:00' format": "‘长度’格式应该为‘00:00:00’", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "应该为数字", + "The value should be less then 2147483648": "不能大于2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "不能小于%s个字符", + "Value cannot be empty": "不能为空", + "Stream Label:": "流标签:", + "Artist - Title": "歌手 - 歌名", + "Show - Artist - Title": "节目 - 歌手 - 歌名", + "Station name - Show name": "电台名 - 节目名", + "Off Air Metadata": "非直播状态下的输出流元数据", + "Enable Replay Gain": "启用回放增益", + "Replay Gain Modifier": "回放增益调整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "启用:", + "Mobile:": "", + "Stream Type:": "流格式:", + "Bit Rate:": "比特率:", + "Service Type:": "服务类型:", + "Channels:": "声道:", + "Server": "服务器", + "Port": "端口号", + "Mount Point": "加载点", + "Name": "名字", + "URL": "链接地址", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "导入文件夹:", + "Watched Folders:": "监控文件夹:", + "Not a valid Directory": "无效的路径", + "Value is required and can't be empty": "不能为空", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' 不符合格式要求: '%format%'", + "'%value%' is less than %min% characters long": "'%value%' 小于最小长度要求 %min% ", + "'%value%' is more than %max% characters long": "'%value%' 大于最大长度要求 %max%", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' 应该介于 '%min%' 和 '%max%'之间", + "Passwords do not match": "两次密码输入不匹配", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "切入点和切出点均为空", + "Can't set cue out to be greater than file length.": "切出点不能超出文件原长度", + "Can't set cue in to be larger than cue out.": "切入点不能晚于切出点", + "Can't set cue out to be smaller than cue in.": "切出点不能早于切入点", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "选择国家", + "livestream": "", + "Cannot move items out of linked shows": "不能从绑定的节目系列里移出项目", + "The schedule you're viewing is out of date! (sched mismatch)": "当前节目内容表(内容部分)需要刷新", + "The schedule you're viewing is out of date! (instance mismatch)": "当前节目内容表(节目已更改)需要刷新", + "The schedule you're viewing is out of date!": "当前节目内容需要刷新!", + "You are not allowed to schedule show %s.": "没有赋予修改节目 %s 的权限。", + "You cannot add files to recording shows.": "录音节目不能添加别的内容。", + "The show %s is over and cannot be scheduled.": "节目%s已结束,不能在添加任何内容。", + "The show %s has been previously updated!": "节目%s已经更改,需要刷新后再尝试。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "某个选中的文件不存在。", + "Shows can have a max length of 24 hours.": "节目时长只能设置在24小时以内", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "节目时间设置于其他的节目有冲突。\n提示:修改系列节目中的一个,将影响整个节目系列", + "Rebroadcast of %s from %s": "%s是%s的重播", + "Length needs to be greater than 0 minutes": "节目时长必须大于0分钟", + "Length should be of form \"00h 00m\"": "时间的格式应该是 \"00h 00m\"", + "URL should be of form \"https://example.org\"": "地址的格式应该是 \"https://example.org\"", + "URL should be 512 characters or less": "地址的最大长度不能超过512字节", + "No MIME type found for webstream.": "这个媒体流不存在MIME属性,无法添加", + "Webstream name cannot be empty": "媒体流的名字不能为空", + "Could not parse XSPF playlist": "发现XSPF格式的播放列表,但是格式错误", + "Could not parse PLS playlist": "发现PLS格式的播放列表,但是格式错误", + "Could not parse M3U playlist": "发现M3U格式的播放列表,但是格式错误", + "Invalid webstream - This appears to be a file download.": "媒体流格式错误,当前“媒体流”只是一个可下载的文件", + "Unrecognized stream type: %s": "未知的媒体流格式: %s", + "Record file doesn't exist": "录制文件不存在", + "View Recorded File Metadata": "查看录制文件的元数据", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "编辑节目", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "没有编辑权限", + "Can't drag and drop repeating shows": "系列中的节目无法拖拽", + "Can't move a past show": "已经结束的节目无法更改时间", + "Can't move show into past": "节目不能设置到已过去的时间点", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "录音和重播节目之间的间隔必须大于等于1小时。", + "Show was deleted because recorded show does not exist!": "录音节目不存在,节目已删除!", + "Must wait 1 hour to rebroadcast.": "重播节目必须设置于1小时之后。", + "Track": "曲目", + "Played": "已播放", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} \ No newline at end of file From cd2bf4d6fa21810d180de2f96c0cf09c69101fb5 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 19 May 2023 14:17:10 -0400 Subject: [PATCH 24/70] chore: switch to i18next from vue-i18n --- webapp/package.json | 5 +- webapp/yarn.lock | 466 ++++++++++++++++++++++++++++++++++++++------ 2 files changed, 405 insertions(+), 66 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index bc3a00a38d..a9f4273b8b 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -16,9 +16,10 @@ "dependencies": { "@mdi/font": "7.0.96", "axios": "^1.4.0", + "i18next": "^22.5.0", + "i18next-vue": "^2.1.1", "roboto-fontface": "*", "vue": "^3.2.0", - "vue-i18n": "9", "vue-router": "^4.0.0", "vuetify": "^3.0.0", "webfontloader": "^1.0.0" @@ -43,12 +44,14 @@ "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.13.0", "eslint-plugin-vuetify": "^2.0.0-beta.4", + "i18next-conv": "^13.1.1", "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.0.11", "typescript": "^5.0.0", "vite": "^4.2.0", + "vite-plugin-i18next-loader": "^2.0.4", "vite-plugin-vuetify": "^1.0.0", "vue-tsc": "^1.2.0" } diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 22469cffd7..f69b4ce73a 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -959,7 +959,7 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.20.6", "@babel/runtime@^7.8.4": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== @@ -1000,6 +1000,11 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" @@ -1213,44 +1218,6 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@intlify/core-base@9.2.2": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz#5353369b05cc9fe35cab95fe20afeb8a4481f939" - integrity sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA== - dependencies: - "@intlify/devtools-if" "9.2.2" - "@intlify/message-compiler" "9.2.2" - "@intlify/shared" "9.2.2" - "@intlify/vue-devtools" "9.2.2" - -"@intlify/devtools-if@9.2.2": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.2.tgz#b13d9ac4b4e2fe6d2e7daa556517a8061fe8bd39" - integrity sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg== - dependencies: - "@intlify/shared" "9.2.2" - -"@intlify/message-compiler@9.2.2": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.2.tgz#e42ab6939b8ae5b3d21faf6a44045667a18bba1c" - integrity sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA== - dependencies: - "@intlify/shared" "9.2.2" - source-map "0.6.1" - -"@intlify/shared@9.2.2": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz#5011be9ca2b4ab86f8660739286e2707f9abb4a5" - integrity sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q== - -"@intlify/vue-devtools@9.2.2": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz#b95701556daf7ebb3a2d45aa3ae9e6415aed8317" - integrity sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg== - dependencies: - "@intlify/core-base" "9.2.2" - "@intlify/shared" "9.2.2" - "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -1262,7 +1229,7 @@ js-yaml "^3.13.1" resolve-from "^5.0.0" -"@istanbuljs/schema@^0.1.2": +"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": version "0.1.3" resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== @@ -1347,7 +1314,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== @@ -2237,7 +2204,7 @@ dependencies: "@types/node" "*" -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.4" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== @@ -2694,7 +2661,7 @@ "@vue/compiler-dom" "3.3.2" "@vue/shared" "3.3.2" -"@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.5.0": +"@vue/devtools-api@^6.5.0": version "6.5.0" resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== @@ -2771,6 +2738,13 @@ dependencies: tslib "^2.4.0" +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" @@ -2848,6 +2822,13 @@ ansi-escapes@^4.3.0: dependencies: type-fest "^0.21.3" +ansi-escapes@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947" + integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== + dependencies: + type-fest "^3.0.0" + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -2872,6 +2853,11 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== + anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" @@ -2940,6 +2926,11 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" @@ -3248,6 +3239,14 @@ buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" @@ -3258,6 +3257,24 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +c8@^7.12.0: + version "7.13.0" + resolved "https://registry.yarnpkg.com/c8/-/c8-7.13.0.tgz#a2a70a851278709df5a9247d62d7f3d4bcb5f2e4" + integrity sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@istanbuljs/schema" "^0.1.3" + find-up "^5.0.0" + foreground-child "^2.0.0" + istanbul-lib-coverage "^3.2.0" + istanbul-lib-report "^3.0.0" + istanbul-reports "^3.1.4" + rimraf "^3.0.2" + test-exclude "^6.0.0" + v8-to-istanbul "^9.0.0" + yargs "^16.2.0" + yargs-parser "^20.2.9" + cachedir@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" @@ -3276,7 +3293,7 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@^5.3.1: +camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== @@ -3291,6 +3308,14 @@ caniuse-lite@^1.0.30001449: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== +cardinal@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" + integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== + dependencies: + ansicolors "~0.3.2" + redeyed "~2.1.0" + caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -3313,6 +3338,11 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" + integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + character-parser@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" @@ -3372,7 +3402,7 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-table3@^0.6.1, cli-table3@~0.6.1: +cli-table3@^0.6.1, cli-table3@^0.6.3, cli-table3@~0.6.1: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== @@ -3389,6 +3419,24 @@ cli-truncate@^2.1.0: slice-ansi "^3.0.0" string-width "^4.2.0" +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -3439,6 +3487,11 @@ combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" +commander@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + commander@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" @@ -3509,12 +3562,17 @@ content-disposition@0.5.4: dependencies: safe-buffer "5.2.1" -content-type@~1.0.4: +content-type@1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +content-type@^1.0.4, content-type@~1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== -convert-source-map@^1.7.0: +convert-source-map@^1.6.0, convert-source-map@^1.7.0: version "1.9.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== @@ -3661,6 +3719,11 @@ debug@^3.1.0: dependencies: ms "^2.1.1" +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -3799,6 +3862,13 @@ dom-accessibility-api@^0.5.9: resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== +dot-prop@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-8.0.0.tgz#bfd2dcfd1b0e836c961b033d840a2918736490d5" + integrity sha512-XHcoBL9YPvqIz6K9m9TLf9+6Iyf2ix6yYN+sZ4AI8JPg+8XQpm05V6qzPFZYzyuHfr496TqKlhzHuEvW4ME7Pw== + dependencies: + type-fest "^3.8.0" + dotenv-expand@^10.0.0: version "10.0.0" resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" @@ -3854,6 +3924,13 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encoding@0.1.13, encoding@^0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -4116,11 +4193,21 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + eventemitter2@6.4.7: version "6.4.7" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== +events@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -4403,6 +4490,14 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +foreground-child@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" + integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^3.0.2" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -4516,6 +4611,11 @@ gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== +get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" @@ -4566,6 +4666,25 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +gettext-converter@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/gettext-converter/-/gettext-converter-1.2.3.tgz#17be908b4ff8a067cc3c86ccfa5a7fe3375255b8" + integrity sha512-NF+8wcPhWsIsUxLtqpKjy8zX3dIQXiW0kjksvPCroAHrRxNerxfylr7FpxvNGGlEMw6GpXLDSkHYIAKR9hXtMg== + dependencies: + arrify "^2.0.1" + content-type "1.0.4" + encoding "0.1.13" + +gettext-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/gettext-parser/-/gettext-parser-6.0.0.tgz#201e61d92c1cc7edf8f6ee3a7e3d6ab1e061b44c" + integrity sha512-eWFsR78gc/eKnzDgc919Us3cbxQbzxK1L8vAIZrKMQqOUgULyeqmczNlBjTlVTk2FaB7nV9C1oobd/PGBOqNmg== + dependencies: + content-type "^1.0.4" + encoding "^0.1.13" + readable-stream "^4.1.0" + safe-buffer "^5.2.1" + giget@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" @@ -4584,6 +4703,14 @@ github-slugger@^1.0.0: resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== +glob-all@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/glob-all/-/glob-all-3.3.1.tgz#6be2d5d8276902319f640fbf839fbe15b35e7667" + integrity sha512-Y+ESjdI7ZgMwfzanHZYQ87C59jOO0i+Hd+QYtVt9PhLi6d8wlOpzQnfBxWUlaTuAoR3TkybLqqbIoWveU4Ji7Q== + dependencies: + glob "^7.2.3" + yargs "^15.3.1" + glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -4610,7 +4737,7 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: +glob@^7.0.0, glob@^7.1.3, glob@^7.1.4, glob@^7.2.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -4766,6 +4893,11 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + http-errors@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" @@ -4812,6 +4944,31 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +i18next-conv@^13.1.1: + version "13.1.1" + resolved "https://registry.yarnpkg.com/i18next-conv/-/i18next-conv-13.1.1.tgz#db2f7aa59cc1637ff3d1d0d8c36838e21c40205b" + integrity sha512-j4DTCvOFFFgv4R7Ru7YiShHOOcmpKKMJ84Os0PhsL2GKvnifzNYgQRBr905R7Pp0bYhLJ0pK+oGP3Apvh2vMHA== + dependencies: + c8 "^7.12.0" + colorette "^2.0.19" + commander "^10.0.0" + gettext-converter "^1.2.3" + gettext-parser "^6.0.0" + node-gettext "^3.0.0" + p-from-callback "^1.0.1" + +i18next-vue@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/i18next-vue/-/i18next-vue-2.1.1.tgz#acef6865e33d35ad0a515493c6242d3d2ae83207" + integrity sha512-1JKLKkd+WxBhbYadTQi2fK0UoWgHimn0dU5XTnpfCur9sQ1oEBKd5sGyF4eu6DyIM1hnPrEdrivT/wLGaueUXg== + +i18next@^22.5.0: + version "22.5.0" + resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.5.0.tgz#16d98eba7c748ab183a36505046b5b91f87e989b" + integrity sha512-sqWuJFj+wJAKQP2qBQ+b7STzxZNUmnSxrehBCCj9vDOW9RDYPfqCaK1Hbh2frNYQuPziz6O2CGoJPwtzY3vAYA== + dependencies: + "@babel/runtime" "^7.20.6" + iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -4819,7 +4976,14 @@ iconv-lite@0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" -ieee754@^1.1.13: +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -5179,7 +5343,7 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== -istanbul-lib-coverage@^3.2.0: +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== @@ -5195,6 +5359,23 @@ istanbul-lib-instrument@^5.0.4: istanbul-lib-coverage "^3.2.0" semver "^6.3.0" +istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + +istanbul-reports@^3.1.4: + version "3.1.5" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" + integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + jake@^10.8.5: version "10.8.5" resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" @@ -5469,6 +5650,11 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== + lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" @@ -5555,7 +5741,7 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.2: +make-dir@^3.0.0, make-dir@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -5579,6 +5765,23 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== +marked-terminal@^5.1.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-5.2.0.tgz#c5370ec2bae24fb2b34e147b731c94fa933559d3" + integrity sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA== + dependencies: + ansi-escapes "^6.2.0" + cardinal "^2.1.1" + chalk "^5.2.0" + cli-table3 "^0.6.3" + node-emoji "^1.11.0" + supports-hyperlinks "^2.3.0" + +marked@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3" + integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== + mdast-util-definitions@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" @@ -5783,6 +5986,13 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" +node-emoji@^1.11.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" + integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== + dependencies: + lodash "^4.17.21" + node-fetch-native@^1.0.2: version "1.1.1" resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.1.1.tgz#b8977dd7fe6c5599e417301ed3987bca787d3d6f" @@ -5795,6 +6005,13 @@ node-fetch@^2.6.1, node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" +node-gettext@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/node-gettext/-/node-gettext-3.0.0.tgz#6b3a253309aa1e53164646c6c644fcddd0d45c58" + integrity sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA== + dependencies: + lodash.get "^4.4.2" + node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -5937,6 +6154,11 @@ ospath@^1.2.2: resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== +p-from-callback@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/p-from-callback/-/p-from-callback-1.0.1.tgz#c437884511098ea8db0ef08540f11eb39b79930e" + integrity sha512-5N3Xj5tWR7giRLxF1qz1+bOAHNZFuiszG4H0f0dhbGCWxX72OQuJSuwnMv+ZT0qWcUKdkh7X0tu8Z2FALiM8pw== + p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -6502,6 +6724,16 @@ readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" +readable-stream@^4.1.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468" + integrity sha512-kDMOq0qLtxV9f/SQv522h8cxZBqNZXuXNyjyezmfAAuribMyVXziljpQ/uQhfE1XLg2/TLTW2DsnoE4VAi/krg== + dependencies: + abort-controller "^3.0.0" + buffer "^6.0.3" + events "^3.3.0" + process "^0.11.10" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -6537,6 +6769,13 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" +redeyed@~2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" + integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== + dependencies: + esprima "~4.0.0" + regenerate-unicode-properties@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" @@ -6616,6 +6855,16 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + requireindex@^1.1.0, requireindex@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" @@ -6715,12 +6964,12 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -6894,7 +7143,7 @@ source-map-support@^0.5.16: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -7026,7 +7275,7 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.1.0: +supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -7040,6 +7289,14 @@ supports-color@^8.0.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" +supports-hyperlinks@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" @@ -7197,6 +7454,11 @@ ts-dedent@^2.0.0, ts-dedent@^2.2.0: resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== +ts-deepmerge@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/ts-deepmerge/-/ts-deepmerge-6.0.3.tgz#4ca1f7f3bf38b02e44b363702b7e5ed5fbffd0a9" + integrity sha512-MBBJL0UK/mMnZRONMz4J1CRu5NsGtsh+gR1nkn8KLE9LXo/PCzeHhQduhNary8m5/m9ryOOyFwVKxq81cPlaow== + ts-map@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/ts-map/-/ts-map-1.0.3.tgz#1c4d218dec813d2103b7e04e4bcf348e1471c1ff" @@ -7268,6 +7530,11 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +type-fest@^3.0.0, type-fest@^3.8.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.10.0.tgz#d75f17a22be8816aea6315ab2739fe1c0c211863" + integrity sha512-hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -7431,6 +7698,15 @@ uuid@^9.0.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== +v8-to-istanbul@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" + integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -7453,6 +7729,18 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +vite-plugin-i18next-loader@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/vite-plugin-i18next-loader/-/vite-plugin-i18next-loader-2.0.4.tgz#8b851859eaacce3faa6756450bbe2479ac82e6eb" + integrity sha512-hx2yMtMXcKPNL5780WNAaO7PS1iNNnDK7KCb7uiKpxaa3o3UJrUYazXf+vEUT5HxAfDXk6XhqX9vrqL0AJp0WA== + dependencies: + dot-prop "^8.0.0" + glob-all "^3.3.1" + js-yaml "^4.1.0" + marked "^4.3.0" + marked-terminal "^5.1.1" + ts-deepmerge "^6.0.3" + vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -7521,16 +7809,6 @@ vue-eslint-parser@^9.3.0: lodash "^4.17.21" semver "^7.3.6" -vue-i18n@9: - version "9.2.2" - resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz#aeb49d9424923c77e0d6441e3f21dafcecd0e666" - integrity sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ== - dependencies: - "@intlify/core-base" "9.2.2" - "@intlify/shared" "9.2.2" - "@intlify/vue-devtools" "9.2.2" - "@vue/devtools-api" "^6.2.1" - vue-inbrowser-compiler-independent-utils@^4.69.0: version "4.71.1" resolved "https://registry.yarnpkg.com/vue-inbrowser-compiler-independent-utils/-/vue-inbrowser-compiler-independent-utils-4.71.1.tgz#dc6830b204f7cfdc30ffc4f31ba81b0c72c52136" @@ -7640,6 +7918,11 @@ which-collection@^1.0.1: is-weakmap "^2.0.1" is-weakset "^2.0.1" +which-module@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + which-typed-array@^1.1.2, which-typed-array@^1.1.9: version "1.1.9" resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" @@ -7755,6 +8038,16 @@ xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -7765,6 +8058,49 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^20.2.2, yargs-parser@^20.2.9: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From c10e448afa9ef126ad8eca476156fcbf32b1d9aa Mon Sep 17 00:00:00 2001 From: zklosko Date: Mon, 22 May 2023 20:55:10 -0400 Subject: [PATCH 25/70] chore: remove i18next, add vue-i18n --- webapp/package.json | 5 +- webapp/yarn.lock | 466 ++++++-------------------------------------- 2 files changed, 66 insertions(+), 405 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index a9f4273b8b..bc3a00a38d 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -16,10 +16,9 @@ "dependencies": { "@mdi/font": "7.0.96", "axios": "^1.4.0", - "i18next": "^22.5.0", - "i18next-vue": "^2.1.1", "roboto-fontface": "*", "vue": "^3.2.0", + "vue-i18n": "9", "vue-router": "^4.0.0", "vuetify": "^3.0.0", "webfontloader": "^1.0.0" @@ -44,14 +43,12 @@ "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.13.0", "eslint-plugin-vuetify": "^2.0.0-beta.4", - "i18next-conv": "^13.1.1", "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.0.11", "typescript": "^5.0.0", "vite": "^4.2.0", - "vite-plugin-i18next-loader": "^2.0.4", "vite-plugin-vuetify": "^1.0.0", "vue-tsc": "^1.2.0" } diff --git a/webapp/yarn.lock b/webapp/yarn.lock index f69b4ce73a..22469cffd7 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -959,7 +959,7 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.20.6", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== @@ -1000,11 +1000,6 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" @@ -1218,6 +1213,44 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@intlify/core-base@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz#5353369b05cc9fe35cab95fe20afeb8a4481f939" + integrity sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA== + dependencies: + "@intlify/devtools-if" "9.2.2" + "@intlify/message-compiler" "9.2.2" + "@intlify/shared" "9.2.2" + "@intlify/vue-devtools" "9.2.2" + +"@intlify/devtools-if@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.2.tgz#b13d9ac4b4e2fe6d2e7daa556517a8061fe8bd39" + integrity sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg== + dependencies: + "@intlify/shared" "9.2.2" + +"@intlify/message-compiler@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.2.tgz#e42ab6939b8ae5b3d21faf6a44045667a18bba1c" + integrity sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA== + dependencies: + "@intlify/shared" "9.2.2" + source-map "0.6.1" + +"@intlify/shared@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz#5011be9ca2b4ab86f8660739286e2707f9abb4a5" + integrity sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q== + +"@intlify/vue-devtools@9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz#b95701556daf7ebb3a2d45aa3ae9e6415aed8317" + integrity sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg== + dependencies: + "@intlify/core-base" "9.2.2" + "@intlify/shared" "9.2.2" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -1229,7 +1262,7 @@ js-yaml "^3.13.1" resolve-from "^5.0.0" -"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": +"@istanbuljs/schema@^0.1.2": version "0.1.3" resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== @@ -1314,7 +1347,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== @@ -2204,7 +2237,7 @@ dependencies: "@types/node" "*" -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": version "2.0.4" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== @@ -2661,7 +2694,7 @@ "@vue/compiler-dom" "3.3.2" "@vue/shared" "3.3.2" -"@vue/devtools-api@^6.5.0": +"@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.5.0": version "6.5.0" resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== @@ -2738,13 +2771,6 @@ dependencies: tslib "^2.4.0" -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" @@ -2822,13 +2848,6 @@ ansi-escapes@^4.3.0: dependencies: type-fest "^0.21.3" -ansi-escapes@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947" - integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== - dependencies: - type-fest "^3.0.0" - ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -2853,11 +2872,6 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -ansicolors@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" - integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== - anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" @@ -2926,11 +2940,6 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -arrify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" @@ -3239,14 +3248,6 @@ buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" @@ -3257,24 +3258,6 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== -c8@^7.12.0: - version "7.13.0" - resolved "https://registry.yarnpkg.com/c8/-/c8-7.13.0.tgz#a2a70a851278709df5a9247d62d7f3d4bcb5f2e4" - integrity sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@istanbuljs/schema" "^0.1.3" - find-up "^5.0.0" - foreground-child "^2.0.0" - istanbul-lib-coverage "^3.2.0" - istanbul-lib-report "^3.0.0" - istanbul-reports "^3.1.4" - rimraf "^3.0.2" - test-exclude "^6.0.0" - v8-to-istanbul "^9.0.0" - yargs "^16.2.0" - yargs-parser "^20.2.9" - cachedir@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" @@ -3293,7 +3276,7 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@^5.0.0, camelcase@^5.3.1: +camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== @@ -3308,14 +3291,6 @@ caniuse-lite@^1.0.30001449: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== -cardinal@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" - integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== - dependencies: - ansicolors "~0.3.2" - redeyed "~2.1.0" - caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -3338,11 +3313,6 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" - integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== - character-parser@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" @@ -3402,7 +3372,7 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-table3@^0.6.1, cli-table3@^0.6.3, cli-table3@~0.6.1: +cli-table3@^0.6.1, cli-table3@~0.6.1: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== @@ -3419,24 +3389,6 @@ cli-truncate@^2.1.0: slice-ansi "^3.0.0" string-width "^4.2.0" -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -3487,11 +3439,6 @@ combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" -commander@^10.0.0: - version "10.0.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" - integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== - commander@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" @@ -3562,17 +3509,12 @@ content-disposition@0.5.4: dependencies: safe-buffer "5.2.1" -content-type@1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -content-type@^1.0.4, content-type@~1.0.4: +content-type@~1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== -convert-source-map@^1.6.0, convert-source-map@^1.7.0: +convert-source-map@^1.7.0: version "1.9.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== @@ -3719,11 +3661,6 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -3862,13 +3799,6 @@ dom-accessibility-api@^0.5.9: resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== -dot-prop@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-8.0.0.tgz#bfd2dcfd1b0e836c961b033d840a2918736490d5" - integrity sha512-XHcoBL9YPvqIz6K9m9TLf9+6Iyf2ix6yYN+sZ4AI8JPg+8XQpm05V6qzPFZYzyuHfr496TqKlhzHuEvW4ME7Pw== - dependencies: - type-fest "^3.8.0" - dotenv-expand@^10.0.0: version "10.0.0" resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" @@ -3924,13 +3854,6 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== -encoding@0.1.13, encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -4193,21 +4116,11 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - eventemitter2@6.4.7: version "6.4.7" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== -events@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -4490,14 +4403,6 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" -foreground-child@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" - integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^3.0.2" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -4611,11 +4516,6 @@ gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.1, get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" @@ -4666,25 +4566,6 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -gettext-converter@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/gettext-converter/-/gettext-converter-1.2.3.tgz#17be908b4ff8a067cc3c86ccfa5a7fe3375255b8" - integrity sha512-NF+8wcPhWsIsUxLtqpKjy8zX3dIQXiW0kjksvPCroAHrRxNerxfylr7FpxvNGGlEMw6GpXLDSkHYIAKR9hXtMg== - dependencies: - arrify "^2.0.1" - content-type "1.0.4" - encoding "0.1.13" - -gettext-parser@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/gettext-parser/-/gettext-parser-6.0.0.tgz#201e61d92c1cc7edf8f6ee3a7e3d6ab1e061b44c" - integrity sha512-eWFsR78gc/eKnzDgc919Us3cbxQbzxK1L8vAIZrKMQqOUgULyeqmczNlBjTlVTk2FaB7nV9C1oobd/PGBOqNmg== - dependencies: - content-type "^1.0.4" - encoding "^0.1.13" - readable-stream "^4.1.0" - safe-buffer "^5.2.1" - giget@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" @@ -4703,14 +4584,6 @@ github-slugger@^1.0.0: resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== -glob-all@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/glob-all/-/glob-all-3.3.1.tgz#6be2d5d8276902319f640fbf839fbe15b35e7667" - integrity sha512-Y+ESjdI7ZgMwfzanHZYQ87C59jOO0i+Hd+QYtVt9PhLi6d8wlOpzQnfBxWUlaTuAoR3TkybLqqbIoWveU4Ji7Q== - dependencies: - glob "^7.2.3" - yargs "^15.3.1" - glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -4737,7 +4610,7 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.0.0, glob@^7.1.3, glob@^7.1.4, glob@^7.2.3: +glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -4893,11 +4766,6 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - http-errors@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" @@ -4944,31 +4812,6 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -i18next-conv@^13.1.1: - version "13.1.1" - resolved "https://registry.yarnpkg.com/i18next-conv/-/i18next-conv-13.1.1.tgz#db2f7aa59cc1637ff3d1d0d8c36838e21c40205b" - integrity sha512-j4DTCvOFFFgv4R7Ru7YiShHOOcmpKKMJ84Os0PhsL2GKvnifzNYgQRBr905R7Pp0bYhLJ0pK+oGP3Apvh2vMHA== - dependencies: - c8 "^7.12.0" - colorette "^2.0.19" - commander "^10.0.0" - gettext-converter "^1.2.3" - gettext-parser "^6.0.0" - node-gettext "^3.0.0" - p-from-callback "^1.0.1" - -i18next-vue@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/i18next-vue/-/i18next-vue-2.1.1.tgz#acef6865e33d35ad0a515493c6242d3d2ae83207" - integrity sha512-1JKLKkd+WxBhbYadTQi2fK0UoWgHimn0dU5XTnpfCur9sQ1oEBKd5sGyF4eu6DyIM1hnPrEdrivT/wLGaueUXg== - -i18next@^22.5.0: - version "22.5.0" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.5.0.tgz#16d98eba7c748ab183a36505046b5b91f87e989b" - integrity sha512-sqWuJFj+wJAKQP2qBQ+b7STzxZNUmnSxrehBCCj9vDOW9RDYPfqCaK1Hbh2frNYQuPziz6O2CGoJPwtzY3vAYA== - dependencies: - "@babel/runtime" "^7.20.6" - iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -4976,14 +4819,7 @@ iconv-lite@0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -ieee754@^1.1.13, ieee754@^1.2.1: +ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -5343,7 +5179,7 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: +istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== @@ -5359,23 +5195,6 @@ istanbul-lib-instrument@^5.0.4: istanbul-lib-coverage "^3.2.0" semver "^6.3.0" -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-reports@^3.1.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - jake@^10.8.5: version "10.8.5" resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" @@ -5650,11 +5469,6 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== -lodash.get@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" - integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== - lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" @@ -5741,7 +5555,7 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.0, make-dir@^3.0.2: +make-dir@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -5765,23 +5579,6 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== -marked-terminal@^5.1.1: - version "5.2.0" - resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-5.2.0.tgz#c5370ec2bae24fb2b34e147b731c94fa933559d3" - integrity sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA== - dependencies: - ansi-escapes "^6.2.0" - cardinal "^2.1.1" - chalk "^5.2.0" - cli-table3 "^0.6.3" - node-emoji "^1.11.0" - supports-hyperlinks "^2.3.0" - -marked@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3" - integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== - mdast-util-definitions@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" @@ -5986,13 +5783,6 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" -node-emoji@^1.11.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== - dependencies: - lodash "^4.17.21" - node-fetch-native@^1.0.2: version "1.1.1" resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.1.1.tgz#b8977dd7fe6c5599e417301ed3987bca787d3d6f" @@ -6005,13 +5795,6 @@ node-fetch@^2.6.1, node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" -node-gettext@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/node-gettext/-/node-gettext-3.0.0.tgz#6b3a253309aa1e53164646c6c644fcddd0d45c58" - integrity sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA== - dependencies: - lodash.get "^4.4.2" - node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -6154,11 +5937,6 @@ ospath@^1.2.2: resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== -p-from-callback@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/p-from-callback/-/p-from-callback-1.0.1.tgz#c437884511098ea8db0ef08540f11eb39b79930e" - integrity sha512-5N3Xj5tWR7giRLxF1qz1+bOAHNZFuiszG4H0f0dhbGCWxX72OQuJSuwnMv+ZT0qWcUKdkh7X0tu8Z2FALiM8pw== - p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -6724,16 +6502,6 @@ readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^4.1.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468" - integrity sha512-kDMOq0qLtxV9f/SQv522h8cxZBqNZXuXNyjyezmfAAuribMyVXziljpQ/uQhfE1XLg2/TLTW2DsnoE4VAi/krg== - dependencies: - abort-controller "^3.0.0" - buffer "^6.0.3" - events "^3.3.0" - process "^0.11.10" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -6769,13 +6537,6 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" -redeyed@~2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" - integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== - dependencies: - esprima "~4.0.0" - regenerate-unicode-properties@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" @@ -6855,16 +6616,6 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - requireindex@^1.1.0, requireindex@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" @@ -6964,12 +6715,12 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -7143,7 +6894,7 @@ source-map-support@^0.5.16: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -7275,7 +7026,7 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0: +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -7289,14 +7040,6 @@ supports-color@^8.0.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" - integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" @@ -7454,11 +7197,6 @@ ts-dedent@^2.0.0, ts-dedent@^2.2.0: resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== -ts-deepmerge@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/ts-deepmerge/-/ts-deepmerge-6.0.3.tgz#4ca1f7f3bf38b02e44b363702b7e5ed5fbffd0a9" - integrity sha512-MBBJL0UK/mMnZRONMz4J1CRu5NsGtsh+gR1nkn8KLE9LXo/PCzeHhQduhNary8m5/m9ryOOyFwVKxq81cPlaow== - ts-map@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/ts-map/-/ts-map-1.0.3.tgz#1c4d218dec813d2103b7e04e4bcf348e1471c1ff" @@ -7530,11 +7268,6 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^3.0.0, type-fest@^3.8.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.10.0.tgz#d75f17a22be8816aea6315ab2739fe1c0c211863" - integrity sha512-hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A== - type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -7698,15 +7431,6 @@ uuid@^9.0.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== -v8-to-istanbul@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" - integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -7729,18 +7453,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vite-plugin-i18next-loader@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/vite-plugin-i18next-loader/-/vite-plugin-i18next-loader-2.0.4.tgz#8b851859eaacce3faa6756450bbe2479ac82e6eb" - integrity sha512-hx2yMtMXcKPNL5780WNAaO7PS1iNNnDK7KCb7uiKpxaa3o3UJrUYazXf+vEUT5HxAfDXk6XhqX9vrqL0AJp0WA== - dependencies: - dot-prop "^8.0.0" - glob-all "^3.3.1" - js-yaml "^4.1.0" - marked "^4.3.0" - marked-terminal "^5.1.1" - ts-deepmerge "^6.0.3" - vite-plugin-vuetify@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" @@ -7809,6 +7521,16 @@ vue-eslint-parser@^9.3.0: lodash "^4.17.21" semver "^7.3.6" +vue-i18n@9: + version "9.2.2" + resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz#aeb49d9424923c77e0d6441e3f21dafcecd0e666" + integrity sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ== + dependencies: + "@intlify/core-base" "9.2.2" + "@intlify/shared" "9.2.2" + "@intlify/vue-devtools" "9.2.2" + "@vue/devtools-api" "^6.2.1" + vue-inbrowser-compiler-independent-utils@^4.69.0: version "4.71.1" resolved "https://registry.yarnpkg.com/vue-inbrowser-compiler-independent-utils/-/vue-inbrowser-compiler-independent-utils-4.71.1.tgz#dc6830b204f7cfdc30ffc4f31ba81b0c72c52136" @@ -7918,11 +7640,6 @@ which-collection@^1.0.1: is-weakmap "^2.0.1" is-weakset "^2.0.1" -which-module@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" - integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== - which-typed-array@^1.1.2, which-typed-array@^1.1.9: version "1.1.9" resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" @@ -8038,16 +7755,6 @@ xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -8058,49 +7765,6 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yargs-parser@^18.1.2: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^20.2.2, yargs-parser@^20.2.9: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs@^15.3.1: - version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2" - -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From 4adbd9adc7c4d3c84166c618a3f81470718437b7 Mon Sep 17 00:00:00 2001 From: zklosko Date: Mon, 22 May 2023 21:32:23 -0400 Subject: [PATCH 26/70] feat: initialize vue-i18n translations --- webapp/src/components/HelloWorld.vue | 6 +- webapp/src/locale/cs_CZ.json | 1880 +++++++++++++------------- webapp/src/locale/de_AT.json | 1880 +++++++++++++------------- webapp/src/locale/de_DE.json | 1880 +++++++++++++------------- webapp/src/locale/el_GR.json | 1880 +++++++++++++------------- webapp/src/locale/en_CA.json | 1880 +++++++++++++------------- webapp/src/locale/en_GB.json | 1880 +++++++++++++------------- webapp/src/locale/en_US.json | 1880 +++++++++++++------------- webapp/src/locale/es_ES.json | 1880 +++++++++++++------------- webapp/src/locale/fr_FR.json | 1880 +++++++++++++------------- webapp/src/locale/hr_HR.json | 1880 +++++++++++++------------- webapp/src/locale/hu_HU.json | 1880 +++++++++++++------------- webapp/src/locale/it_IT.json | 1880 +++++++++++++------------- webapp/src/locale/ja_JP.json | 1880 +++++++++++++------------- webapp/src/locale/ko_KR.json | 1880 +++++++++++++------------- webapp/src/locale/nl_NL.json | 1880 +++++++++++++------------- webapp/src/locale/pl_PL.json | 1880 +++++++++++++------------- webapp/src/locale/pt_BR.json | 1880 +++++++++++++------------- webapp/src/locale/ru_RU.json | 1880 +++++++++++++------------- webapp/src/locale/sr_RS.json | 1880 +++++++++++++------------- webapp/src/locale/tr_TR.json | 1880 +++++++++++++------------- webapp/src/locale/uk_UA.json | 1880 +++++++++++++------------- webapp/src/locale/zh_CN.json | 1880 +++++++++++++------------- webapp/src/plugins/index.ts | 3 +- webapp/src/plugins/vuei18n.ts | 56 + 25 files changed, 20742 insertions(+), 20683 deletions(-) create mode 100644 webapp/src/plugins/vuei18n.ts diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index 62a5c66952..07431b7952 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -36,7 +36,7 @@ > - Get Started + {{ t("Track Types") }} @@ -59,5 +59,7 @@ diff --git a/webapp/src/locale/cs_CZ.json b/webapp/src/locale/cs_CZ.json index 10d04fa53d..fc674ae73f 100644 --- a/webapp/src/locale/cs_CZ.json +++ b/webapp/src/locale/cs_CZ.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Rok %s musí být v rozmezí 1753 - 9999", - "%s-%s-%s is not a valid date": "%s - %s - %s není platné datum", - "%s:%s:%s is not a valid time": "%s : %s : %s není platný čas", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalendář", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Uživatelé", - "Track Types": "", - "Streams": "Streamy", - "Status": "Stav", - "Analytics": "", - "Playout History": "Historie odvysílaného", - "History Templates": "Historie nastavení", - "Listener Stats": "Statistiky poslechovost", - "Show Listener Stats": "", - "Help": "Nápověda", - "Getting Started": "Začínáme", - "User Manual": "Návod k obsluze", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Nemáte udělen přístup k tomuto zdroji.", - "You are not allowed to access this resource. ": "Nemáte udělen přístup k tomuto zdroji. ", - "File does not exist in %s": "Soubor neexistuje v %s", - "Bad request. no 'mode' parameter passed.": "Špatný požadavek. Žádný 'mode' parametr neprošel.", - "Bad request. 'mode' parameter is invalid": "Špatný požadavek. 'Mode' parametr je neplatný.", - "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", - "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", - "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nenalezen", - "Something went wrong.": "Něco je špatně.", - "Preview": "Náhled", - "Add to Playlist": "Přidat do Playlistu", - "Add to Smart Block": "Přidat do chytrého bloku", - "Delete": "Smazat", - "Edit...": "", - "Download": "Stáhnout", - "Duplicate Playlist": "Duplikátní Playlist", - "Duplicate Smartblock": "", - "No action available": "Žádná akce není k dispozici", - "You don't have permission to delete selected items.": "Nemáte oprávnění odstranit vybrané položky.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopie %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka.", - "Audio Player": "Audio přehrávač", - "Something went wrong!": "", - "Recording:": "Nahrávání:", - "Master Stream": "Mastr stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nic není naplánované", - "Current Show:": "Stávající vysílání:", - "Current": "Stávající", - "You are running the latest version": "Používáte nejnovější verzi", - "New version available: ": "Nová verze k dispozici: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Přidat do aktuálního playlistu", - "Add to current smart block": "Přidat do aktuálního chytrého bloku", - "Adding 1 Item": "Přidat 1 položku", - "Adding %s Items": "Přidat %s položek", - "You can only add tracks to smart blocks.": "Můžete přidat skladby pouze do chytrých bloků.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů.", - "Please select a cursor position on timeline.": "Prosím vyberte si pozici kurzoru na časové ose.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Přidat", - "New": "", - "Edit": "Upravit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Odstranit", - "Edit Metadata": "Upravit metadata", - "Add to selected show": "Přidat k vybranému vysílání", - "Select": "Vyberte", - "Select this page": "Vyberte tuto stránku", - "Deselect this page": "Zrušte označení této stránky", - "Deselect all": "Zrušte zaškrtnutí všech", - "Are you sure you want to delete the selected item(s)?": "Jste si jisti, že chcete smazat vybranou položku(y)?", - "Scheduled": "Naplánováno", - "Tracks": "", - "Playlist": "", - "Title": "Název", - "Creator": "Tvůrce", - "Album": "Album", - "Bit Rate": "Rychlost přenosu", - "BPM": "BPM", - "Composer": "Skladatel", - "Conductor": "Dirigent", - "Copyright": "Autorská práva", - "Encoded By": "Zakódováno", - "Genre": "Žánr", - "ISRC": "ISRC", - "Label": "Označení ", - "Language": "Jazyk", - "Last Modified": "Naposledy změněno", - "Last Played": "Naposledy vysíláno", - "Length": "Délka", - "Mime": "Mime", - "Mood": "Nálada", - "Owner": "Vlastník", - "Replay Gain": "Opakovat Gain", - "Sample Rate": "Vzorkovací rychlost", - "Track Number": "Číslo stopy", - "Uploaded": "Nahráno", - "Website": "Internetové stránky", - "Year": "Rok ", - "Loading...": "Nahrávání ...", - "All": "Vše", - "Files": "Soubory", - "Playlists": "Playlisty", - "Smart Blocks": "Chytré bloky", - "Web Streams": "Webové streamy", - "Unknown type: ": "Neznámý typ: ", - "Are you sure you want to delete the selected item?": "Jste si jisti, že chcete smazat vybranou položku?", - "Uploading in progress...": "Probíhá nahrávání...", - "Retrieving data from the server...": "Získávání dat ze serveru...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Chybný kód: ", - "Error msg: ": "Chyba msg: ", - "Input must be a positive number": "Vstup musí být kladné číslo", - "Input must be a number": "Vstup musí být číslo", - "Input must be in the format: yyyy-mm-dd": "Vstup musí být ve formátu: rrrr-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Vstup musí být ve formátu: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?", - "Open Media Builder": "Otevřít Media Builder", - "please put in a time '00:00:00 (.0)'": "prosím nastavte čas '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: ", - "Dynamic block is not previewable": "Dynamický blok není možno ukázat předem", - "Limit to: ": "Omezeno na: ", - "Playlist saved": "Playlist uložen", - "Playlist shuffled": "Playlist zamíchán", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'.", - "Listener Count on %s: %s": "Počítat posluchače %s : %s", - "Remind me in 1 week": "Připomenout za 1 týden", - "Remind me never": "Nikdy nepřipomínat", - "Yes, help Airtime": "Ano, pomoc Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Obrázek musí být buď jpg, jpeg, png nebo gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Chytré bloky promíchány", - "Smart block generated and criteria saved": "Chytrý blok generován a kritéria uložena", - "Smart block saved": "Chytrý blok uložen", - "Processing...": "Zpracovává se...", - "Select modifier": "Vyberte modifikátor", - "contains": "obsahuje", - "does not contain": "neobsahuje", - "is": "je", - "is not": "není", - "starts with": "začíná s", - "ends with": "končí s", - "is greater than": "je větší než", - "is less than": "je menší než", - "is in the range": "se pohybuje v rozmezí", - "Generate": "Generovat", - "Choose Storage Folder": "Vyberte složku k uložení", - "Choose Folder to Watch": "Vyberte složku ke sledování", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Jste si jisti, že chcete změnit složku úložiště ?\nTímto odstraníte soubry z vaší Airtime knihovny!", - "Manage Media Folders": "Správa složek médií", - "Are you sure you want to remove the watched folder?": "Jste si jisti, že chcete odstranit sledovanou složku?", - "This path is currently not accessible.": "Tato cesta není v současné době dostupná.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány.", - "Connected to the streaming server": "Připojeno k streamovacímu serveru", - "The stream is disabled": "Stream je vypnut", - "Getting information from the server...": "Získávání informací ze serveru...", - "Can not connect to the streaming server": "Nelze se připojit k streamovacímu serveru", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti.", - "Warning: You cannot change this field while the show is currently playing": "Upozornění: Nelze změnit toto pole v průběhu vysílání programu", - "No result found": "Žádný výsledek nenalezen", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit.", - "Specify custom authentication which will work only for this show.": "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání.", - "The show instance doesn't exist anymore!": "Ukázka vysílání již neexistuje!", - "Warning: Shows cannot be re-linked": "Varování: Vysílání nemohou být znovu linkována.", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. ", - "Show": "Vysílání", - "Show is empty": "Vysílání je prázdné", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Získávání dat ze serveru ...", - "This show has no scheduled content.": "Toto vysílání nemá naplánovaný obsah.", - "This show is not completely filled with content.": "Toto vysílání není zcela vyplněno.", - "January": "Leden", - "February": "Únor", - "March": "Březen", - "April": "Duben", - "May": "Květen", - "June": "Červen", - "July": "Červenec", - "August": "Srpen", - "September": "Září", - "October": "Říjen", - "November": "Listopad", - "December": "Prosinec", - "Jan": "Leden", - "Feb": "Únor", - "Mar": "Březen", - "Apr": "Duben", - "Jun": "Červen", - "Jul": "Červenec", - "Aug": "Srpen", - "Sep": "Září", - "Oct": "Říjen", - "Nov": "Listopad", - "Dec": "Prosinec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Neděle", - "Monday": "Pondělí", - "Tuesday": "Úterý", - "Wednesday": "Středa", - "Thursday": "Čtvrtek", - "Friday": "Pátek", - "Saturday": "Sobota", - "Sun": "Ne", - "Mon": "Po", - "Tue": "Út", - "Wed": "St", - "Thu": "Čt", - "Fri": "Pá", - "Sat": "So", - "Shows longer than their scheduled time will be cut off by a following show.": "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání.", - "Cancel Current Show?": "Zrušit aktuální vysílání?", - "Stop recording current show?": "Zastavit nahrávání aktuálního vysílání?", - "Ok": "OK", - "Contents of Show": "Obsah vysílání", - "Remove all content?": "Odstranit veškerý obsah?", - "Delete selected item(s)?": "Odstranit vybranou položku(y)?", - "Start": "Začátek", - "End": "Konec", - "Duration": "Trvání", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue in", - "Cue Out": "Cue out", - "Fade In": "Pozvolné zesilování ", - "Fade Out": "Pozvolné zeslabování", - "Show Empty": "Vysílání prázdné", - "Recording From Line In": "Nahrávání z Line In", - "Track preview": "Náhled stopy", - "Cannot schedule outside a show.": "Nelze naplánovat mimo vysílání.", - "Moving 1 Item": "Posunutí 1 položky", - "Moving %s Items": "Posunutí %s položek", - "Save": "Uložit", - "Cancel": "Zrušit", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API", - "Select all": "Vybrat vše", - "Select none": "Nic nevybrat", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Odebrat vybrané naplánované položky", - "Jump to the current playing track": "Přejít na aktuálně přehrávanou skladbu", - "Jump to Current": "", - "Cancel current show": "Zrušit aktuální vysílání", - "Open library to add or remove content": "Otevřít knihovnu pro přidání nebo odebrání obsahu", - "Add / Remove Content": "Přidat / Odebrat obsah", - "in use": "používá se", - "Disk": "Disk", - "Look in": "Podívat se", - "Open": "Otevřít", - "Admin": "Administrátor", - "DJ": "DJ", - "Program Manager": "Program manager", - "Guest": "Host", - "Guests can do the following:": "Hosté mohou dělat následující:", - "View schedule": "Zobrazit plán", - "View show content": "Zobrazit obsah vysílání", - "DJs can do the following:": "DJ může dělat následující:", - "Manage assigned show content": "Spravovat přidělený obsah vysílání", - "Import media files": "Import media souborů", - "Create playlists, smart blocks, and webstreams": "Vytvořit playlisty, smart bloky a webstreamy", - "Manage their own library content": "Spravovat obsah vlastní knihovny", - "Program Managers can do the following:": "", - "View and manage show content": "Zobrazit a spravovat obsah vysílání", - "Schedule shows": "Plán ukazuje", - "Manage all library content": "Spravovat celý obsah knihovny", - "Admins can do the following:": "Správci mohou provést následující:", - "Manage preferences": "Správa předvoleb", - "Manage users": "Správa uživatelů", - "Manage watched folders": "Správa sledovaných složek", - "Send support feedback": "Odeslat zpětnou vazbu", - "View system status": "Zobrazit stav systému", - "Access playout history": "Přístup playout historii", - "View listener stats": "Zobrazit posluchače statistiky", - "Show / hide columns": "Zobrazit / skrýt sloupce", - "Columns": "", - "From {from} to {to}": "Z {z} do {do}", - "kbps": "kbps", - "yyyy-mm-dd": "rrrr-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Ne", - "Mo": "Po", - "Tu": "Út", - "We": "St", - "Th": "Čt", - "Fr": "Pá", - "Sa": "So", - "Close": "Zavřít", - "Hour": "Hodina", - "Minute": "Minuta", - "Done": "Hotovo", - "Select files": "Vyberte soubory", - "Add files to the upload queue and click the start button.": "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start.", - "Filename": "", - "Size": "", - "Add Files": "Přidat soubory.", - "Stop Upload": "Zastavit Nahrávání", - "Start upload": "Začít nahrávat", - "Start Upload": "", - "Add files": "Přidat soubory", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Nahráno %d / %d souborů", - "N/A": "Nedostupné", - "Drag files here.": "Soubory přetáhněte zde.", - "File extension error.": "Chybná přípona souboru", - "File size error.": "Chybná velikost souboru.", - "File count error.": "Chybný součet souborů.", - "Init error.": "Chyba Init.", - "HTTP Error.": "Chyba HTTP.", - "Security error.": "Chyba zabezpečení.", - "Generic error.": "Obecná chyba. ", - "IO error.": "CHyba IO.", - "File: %s": "Soubor: %s", - "%d files queued": "%d souborů ve frontě", - "File: %f, size: %s, max file size: %m": "Soubor: %f , velikost: %s , max. velikost souboru:% m", - "Upload URL might be wrong or doesn't exist": "Přidané URL může být špatné nebo neexistuje", - "Error: File too large: ": "Chyba: Soubor je příliš velký: ", - "Error: Invalid file extension: ": "Chyba: Neplatná přípona souboru: ", - "Set Default": "Nastavit jako default", - "Create Entry": "Vytvořit vstup", - "Edit History Record": "Editovat historii nahrávky", - "No Show": "Žádné vysílání", - "Copied %s row%s to the clipboard": "Kopírovat %s řádků %s do schránky", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Popis", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Povoleno", - "Disabled": "Vypnuto", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu.", - "You are viewing an older version of %s": "Prohlížíte si starší verzi %s", - "You cannot add tracks to dynamic blocks.": "Nemůžete přidávat skladby do dynamických bloků.", - "You don't have permission to delete selected %s(s).": "Nemáte oprávnění odstranit vybrané %s (s).", - "You can only add tracks to smart block.": "Můžete pouze přidat skladby do chytrého bloku.", - "Untitled Playlist": "Playlist bez názvu", - "Untitled Smart Block": "Chytrý block bez názvu", - "Unknown Playlist": "Neznámý Playlist", - "Preferences updated.": "Preference aktualizovány.", - "Stream Setting Updated.": "Nastavení streamu aktualizováno.", - "path should be specified": "cesta by měla být specifikována", - "Problem with Liquidsoap...": "Problém s Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Znovu spustit vysílaní %s od %s na %s", - "Select cursor": "Vybrat kurzor", - "Remove cursor": "Odstranit kurzor", - "show does not exist": "vysílání neexistuje", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Uživatel byl úspěšně přidán!", - "User updated successfully!": "Uživatel byl úspěšně aktualizován!", - "Settings updated successfully!": "Nastavení úspěšně aktualizováno!", - "Untitled Webstream": "Webstream bez názvu", - "Webstream saved.": "Webstream uložen.", - "Invalid form values.": "Neplatná forma hodnot.", - "Invalid character entered": "Zadán neplatný znak ", - "Day must be specified": "Den musí být zadán", - "Time must be specified": "Čas musí být zadán", - "Must wait at least 1 hour to rebroadcast": "Musíte počkat alespoň 1 hodinu před dalším vysíláním", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "Použij %s ověření pravosti:", - "Use Custom Authentication:": "Použít ověření uživatele:", - "Custom Username": "Uživatelské jméno", - "Custom Password": "Uživatelské heslo", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Uživatelské jméno musí být zadáno.", - "Password field cannot be empty.": "Heslo musí být zadáno.", - "Record from Line In?": "Nahráno z Line In?", - "Rebroadcast?": "Vysílat znovu?", - "days": "dny", - "Link:": "Link:", - "Repeat Type:": "Typ opakování:", - "weekly": "týdně", - "every 2 weeks": "každé 2 týdny", - "every 3 weeks": "každé 3 týdny", - "every 4 weeks": "každé 4 týdny", - "monthly": "měsíčně", - "Select Days:": "Vyberte dny:", - "Repeat By:": "Opakovat:", - "day of the month": "den v měsíci", - "day of the week": "den v týdnu", - "Date End:": "Datum ukončení:", - "No End?": "Nekončí?", - "End date must be after start date": "Datum ukončení musí být po počátečním datumu", - "Please select a repeat day": "Prosím vyberte den opakování", - "Background Colour:": "Barva pozadí:", - "Text Colour:": "Barva textu:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Název:", - "Untitled Show": "Pořad bez názvu", - "URL:": "URL", - "Genre:": "Žánr:", - "Description:": "Popis:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Doba trvání:", - "Timezone:": "Časová zó", - "Repeats?": "Opakovat?", - "Cannot create show in the past": "Nelze vytvořit vysílání v minulosti", - "Cannot modify start date/time of the show that is already started": "Nelze měnit datum/čas vysílání, které bylo již spuštěno", - "End date/time cannot be in the past": "Datum/čas ukončení nemůže být v minulosti", - "Cannot have duration < 0m": "Nelze mít dobu trvání < 0m", - "Cannot have duration 00h 00m": "Nelze nastavit dobu trvání 00h 00m", - "Cannot have duration greater than 24h": "Nelze mít dobu trvání delší než 24 hodin", - "Cannot schedule overlapping shows": "Nelze nastavit překrývající se vysílání.", - "Search Users:": "Hledat uživatele:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Uživatelské jméno:", - "Password:": "Heslo:", - "Verify Password:": "Ověřit heslo:", - "Firstname:": "Jméno:", - "Lastname:": "Příjmení:", - "Email:": "E-mail:", - "Mobile Phone:": "Mobilní telefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Typ uživatele:", - "Login name is not unique.": "Přihlašovací jméno není jedinečné.", - "Delete All Tracks in Library": "", - "Date Start:": "Datum zahájení:", - "Title:": "Název:", - "Creator:": "Tvůrce:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Rok:", - "Label:": "Označení:", - "Composer:": "Skladatel:", - "Conductor:": "Dirigent:", - "Mood:": "Nálada:", - "BPM:": "BPM:", - "Copyright:": "Autorská práva:", - "ISRC Number:": "ISRC číslo:", - "Website:": "Internetová stránka:", - "Language:": "Jazyk:", - "Publish...": "", - "Start Time": "Čas začátku", - "End Time": "Čas konce", - "Interface Timezone:": "Časové pásmo uživatelského rozhraní", - "Station Name": "Název stanice", - "Station Description": "", - "Station Logo:": "Logo stanice:", - "Note: Anything larger than 600x600 will be resized.": "Poznámka: Cokoli většího než 600x600 bude zmenšeno.", - "Default Crossfade Duration (s):": "Defoltní nastavení doby plynulého přechodu", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Přednastavení Fade In:", - "Default Fade Out (s):": "Přednastavení Fade Out:", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Časové pásmo stanice", - "Week Starts On": "Týden začíná", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Přihlásit", - "Password": "Heslo", - "Confirm new password": "Potvrďte nové heslo", - "Password confirmation does not match your password.": "Potvrzené heslo neodpovídá vašemu heslu.", - "Email": "", - "Username": "Uživatelské jméno", - "Reset password": "Obnovit heslo", - "Back": "", - "Now Playing": "Právě se přehrává", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Všechna má vysílání:", - "My Shows": "", - "Select criteria": "Vyberte kritéria", - "Bit Rate (Kbps)": "Kvalita (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Vzorkovací frekvence (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hodiny", - "minutes": "minuty", - "items": "položka", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamický", - "Static": "Statický", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generovat obsah playlistu a uložit kritéria", - "Shuffle playlist content": "Promíchat obsah playlistu", - "Shuffle": "Promíchat", - "Limit cannot be empty or smaller than 0": "Limit nemůže být prázdný nebo menší než 0", - "Limit cannot be more than 24 hrs": "Limit nemůže být větší než 24 hodin", - "The value should be an integer": "Hodnota by měla být celé číslo", - "500 is the max item limit value you can set": "500 je max hodnota položky, kterou lze nastavit", - "You must select Criteria and Modifier": "Musíte vybrat kritéria a modifikátor", - "'Length' should be in '00:00:00' format": "'Délka' by měla být ve formátu '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Hodnota musí být číslo", - "The value should be less then 2147483648": "Hodnota by měla být menší než 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Hodnota by měla mít méně znaků než %s", - "Value cannot be empty": "Hodnota nemůže být prázdná", - "Stream Label:": "Označení streamu:", - "Artist - Title": "Umělec - Název", - "Show - Artist - Title": "Vysílání - Umělec - Název", - "Station name - Show name": "Název stanice - Název vysílání", - "Off Air Metadata": "Off Air metadata", - "Enable Replay Gain": "Povolit Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifikátor", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Povoleno:", - "Mobile:": "", - "Stream Type:": "Typ streamu:", - "Bit Rate:": "Bit frekvence:", - "Service Type:": "Typ služby:", - "Channels:": "Kanály:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Přípojný bod", - "Name": "Jméno", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Importovaná složka:", - "Watched Folders:": "Sledované složky:", - "Not a valid Directory": "Neplatný adresář", - "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", - "'%value%' is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", - "'%value%' is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", - "Passwords do not match": "Hesla se neshodují", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "%s Heslo onboveno", - "Cue in and cue out are null.": "Cue in a cue out jsou prázné.", - "Can't set cue out to be greater than file length.": "Nelze nastavit delší cue out než je délka souboru.", - "Can't set cue in to be larger than cue out.": "Nelze nastavit větší cue in než cue out.", - "Can't set cue out to be smaller than cue in.": "Nelze nastavit menší cue out než je cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Vyberte zemi", - "livestream": "", - "Cannot move items out of linked shows": "Nemůže přesunout položky z linkovaných vysílání", - "The schedule you're viewing is out of date! (sched mismatch)": "Program, který si prohlížíte, je zastaralý!", - "The schedule you're viewing is out of date! (instance mismatch)": "Program který si prohlížíte je zastaralý!", - "The schedule you're viewing is out of date!": "Program který si prohlížíte je zastaralý! ", - "You are not allowed to schedule show %s.": "Nemáte povoleno plánovat vysílání %s .", - "You cannot add files to recording shows.": "Nemůžete přidávat soubory do nahrávaného vysílání.", - "The show %s is over and cannot be scheduled.": "Vysílání %s skončilo a nemůže být nasazeno.", - "The show %s has been previously updated!": "Vysílání %s bylo již dříve aktualizováno!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Nelze naplánovat playlist, který obsahuje chybějící soubory.", - "A selected File does not exist!": "Vybraný soubor neexistuje!", - "Shows can have a max length of 24 hours.": "Vysílání může mít max. délku 24 hodin.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nelze naplánovat překrývající se vysílání.\nPoznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání.", - "Rebroadcast of %s from %s": "Znovu odvysílat %s od %s", - "Length needs to be greater than 0 minutes": "Délka musí být větší než 0 minut", - "Length should be of form \"00h 00m\"": "Délka by měla mít tvar \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL by měla mít tvar \"https://example.org\"", - "URL should be 512 characters or less": "URL by měla mít 512 znaků nebo méně", - "No MIME type found for webstream.": "Nenalezen žádný MIME typ pro webstream.", - "Webstream name cannot be empty": "Název webstreamu nemůže být prázdný", - "Could not parse XSPF playlist": "Nelze zpracovat XSPF playlist", - "Could not parse PLS playlist": "Nelze zpracovat PLS playlist", - "Could not parse M3U playlist": "Nelze zpracovat M3U playlist", - "Invalid webstream - This appears to be a file download.": "Neplatný webstream - tento vypadá jako stažení souboru.", - "Unrecognized stream type: %s": "Neznámý typ streamu: %s", - "Record file doesn't exist": "Soubor s nahrávkou neexistuje", - "View Recorded File Metadata": "Zobrazit nahraný soubor metadat", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Upravit vysílání", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Přístup odepřen", - "Can't drag and drop repeating shows": "Nelze přetáhnout opakujícící se vysílání", - "Can't move a past show": "Nelze přesunout vysílání z minulosti", - "Can't move show into past": "Nelze přesunout vysílání do minulosti", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno.", - "Show was deleted because recorded show does not exist!": "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!", - "Must wait 1 hour to rebroadcast.": "Musíte počkat 1 hodinu před dalším vysíláním.", - "Track": "Stopa", - "Played": "Přehráno", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Rok %s musí být v rozmezí 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s není platné datum", + "%s:%s:%s is not a valid time": "%s : %s : %s není platný čas", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendář", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Uživatelé", + "Track Types": "", + "Streams": "Streamy", + "Status": "Stav", + "Analytics": "", + "Playout History": "Historie odvysílaného", + "History Templates": "Historie nastavení", + "Listener Stats": "Statistiky poslechovost", + "Show Listener Stats": "", + "Help": "Nápověda", + "Getting Started": "Začínáme", + "User Manual": "Návod k obsluze", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nemáte udělen přístup k tomuto zdroji.", + "You are not allowed to access this resource. ": "Nemáte udělen přístup k tomuto zdroji. ", + "File does not exist in %s": "Soubor neexistuje v %s", + "Bad request. no 'mode' parameter passed.": "Špatný požadavek. Žádný 'mode' parametr neprošel.", + "Bad request. 'mode' parameter is invalid": "Špatný požadavek. 'Mode' parametr je neplatný.", + "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", + "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", + "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nenalezen", + "Something went wrong.": "Něco je špatně.", + "Preview": "Náhled", + "Add to Playlist": "Přidat do Playlistu", + "Add to Smart Block": "Přidat do chytrého bloku", + "Delete": "Smazat", + "Edit...": "", + "Download": "Stáhnout", + "Duplicate Playlist": "Duplikátní Playlist", + "Duplicate Smartblock": "", + "No action available": "Žádná akce není k dispozici", + "You don't have permission to delete selected items.": "Nemáte oprávnění odstranit vybrané položky.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka.", + "Audio Player": "Audio přehrávač", + "Something went wrong!": "", + "Recording:": "Nahrávání:", + "Master Stream": "Mastr stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nic není naplánované", + "Current Show:": "Stávající vysílání:", + "Current": "Stávající", + "You are running the latest version": "Používáte nejnovější verzi", + "New version available: ": "Nová verze k dispozici: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Přidat do aktuálního playlistu", + "Add to current smart block": "Přidat do aktuálního chytrého bloku", + "Adding 1 Item": "Přidat 1 položku", + "Adding %s Items": "Přidat %s položek", + "You can only add tracks to smart blocks.": "Můžete přidat skladby pouze do chytrých bloků.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů.", + "Please select a cursor position on timeline.": "Prosím vyberte si pozici kurzoru na časové ose.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Přidat", + "New": "", + "Edit": "Upravit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Odstranit", + "Edit Metadata": "Upravit metadata", + "Add to selected show": "Přidat k vybranému vysílání", + "Select": "Vyberte", + "Select this page": "Vyberte tuto stránku", + "Deselect this page": "Zrušte označení této stránky", + "Deselect all": "Zrušte zaškrtnutí všech", + "Are you sure you want to delete the selected item(s)?": "Jste si jisti, že chcete smazat vybranou položku(y)?", + "Scheduled": "Naplánováno", + "Tracks": "", + "Playlist": "", + "Title": "Název", + "Creator": "Tvůrce", + "Album": "Album", + "Bit Rate": "Rychlost přenosu", + "BPM": "BPM", + "Composer": "Skladatel", + "Conductor": "Dirigent", + "Copyright": "Autorská práva", + "Encoded By": "Zakódováno", + "Genre": "Žánr", + "ISRC": "ISRC", + "Label": "Označení ", + "Language": "Jazyk", + "Last Modified": "Naposledy změněno", + "Last Played": "Naposledy vysíláno", + "Length": "Délka", + "Mime": "Mime", + "Mood": "Nálada", + "Owner": "Vlastník", + "Replay Gain": "Opakovat Gain", + "Sample Rate": "Vzorkovací rychlost", + "Track Number": "Číslo stopy", + "Uploaded": "Nahráno", + "Website": "Internetové stránky", + "Year": "Rok ", + "Loading...": "Nahrávání ...", + "All": "Vše", + "Files": "Soubory", + "Playlists": "Playlisty", + "Smart Blocks": "Chytré bloky", + "Web Streams": "Webové streamy", + "Unknown type: ": "Neznámý typ: ", + "Are you sure you want to delete the selected item?": "Jste si jisti, že chcete smazat vybranou položku?", + "Uploading in progress...": "Probíhá nahrávání...", + "Retrieving data from the server...": "Získávání dat ze serveru...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Chybný kód: ", + "Error msg: ": "Chyba msg: ", + "Input must be a positive number": "Vstup musí být kladné číslo", + "Input must be a number": "Vstup musí být číslo", + "Input must be in the format: yyyy-mm-dd": "Vstup musí být ve formátu: rrrr-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Vstup musí být ve formátu: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?", + "Open Media Builder": "Otevřít Media Builder", + "please put in a time '00:00:00 (.0)'": "prosím nastavte čas '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: ", + "Dynamic block is not previewable": "Dynamický blok není možno ukázat předem", + "Limit to: ": "Omezeno na: ", + "Playlist saved": "Playlist uložen", + "Playlist shuffled": "Playlist zamíchán", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'.", + "Listener Count on %s: %s": "Počítat posluchače %s : %s", + "Remind me in 1 week": "Připomenout za 1 týden", + "Remind me never": "Nikdy nepřipomínat", + "Yes, help Airtime": "Ano, pomoc Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obrázek musí být buď jpg, jpeg, png nebo gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Chytré bloky promíchány", + "Smart block generated and criteria saved": "Chytrý blok generován a kritéria uložena", + "Smart block saved": "Chytrý blok uložen", + "Processing...": "Zpracovává se...", + "Select modifier": "Vyberte modifikátor", + "contains": "obsahuje", + "does not contain": "neobsahuje", + "is": "je", + "is not": "není", + "starts with": "začíná s", + "ends with": "končí s", + "is greater than": "je větší než", + "is less than": "je menší než", + "is in the range": "se pohybuje v rozmezí", + "Generate": "Generovat", + "Choose Storage Folder": "Vyberte složku k uložení", + "Choose Folder to Watch": "Vyberte složku ke sledování", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Jste si jisti, že chcete změnit složku úložiště ?\nTímto odstraníte soubry z vaší Airtime knihovny!", + "Manage Media Folders": "Správa složek médií", + "Are you sure you want to remove the watched folder?": "Jste si jisti, že chcete odstranit sledovanou složku?", + "This path is currently not accessible.": "Tato cesta není v současné době dostupná.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány.", + "Connected to the streaming server": "Připojeno k streamovacímu serveru", + "The stream is disabled": "Stream je vypnut", + "Getting information from the server...": "Získávání informací ze serveru...", + "Can not connect to the streaming server": "Nelze se připojit k streamovacímu serveru", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti.", + "Warning: You cannot change this field while the show is currently playing": "Upozornění: Nelze změnit toto pole v průběhu vysílání programu", + "No result found": "Žádný výsledek nenalezen", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit.", + "Specify custom authentication which will work only for this show.": "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání.", + "The show instance doesn't exist anymore!": "Ukázka vysílání již neexistuje!", + "Warning: Shows cannot be re-linked": "Varování: Vysílání nemohou být znovu linkována.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. ", + "Show": "Vysílání", + "Show is empty": "Vysílání je prázdné", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Získávání dat ze serveru ...", + "This show has no scheduled content.": "Toto vysílání nemá naplánovaný obsah.", + "This show is not completely filled with content.": "Toto vysílání není zcela vyplněno.", + "January": "Leden", + "February": "Únor", + "March": "Březen", + "April": "Duben", + "May": "Květen", + "June": "Červen", + "July": "Červenec", + "August": "Srpen", + "September": "Září", + "October": "Říjen", + "November": "Listopad", + "December": "Prosinec", + "Jan": "Leden", + "Feb": "Únor", + "Mar": "Březen", + "Apr": "Duben", + "Jun": "Červen", + "Jul": "Červenec", + "Aug": "Srpen", + "Sep": "Září", + "Oct": "Říjen", + "Nov": "Listopad", + "Dec": "Prosinec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Neděle", + "Monday": "Pondělí", + "Tuesday": "Úterý", + "Wednesday": "Středa", + "Thursday": "Čtvrtek", + "Friday": "Pátek", + "Saturday": "Sobota", + "Sun": "Ne", + "Mon": "Po", + "Tue": "Út", + "Wed": "St", + "Thu": "Čt", + "Fri": "Pá", + "Sat": "So", + "Shows longer than their scheduled time will be cut off by a following show.": "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání.", + "Cancel Current Show?": "Zrušit aktuální vysílání?", + "Stop recording current show?": "Zastavit nahrávání aktuálního vysílání?", + "Ok": "OK", + "Contents of Show": "Obsah vysílání", + "Remove all content?": "Odstranit veškerý obsah?", + "Delete selected item(s)?": "Odstranit vybranou položku(y)?", + "Start": "Začátek", + "End": "Konec", + "Duration": "Trvání", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue in", + "Cue Out": "Cue out", + "Fade In": "Pozvolné zesilování ", + "Fade Out": "Pozvolné zeslabování", + "Show Empty": "Vysílání prázdné", + "Recording From Line In": "Nahrávání z Line In", + "Track preview": "Náhled stopy", + "Cannot schedule outside a show.": "Nelze naplánovat mimo vysílání.", + "Moving 1 Item": "Posunutí 1 položky", + "Moving %s Items": "Posunutí %s položek", + "Save": "Uložit", + "Cancel": "Zrušit", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API", + "Select all": "Vybrat vše", + "Select none": "Nic nevybrat", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Odebrat vybrané naplánované položky", + "Jump to the current playing track": "Přejít na aktuálně přehrávanou skladbu", + "Jump to Current": "", + "Cancel current show": "Zrušit aktuální vysílání", + "Open library to add or remove content": "Otevřít knihovnu pro přidání nebo odebrání obsahu", + "Add / Remove Content": "Přidat / Odebrat obsah", + "in use": "používá se", + "Disk": "Disk", + "Look in": "Podívat se", + "Open": "Otevřít", + "Admin": "Administrátor", + "DJ": "DJ", + "Program Manager": "Program manager", + "Guest": "Host", + "Guests can do the following:": "Hosté mohou dělat následující:", + "View schedule": "Zobrazit plán", + "View show content": "Zobrazit obsah vysílání", + "DJs can do the following:": "DJ může dělat následující:", + "Manage assigned show content": "Spravovat přidělený obsah vysílání", + "Import media files": "Import media souborů", + "Create playlists, smart blocks, and webstreams": "Vytvořit playlisty, smart bloky a webstreamy", + "Manage their own library content": "Spravovat obsah vlastní knihovny", + "Program Managers can do the following:": "", + "View and manage show content": "Zobrazit a spravovat obsah vysílání", + "Schedule shows": "Plán ukazuje", + "Manage all library content": "Spravovat celý obsah knihovny", + "Admins can do the following:": "Správci mohou provést následující:", + "Manage preferences": "Správa předvoleb", + "Manage users": "Správa uživatelů", + "Manage watched folders": "Správa sledovaných složek", + "Send support feedback": "Odeslat zpětnou vazbu", + "View system status": "Zobrazit stav systému", + "Access playout history": "Přístup playout historii", + "View listener stats": "Zobrazit posluchače statistiky", + "Show / hide columns": "Zobrazit / skrýt sloupce", + "Columns": "", + "From {from} to {to}": "Z {z} do {do}", + "kbps": "kbps", + "yyyy-mm-dd": "rrrr-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Út", + "We": "St", + "Th": "Čt", + "Fr": "Pá", + "Sa": "So", + "Close": "Zavřít", + "Hour": "Hodina", + "Minute": "Minuta", + "Done": "Hotovo", + "Select files": "Vyberte soubory", + "Add files to the upload queue and click the start button.": "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start.", + "Filename": "", + "Size": "", + "Add Files": "Přidat soubory.", + "Stop Upload": "Zastavit Nahrávání", + "Start upload": "Začít nahrávat", + "Start Upload": "", + "Add files": "Přidat soubory", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Nahráno %d / %d souborů", + "N/A": "Nedostupné", + "Drag files here.": "Soubory přetáhněte zde.", + "File extension error.": "Chybná přípona souboru", + "File size error.": "Chybná velikost souboru.", + "File count error.": "Chybný součet souborů.", + "Init error.": "Chyba Init.", + "HTTP Error.": "Chyba HTTP.", + "Security error.": "Chyba zabezpečení.", + "Generic error.": "Obecná chyba. ", + "IO error.": "CHyba IO.", + "File: %s": "Soubor: %s", + "%d files queued": "%d souborů ve frontě", + "File: %f, size: %s, max file size: %m": "Soubor: %f , velikost: %s , max. velikost souboru:% m", + "Upload URL might be wrong or doesn't exist": "Přidané URL může být špatné nebo neexistuje", + "Error: File too large: ": "Chyba: Soubor je příliš velký: ", + "Error: Invalid file extension: ": "Chyba: Neplatná přípona souboru: ", + "Set Default": "Nastavit jako default", + "Create Entry": "Vytvořit vstup", + "Edit History Record": "Editovat historii nahrávky", + "No Show": "Žádné vysílání", + "Copied %s row%s to the clipboard": "Kopírovat %s řádků %s do schránky", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Popis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Povoleno", + "Disabled": "Vypnuto", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu.", + "You are viewing an older version of %s": "Prohlížíte si starší verzi %s", + "You cannot add tracks to dynamic blocks.": "Nemůžete přidávat skladby do dynamických bloků.", + "You don't have permission to delete selected %s(s).": "Nemáte oprávnění odstranit vybrané %s (s).", + "You can only add tracks to smart block.": "Můžete pouze přidat skladby do chytrého bloku.", + "Untitled Playlist": "Playlist bez názvu", + "Untitled Smart Block": "Chytrý block bez názvu", + "Unknown Playlist": "Neznámý Playlist", + "Preferences updated.": "Preference aktualizovány.", + "Stream Setting Updated.": "Nastavení streamu aktualizováno.", + "path should be specified": "cesta by měla být specifikována", + "Problem with Liquidsoap...": "Problém s Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Znovu spustit vysílaní %s od %s na %s", + "Select cursor": "Vybrat kurzor", + "Remove cursor": "Odstranit kurzor", + "show does not exist": "vysílání neexistuje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Uživatel byl úspěšně přidán!", + "User updated successfully!": "Uživatel byl úspěšně aktualizován!", + "Settings updated successfully!": "Nastavení úspěšně aktualizováno!", + "Untitled Webstream": "Webstream bez názvu", + "Webstream saved.": "Webstream uložen.", + "Invalid form values.": "Neplatná forma hodnot.", + "Invalid character entered": "Zadán neplatný znak ", + "Day must be specified": "Den musí být zadán", + "Time must be specified": "Čas musí být zadán", + "Must wait at least 1 hour to rebroadcast": "Musíte počkat alespoň 1 hodinu před dalším vysíláním", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Použij %s ověření pravosti:", + "Use Custom Authentication:": "Použít ověření uživatele:", + "Custom Username": "Uživatelské jméno", + "Custom Password": "Uživatelské heslo", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Uživatelské jméno musí být zadáno.", + "Password field cannot be empty.": "Heslo musí být zadáno.", + "Record from Line In?": "Nahráno z Line In?", + "Rebroadcast?": "Vysílat znovu?", + "days": "dny", + "Link:": "Link:", + "Repeat Type:": "Typ opakování:", + "weekly": "týdně", + "every 2 weeks": "každé 2 týdny", + "every 3 weeks": "každé 3 týdny", + "every 4 weeks": "každé 4 týdny", + "monthly": "měsíčně", + "Select Days:": "Vyberte dny:", + "Repeat By:": "Opakovat:", + "day of the month": "den v měsíci", + "day of the week": "den v týdnu", + "Date End:": "Datum ukončení:", + "No End?": "Nekončí?", + "End date must be after start date": "Datum ukončení musí být po počátečním datumu", + "Please select a repeat day": "Prosím vyberte den opakování", + "Background Colour:": "Barva pozadí:", + "Text Colour:": "Barva textu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Název:", + "Untitled Show": "Pořad bez názvu", + "URL:": "URL", + "Genre:": "Žánr:", + "Description:": "Popis:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Doba trvání:", + "Timezone:": "Časová zó", + "Repeats?": "Opakovat?", + "Cannot create show in the past": "Nelze vytvořit vysílání v minulosti", + "Cannot modify start date/time of the show that is already started": "Nelze měnit datum/čas vysílání, které bylo již spuštěno", + "End date/time cannot be in the past": "Datum/čas ukončení nemůže být v minulosti", + "Cannot have duration < 0m": "Nelze mít dobu trvání < 0m", + "Cannot have duration 00h 00m": "Nelze nastavit dobu trvání 00h 00m", + "Cannot have duration greater than 24h": "Nelze mít dobu trvání delší než 24 hodin", + "Cannot schedule overlapping shows": "Nelze nastavit překrývající se vysílání.", + "Search Users:": "Hledat uživatele:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Uživatelské jméno:", + "Password:": "Heslo:", + "Verify Password:": "Ověřit heslo:", + "Firstname:": "Jméno:", + "Lastname:": "Příjmení:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobilní telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ uživatele:", + "Login name is not unique.": "Přihlašovací jméno není jedinečné.", + "Delete All Tracks in Library": "", + "Date Start:": "Datum zahájení:", + "Title:": "Název:", + "Creator:": "Tvůrce:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Označení:", + "Composer:": "Skladatel:", + "Conductor:": "Dirigent:", + "Mood:": "Nálada:", + "BPM:": "BPM:", + "Copyright:": "Autorská práva:", + "ISRC Number:": "ISRC číslo:", + "Website:": "Internetová stránka:", + "Language:": "Jazyk:", + "Publish...": "", + "Start Time": "Čas začátku", + "End Time": "Čas konce", + "Interface Timezone:": "Časové pásmo uživatelského rozhraní", + "Station Name": "Název stanice", + "Station Description": "", + "Station Logo:": "Logo stanice:", + "Note: Anything larger than 600x600 will be resized.": "Poznámka: Cokoli většího než 600x600 bude zmenšeno.", + "Default Crossfade Duration (s):": "Defoltní nastavení doby plynulého přechodu", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Přednastavení Fade In:", + "Default Fade Out (s):": "Přednastavení Fade Out:", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Časové pásmo stanice", + "Week Starts On": "Týden začíná", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Přihlásit", + "Password": "Heslo", + "Confirm new password": "Potvrďte nové heslo", + "Password confirmation does not match your password.": "Potvrzené heslo neodpovídá vašemu heslu.", + "Email": "", + "Username": "Uživatelské jméno", + "Reset password": "Obnovit heslo", + "Back": "", + "Now Playing": "Právě se přehrává", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Všechna má vysílání:", + "My Shows": "", + "Select criteria": "Vyberte kritéria", + "Bit Rate (Kbps)": "Kvalita (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Vzorkovací frekvence (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hodiny", + "minutes": "minuty", + "items": "položka", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamický", + "Static": "Statický", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generovat obsah playlistu a uložit kritéria", + "Shuffle playlist content": "Promíchat obsah playlistu", + "Shuffle": "Promíchat", + "Limit cannot be empty or smaller than 0": "Limit nemůže být prázdný nebo menší než 0", + "Limit cannot be more than 24 hrs": "Limit nemůže být větší než 24 hodin", + "The value should be an integer": "Hodnota by měla být celé číslo", + "500 is the max item limit value you can set": "500 je max hodnota položky, kterou lze nastavit", + "You must select Criteria and Modifier": "Musíte vybrat kritéria a modifikátor", + "'Length' should be in '00:00:00' format": "'Délka' by měla být ve formátu '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Hodnota musí být číslo", + "The value should be less then 2147483648": "Hodnota by měla být menší než 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Hodnota by měla mít méně znaků než %s", + "Value cannot be empty": "Hodnota nemůže být prázdná", + "Stream Label:": "Označení streamu:", + "Artist - Title": "Umělec - Název", + "Show - Artist - Title": "Vysílání - Umělec - Název", + "Station name - Show name": "Název stanice - Název vysílání", + "Off Air Metadata": "Off Air metadata", + "Enable Replay Gain": "Povolit Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifikátor", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Povoleno:", + "Mobile:": "", + "Stream Type:": "Typ streamu:", + "Bit Rate:": "Bit frekvence:", + "Service Type:": "Typ služby:", + "Channels:": "Kanály:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Přípojný bod", + "Name": "Jméno", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importovaná složka:", + "Watched Folders:": "Sledované složky:", + "Not a valid Directory": "Neplatný adresář", + "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", + "'%value%' is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", + "'%value%' is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", + "Passwords do not match": "Hesla se neshodují", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s Heslo onboveno", + "Cue in and cue out are null.": "Cue in a cue out jsou prázné.", + "Can't set cue out to be greater than file length.": "Nelze nastavit delší cue out než je délka souboru.", + "Can't set cue in to be larger than cue out.": "Nelze nastavit větší cue in než cue out.", + "Can't set cue out to be smaller than cue in.": "Nelze nastavit menší cue out než je cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Vyberte zemi", + "livestream": "", + "Cannot move items out of linked shows": "Nemůže přesunout položky z linkovaných vysílání", + "The schedule you're viewing is out of date! (sched mismatch)": "Program, který si prohlížíte, je zastaralý!", + "The schedule you're viewing is out of date! (instance mismatch)": "Program který si prohlížíte je zastaralý!", + "The schedule you're viewing is out of date!": "Program který si prohlížíte je zastaralý! ", + "You are not allowed to schedule show %s.": "Nemáte povoleno plánovat vysílání %s .", + "You cannot add files to recording shows.": "Nemůžete přidávat soubory do nahrávaného vysílání.", + "The show %s is over and cannot be scheduled.": "Vysílání %s skončilo a nemůže být nasazeno.", + "The show %s has been previously updated!": "Vysílání %s bylo již dříve aktualizováno!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nelze naplánovat playlist, který obsahuje chybějící soubory.", + "A selected File does not exist!": "Vybraný soubor neexistuje!", + "Shows can have a max length of 24 hours.": "Vysílání může mít max. délku 24 hodin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nelze naplánovat překrývající se vysílání.\nPoznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání.", + "Rebroadcast of %s from %s": "Znovu odvysílat %s od %s", + "Length needs to be greater than 0 minutes": "Délka musí být větší než 0 minut", + "Length should be of form \"00h 00m\"": "Délka by měla mít tvar \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL by měla mít tvar \"https://example.org\"", + "URL should be 512 characters or less": "URL by měla mít 512 znaků nebo méně", + "No MIME type found for webstream.": "Nenalezen žádný MIME typ pro webstream.", + "Webstream name cannot be empty": "Název webstreamu nemůže být prázdný", + "Could not parse XSPF playlist": "Nelze zpracovat XSPF playlist", + "Could not parse PLS playlist": "Nelze zpracovat PLS playlist", + "Could not parse M3U playlist": "Nelze zpracovat M3U playlist", + "Invalid webstream - This appears to be a file download.": "Neplatný webstream - tento vypadá jako stažení souboru.", + "Unrecognized stream type: %s": "Neznámý typ streamu: %s", + "Record file doesn't exist": "Soubor s nahrávkou neexistuje", + "View Recorded File Metadata": "Zobrazit nahraný soubor metadat", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Upravit vysílání", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Přístup odepřen", + "Can't drag and drop repeating shows": "Nelze přetáhnout opakujícící se vysílání", + "Can't move a past show": "Nelze přesunout vysílání z minulosti", + "Can't move show into past": "Nelze přesunout vysílání do minulosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno.", + "Show was deleted because recorded show does not exist!": "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!", + "Must wait 1 hour to rebroadcast.": "Musíte počkat 1 hodinu před dalším vysíláním.", + "Track": "Stopa", + "Played": "Přehráno", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/de_AT.json b/webapp/src/locale/de_AT.json index 931008d7d6..d36f11bc65 100644 --- a/webapp/src/locale/de_AT.json +++ b/webapp/src/locale/de_AT.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen", - "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", - "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalender", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Benutzer", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout Verlauf", - "History Templates": "Verlaufsvorlagen", - "Listener Stats": "Hörerstatistiken", - "Show Listener Stats": "", - "Help": "Hilfe", - "Getting Started": "Kurzanleitung", - "User Manual": "Benutzerhandbuch", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", - "You are not allowed to access this resource. ": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter.", - "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig.", - "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", - "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", - "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nicht gefunden", - "Something went wrong.": "Etwas ist falsch gelaufen.", - "Preview": "Vorschau", - "Add to Playlist": "Zu Playlist hinzufügen", - "Add to Smart Block": "Hinzufügen zu Smart Block", - "Delete": "Löschen", - "Edit...": "", - "Download": "Herunterladen", - "Duplicate Playlist": "Playlist duplizieren", - "Duplicate Smartblock": "", - "No action available": "Keine Aktion verfügbar", - "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopie von %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Aufzeichnung:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nichts geplant", - "Current Show:": "Aktuelle Sendung:", - "Current": "Aktuell", - "You are running the latest version": "Sie verwenden die aktuellste Version", - "New version available: ": "Neue Version verfügbar:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Zu aktueller Playlist hinzufügen", - "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", - "Adding 1 Item": "Füge 1 Objekt hinzu", - "Adding %s Items": "Füge %s Objekte hinzu", - "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", - "Please select a cursor position on timeline.": "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Hinzufügen", - "New": "", - "Edit": "Bearbeiten", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Entfernen", - "Edit Metadata": "Metadaten bearbeiten", - "Add to selected show": "Zu gewählter Sendung hinzufügen", - "Select": "Auswahl", - "Select this page": "Ganze Seite markieren", - "Deselect this page": "Ganze Seite nicht markieren", - "Deselect all": "Keines Markieren", - "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", - "Scheduled": "Geplant", - "Tracks": "", - "Playlist": "", - "Title": "Titel", - "Creator": "Interpret", - "Album": "Album", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Komponist", - "Conductor": "Dirigent", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Sprache", - "Last Modified": "Zuletzt geändert", - "Last Played": "Zuletzt gespielt", - "Length": "Dauer", - "Mime": "Mime", - "Mood": "Stimmung", - "Owner": "Besitzer", - "Replay Gain": "Replay Gain", - "Sample Rate": "Samplerate", - "Track Number": "Titelnummer", - "Uploaded": "Hochgeladen", - "Website": "Webseite", - "Year": "Jahr", - "Loading...": "wird geladen...", - "All": "Alle", - "Files": "Dateien", - "Playlists": "Playlisten", - "Smart Blocks": "Smart Blöcke", - "Web Streams": "Web Streams", - "Unknown type: ": "Unbekannter Typ:", - "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", - "Uploading in progress...": "Hochladen wird durchgeführt...", - "Retrieving data from the server...": "Daten werden vom Server abgerufen...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Fehler Code:", - "Error msg: ": "Fehlermeldung:", - "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", - "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", - "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:", - "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", - "Limit to: ": "Beschränkung auf:", - "Playlist saved": "Playlist gespeichert", - "Playlist shuffled": "Playlist durchgemischt", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", - "Listener Count on %s: %s": "Hörerzahl %s: %s", - "Remind me in 1 week": "In einer Woche erinnern", - "Remind me never": "Niemals erinnern", - "Yes, help Airtime": "Ja, Airtime helfen", - "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein.", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart Block durchgemischt", - "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", - "Smart block saved": "Smart Block gespeichert", - "Processing...": "In Bearbeitung...", - "Select modifier": "Wähle Modifikator", - "contains": "enthält", - "does not contain": "enthält nicht", - "is": "ist", - "is not": "ist nicht", - "starts with": "beginnt mit", - "ends with": "endet mit", - "is greater than": "ist größer als", - "is less than": "ist kleiner als", - "is in the range": "ist im Bereich", - "Generate": "Erstellen", - "Choose Storage Folder": "Wähle Storage-Verzeichnis", - "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Wollen sie wirklich das Storage-Verzeichnis ändern?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", - "Manage Media Folders": "Verwalte Medienverzeichnisse", - "Are you sure you want to remove the watched folder?": "Wollen sie den überwachten Ordner wirklich entfernen?", - "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt.", - "Connected to the streaming server": "Mit Streaming-Server verbunden", - "The stream is disabled": "Der Stream ist deaktiviert", - "Getting information from the server...": "Erhalte Information vom Server...", - "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast.", - "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", - "No result found": "Kein Ergebnis gefunden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", - "Specify custom authentication which will work only for this show.": "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird.", - "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", - "Warning: Shows cannot be re-linked": "Warnung: Sendungen können nicht erneut verknüpft werden.", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", - "Show": "Sendung", - "Show is empty": "Sendung ist leer", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Daten werden vom Server abgerufen...", - "This show has no scheduled content.": "Diese Sendung hat keinen geplanten Inhalt.", - "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt.", - "January": "Januar", - "February": "Februar", - "March": "März", - "April": "April", - "May": "Mai", - "June": "Juni", - "July": "Juli", - "August": "August", - "September": "September", - "October": "Oktober", - "November": "November", - "December": "Dezember", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mär", - "Apr": "Apr", - "Jun": "Mai", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Okt", - "Nov": "Nov", - "Dec": "Dez", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sonntag", - "Monday": "Montag", - "Tuesday": "Dienstag", - "Wednesday": "Mittwoch", - "Thursday": "Donnerstag", - "Friday": "Freitag", - "Saturday": "Samstag", - "Sun": "SO", - "Mon": "MO", - "Tue": "DI", - "Wed": "MI", - "Thu": "DO", - "Fri": "FR", - "Sat": "SA", - "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten.", - "Cancel Current Show?": "Aktuelle Sendung abbrechen?", - "Stop recording current show?": "Aufzeichnung der aktuellen Sendung stoppen?", - "Ok": "OK", - "Contents of Show": "Sendungsinhalt", - "Remove all content?": "Gesamten Inhalt entfernen?", - "Delete selected item(s)?": "Gewählte Objekte löschen?", - "Start": "Beginn", - "End": "Ende", - "Duration": "Dauer", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Sendung leer", - "Recording From Line In": "Aufzeichnen von Line-In", - "Track preview": "Titelvorschau", - "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", - "Moving 1 Item": "Verschiebe 1 Objekt", - "Moving %s Items": "Verschiebe %s Objekte", - "Save": "Speichern", - "Cancel": "Abbrechen", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen", - "Select all": "Alle markieren", - "Select none": "Nichts Markieren", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Gewähltes Objekt entfernen", - "Jump to the current playing track": "Springe zu aktuellem Titel", - "Jump to Current": "", - "Cancel current show": "Aktuelle Sendung abbrechen", - "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", - "Add / Remove Content": "Inhalt hinzufügen / entfernen", - "in use": "In Verwendung", - "Disk": "Disk", - "Look in": "Suchen in", - "Open": "Öffnen", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programm Manager", - "Guest": "Gast", - "Guests can do the following:": "Gäste können folgendes tun:", - "View schedule": "Kalender betrachten", - "View show content": "Sendungsinhalt betrachten", - "DJs can do the following:": "DJ's können folgendes tun:", - "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", - "Import media files": "Mediendateien importieren", - "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", - "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", - "Program Managers can do the following:": "", - "View and manage show content": "Sendungsinhalte betrachten und verwalten", - "Schedule shows": "Sendungen festlegen", - "Manage all library content": "Verwalten der gesamten Bibliothek", - "Admins can do the following:": "Admins können folgendes tun:", - "Manage preferences": "Einstellungen verwalten", - "Manage users": "Benutzer verwalten", - "Manage watched folders": "Verwalten überwachter Ordner", - "Send support feedback": "Support Feedback senden", - "View system status": "System Status betrachten", - "Access playout history": "Zugriff auf Playout Verlauf", - "View listener stats": "Hörerstatistiken betrachten", - "Show / hide columns": "Spalten zeigen / verbergen", - "Columns": "", - "From {from} to {to}": "Von {from} bis {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "So", - "Mo": "Mo", - "Tu": "Di", - "We": "Mi", - "Th": "Do", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Schließen", - "Hour": "Stunde", - "Minute": "Minute", - "Done": "Fertig", - "Select files": "Dateien wählen", - "Add files to the upload queue and click the start button.": "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start.", - "Filename": "", - "Size": "", - "Add Files": "Dateien hinzufügen", - "Stop Upload": "Hochladen stoppen", - "Start upload": "Hochladen starten", - "Start Upload": "", - "Add files": "Dateien hinzufügen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", - "N/A": "Nicht Verfügbar", - "Drag files here.": "Dateien hierher ziehen", - "File extension error.": "Dateierweiterungsfehler", - "File size error.": "Dateigrößenfehler", - "File count error.": "Dateianzahlfehler", - "Init error.": "Init Fehler", - "HTTP Error.": "HTTP-Fehler", - "Security error.": "Sicherheitsfehler", - "Generic error.": "Allgemeiner Fehler", - "IO error.": "IO-Fehler", - "File: %s": "Datei: %s", - "%d files queued": "%d Dateien in der Warteschlange", - "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", - "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", - "Error: File too large: ": "Fehler: Datei zu groß", - "Error: Invalid file extension: ": "Fehler: Ungültige Dateierweiterung:", - "Set Default": "Standard festlegen", - "Create Entry": "Eintrag erstellen", - "Edit History Record": "Verlaufsprotokoll bearbeiten", - "No Show": "Keine Sendung", - "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Beschreibung", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktiviert", - "Disabled": "Deaktiviert", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut.", - "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", - "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen.", - "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. ", - "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", - "Untitled Playlist": "Unbenannte Playlist", - "Untitled Smart Block": "Unbenannter Smart Block", - "Unknown Playlist": "Unbenannte Playlist", - "Preferences updated.": "Einstellungen aktualisiert", - "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", - "path should be specified": "Pfad muß angegeben werden", - "Problem with Liquidsoap...": "Problem mit Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung % s vom %s um %s", - "Select cursor": "Cursor wählen", - "Remove cursor": "Cursor entfernen", - "show does not exist": "Sendung existiert nicht.", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Benutzer erfolgreich hinzugefügt!", - "User updated successfully!": "Benutzer erfolgreich aktualisiert!", - "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", - "Untitled Webstream": "Unbenannter Webstream", - "Webstream saved.": "Webstream gespeichert", - "Invalid form values.": "Ungültiger Eingabewert", - "Invalid character entered": "Ungültiges Zeichen eingeben", - "Day must be specified": "Tag muß angegeben werden", - "Time must be specified": "Zeit muß angegeben werden", - "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Benutzerdefinierte Authentifizierung:", - "Custom Username": "Benutzerdefinierter Benutzername", - "Custom Password": "Benutzerdefiniertes Passwort", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", - "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", - "Record from Line In?": "Aufzeichnen von Line-In?", - "Rebroadcast?": "Wiederholen?", - "days": "Tage", - "Link:": "Verknüpfen:", - "Repeat Type:": "Wiederholungstyp:", - "weekly": "Wöchentlich", - "every 2 weeks": "jede Zweite Woche", - "every 3 weeks": "jede Dritte Woche", - "every 4 weeks": "jede Vierte Woche", - "monthly": "Monatlich", - "Select Days:": "Tage wählen:", - "Repeat By:": "Wiederholung am:", - "day of the month": "Tag des Monats", - "day of the week": "Tag der Woche", - "Date End:": "Zeitpunkt Ende:", - "No End?": "Kein Enddatum?", - "End date must be after start date": "Enddatum muß nach Startdatum liegen.", - "Please select a repeat day": "Bitte Tag zum Wiederholen wählen", - "Background Colour:": "Hintergrundfarbe:", - "Text Colour:": "Textfarbe:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Unbenannte Sendung", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Beschreibung:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Dauer:", - "Timezone:": "Zeitzone:", - "Repeats?": "Wiederholungen?", - "Cannot create show in the past": "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden", - "Cannot modify start date/time of the show that is already started": "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden", - "End date/time cannot be in the past": "Enddatum / Endzeit darf nicht in der Vergangheit liegen.", - "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", - "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", - "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", - "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", - "Search Users:": "Benutzer suchen:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Benutzername:", - "Password:": "Passwort:", - "Verify Password:": "Passwort bestätigen:", - "Firstname:": "Vorname:", - "Lastname:": "Nachname:", - "Email:": "E-Mail:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Benutzertyp:", - "Login name is not unique.": "Benutzername ist nicht einmalig.", - "Delete All Tracks in Library": "", - "Date Start:": "Zeitpunkt Start:", - "Title:": "Titel", - "Creator:": "Interpret:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jahr:", - "Label:": "Label:", - "Composer:": "Komponist:", - "Conductor:": "Dirigent:", - "Mood:": "Stimmung:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Nummer:", - "Website:": "Webseite:", - "Language:": "Sprache:", - "Publish...": "", - "Start Time": "Beginn", - "End Time": "Ende", - "Interface Timezone:": "Zeitzone Interface", - "Station Name": "Sendername", - "Station Description": "", - "Station Logo:": "Sender Logo:", - "Note: Anything larger than 600x600 will be resized.": "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert.", - "Default Crossfade Duration (s):": "Standarddauer Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Standard Fade In (s):", - "Default Fade Out (s):": "Standard Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Zeitzone Radiostation", - "Week Starts On": "Woche startet mit ", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Anmeldung", - "Password": "Passwort", - "Confirm new password": "Neues Passwort bestätigen", - "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein", - "Email": "", - "Username": "Benutzername", - "Reset password": "Passwort zurücksetzen", - "Back": "", - "Now Playing": "Jetzt", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Alle meine Sendungen:", - "My Shows": "", - "Select criteria": "Kriterien wählen", - "Bit Rate (Kbps)": "Bitrate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (KHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Stunden", - "minutes": "Minuten", - "items": "Objekte", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "Statisch", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", - "Shuffle playlist content": "Shuffle Playlist-Inhalt (Durchmischen)", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein.", - "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", - "The value should be an integer": "Der Wert muß eine ganze Zahl sein.", - "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt.", - "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", - "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", - "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", - "Value cannot be empty": "Wert kann nicht leer sein", - "Stream Label:": "Streambezeichnung:", - "Artist - Title": "Artist - Titel", - "Show - Artist - Title": "Sendung - Interpret - Titel", - "Station name - Show name": "Radiostation - Sendung", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Replay Gain aktivieren", - "Replay Gain Modifier": "Replay Gain Modifikator", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktiviert:", - "Mobile:": "", - "Stream Type:": "Stream Typ:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Service Typ:", - "Channels:": "Kanäle:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Verzeichnis:", - "Watched Folders:": "Überwachte Verzeichnisse:", - "Not a valid Directory": "Kein gültiges Verzeichnis", - "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", - "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", - "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", - "Passwords do not match": "Passwörter stimmen nicht überein", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", - "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtdauer der Datei sein.", - "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", - "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Land wählen", - "livestream": "", - "Cannot move items out of linked shows": "Objekte aus einer verknüpften Sendung können nicht verschoben werden.", - "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)", - "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)", - "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell.", - "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", - "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", - "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht festgelegt werden.", - "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert.", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", - "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", - "Rebroadcast of %s from %s": "Wiederholung von %s am %s", - "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", - "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", - "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", - "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", - "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", - "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", - "Could not parse XSPF playlist": "XSPF-Playlist konnte nicht aufgeschlüsselt werden.", - "Could not parse PLS playlist": "PLS-Playlist konnte nicht aufgeschlüsselt werden.", - "Could not parse M3U playlist": "M3U-Playlist konnte nicht aufgeschlüsselt werden.", - "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", - "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", - "Record file doesn't exist": "Aufeichnung existiert nicht", - "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei ansehen", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Sendung bearbeiten", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Zugriff verweigert", - "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", - "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", - "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", - "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert.", - "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Track": "Titel", - "Played": "Abgespielt", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Benutzer", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "You are not allowed to access this resource. ": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig.", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zu Playlist hinzufügen", + "Add to Smart Block": "Hinzufügen zu Smart Block", + "Delete": "Löschen", + "Edit...": "", + "Download": "Herunterladen", + "Duplicate Playlist": "Playlist duplizieren", + "Duplicate Smartblock": "", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Aufzeichnung:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Aktuell", + "You are running the latest version": "Sie verwenden die aktuellste Version", + "New version available: ": "Neue Version verfügbar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "Füge 1 Objekt hinzu", + "Adding %s Items": "Füge %s Objekte hinzu", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Hinzufügen", + "New": "", + "Edit": "Bearbeiten", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten bearbeiten", + "Add to selected show": "Zu gewählter Sendung hinzufügen", + "Select": "Auswahl", + "Select this page": "Ganze Seite markieren", + "Deselect this page": "Ganze Seite nicht markieren", + "Deselect all": "Keines Markieren", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "", + "Playlist": "", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "Zuletzt geändert", + "Last Played": "Zuletzt gespielt", + "Length": "Dauer", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ:", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Hochladen wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehler Code:", + "Error msg: ": "Fehlermeldung:", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränkung auf:", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playlist durchgemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein.", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block durchgemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": "Wähle Modifikator", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Storage-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Wollen sie wirklich das Storage-Verzeichnis ändern?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Verwalte Medienverzeichnisse", + "Are you sure you want to remove the watched folder?": "Wollen sie den überwachten Ordner wirklich entfernen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt.", + "Connected to the streaming server": "Mit Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Sendungen können nicht erneut verknüpft werden.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen geplanten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mär", + "Apr": "Apr", + "Jun": "Mai", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "SO", + "Mon": "MO", + "Tue": "DI", + "Wed": "MI", + "Thu": "DO", + "Fri": "FR", + "Sat": "SA", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufzeichnung der aktuellen Sendung stoppen?", + "Ok": "OK", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung leer", + "Recording From Line In": "Aufzeichnen von Line-In", + "Track preview": "Titelvorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alle markieren", + "Select none": "Nichts Markieren", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Gewähltes Objekt entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJ's können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Ordner", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playout Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten zeigen / verbergen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien wählen", + "Add files to the upload queue and click the start button.": "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Hochladen stoppen", + "Start upload": "Hochladen starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "Nicht Verfügbar", + "Drag files here.": "Dateien hierher ziehen", + "File extension error.": "Dateierweiterungsfehler", + "File size error.": "Dateigrößenfehler", + "File count error.": "Dateianzahlfehler", + "Init error.": "Init Fehler", + "HTTP Error.": "HTTP-Fehler", + "Security error.": "Sicherheitsfehler", + "Generic error.": "Allgemeiner Fehler", + "IO error.": "IO-Fehler", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß", + "Error: Invalid file extension: ": "Fehler: Ungültige Dateierweiterung:", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschreibung", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. ", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbenannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung % s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht.", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert", + "Invalid form values.": "Ungültiger Eingabewert", + "Invalid character entered": "Ungültiges Zeichen eingeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefinierte Authentifizierung:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "Wöchentlich", + "every 2 weeks": "jede Zweite Woche", + "every 3 weeks": "jede Dritte Woche", + "every 4 weeks": "jede Vierte Woche", + "monthly": "Monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung am:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach Startdatum liegen.", + "Please select a repeat day": "Bitte Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden", + "End date/time cannot be in the past": "Enddatum / Endzeit darf nicht in der Vergangheit liegen.", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Benutzer suchen:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist nicht einmalig.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Start:", + "Title:": "Titel", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Nummer:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "", + "Start Time": "Beginn", + "End Time": "Ende", + "Interface Timezone:": "Zeitzone Interface", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert.", + "Default Crossfade Duration (s):": "Standarddauer Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Zeitzone Radiostation", + "Week Starts On": "Woche startet mit ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": "Kriterien wählen", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Objekte", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Shuffle Playlist-Inhalt (Durchmischen)", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein.", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein.", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt.", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Wert kann nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Interpret - Titel", + "Station name - Show name": "Radiostation - Sendung", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", + "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", + "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtdauer der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Objekte aus einer verknüpften Sendung können nicht verschoben werden.", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell.", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht festgelegt werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert.", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung von %s am %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "XSPF-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse PLS playlist": "PLS-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse M3U playlist": "M3U-Playlist konnte nicht aufgeschlüsselt werden.", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei ansehen", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung bearbeiten", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert.", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/de_DE.json b/webapp/src/locale/de_DE.json index b3e8b1b935..967277da98 100644 --- a/webapp/src/locale/de_DE.json +++ b/webapp/src/locale/de_DE.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein", - "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", - "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", - "English": "Englisch", - "Afar": "Afar", - "Abkhazian": "Abchasisch", - "Afrikaans": "Afrikaans", - "Amharic": "Amharisch", - "Arabic": "Arabisch", - "Assamese": "Assamesisch", - "Aymara": "Aymarisch", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkirisch", - "Belarusian": "Belarussisch", - "Bulgarian": "Bulgarisch", - "Bihari": "Biharisch", - "Bislama": "Bislamisch", - "Bengali/Bangla": "Bengalisch", - "Tibetan": "Tibetanisch", - "Breton": "Bretonisch", - "Catalan": "Katalanisch", - "Corsican": "Korsisch", - "Czech": "Tschechisch", - "Welsh": "Walisisch", - "Danish": "Dänisch", - "German": "Deutsch", - "Bhutani": "Dzongkha", - "Greek": "Griechisch", - "Esperanto": "Esperanto", - "Spanish": "Spanisch", - "Estonian": "Estnisch", - "Basque": "Baskisch", - "Persian": "Persisch", - "Finnish": "Finnisch", - "Fiji": "Fijianisch", - "Faeroese": "Färöisch", - "French": "Französisch", - "Frisian": "Friesisch", - "Irish": "Irisch", - "Scots/Gaelic": "Schottisches Gälisch", - "Galician": "Galizisch", - "Guarani": "Guarani", - "Gujarati": "Gujaratisch", - "Hausa": "Haussa", - "Hindi": "Hindi", - "Croatian": "Kroatisch", - "Hungarian": "Ungarisch", - "Armenian": "Armenisch", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesisch", - "Icelandic": "Isländisch", - "Italian": "Italienisch", - "Hebrew": "Hebräisch", - "Japanese": "Japanisch", - "Yiddish": "Jiddisch", - "Javanese": "Javanisch", - "Georgian": "Georgisch", - "Kazakh": "Kasachisch", - "Greenlandic": "Kalaallisut", - "Cambodian": "Kambodschanisch", - "Kannada": "Kannada", - "Korean": "Koreanisch", - "Kashmiri": "Kaschmirisch", - "Kurdish": "Kurdisch", - "Kirghiz": "Kirgisisch", - "Latin": "Latein", - "Lingala": "Lingala", - "Laothian": "Laotisch", - "Lithuanian": "Litauisch", - "Latvian/Lettish": "Lettisch", - "Malagasy": "Madagassisch", - "Maori": "Maorisch", - "Macedonian": "Mazedonisch", - "Malayalam": "Malayalam", - "Mongolian": "Mongolisch", - "Moldavian": "Moldavisch", - "Marathi": "Marathi", - "Malay": "Malaysisch", - "Maltese": "Maltesisch", - "Burmese": "Burmesisch", - "Nauru": "Nauruisch", - "Nepali": "Nepalesisch", - "Dutch": "Niederländisch", - "Norwegian": "Norwegisch", - "Occitan": "Okzitanisch", - "(Afan)/Oromoor/Oriya": "Oriya", - "Punjabi": "Pandschabi", - "Polish": "Polnisch", - "Pashto/Pushto": "Paschtu", - "Portuguese": "Portugiesisch", - "Quechua": "Quechua", - "Rhaeto-Romance": "Rätoromanisch", - "Kirundi": "Kirundisch", - "Romanian": "Rumänisch", - "Russian": "Russisch", - "Kinyarwanda": "Kijarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sango", - "Serbo-Croatian": "Serbokroatisch", - "Singhalese": "Singhalesisch", - "Slovak": "Slowakisch", - "Slovenian": "Slowenisch", - "Samoan": "Samoanisch", - "Shona": "Schonisch", - "Somali": "Somalisch", - "Albanian": "Albanisch", - "Serbian": "Serbisch", - "Siswati": "Swasiländisch", - "Sesotho": "Sesothisch", - "Sundanese": "Sundanesisch", - "Swedish": "Schwedisch", - "Swahili": "Swahili", - "Tamil": "Tamilisch", - "Tegulu": "Tegulu", - "Tajik": "Tadschikisch", - "Thai": "Thai", - "Tigrinya": "Tigrinja", - "Turkmen": "Türkmenisch", - "Tagalog": "Tagalog", - "Setswana": "Sezuan", - "Tonga": "Tongaisch", - "Turkish": "Türkisch", - "Tsonga": "Tsongaisch", - "Tatar": "Tatarisch", - "Twi": "Twi", - "Ukrainian": "Ukrainisch", - "Urdu": "Urdu", - "Uzbek": "Usbekisch", - "Vietnamese": "Vietnamesisch", - "Volapuk": "Volapük", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinesisch", - "Zulu": "Zulu", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s.", - "Click the 'New Show' button and fill out the required fields.": "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen.", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "LibreTime Playout Service", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "LibreTime Liquidsoap Service", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "LibreTime API Service", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Radio Seite", - "Calendar": "Kalender", - "Widgets": "Widgets", - "Player": "Player", - "Weekly Schedule": "Wochenprogramm", - "Settings": "Einstellungen", - "General": "Allgemein", - "My Profile": "Mein Profil", - "Users": "Benutzer", - "Track Types": "Track-Typ", - "Streams": "Streams", - "Status": "Status", - "Analytics": "Statistiken", - "Playout History": "Playout Verlauf", - "History Templates": "Verlaufsvorlagen", - "Listener Stats": "Hörerstatistiken", - "Show Listener Stats": "Zuhörer:innen Statistik anzeigen", - "Help": "Hilfe", - "Getting Started": "Kurzanleitung", - "User Manual": "Benutzerhandbuch", - "Get Help Online": "", - "Contribute to LibreTime": "Bei LibreTime mitmachen", - "What's New?": "Was ist neu?", - "You are not allowed to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen", - "You are not allowed to access this resource. ": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", - "File does not exist in %s": "Datei existiert nicht in %s.", - "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben.", - "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig", - "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", - "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", - "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Seite nicht gefunden.", - "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", - "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", - "An internal application error has occurred.": "Ein interner Fehler ist aufgetreten.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Es wurden noch keine Tracks veröffentlicht.", - "%s not found": "%s nicht gefunden", - "Something went wrong.": "Etwas ist falsch gelaufen.", - "Preview": "Vorschau", - "Add to Playlist": "Zur Playlist hinzufügen", - "Add to Smart Block": "Zum Smart Block hinzufügen", - "Delete": "Löschen", - "Edit...": "Bearbeiten …", - "Download": "Herunterladen", - "Duplicate Playlist": "Duplizierte Playlist", - "Duplicate Smartblock": "Smartblock duplizieren", - "No action available": "Keine Aktion verfügbar", - "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", - "Could not delete file because it is scheduled in the future.": "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist.", - "Could not delete file(s).": "Datei(en) konnten nicht gelöscht werden.", - "Copy of %s": "Kopie von %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist.", - "Audio Player": "Audio Player", - "Something went wrong!": "Etwas ist falsch gelaufen!", - "Recording:": "Aufnahme:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Es ist nichts geplant", - "Current Show:": "Aktuelle Sendung:", - "Current": "Jetzt", - "You are running the latest version": "Sie verwenden die neueste Version", - "New version available: ": "Neue Version verfügbar: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "Es ist ein Patch für deine LibreTime Installation verfügbar.", - "A feature update for your LibreTime installation is available.": "Es ist ein Feature-Update für deine LibreTime Installation verfügbar.", - "A major update for your LibreTime installation is available.": "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich.", - "Add to current playlist": "Zu aktueller Playlist hinzufügen", - "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", - "Adding 1 Item": "1 Objekt hinzufügen", - "Adding %s Items": "%s Objekte hinzufügen", - "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", - "Please select a cursor position on timeline.": "Bitte wählen sie eine Cursor-Position auf der Zeitleiste.", - "You haven't added any tracks": "Keine Tracks hinzugefügt", - "You haven't added any playlists": "Keine Playlisten hinzugefügt", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "Keine Smart Blöcke hinzugefügt", - "You haven't added any webstreams": "Keine Webstreams hinzugefügt", - "Learn about tracks": "Erfahre mehr über Tracks", - "Learn about playlists": "Erfahre mehr über Playlisten", - "Learn about podcasts": "Erfahre mehr über Podcasts", - "Learn about smart blocks": "Erfahre mehr über Smart Blöcke", - "Learn about webstreams": "Erfahre mehr über Webstreams", - "Click 'New' to create one.": "", - "Add": "Hinzufüg.", - "New": "", - "Edit": "Ändern", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Veröffentlichen", - "Remove": "Entfernen", - "Edit Metadata": "Metadaten ändern", - "Add to selected show": "Zur ausgewählten Sendungen hinzufügen", - "Select": "Auswählen", - "Select this page": "Wählen sie diese Seite", - "Deselect this page": "Wählen sie diese Seite ab", - "Deselect all": "Alle Abwählen", - "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", - "Scheduled": "Geplant", - "Tracks": "Tracks", - "Playlist": "Playliste", - "Title": "Titel", - "Creator": "Interpret", - "Album": "Album", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Komponist", - "Conductor": "Dirigent", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Sprache", - "Last Modified": "geändert am", - "Last Played": "Zuletzt gespielt", - "Length": "Länge", - "Mime": "Mime", - "Mood": "Stimmung", - "Owner": "Besitzer", - "Replay Gain": "Replay Gain", - "Sample Rate": "Samplerate", - "Track Number": "Titelnummer", - "Uploaded": "Hochgeladen", - "Website": "Webseite", - "Year": "Jahr", - "Loading...": "wird geladen...", - "All": "Alle", - "Files": "Dateien", - "Playlists": "Playlisten", - "Smart Blocks": "Smart Blöcke", - "Web Streams": "Web Streams", - "Unknown type: ": "Unbekannter Typ: ", - "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", - "Uploading in progress...": "Upload wird durchgeführt...", - "Retrieving data from the server...": "Daten werden vom Server abgerufen...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Fehlercode: ", - "Error msg: ": "Fehlermeldung: ", - "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", - "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", - "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", - "My Podcast": "Mein Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?", - "Open Media Builder": "Medienordner", - "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: ", - "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", - "Limit to: ": "Beschränken auf: ", - "Playlist saved": "Playlist gespeichert", - "Playlist shuffled": "Playliste gemischt", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", - "Listener Count on %s: %s": "Hörerzahl %s: %s", - "Remind me in 1 week": "In einer Woche erinnern", - "Remind me never": "Niemals erinnern", - "Yes, help Airtime": "Ja, Airtime helfen", - "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart Block gemischt", - "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", - "Smart block saved": "Smart Block gespeichert", - "Processing...": "In Bearbeitung...", - "Select modifier": " - Attribut - ", - "contains": "enthält", - "does not contain": "enthält nicht", - "is": "ist", - "is not": "ist nicht", - "starts with": "beginnt mit", - "ends with": "endet mit", - "is greater than": "ist größer als", - "is less than": "ist kleiner als", - "is in the range": "ist im Bereich", - "Generate": "Erstellen", - "Choose Storage Folder": "Wähle Speicher-Verzeichnis", - "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", - "Manage Media Folders": "Medienverzeichnisse verwalten", - "Are you sure you want to remove the watched folder?": "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?", - "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt.", - "Connected to the streaming server": "Mit dem Streaming-Server verbunden", - "The stream is disabled": "Der Stream ist deaktiviert", - "Getting information from the server...": "Erhalte Information vom Server...", - "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet.", - "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", - "No result found": "Kein Ergebnis gefunden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", - "Specify custom authentication which will work only for this show.": "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird.", - "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", - "Warning: Shows cannot be re-linked": "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", - "Show": "Sendung", - "Show is empty": "Sendung ist leer", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Daten werden vom Server abgerufen...", - "This show has no scheduled content.": "Diese Sendung hat keinen festgelegten Inhalt.", - "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt.", - "January": "Januar", - "February": "Februar", - "March": "März", - "April": "April", - "May": "Mai", - "June": "Juni", - "July": "Juli", - "August": "August", - "September": "September", - "October": "Oktober", - "November": "November", - "December": "Dezember", - "Jan": "Jan.", - "Feb": "Feb.", - "Mar": "Mrz.", - "Apr": "Apr.", - "Jun": "Jun.", - "Jul": "Jul.", - "Aug": "Aug.", - "Sep": "Sep.", - "Oct": "Okt.", - "Nov": "Nov.", - "Dec": "Dez.", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sonntag", - "Monday": "Montag", - "Tuesday": "Dienstag", - "Wednesday": "Mittwoch", - "Thursday": "Donnerstag", - "Friday": "Freitag", - "Saturday": "Samstag", - "Sun": "So.", - "Mon": "Mo.", - "Tue": "Di.", - "Wed": "Mi.", - "Thu": "Do.", - "Fri": "Fr.", - "Sat": "Sa.", - "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten.", - "Cancel Current Show?": "Aktuelle Sendung abbrechen?", - "Stop recording current show?": "Aufnahme der aktuellen Sendung stoppen?", - "Ok": "Speichern", - "Contents of Show": "Sendungsinhalt", - "Remove all content?": "Gesamten Inhalt entfernen?", - "Delete selected item(s)?": "Gewählte Objekte löschen?", - "Start": "Beginn", - "End": "Ende", - "Duration": "Dauer", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Sendung ist leer", - "Recording From Line In": "Aufnehmen über Line In", - "Track preview": "Titel Vorschau", - "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", - "Moving 1 Item": "Verschiebe 1 Objekt", - "Moving %s Items": "Verschiebe %s Objekte", - "Save": "Speichern", - "Cancel": "Abbrechen", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen", - "Select all": "Alles auswählen", - "Select none": "Nichts auswählen", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Ausgewählte Elemente aus dem Programm entfernen", - "Jump to the current playing track": "Springe zu aktuellem Titel", - "Jump to Current": "", - "Cancel current show": "Aktuelle Sendung abbrechen", - "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", - "Add / Remove Content": "Inhalt hinzufügen / entfernen", - "in use": "In Verwendung", - "Disk": "Disk", - "Look in": "Suchen in", - "Open": "Öffnen", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programm Manager", - "Guest": "Gast", - "Guests can do the following:": "Gäste können folgendes tun:", - "View schedule": "Kalender betrachten", - "View show content": "Sendungsinhalt betrachten", - "DJs can do the following:": "DJs können folgendes tun:", - "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", - "Import media files": "Mediendateien importieren", - "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", - "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", - "Program Managers can do the following:": "", - "View and manage show content": "Sendungsinhalte betrachten und verwalten", - "Schedule shows": "Sendungen festlegen", - "Manage all library content": "Verwalten der gesamten Bibliothek", - "Admins can do the following:": "Admins können folgendes tun:", - "Manage preferences": "Einstellungen verwalten", - "Manage users": "Benutzer verwalten", - "Manage watched folders": "Verwalten überwachter Verzeichnisse", - "Send support feedback": "Support Feedback senden", - "View system status": "System Status betrachten", - "Access playout history": "Zugriff auf Playlist Verlauf", - "View listener stats": "Hörerstatistiken betrachten", - "Show / hide columns": "Spalten auswählen", - "Columns": "", - "From {from} to {to}": "Von {from} bis {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "So", - "Mo": "Mo", - "Tu": "Di", - "We": "Mi", - "Th": "Do", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Schließen", - "Hour": "Stunde", - "Minute": "Minute", - "Done": "Fertig", - "Select files": "Dateien auswählen", - "Add files to the upload queue and click the start button.": "Dateien zur Uploadliste hinzufügen und den Startbutton klicken.", - "Filename": "", - "Size": "", - "Add Files": "Dateien hinzufügen", - "Stop Upload": "Upload stoppen", - "Start upload": "Upload starten", - "Start Upload": "", - "Add files": "Dateien hinzufügen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", - "N/A": "N/A", - "Drag files here.": "Dateien in dieses Feld ziehen.(Drag & Drop)", - "File extension error.": "Fehler in der Dateierweiterung.", - "File size error.": "Fehler in der Dateigröße.", - "File count error.": "Fehler in der Dateianzahl", - "Init error.": "Init Fehler.", - "HTTP Error.": "HTTP Fehler.", - "Security error.": "Sicherheitsfehler.", - "Generic error.": "Allgemeiner Fehler.", - "IO error.": "IO Fehler.", - "File: %s": "Datei: %s", - "%d files queued": "%d Dateien in der Warteschlange", - "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", - "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", - "Error: File too large: ": "Fehler: Datei zu groß: ", - "Error: Invalid file extension: ": "Fehler: ungültige Dateierweiterung: ", - "Set Default": "Standard festlegen", - "Create Entry": "Eintrag erstellen", - "Edit History Record": "Verlaufsprotokoll bearbeiten", - "No Show": "Keine Sendung", - "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "Autor", - "Description": "Beschreibung", - "Link": "Link", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktiviert", - "Disabled": "Deaktiviert", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut.", - "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", - "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine Titel hinzufügen.", - "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung.", - "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", - "Untitled Playlist": "Unbenannte Playlist", - "Untitled Smart Block": "Unbenannter Smart Block", - "Unknown Playlist": "Unbekannte Playlist", - "Preferences updated.": "Einstellungen aktualisiert.", - "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", - "path should be specified": "Pfad muß angegeben werden", - "Problem with Liquidsoap...": "Problem mit Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung %s vom %s um %s", - "Select cursor": "Cursor wählen", - "Remove cursor": "Cursor entfernen", - "show does not exist": "Sendung existiert nicht", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Benutzer erfolgreich hinzugefügt!", - "User updated successfully!": "Benutzer erfolgreich aktualisiert!", - "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", - "Untitled Webstream": "Unbenannter Webstream", - "Webstream saved.": "Webstream gespeichert.", - "Invalid form values.": "Ungültige Formularwerte.", - "Invalid character entered": "Ungültiges Zeichen eingegeben", - "Day must be specified": "Tag muß angegeben werden", - "Time must be specified": "Zeit muß angegeben werden", - "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Benutzerdefiniertes Login:", - "Custom Username": "Benutzerdefinierter Benutzername", - "Custom Password": "Benutzerdefiniertes Passwort", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", - "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", - "Record from Line In?": "Aufzeichnen von Line-In?", - "Rebroadcast?": "Wiederholen?", - "days": "Tage", - "Link:": "Verknüpfen:", - "Repeat Type:": "Wiederholungstyp:", - "weekly": "wöchentlich", - "every 2 weeks": "jede zweite Woche", - "every 3 weeks": "jede dritte Woche", - "every 4 weeks": "jede vierte Woche", - "monthly": "monatlich", - "Select Days:": "Tage wählen:", - "Repeat By:": "Wiederholung von:", - "day of the month": "Tag des Monats", - "day of the week": "Tag der Woche", - "Date End:": "Zeitpunkt Ende:", - "No End?": "Kein Enddatum?", - "End date must be after start date": "Enddatum muß nach dem Startdatum liegen", - "Please select a repeat day": "Bitte einen Tag zum Wiederholen wählen", - "Background Colour:": "Hintergrundfarbe:", - "Text Colour:": "Textfarbe:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Unbenannte Sendung", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Beschreibung:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Dauer:", - "Timezone:": "Zeitzone:", - "Repeats?": "Wiederholungen?", - "Cannot create show in the past": "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden", - "Cannot modify start date/time of the show that is already started": "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat.", - "End date/time cannot be in the past": "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen", - "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", - "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", - "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", - "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", - "Search Users:": "Suche Benutzer:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Benutzername:", - "Password:": "Passwort:", - "Verify Password:": "Passwort bestätigen:", - "Firstname:": "Vorname:", - "Lastname:": "Nachname:", - "Email:": "E-Mail:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Benutzertyp:", - "Login name is not unique.": "Benutzername ist bereits vorhanden.", - "Delete All Tracks in Library": "", - "Date Start:": "Zeitpunkt Beginn:", - "Title:": "Titel:", - "Creator:": "Interpret:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jahr:", - "Label:": "Label:", - "Composer:": "Komponist:", - "Conductor:": "Dirigent:", - "Mood:": "Stimmung:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC-Nr.:", - "Website:": "Webseite:", - "Language:": "Sprache:", - "Publish...": "Veröffentlichen...", - "Start Time": "Startzeit", - "End Time": "Endzeit", - "Interface Timezone:": "Interface Zeitzone:", - "Station Name": "Sendername", - "Station Description": "", - "Station Logo:": "Sender Logo:", - "Note: Anything larger than 600x600 will be resized.": "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert.", - "Default Crossfade Duration (s):": "Standard Crossfade Dauer (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Standard Fade In (s):", - "Default Fade Out (s):": "Standard Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Sendestation Zeitzone", - "Week Starts On": "Woche beginnt am", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Anmeldung", - "Password": "Passwort", - "Confirm new password": "Neues Passwort bestätigen", - "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein.", - "Email": "", - "Username": "Benutzername", - "Reset password": "Passwort zurücksetzen", - "Back": "", - "Now Playing": "Jetzt", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Alle meine Sendungen:", - "My Shows": "", - "Select criteria": " - Kriterien - ", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Stunden", - "minutes": "Minuten", - "items": "Titel", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "Statisch", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", - "Shuffle playlist content": "Inhalt der Playlist Mischen", - "Shuffle": "Mischen", - "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein", - "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", - "The value should be an integer": "Der Wert muß eine ganze Zahl sein", - "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt", - "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", - "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", - "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", - "Value cannot be empty": "Der Wert darf nicht leer sein", - "Stream Label:": "Streambezeichnung:", - "Artist - Title": "Artist - Titel", - "Show - Artist - Title": "Sendung - Artist - Titel", - "Station name - Show name": "Sender - Sendung", - "Off Air Metadata": "Off Air Metadaten", - "Enable Replay Gain": "Replay Gain aktivieren", - "Replay Gain Modifier": "Replay Gain Modifikator", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktiviert:", - "Mobile:": "", - "Stream Type:": "Stream Typ:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Service Typ:", - "Channels:": "Kanäle:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Verzeichnis:", - "Watched Folders:": "Überwachte Verzeichnisse:", - "Not a valid Directory": "Kein gültiges Verzeichnis", - "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'", - "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", - "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", - "Passwords do not match": "Passwörter stimmen nicht überein", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", - "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtlänge der Datei sein.", - "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", - "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Land wählen", - "livestream": "", - "Cannot move items out of linked shows": "Inhalte aus verknüpften Sendungen können nicht verschoben werden", - "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)", - "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)", - "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell!", - "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", - "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", - "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht verändert werden.", - "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", - "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", - "Rebroadcast of %s from %s": "Wiederholung der Sendung %s von %s", - "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", - "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", - "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", - "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", - "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", - "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", - "Could not parse XSPF playlist": "Die XSPF Playlist konnte nicht eingelesen werden", - "Could not parse PLS playlist": "Die PLS Playlist konnte nicht eingelesen werden", - "Could not parse M3U playlist": "Die M3U Playlist konnte nicht eingelesen werden", - "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", - "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", - "Record file doesn't exist": "Aufzeichnung existiert nicht", - "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei anzeigen", - "Schedule Tracks": "Sendungsinhalte verwalten", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Sendung ändern", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Zugriff verweigert", - "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", - "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", - "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", - "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!", - "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Track": "Titel", - "Played": "Abgespielt", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "Englisch", + "Afar": "Afar", + "Abkhazian": "Abchasisch", + "Afrikaans": "Afrikaans", + "Amharic": "Amharisch", + "Arabic": "Arabisch", + "Assamese": "Assamesisch", + "Aymara": "Aymarisch", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkirisch", + "Belarusian": "Belarussisch", + "Bulgarian": "Bulgarisch", + "Bihari": "Biharisch", + "Bislama": "Bislamisch", + "Bengali/Bangla": "Bengalisch", + "Tibetan": "Tibetanisch", + "Breton": "Bretonisch", + "Catalan": "Katalanisch", + "Corsican": "Korsisch", + "Czech": "Tschechisch", + "Welsh": "Walisisch", + "Danish": "Dänisch", + "German": "Deutsch", + "Bhutani": "Dzongkha", + "Greek": "Griechisch", + "Esperanto": "Esperanto", + "Spanish": "Spanisch", + "Estonian": "Estnisch", + "Basque": "Baskisch", + "Persian": "Persisch", + "Finnish": "Finnisch", + "Fiji": "Fijianisch", + "Faeroese": "Färöisch", + "French": "Französisch", + "Frisian": "Friesisch", + "Irish": "Irisch", + "Scots/Gaelic": "Schottisches Gälisch", + "Galician": "Galizisch", + "Guarani": "Guarani", + "Gujarati": "Gujaratisch", + "Hausa": "Haussa", + "Hindi": "Hindi", + "Croatian": "Kroatisch", + "Hungarian": "Ungarisch", + "Armenian": "Armenisch", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesisch", + "Icelandic": "Isländisch", + "Italian": "Italienisch", + "Hebrew": "Hebräisch", + "Japanese": "Japanisch", + "Yiddish": "Jiddisch", + "Javanese": "Javanisch", + "Georgian": "Georgisch", + "Kazakh": "Kasachisch", + "Greenlandic": "Kalaallisut", + "Cambodian": "Kambodschanisch", + "Kannada": "Kannada", + "Korean": "Koreanisch", + "Kashmiri": "Kaschmirisch", + "Kurdish": "Kurdisch", + "Kirghiz": "Kirgisisch", + "Latin": "Latein", + "Lingala": "Lingala", + "Laothian": "Laotisch", + "Lithuanian": "Litauisch", + "Latvian/Lettish": "Lettisch", + "Malagasy": "Madagassisch", + "Maori": "Maorisch", + "Macedonian": "Mazedonisch", + "Malayalam": "Malayalam", + "Mongolian": "Mongolisch", + "Moldavian": "Moldavisch", + "Marathi": "Marathi", + "Malay": "Malaysisch", + "Maltese": "Maltesisch", + "Burmese": "Burmesisch", + "Nauru": "Nauruisch", + "Nepali": "Nepalesisch", + "Dutch": "Niederländisch", + "Norwegian": "Norwegisch", + "Occitan": "Okzitanisch", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Pandschabi", + "Polish": "Polnisch", + "Pashto/Pushto": "Paschtu", + "Portuguese": "Portugiesisch", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rätoromanisch", + "Kirundi": "Kirundisch", + "Romanian": "Rumänisch", + "Russian": "Russisch", + "Kinyarwanda": "Kijarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbokroatisch", + "Singhalese": "Singhalesisch", + "Slovak": "Slowakisch", + "Slovenian": "Slowenisch", + "Samoan": "Samoanisch", + "Shona": "Schonisch", + "Somali": "Somalisch", + "Albanian": "Albanisch", + "Serbian": "Serbisch", + "Siswati": "Swasiländisch", + "Sesotho": "Sesothisch", + "Sundanese": "Sundanesisch", + "Swedish": "Schwedisch", + "Swahili": "Swahili", + "Tamil": "Tamilisch", + "Tegulu": "Tegulu", + "Tajik": "Tadschikisch", + "Thai": "Thai", + "Tigrinya": "Tigrinja", + "Turkmen": "Türkmenisch", + "Tagalog": "Tagalog", + "Setswana": "Sezuan", + "Tonga": "Tongaisch", + "Turkish": "Türkisch", + "Tsonga": "Tsongaisch", + "Tatar": "Tatarisch", + "Twi": "Twi", + "Ukrainian": "Ukrainisch", + "Urdu": "Urdu", + "Uzbek": "Usbekisch", + "Vietnamese": "Vietnamesisch", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinesisch", + "Zulu": "Zulu", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s.", + "Click the 'New Show' button and fill out the required fields.": "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen.", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "LibreTime Playout Service", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "LibreTime Liquidsoap Service", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "LibreTime API Service", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Seite", + "Calendar": "Kalender", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Wochenprogramm", + "Settings": "Einstellungen", + "General": "Allgemein", + "My Profile": "Mein Profil", + "Users": "Benutzer", + "Track Types": "Track-Typ", + "Streams": "Streams", + "Status": "Status", + "Analytics": "Statistiken", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "Zuhörer:innen Statistik anzeigen", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "Bei LibreTime mitmachen", + "What's New?": "Was ist neu?", + "You are not allowed to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen", + "You are not allowed to access this resource. ": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "File does not exist in %s": "Datei existiert nicht in %s.", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Seite nicht gefunden.", + "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", + "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "An internal application error has occurred.": "Ein interner Fehler ist aufgetreten.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Es wurden noch keine Tracks veröffentlicht.", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zur Playlist hinzufügen", + "Add to Smart Block": "Zum Smart Block hinzufügen", + "Delete": "Löschen", + "Edit...": "Bearbeiten …", + "Download": "Herunterladen", + "Duplicate Playlist": "Duplizierte Playlist", + "Duplicate Smartblock": "Smartblock duplizieren", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist.", + "Could not delete file(s).": "Datei(en) konnten nicht gelöscht werden.", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "Etwas ist falsch gelaufen!", + "Recording:": "Aufnahme:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Es ist nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Jetzt", + "You are running the latest version": "Sie verwenden die neueste Version", + "New version available: ": "Neue Version verfügbar: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "Es ist ein Patch für deine LibreTime Installation verfügbar.", + "A feature update for your LibreTime installation is available.": "Es ist ein Feature-Update für deine LibreTime Installation verfügbar.", + "A major update for your LibreTime installation is available.": "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich.", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "1 Objekt hinzufügen", + "Adding %s Items": "%s Objekte hinzufügen", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "Keine Tracks hinzugefügt", + "You haven't added any playlists": "Keine Playlisten hinzugefügt", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Keine Smart Blöcke hinzugefügt", + "You haven't added any webstreams": "Keine Webstreams hinzugefügt", + "Learn about tracks": "Erfahre mehr über Tracks", + "Learn about playlists": "Erfahre mehr über Playlisten", + "Learn about podcasts": "Erfahre mehr über Podcasts", + "Learn about smart blocks": "Erfahre mehr über Smart Blöcke", + "Learn about webstreams": "Erfahre mehr über Webstreams", + "Click 'New' to create one.": "", + "Add": "Hinzufüg.", + "New": "", + "Edit": "Ändern", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Veröffentlichen", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten ändern", + "Add to selected show": "Zur ausgewählten Sendungen hinzufügen", + "Select": "Auswählen", + "Select this page": "Wählen sie diese Seite", + "Deselect this page": "Wählen sie diese Seite ab", + "Deselect all": "Alle Abwählen", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "Tracks", + "Playlist": "Playliste", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "geändert am", + "Last Played": "Zuletzt gespielt", + "Length": "Länge", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ: ", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Upload wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehlercode: ", + "Error msg: ": "Fehlermeldung: ", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "Mein Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?", + "Open Media Builder": "Medienordner", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: ", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränken auf: ", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playliste gemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block gemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": " - Attribut - ", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Speicher-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Medienverzeichnisse verwalten", + "Are you sure you want to remove the watched folder?": "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt.", + "Connected to the streaming server": "Mit dem Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen festgelegten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan.", + "Feb": "Feb.", + "Mar": "Mrz.", + "Apr": "Apr.", + "Jun": "Jun.", + "Jul": "Jul.", + "Aug": "Aug.", + "Sep": "Sep.", + "Oct": "Okt.", + "Nov": "Nov.", + "Dec": "Dez.", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "So.", + "Mon": "Mo.", + "Tue": "Di.", + "Wed": "Mi.", + "Thu": "Do.", + "Fri": "Fr.", + "Sat": "Sa.", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufnahme der aktuellen Sendung stoppen?", + "Ok": "Speichern", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung ist leer", + "Recording From Line In": "Aufnehmen über Line In", + "Track preview": "Titel Vorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alles auswählen", + "Select none": "Nichts auswählen", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ausgewählte Elemente aus dem Programm entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJs können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Verzeichnisse", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playlist Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten auswählen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien auswählen", + "Add files to the upload queue and click the start button.": "Dateien zur Uploadliste hinzufügen und den Startbutton klicken.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Upload stoppen", + "Start upload": "Upload starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "N/A", + "Drag files here.": "Dateien in dieses Feld ziehen.(Drag & Drop)", + "File extension error.": "Fehler in der Dateierweiterung.", + "File size error.": "Fehler in der Dateigröße.", + "File count error.": "Fehler in der Dateianzahl", + "Init error.": "Init Fehler.", + "HTTP Error.": "HTTP Fehler.", + "Security error.": "Sicherheitsfehler.", + "Generic error.": "Allgemeiner Fehler.", + "IO error.": "IO Fehler.", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß: ", + "Error: Invalid file extension: ": "Fehler: ungültige Dateierweiterung: ", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "Autor", + "Description": "Beschreibung", + "Link": "Link", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung.", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbekannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert.", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung %s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert.", + "Invalid form values.": "Ungültige Formularwerte.", + "Invalid character entered": "Ungültiges Zeichen eingegeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefiniertes Login:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "wöchentlich", + "every 2 weeks": "jede zweite Woche", + "every 3 weeks": "jede dritte Woche", + "every 4 weeks": "jede vierte Woche", + "monthly": "monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung von:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach dem Startdatum liegen", + "Please select a repeat day": "Bitte einen Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat.", + "End date/time cannot be in the past": "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Suche Benutzer:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist bereits vorhanden.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Beginn:", + "Title:": "Titel:", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC-Nr.:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "Veröffentlichen...", + "Start Time": "Startzeit", + "End Time": "Endzeit", + "Interface Timezone:": "Interface Zeitzone:", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert.", + "Default Crossfade Duration (s):": "Standard Crossfade Dauer (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Sendestation Zeitzone", + "Week Starts On": "Woche beginnt am", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein.", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": " - Kriterien - ", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Titel", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Inhalt der Playlist Mischen", + "Shuffle": "Mischen", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Der Wert darf nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Artist - Titel", + "Station name - Show name": "Sender - Sendung", + "Off Air Metadata": "Off Air Metadaten", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'", + "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", + "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtlänge der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Inhalte aus verknüpften Sendungen können nicht verschoben werden", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell!", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht verändert werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung der Sendung %s von %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "Die XSPF Playlist konnte nicht eingelesen werden", + "Could not parse PLS playlist": "Die PLS Playlist konnte nicht eingelesen werden", + "Could not parse M3U playlist": "Die M3U Playlist konnte nicht eingelesen werden", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufzeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei anzeigen", + "Schedule Tracks": "Sendungsinhalte verwalten", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung ändern", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/el_GR.json b/webapp/src/locale/el_GR.json index e08e8b5294..c50d83d4c7 100644 --- a/webapp/src/locale/el_GR.json +++ b/webapp/src/locale/el_GR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία", - "%s:%s:%s is not a valid time": "%s : %s : %s δεν αποτελεί έγκυρη ώρα", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Ημερολόγιο", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Xρήστες", - "Track Types": "", - "Streams": "Streams", - "Status": "Κατάσταση", - "Analytics": "", - "Playout History": "Ιστορικό Playout", - "History Templates": "Ιστορικό Template", - "Listener Stats": "Στατιστικές Ακροατών", - "Show Listener Stats": "", - "Help": "Βοήθεια", - "Getting Started": "Έναρξη", - "User Manual": "Εγχειρίδιο Χρήστη", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα", - "You are not allowed to access this resource. ": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε.", - "Bad request. 'mode' parameter is invalid": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη", - "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", - "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", - "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s δεν βρέθηκε", - "Something went wrong.": "Κάτι πήγε στραβά.", - "Preview": "Προεπισκόπηση", - "Add to Playlist": "Προσθήκη στη λίστα αναπαραγωγής", - "Add to Smart Block": "Προσθήκη στο Smart Block", - "Delete": "Διαγραφή", - "Edit...": "", - "Download": "Λήψη", - "Duplicate Playlist": "Αντιγραφή Λίστας Αναπαραγωγής", - "Duplicate Smartblock": "", - "No action available": "Καμία διαθέσιμη δράση", - "You don't have permission to delete selected items.": "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Αντιγραφή από %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams.", - "Audio Player": "Αναπαραγωγή ήχου", - "Something went wrong!": "", - "Recording:": "Εγγραφή", - "Master Stream": "Κύριο Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Τίποτα δεν έχει προγραμματιστεί", - "Current Show:": "Τρέχουσα Εκπομπή:", - "Current": "Τρέχουσα", - "You are running the latest version": "Χρησιμοποιείτε την τελευταία έκδοση", - "New version available: ": "Νέα έκδοση διαθέσιμη: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής", - "Add to current smart block": "Προσθήκη στο τρέχον smart block", - "Adding 1 Item": "Προσθήκη 1 Στοιχείου", - "Adding %s Items": "Προσθήκη %s στοιχείου/ων", - "You can only add tracks to smart blocks.": "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής.", - "Please select a cursor position on timeline.": "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Προσθήκη", - "New": "", - "Edit": "Επεξεργασία", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Αφαίρεση", - "Edit Metadata": "Επεξεργασία Μεταδεδομένων", - "Add to selected show": "Προσθήκη στην επιλεγμένη εκπομπή", - "Select": "Επιλογή", - "Select this page": "Επιλέξτε αυτή τη σελίδα", - "Deselect this page": "Καταργήστε αυτήν την σελίδα", - "Deselect all": "Κατάργηση όλων", - "Are you sure you want to delete the selected item(s)?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;", - "Scheduled": "Προγραμματισμένο", - "Tracks": "", - "Playlist": "", - "Title": "Τίτλος", - "Creator": "Δημιουργός", - "Album": "Album", - "Bit Rate": "Ρυθμός Bit", - "BPM": "BPM", - "Composer": "Συνθέτης", - "Conductor": "Ενορχήστρωση", - "Copyright": "Copyright", - "Encoded By": "Κωδικοποιήθηκε από", - "Genre": "Είδος", - "ISRC": "ISRC", - "Label": "Εταιρεία", - "Language": "Γλώσσα", - "Last Modified": "Τελευταία τροποποίηση", - "Last Played": "Τελευταία αναπαραγωγή", - "Length": "Διάρκεια", - "Mime": "Μίμος", - "Mood": "Διάθεση", - "Owner": "Ιδιοκτήτης", - "Replay Gain": "Κέρδος Επανάληψης", - "Sample Rate": "Ρυθμός δειγματοληψίας", - "Track Number": "Αριθμός Κομματιού", - "Uploaded": "Φορτώθηκε", - "Website": "Ιστοσελίδα", - "Year": "Έτος", - "Loading...": "Φόρτωση...", - "All": "Όλα", - "Files": "Αρχεία", - "Playlists": "Λίστες αναπαραγωγής", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Άγνωστος τύπος: ", - "Are you sure you want to delete the selected item?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;", - "Uploading in progress...": "Ανέβασμα σε εξέλιξη...", - "Retrieving data from the server...": "Ανάκτηση δεδομένων από τον διακομιστή...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Κωδικός σφάλματος: ", - "Error msg: ": "Μήνυμα σφάλματος: ", - "Input must be a positive number": "Το input πρέπει να είναι θετικός αριθμός", - "Input must be a number": "Το input πρέπει να είναι αριθμός", - "Input must be in the format: yyyy-mm-dd": "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη", - "Input must be in the format: hh:mm:ss.t": "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;", - "Open Media Builder": "Άνοιγμα Δημιουργού Πολυμέσων", - "please put in a time '00:00:00 (.0)'": "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: ", - "Dynamic block is not previewable": "Αδύνατη η προεπισκόπιση του δυναμικού block", - "Limit to: ": "Όριο για: ", - "Playlist saved": "Οι λίστες αναπαραγωγής αποθηκεύτηκαν", - "Playlist shuffled": "Ανασχηματισμός λίστας αναπαραγωγής", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια.", - "Listener Count on %s: %s": "Καταμέτρηση Ακροατών για %s : %s", - "Remind me in 1 week": "Υπενθύμιση σε 1 εβδομάδα", - "Remind me never": "Καμία υπενθύμιση", - "Yes, help Airtime": "Ναι, βοηθώ το Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif ", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν", - "Smart block saved": "Το Smart block αποθηκεύτηκε", - "Processing...": "Επεξεργασία...", - "Select modifier": "Επιλέξτε τροποποιητή", - "contains": "περιέχει", - "does not contain": "δεν περιέχει", - "is": "είναι", - "is not": "δεν είναι", - "starts with": "ξεκινά με", - "ends with": "τελειώνει με", - "is greater than": "είναι μεγαλύτερος από", - "is less than": "είναι μικρότερος από", - "is in the range": "είναι στην κλίμακα", - "Generate": "Δημιουργία", - "Choose Storage Folder": "Επιλογή Φακέλου Αποθήκευσης", - "Choose Folder to Watch": "Επιλογή Φακέλου για Προβολή", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\nΑυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!", - "Manage Media Folders": "Διαχείριση Φακέλων Πολυμέσων", - "Are you sure you want to remove the watched folder?": "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;", - "This path is currently not accessible.": "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται.", - "Connected to the streaming server": "Συνδέθηκε με τον διακομιστή streaming ", - "The stream is disabled": "Το stream είναι απενεργοποιημένο", - "Getting information from the server...": "Λήψη πληροφοριών από το διακομιστή...", - "Can not connect to the streaming server": "Αδύνατη η σύνδεση με τον διακομιστή streaming ", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών.", - "Warning: You cannot change this field while the show is currently playing": "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής ", - "No result found": "Δεν βρέθηκαν αποτελέσματα", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν.", - "Specify custom authentication which will work only for this show.": "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή.", - "The show instance doesn't exist anymore!": "Η εκπομπή δεν υπάρχει πια!", - "Warning: Shows cannot be re-linked": "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη ", - "Show": "Εκπομπή", - "Show is empty": "Η εκπομπή είναι άδεια", - "1m": "1λ", - "5m": "5λ", - "10m": "10λ", - "15m": "15λ", - "30m": "30λ", - "60m": "60λ", - "Retreiving data from the server...": "Ανάκτηση δεδομένων από το διακομιστή...", - "This show has no scheduled content.": "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο.", - "This show is not completely filled with content.": "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο ", - "January": "Ιανουάριος", - "February": "Φεβρουάριος", - "March": "Μάρτιος", - "April": "Απρίλης", - "May": "Μάιος", - "June": "Ιούνιος", - "July": "Ιούλιος", - "August": "Αύγουστος", - "September": "Σεπτέμβριος", - "October": "Οκτώβριος", - "November": "Νοέμβριος", - "December": "Δεκέμβριος", - "Jan": "Ιαν", - "Feb": "Φεβ", - "Mar": "Μαρ", - "Apr": "Απρ", - "Jun": "Ιουν", - "Jul": "Ιουλ", - "Aug": "Αυγ", - "Sep": "Σεπ", - "Oct": "Οκτ", - "Nov": "Νοε", - "Dec": "Δεκ", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Κυριακή", - "Monday": "Δευτέρα", - "Tuesday": "Τρίτη", - "Wednesday": "Τετάρτη", - "Thursday": "Πέμπτη", - "Friday": "Παρασκευή", - "Saturday": "Σάββατο", - "Sun": "Κυρ", - "Mon": "Δευ", - "Tue": "Τρι", - "Wed": "Τετ", - "Thu": "Πεμ", - "Fri": "Παρ", - "Sat": "Σαβ", - "Shows longer than their scheduled time will be cut off by a following show.": "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή.", - "Cancel Current Show?": "Ακύρωση Τρέχουσας Εκπομπής;", - "Stop recording current show?": "Πάυση ηχογράφησης τρέχουσας εκπομπής;", - "Ok": "Οκ", - "Contents of Show": "Περιεχόμενα Εκπομπής", - "Remove all content?": "Αφαίρεση όλου του περιεχομένου;", - "Delete selected item(s)?": "Διαγραφή επιλεγμένου στοιχείου/ων;", - "Start": "Έναρξη", - "End": "Τέλος", - "Duration": "Διάρκεια", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Η εκπομπή είναι άδεια", - "Recording From Line In": "Ηχογράφηση Από Line In", - "Track preview": "Προεπισκόπηση κομματιού", - "Cannot schedule outside a show.": "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής.", - "Moving 1 Item": "Μετακίνηση 1 Στοιχείου", - "Moving %s Items": "Μετακίνηση Στοιχείων %s", - "Save": "Αποθήκευση", - "Cancel": "Ακύρωση", - "Fade Editor": "Επεξεργαστής Fade", - "Cue Editor": "Επεξεργαστής Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API", - "Select all": "Επιλογή όλων", - "Select none": "Καμία Επιλογή", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων ", - "Jump to the current playing track": "Μετάβαση στο τρέχον κομμάτι ", - "Jump to Current": "", - "Cancel current show": "Ακύρωση τρέχουσας εκπομπής", - "Open library to add or remove content": "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου", - "Add / Remove Content": "Προσθήκη / Αφαίρεση Περιεχομένου", - "in use": "σε χρήση", - "Disk": "Δίσκος", - "Look in": "Κοιτάξτε σε", - "Open": "Άνοιγμα", - "Admin": "Διαχειριστής", - "DJ": "DJ", - "Program Manager": "Διευθυντής Προγράμματος", - "Guest": "Επισκέπτης", - "Guests can do the following:": "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω", - "View schedule": "Προβολή Προγράμματος", - "View show content": "Προβολή περιεχομένου εκπομπής", - "DJs can do the following:": "Οι DJ μπορούν να κάνουν τα παρακάτω", - "Manage assigned show content": "Διαχείριση ανατεθημένου περιεχομένου εκπομπής", - "Import media files": "Εισαγωγή αρχείων πολυμέσων", - "Create playlists, smart blocks, and webstreams": "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams ", - "Manage their own library content": "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης", - "Program Managers can do the following:": "", - "View and manage show content": "Προβολή και διαχείριση περιεχομένου εκπομπής", - "Schedule shows": "Πρόγραμμα εκπομπών", - "Manage all library content": "Διαχείριση όλου του περιεχομένου βιβλιοθήκης", - "Admins can do the following:": "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:", - "Manage preferences": "Διαχείριση προτιμήσεων", - "Manage users": "Διαχείριση Χρηστών", - "Manage watched folders": "Διαχείριση προβεβλημένων φακέλων ", - "Send support feedback": "Αποστολή Σχολίων Υποστήριξης", - "View system status": "Προβολή κατάστασης συστήματος", - "Access playout history": "Πρόσβαση στην ιστορία playout", - "View listener stats": "Προβολή στατιστικών των ακροατών", - "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", - "Columns": "", - "From {from} to {to}": "Από {από} σε {σε}", - "kbps": "Kbps", - "yyyy-mm-dd": "εεεε-μμ-ηη", - "hh:mm:ss.t": "ωω:λλ:δδ.t", - "kHz": "kHz", - "Su": "Κυ", - "Mo": "Δε", - "Tu": "Τρ", - "We": "Τε", - "Th": "Πε", - "Fr": "Πα", - "Sa": "Σα", - "Close": "Κλείσιμο", - "Hour": "Ώρα", - "Minute": "Λεπτό", - "Done": "Ολοκληρώθηκε", - "Select files": "Επιλογή αρχείων", - "Add files to the upload queue and click the start button.": "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης", - "Filename": "", - "Size": "", - "Add Files": "Προσθήκη Αρχείων", - "Stop Upload": "Στάση Ανεβάσματος", - "Start upload": "Έναρξη ανεβάσματος", - "Start Upload": "", - "Add files": "Προσθήκη αρχείων", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Ανέβηκαν %d/%d αρχεία", - "N/A": "N/A", - "Drag files here.": "Σύρετε αρχεία εδώ.", - "File extension error.": "Σφάλμα επέκτασης αρχείου.", - "File size error.": "Σφάλμα μεγέθους αρχείου.", - "File count error.": "Σφάλμα μέτρησης αρχείων.", - "Init error.": "Σφάλμα αρχικοποίησης.", - "HTTP Error.": "Σφάλμα HTTP.", - "Security error.": "Σφάλμα ασφάλειας.", - "Generic error.": "Γενικό σφάλμα.", - "IO error.": "Σφάλμα IO", - "File: %s": "Αρχείο: %s", - "%d files queued": "%d αρχεία σε αναμονή", - "File: %f, size: %s, max file size: %m": "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m", - "Upload URL might be wrong or doesn't exist": "Το URL είτε είναι λάθος ή δεν υφίσταται", - "Error: File too large: ": "Σφάλμα: Πολύ μεγάλο αρχείο: ", - "Error: Invalid file extension: ": "Σφάλμα: Μη έγκυρη προέκταση αρχείου: ", - "Set Default": "Ως Προεπιλογή", - "Create Entry": "Δημιουργία Εισόδου", - "Edit History Record": "Επεξεργασία Ιστορικού", - "No Show": "Καμία Εκπομπή", - "Copied %s row%s to the clipboard": "Αντιγράφηκαν %s σειρές%s στο πρόχειρο", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Περιγραφή", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ενεργοποιημένο", - "Disabled": "Απενεργοποιημένο", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά.", - "You are viewing an older version of %s": "Βλέπετε μια παλαιότερη έκδοση του %s", - "You cannot add tracks to dynamic blocks.": "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks.", - "You don't have permission to delete selected %s(s).": "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s).", - "You can only add tracks to smart block.": "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block.", - "Untitled Playlist": "Λίστα Αναπαραγωγής χωρίς Τίτλο", - "Untitled Smart Block": "Smart Block χωρίς Τίτλο", - "Unknown Playlist": "Άγνωστη λίστα αναπαραγωγής", - "Preferences updated.": "Οι προτιμήσεις ενημερώθηκαν.", - "Stream Setting Updated.": "Η Ρύθμιση Stream Ενημερώθηκε.", - "path should be specified": "η διαδρομή πρέπει να καθοριστεί", - "Problem with Liquidsoap...": "Πρόβλημα με Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Αναμετάδοση της εκπομπής %s από %s σε %s", - "Select cursor": "Επιλέξτε cursor", - "Remove cursor": "Αφαίρεση cursor", - "show does not exist": "η εκπομπή δεν υπάρχει", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Ο χρήστης προστέθηκε επιτυχώς!", - "User updated successfully!": "Ο χρήστης ενημερώθηκε με επιτυχία!", - "Settings updated successfully!": "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!", - "Untitled Webstream": "Webstream χωρίς Τίτλο", - "Webstream saved.": "Το Webstream αποθηκεύτηκε.", - "Invalid form values.": "Άκυρες μορφές αξίας.", - "Invalid character entered": "Εισαγωγή άκυρου χαρακτήρα", - "Day must be specified": "Η μέρα πρέπει να προσδιοριστεί", - "Time must be specified": "Η ώρα πρέπει να προσδιοριστεί", - "Must wait at least 1 hour to rebroadcast": "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Χρήση Προσαρμοσμένης Ταυτοποίησης:", - "Custom Username": "Προσαρμοσμένο Όνομα Χρήστη", - "Custom Password": "Προσαρμοσμένος Κωδικός Πρόσβασης", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό.", - "Password field cannot be empty.": "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό.", - "Record from Line In?": "Ηχογράφηση από Line In;", - "Rebroadcast?": "Αναμετάδοση;", - "days": "ημέρες", - "Link:": "Σύνδεσμος", - "Repeat Type:": "Τύπος Επανάληψης:", - "weekly": "εβδομαδιαία", - "every 2 weeks": "κάθε 2 εβδομάδες", - "every 3 weeks": "κάθε 3 εβδομάδες", - "every 4 weeks": "κάθε 4 εβδομάδες", - "monthly": "μηνιαία", - "Select Days:": "Επιλέξτε Ημέρες:", - "Repeat By:": "Επανάληψη από:", - "day of the month": "ημέρα του μήνα", - "day of the week": "ημέρα της εβδομάδας", - "Date End:": "Ημερομηνία Λήξης:", - "No End?": "Χωρίς Τέλος;", - "End date must be after start date": "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης", - "Please select a repeat day": "Επιλέξτε ημέρα επανάληψης", - "Background Colour:": "Χρώμα Φόντου:", - "Text Colour:": "Χρώμα Κειμένου:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Όνομα:", - "Untitled Show": "Εκπομπή χωρίς Τίτλο", - "URL:": "Διεύθυνση URL:", - "Genre:": "Είδος:", - "Description:": "Περιγραφή:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Διάρκεια:", - "Timezone:": "Ζώνη Ώρας", - "Repeats?": "Επαναλήψεις;", - "Cannot create show in the past": "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν", - "Cannot modify start date/time of the show that is already started": "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει", - "End date/time cannot be in the past": "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν", - "Cannot have duration < 0m": "Δεν μπορεί να έχει διάρκεια < 0m", - "Cannot have duration 00h 00m": "Δεν μπορεί να έχει διάρκεια 00h 00m", - "Cannot have duration greater than 24h": "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες", - "Cannot schedule overlapping shows": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών", - "Search Users:": "Αναζήτηση Χρηστών:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Όνομα Χρήστη:", - "Password:": "Κωδικός πρόσβασης:", - "Verify Password:": "Επαλήθευση κωδικού πρόσβασης", - "Firstname:": "Όνομα:", - "Lastname:": "Επώνυμο:", - "Email:": "Email:", - "Mobile Phone:": "Κινητό Τηλέφωνο:", - "Skype:": "Skype", - "Jabber:": "Jabber", - "User Type:": "Τύπος Χρήστη:", - "Login name is not unique.": "Το όνομα εισόδου δεν είναι μοναδικό.", - "Delete All Tracks in Library": "", - "Date Start:": "Ημερομηνία Έναρξης:", - "Title:": "Τίτλος:", - "Creator:": "Δημιουργός:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Έτος", - "Label:": "Δισκογραφική:", - "Composer:": "Συνθέτης:", - "Conductor:": "Μαέστρος:", - "Mood:": "Διάθεση:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Αριθμός ISRC:", - "Website:": "Ιστοσελίδα:", - "Language:": "Γλώσσα:", - "Publish...": "", - "Start Time": "Ώρα Έναρξης", - "End Time": "Ώρα Τέλους", - "Interface Timezone:": "Interface Ζώνης ώρας:", - "Station Name": "Όνομα Σταθμού", - "Station Description": "", - "Station Logo:": "Λογότυπο Σταθμού:", - "Note: Anything larger than 600x600 will be resized.": "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος.", - "Default Crossfade Duration (s):": "Προεπιλεγμένη Διάρκεια Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Προεπιλεγμένο Fade In (s):", - "Default Fade Out (s):": "Προεπιλεγμένο Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Ζώνη Ώρας Σταθμού", - "Week Starts On": "Η Εβδομάδα αρχίζει ", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Σύνδεση", - "Password": "Κωδικός πρόσβασης", - "Confirm new password": "Επιβεβαίωση νέου κωδικού πρόσβασης", - "Password confirmation does not match your password.": "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας.", - "Email": "", - "Username": "Όνομα Χρήστη", - "Reset password": "Επαναφορά κωδικού πρόσβασης", - "Back": "", - "Now Playing": "Αναπαραγωγή σε Εξέλιξη", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Όλες οι Εκπομπές μου:", - "My Shows": "", - "Select criteria": "Επιλέξτε κριτήρια", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Ρυθμός Δειγματοληψίας (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "ώρες", - "minutes": "λεπτά", - "items": "στοιχεία", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Δυναμικό", - "Static": "Στατικό", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων", - "Shuffle playlist content": "Περιεχόμενο λίστας Shuffle ", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0", - "Limit cannot be more than 24 hrs": "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες", - "The value should be an integer": "Η τιμή πρέπει να είναι ακέραιος αριθμός", - "500 is the max item limit value you can set": "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε", - "You must select Criteria and Modifier": "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή", - "'Length' should be in '00:00:00' format": "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Η τιμή πρέπει να είναι αριθμός", - "The value should be less then 2147483648": "Η τιμή πρέπει να είναι μικρότερη από 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες", - "Value cannot be empty": "Η αξία δεν μπορεί να είναι κενή", - "Stream Label:": "Stream Label:", - "Artist - Title": "Καλλιτέχνης - Τίτλος", - "Show - Artist - Title": "Εκπομπή - Καλλιτέχνης - Τίτλος", - "Station name - Show name": "Όνομα Σταθμού - Όνομα Εκπομπής", - "Off Air Metadata": "Μεταδεδομένα Off Air", - "Enable Replay Gain": "Ενεργοποίηση Επανάληψη Κέρδους", - "Replay Gain Modifier": "Τροποποιητής Επανάληψης Κέρδους", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Ενεργοποιημένο", - "Mobile:": "", - "Stream Type:": "Τύπος Stream:", - "Bit Rate:": "Ρυθμός Δεδομένων:", - "Service Type:": "Τύπος Υπηρεσίας:", - "Channels:": "Κανάλια", - "Server": "Διακομιστής", - "Port": "Θύρα", - "Mount Point": "Σημείο Προσάρτησης", - "Name": "Ονομασία", - "URL": "Διεύθυνση URL:", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Εισαγωγή Φακέλου:", - "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", - "Not a valid Directory": "Μη έγκυρο Ευρετήριο", - "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", - "'%value%' is less than %min% characters long": "'%value%' είναι λιγότερο από %min% χαρακτήρες ", - "'%value%' is more than %max% characters long": "'%value%' είναι περισσότερο από %max% χαρακτήρες ", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά", - "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in και cue out είναι μηδέν.", - "Can't set cue out to be greater than file length.": "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου.", - "Can't set cue in to be larger than cue out.": "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out.", - "Can't set cue out to be smaller than cue in.": "Το cue out δεν μπορεί να είναι μικρότερο από το cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Επιλέξτε Χώρα", - "livestream": "", - "Cannot move items out of linked shows": "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη.", - "The schedule you're viewing is out of date! (sched mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)", - "The schedule you're viewing is out of date! (instance mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)", - "The schedule you're viewing is out of date!": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!", - "You are not allowed to schedule show %s.": "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s..", - "You cannot add files to recording shows.": "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές.", - "The show %s is over and cannot be scheduled.": "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί.", - "The show %s has been previously updated!": "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Ένα επιλεγμένο αρχείο δεν υπάρχει!", - "Shows can have a max length of 24 hours.": "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της.", - "Rebroadcast of %s from %s": "Αναμετάδοση του %s από %s", - "Length needs to be greater than 0 minutes": "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά", - "Length should be of form \"00h 00m\"": "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"", - "URL should be of form \"https://example.org\"": "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"", - "URL should be 512 characters or less": "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες ", - "No MIME type found for webstream.": "Δεν βρέθηκε τύπος MIME για webstream.", - "Webstream name cannot be empty": "Το όνομα του webstream δεν μπορεί να είναι κενό", - "Could not parse XSPF playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF ", - "Could not parse PLS playlist": "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS", - "Could not parse M3U playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U", - "Invalid webstream - This appears to be a file download.": "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης.", - "Unrecognized stream type: %s": "Άγνωστος τύπος stream: %s", - "Record file doesn't exist": "Το αρχείο δεν υπάρχει", - "View Recorded File Metadata": "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων ", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Επεξεργασία Εκπομπής", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Δεν έχετε δικαίωμα πρόσβασης", - "Can't drag and drop repeating shows": "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών", - "Can't move a past show": "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής", - "Can't move show into past": "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της.", - "Show was deleted because recorded show does not exist!": "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!", - "Must wait 1 hour to rebroadcast.": "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση.", - "Track": "Κομμάτι", - "Played": "Παίχτηκε", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία", + "%s:%s:%s is not a valid time": "%s : %s : %s δεν αποτελεί έγκυρη ώρα", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Ημερολόγιο", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Xρήστες", + "Track Types": "", + "Streams": "Streams", + "Status": "Κατάσταση", + "Analytics": "", + "Playout History": "Ιστορικό Playout", + "History Templates": "Ιστορικό Template", + "Listener Stats": "Στατιστικές Ακροατών", + "Show Listener Stats": "", + "Help": "Βοήθεια", + "Getting Started": "Έναρξη", + "User Manual": "Εγχειρίδιο Χρήστη", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα", + "You are not allowed to access this resource. ": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε.", + "Bad request. 'mode' parameter is invalid": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη", + "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", + "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", + "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s δεν βρέθηκε", + "Something went wrong.": "Κάτι πήγε στραβά.", + "Preview": "Προεπισκόπηση", + "Add to Playlist": "Προσθήκη στη λίστα αναπαραγωγής", + "Add to Smart Block": "Προσθήκη στο Smart Block", + "Delete": "Διαγραφή", + "Edit...": "", + "Download": "Λήψη", + "Duplicate Playlist": "Αντιγραφή Λίστας Αναπαραγωγής", + "Duplicate Smartblock": "", + "No action available": "Καμία διαθέσιμη δράση", + "You don't have permission to delete selected items.": "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Αντιγραφή από %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams.", + "Audio Player": "Αναπαραγωγή ήχου", + "Something went wrong!": "", + "Recording:": "Εγγραφή", + "Master Stream": "Κύριο Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Τίποτα δεν έχει προγραμματιστεί", + "Current Show:": "Τρέχουσα Εκπομπή:", + "Current": "Τρέχουσα", + "You are running the latest version": "Χρησιμοποιείτε την τελευταία έκδοση", + "New version available: ": "Νέα έκδοση διαθέσιμη: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής", + "Add to current smart block": "Προσθήκη στο τρέχον smart block", + "Adding 1 Item": "Προσθήκη 1 Στοιχείου", + "Adding %s Items": "Προσθήκη %s στοιχείου/ων", + "You can only add tracks to smart blocks.": "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής.", + "Please select a cursor position on timeline.": "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Προσθήκη", + "New": "", + "Edit": "Επεξεργασία", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Αφαίρεση", + "Edit Metadata": "Επεξεργασία Μεταδεδομένων", + "Add to selected show": "Προσθήκη στην επιλεγμένη εκπομπή", + "Select": "Επιλογή", + "Select this page": "Επιλέξτε αυτή τη σελίδα", + "Deselect this page": "Καταργήστε αυτήν την σελίδα", + "Deselect all": "Κατάργηση όλων", + "Are you sure you want to delete the selected item(s)?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;", + "Scheduled": "Προγραμματισμένο", + "Tracks": "", + "Playlist": "", + "Title": "Τίτλος", + "Creator": "Δημιουργός", + "Album": "Album", + "Bit Rate": "Ρυθμός Bit", + "BPM": "BPM", + "Composer": "Συνθέτης", + "Conductor": "Ενορχήστρωση", + "Copyright": "Copyright", + "Encoded By": "Κωδικοποιήθηκε από", + "Genre": "Είδος", + "ISRC": "ISRC", + "Label": "Εταιρεία", + "Language": "Γλώσσα", + "Last Modified": "Τελευταία τροποποίηση", + "Last Played": "Τελευταία αναπαραγωγή", + "Length": "Διάρκεια", + "Mime": "Μίμος", + "Mood": "Διάθεση", + "Owner": "Ιδιοκτήτης", + "Replay Gain": "Κέρδος Επανάληψης", + "Sample Rate": "Ρυθμός δειγματοληψίας", + "Track Number": "Αριθμός Κομματιού", + "Uploaded": "Φορτώθηκε", + "Website": "Ιστοσελίδα", + "Year": "Έτος", + "Loading...": "Φόρτωση...", + "All": "Όλα", + "Files": "Αρχεία", + "Playlists": "Λίστες αναπαραγωγής", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Άγνωστος τύπος: ", + "Are you sure you want to delete the selected item?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;", + "Uploading in progress...": "Ανέβασμα σε εξέλιξη...", + "Retrieving data from the server...": "Ανάκτηση δεδομένων από τον διακομιστή...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Κωδικός σφάλματος: ", + "Error msg: ": "Μήνυμα σφάλματος: ", + "Input must be a positive number": "Το input πρέπει να είναι θετικός αριθμός", + "Input must be a number": "Το input πρέπει να είναι αριθμός", + "Input must be in the format: yyyy-mm-dd": "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη", + "Input must be in the format: hh:mm:ss.t": "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;", + "Open Media Builder": "Άνοιγμα Δημιουργού Πολυμέσων", + "please put in a time '00:00:00 (.0)'": "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: ", + "Dynamic block is not previewable": "Αδύνατη η προεπισκόπιση του δυναμικού block", + "Limit to: ": "Όριο για: ", + "Playlist saved": "Οι λίστες αναπαραγωγής αποθηκεύτηκαν", + "Playlist shuffled": "Ανασχηματισμός λίστας αναπαραγωγής", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια.", + "Listener Count on %s: %s": "Καταμέτρηση Ακροατών για %s : %s", + "Remind me in 1 week": "Υπενθύμιση σε 1 εβδομάδα", + "Remind me never": "Καμία υπενθύμιση", + "Yes, help Airtime": "Ναι, βοηθώ το Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif ", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν", + "Smart block saved": "Το Smart block αποθηκεύτηκε", + "Processing...": "Επεξεργασία...", + "Select modifier": "Επιλέξτε τροποποιητή", + "contains": "περιέχει", + "does not contain": "δεν περιέχει", + "is": "είναι", + "is not": "δεν είναι", + "starts with": "ξεκινά με", + "ends with": "τελειώνει με", + "is greater than": "είναι μεγαλύτερος από", + "is less than": "είναι μικρότερος από", + "is in the range": "είναι στην κλίμακα", + "Generate": "Δημιουργία", + "Choose Storage Folder": "Επιλογή Φακέλου Αποθήκευσης", + "Choose Folder to Watch": "Επιλογή Φακέλου για Προβολή", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\nΑυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!", + "Manage Media Folders": "Διαχείριση Φακέλων Πολυμέσων", + "Are you sure you want to remove the watched folder?": "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;", + "This path is currently not accessible.": "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται.", + "Connected to the streaming server": "Συνδέθηκε με τον διακομιστή streaming ", + "The stream is disabled": "Το stream είναι απενεργοποιημένο", + "Getting information from the server...": "Λήψη πληροφοριών από το διακομιστή...", + "Can not connect to the streaming server": "Αδύνατη η σύνδεση με τον διακομιστή streaming ", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών.", + "Warning: You cannot change this field while the show is currently playing": "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής ", + "No result found": "Δεν βρέθηκαν αποτελέσματα", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν.", + "Specify custom authentication which will work only for this show.": "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή.", + "The show instance doesn't exist anymore!": "Η εκπομπή δεν υπάρχει πια!", + "Warning: Shows cannot be re-linked": "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη ", + "Show": "Εκπομπή", + "Show is empty": "Η εκπομπή είναι άδεια", + "1m": "1λ", + "5m": "5λ", + "10m": "10λ", + "15m": "15λ", + "30m": "30λ", + "60m": "60λ", + "Retreiving data from the server...": "Ανάκτηση δεδομένων από το διακομιστή...", + "This show has no scheduled content.": "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο.", + "This show is not completely filled with content.": "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο ", + "January": "Ιανουάριος", + "February": "Φεβρουάριος", + "March": "Μάρτιος", + "April": "Απρίλης", + "May": "Μάιος", + "June": "Ιούνιος", + "July": "Ιούλιος", + "August": "Αύγουστος", + "September": "Σεπτέμβριος", + "October": "Οκτώβριος", + "November": "Νοέμβριος", + "December": "Δεκέμβριος", + "Jan": "Ιαν", + "Feb": "Φεβ", + "Mar": "Μαρ", + "Apr": "Απρ", + "Jun": "Ιουν", + "Jul": "Ιουλ", + "Aug": "Αυγ", + "Sep": "Σεπ", + "Oct": "Οκτ", + "Nov": "Νοε", + "Dec": "Δεκ", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Κυριακή", + "Monday": "Δευτέρα", + "Tuesday": "Τρίτη", + "Wednesday": "Τετάρτη", + "Thursday": "Πέμπτη", + "Friday": "Παρασκευή", + "Saturday": "Σάββατο", + "Sun": "Κυρ", + "Mon": "Δευ", + "Tue": "Τρι", + "Wed": "Τετ", + "Thu": "Πεμ", + "Fri": "Παρ", + "Sat": "Σαβ", + "Shows longer than their scheduled time will be cut off by a following show.": "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή.", + "Cancel Current Show?": "Ακύρωση Τρέχουσας Εκπομπής;", + "Stop recording current show?": "Πάυση ηχογράφησης τρέχουσας εκπομπής;", + "Ok": "Οκ", + "Contents of Show": "Περιεχόμενα Εκπομπής", + "Remove all content?": "Αφαίρεση όλου του περιεχομένου;", + "Delete selected item(s)?": "Διαγραφή επιλεγμένου στοιχείου/ων;", + "Start": "Έναρξη", + "End": "Τέλος", + "Duration": "Διάρκεια", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Η εκπομπή είναι άδεια", + "Recording From Line In": "Ηχογράφηση Από Line In", + "Track preview": "Προεπισκόπηση κομματιού", + "Cannot schedule outside a show.": "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής.", + "Moving 1 Item": "Μετακίνηση 1 Στοιχείου", + "Moving %s Items": "Μετακίνηση Στοιχείων %s", + "Save": "Αποθήκευση", + "Cancel": "Ακύρωση", + "Fade Editor": "Επεξεργαστής Fade", + "Cue Editor": "Επεξεργαστής Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API", + "Select all": "Επιλογή όλων", + "Select none": "Καμία Επιλογή", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων ", + "Jump to the current playing track": "Μετάβαση στο τρέχον κομμάτι ", + "Jump to Current": "", + "Cancel current show": "Ακύρωση τρέχουσας εκπομπής", + "Open library to add or remove content": "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου", + "Add / Remove Content": "Προσθήκη / Αφαίρεση Περιεχομένου", + "in use": "σε χρήση", + "Disk": "Δίσκος", + "Look in": "Κοιτάξτε σε", + "Open": "Άνοιγμα", + "Admin": "Διαχειριστής", + "DJ": "DJ", + "Program Manager": "Διευθυντής Προγράμματος", + "Guest": "Επισκέπτης", + "Guests can do the following:": "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω", + "View schedule": "Προβολή Προγράμματος", + "View show content": "Προβολή περιεχομένου εκπομπής", + "DJs can do the following:": "Οι DJ μπορούν να κάνουν τα παρακάτω", + "Manage assigned show content": "Διαχείριση ανατεθημένου περιεχομένου εκπομπής", + "Import media files": "Εισαγωγή αρχείων πολυμέσων", + "Create playlists, smart blocks, and webstreams": "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams ", + "Manage their own library content": "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης", + "Program Managers can do the following:": "", + "View and manage show content": "Προβολή και διαχείριση περιεχομένου εκπομπής", + "Schedule shows": "Πρόγραμμα εκπομπών", + "Manage all library content": "Διαχείριση όλου του περιεχομένου βιβλιοθήκης", + "Admins can do the following:": "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:", + "Manage preferences": "Διαχείριση προτιμήσεων", + "Manage users": "Διαχείριση Χρηστών", + "Manage watched folders": "Διαχείριση προβεβλημένων φακέλων ", + "Send support feedback": "Αποστολή Σχολίων Υποστήριξης", + "View system status": "Προβολή κατάστασης συστήματος", + "Access playout history": "Πρόσβαση στην ιστορία playout", + "View listener stats": "Προβολή στατιστικών των ακροατών", + "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", + "Columns": "", + "From {from} to {to}": "Από {από} σε {σε}", + "kbps": "Kbps", + "yyyy-mm-dd": "εεεε-μμ-ηη", + "hh:mm:ss.t": "ωω:λλ:δδ.t", + "kHz": "kHz", + "Su": "Κυ", + "Mo": "Δε", + "Tu": "Τρ", + "We": "Τε", + "Th": "Πε", + "Fr": "Πα", + "Sa": "Σα", + "Close": "Κλείσιμο", + "Hour": "Ώρα", + "Minute": "Λεπτό", + "Done": "Ολοκληρώθηκε", + "Select files": "Επιλογή αρχείων", + "Add files to the upload queue and click the start button.": "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης", + "Filename": "", + "Size": "", + "Add Files": "Προσθήκη Αρχείων", + "Stop Upload": "Στάση Ανεβάσματος", + "Start upload": "Έναρξη ανεβάσματος", + "Start Upload": "", + "Add files": "Προσθήκη αρχείων", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Ανέβηκαν %d/%d αρχεία", + "N/A": "N/A", + "Drag files here.": "Σύρετε αρχεία εδώ.", + "File extension error.": "Σφάλμα επέκτασης αρχείου.", + "File size error.": "Σφάλμα μεγέθους αρχείου.", + "File count error.": "Σφάλμα μέτρησης αρχείων.", + "Init error.": "Σφάλμα αρχικοποίησης.", + "HTTP Error.": "Σφάλμα HTTP.", + "Security error.": "Σφάλμα ασφάλειας.", + "Generic error.": "Γενικό σφάλμα.", + "IO error.": "Σφάλμα IO", + "File: %s": "Αρχείο: %s", + "%d files queued": "%d αρχεία σε αναμονή", + "File: %f, size: %s, max file size: %m": "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m", + "Upload URL might be wrong or doesn't exist": "Το URL είτε είναι λάθος ή δεν υφίσταται", + "Error: File too large: ": "Σφάλμα: Πολύ μεγάλο αρχείο: ", + "Error: Invalid file extension: ": "Σφάλμα: Μη έγκυρη προέκταση αρχείου: ", + "Set Default": "Ως Προεπιλογή", + "Create Entry": "Δημιουργία Εισόδου", + "Edit History Record": "Επεξεργασία Ιστορικού", + "No Show": "Καμία Εκπομπή", + "Copied %s row%s to the clipboard": "Αντιγράφηκαν %s σειρές%s στο πρόχειρο", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Περιγραφή", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ενεργοποιημένο", + "Disabled": "Απενεργοποιημένο", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά.", + "You are viewing an older version of %s": "Βλέπετε μια παλαιότερη έκδοση του %s", + "You cannot add tracks to dynamic blocks.": "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks.", + "You don't have permission to delete selected %s(s).": "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s).", + "You can only add tracks to smart block.": "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block.", + "Untitled Playlist": "Λίστα Αναπαραγωγής χωρίς Τίτλο", + "Untitled Smart Block": "Smart Block χωρίς Τίτλο", + "Unknown Playlist": "Άγνωστη λίστα αναπαραγωγής", + "Preferences updated.": "Οι προτιμήσεις ενημερώθηκαν.", + "Stream Setting Updated.": "Η Ρύθμιση Stream Ενημερώθηκε.", + "path should be specified": "η διαδρομή πρέπει να καθοριστεί", + "Problem with Liquidsoap...": "Πρόβλημα με Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Αναμετάδοση της εκπομπής %s από %s σε %s", + "Select cursor": "Επιλέξτε cursor", + "Remove cursor": "Αφαίρεση cursor", + "show does not exist": "η εκπομπή δεν υπάρχει", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Ο χρήστης προστέθηκε επιτυχώς!", + "User updated successfully!": "Ο χρήστης ενημερώθηκε με επιτυχία!", + "Settings updated successfully!": "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!", + "Untitled Webstream": "Webstream χωρίς Τίτλο", + "Webstream saved.": "Το Webstream αποθηκεύτηκε.", + "Invalid form values.": "Άκυρες μορφές αξίας.", + "Invalid character entered": "Εισαγωγή άκυρου χαρακτήρα", + "Day must be specified": "Η μέρα πρέπει να προσδιοριστεί", + "Time must be specified": "Η ώρα πρέπει να προσδιοριστεί", + "Must wait at least 1 hour to rebroadcast": "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Χρήση Προσαρμοσμένης Ταυτοποίησης:", + "Custom Username": "Προσαρμοσμένο Όνομα Χρήστη", + "Custom Password": "Προσαρμοσμένος Κωδικός Πρόσβασης", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό.", + "Password field cannot be empty.": "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό.", + "Record from Line In?": "Ηχογράφηση από Line In;", + "Rebroadcast?": "Αναμετάδοση;", + "days": "ημέρες", + "Link:": "Σύνδεσμος", + "Repeat Type:": "Τύπος Επανάληψης:", + "weekly": "εβδομαδιαία", + "every 2 weeks": "κάθε 2 εβδομάδες", + "every 3 weeks": "κάθε 3 εβδομάδες", + "every 4 weeks": "κάθε 4 εβδομάδες", + "monthly": "μηνιαία", + "Select Days:": "Επιλέξτε Ημέρες:", + "Repeat By:": "Επανάληψη από:", + "day of the month": "ημέρα του μήνα", + "day of the week": "ημέρα της εβδομάδας", + "Date End:": "Ημερομηνία Λήξης:", + "No End?": "Χωρίς Τέλος;", + "End date must be after start date": "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης", + "Please select a repeat day": "Επιλέξτε ημέρα επανάληψης", + "Background Colour:": "Χρώμα Φόντου:", + "Text Colour:": "Χρώμα Κειμένου:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Όνομα:", + "Untitled Show": "Εκπομπή χωρίς Τίτλο", + "URL:": "Διεύθυνση URL:", + "Genre:": "Είδος:", + "Description:": "Περιγραφή:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Διάρκεια:", + "Timezone:": "Ζώνη Ώρας", + "Repeats?": "Επαναλήψεις;", + "Cannot create show in the past": "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν", + "Cannot modify start date/time of the show that is already started": "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει", + "End date/time cannot be in the past": "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν", + "Cannot have duration < 0m": "Δεν μπορεί να έχει διάρκεια < 0m", + "Cannot have duration 00h 00m": "Δεν μπορεί να έχει διάρκεια 00h 00m", + "Cannot have duration greater than 24h": "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες", + "Cannot schedule overlapping shows": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών", + "Search Users:": "Αναζήτηση Χρηστών:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Όνομα Χρήστη:", + "Password:": "Κωδικός πρόσβασης:", + "Verify Password:": "Επαλήθευση κωδικού πρόσβασης", + "Firstname:": "Όνομα:", + "Lastname:": "Επώνυμο:", + "Email:": "Email:", + "Mobile Phone:": "Κινητό Τηλέφωνο:", + "Skype:": "Skype", + "Jabber:": "Jabber", + "User Type:": "Τύπος Χρήστη:", + "Login name is not unique.": "Το όνομα εισόδου δεν είναι μοναδικό.", + "Delete All Tracks in Library": "", + "Date Start:": "Ημερομηνία Έναρξης:", + "Title:": "Τίτλος:", + "Creator:": "Δημιουργός:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Έτος", + "Label:": "Δισκογραφική:", + "Composer:": "Συνθέτης:", + "Conductor:": "Μαέστρος:", + "Mood:": "Διάθεση:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Αριθμός ISRC:", + "Website:": "Ιστοσελίδα:", + "Language:": "Γλώσσα:", + "Publish...": "", + "Start Time": "Ώρα Έναρξης", + "End Time": "Ώρα Τέλους", + "Interface Timezone:": "Interface Ζώνης ώρας:", + "Station Name": "Όνομα Σταθμού", + "Station Description": "", + "Station Logo:": "Λογότυπο Σταθμού:", + "Note: Anything larger than 600x600 will be resized.": "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος.", + "Default Crossfade Duration (s):": "Προεπιλεγμένη Διάρκεια Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Προεπιλεγμένο Fade In (s):", + "Default Fade Out (s):": "Προεπιλεγμένο Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Ζώνη Ώρας Σταθμού", + "Week Starts On": "Η Εβδομάδα αρχίζει ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Σύνδεση", + "Password": "Κωδικός πρόσβασης", + "Confirm new password": "Επιβεβαίωση νέου κωδικού πρόσβασης", + "Password confirmation does not match your password.": "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας.", + "Email": "", + "Username": "Όνομα Χρήστη", + "Reset password": "Επαναφορά κωδικού πρόσβασης", + "Back": "", + "Now Playing": "Αναπαραγωγή σε Εξέλιξη", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Όλες οι Εκπομπές μου:", + "My Shows": "", + "Select criteria": "Επιλέξτε κριτήρια", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Ρυθμός Δειγματοληψίας (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ώρες", + "minutes": "λεπτά", + "items": "στοιχεία", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Δυναμικό", + "Static": "Στατικό", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων", + "Shuffle playlist content": "Περιεχόμενο λίστας Shuffle ", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0", + "Limit cannot be more than 24 hrs": "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες", + "The value should be an integer": "Η τιμή πρέπει να είναι ακέραιος αριθμός", + "500 is the max item limit value you can set": "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε", + "You must select Criteria and Modifier": "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή", + "'Length' should be in '00:00:00' format": "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Η τιμή πρέπει να είναι αριθμός", + "The value should be less then 2147483648": "Η τιμή πρέπει να είναι μικρότερη από 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες", + "Value cannot be empty": "Η αξία δεν μπορεί να είναι κενή", + "Stream Label:": "Stream Label:", + "Artist - Title": "Καλλιτέχνης - Τίτλος", + "Show - Artist - Title": "Εκπομπή - Καλλιτέχνης - Τίτλος", + "Station name - Show name": "Όνομα Σταθμού - Όνομα Εκπομπής", + "Off Air Metadata": "Μεταδεδομένα Off Air", + "Enable Replay Gain": "Ενεργοποίηση Επανάληψη Κέρδους", + "Replay Gain Modifier": "Τροποποιητής Επανάληψης Κέρδους", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ενεργοποιημένο", + "Mobile:": "", + "Stream Type:": "Τύπος Stream:", + "Bit Rate:": "Ρυθμός Δεδομένων:", + "Service Type:": "Τύπος Υπηρεσίας:", + "Channels:": "Κανάλια", + "Server": "Διακομιστής", + "Port": "Θύρα", + "Mount Point": "Σημείο Προσάρτησης", + "Name": "Ονομασία", + "URL": "Διεύθυνση URL:", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Εισαγωγή Φακέλου:", + "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", + "Not a valid Directory": "Μη έγκυρο Ευρετήριο", + "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", + "'%value%' is less than %min% characters long": "'%value%' είναι λιγότερο από %min% χαρακτήρες ", + "'%value%' is more than %max% characters long": "'%value%' είναι περισσότερο από %max% χαρακτήρες ", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά", + "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in και cue out είναι μηδέν.", + "Can't set cue out to be greater than file length.": "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου.", + "Can't set cue in to be larger than cue out.": "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out.", + "Can't set cue out to be smaller than cue in.": "Το cue out δεν μπορεί να είναι μικρότερο από το cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Επιλέξτε Χώρα", + "livestream": "", + "Cannot move items out of linked shows": "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη.", + "The schedule you're viewing is out of date! (sched mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)", + "The schedule you're viewing is out of date! (instance mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)", + "The schedule you're viewing is out of date!": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!", + "You are not allowed to schedule show %s.": "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s..", + "You cannot add files to recording shows.": "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές.", + "The show %s is over and cannot be scheduled.": "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί.", + "The show %s has been previously updated!": "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Ένα επιλεγμένο αρχείο δεν υπάρχει!", + "Shows can have a max length of 24 hours.": "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της.", + "Rebroadcast of %s from %s": "Αναμετάδοση του %s από %s", + "Length needs to be greater than 0 minutes": "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά", + "Length should be of form \"00h 00m\"": "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"", + "URL should be of form \"https://example.org\"": "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"", + "URL should be 512 characters or less": "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες ", + "No MIME type found for webstream.": "Δεν βρέθηκε τύπος MIME για webstream.", + "Webstream name cannot be empty": "Το όνομα του webstream δεν μπορεί να είναι κενό", + "Could not parse XSPF playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF ", + "Could not parse PLS playlist": "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS", + "Could not parse M3U playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U", + "Invalid webstream - This appears to be a file download.": "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης.", + "Unrecognized stream type: %s": "Άγνωστος τύπος stream: %s", + "Record file doesn't exist": "Το αρχείο δεν υπάρχει", + "View Recorded File Metadata": "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων ", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Επεξεργασία Εκπομπής", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Δεν έχετε δικαίωμα πρόσβασης", + "Can't drag and drop repeating shows": "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών", + "Can't move a past show": "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής", + "Can't move show into past": "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της.", + "Show was deleted because recorded show does not exist!": "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!", + "Must wait 1 hour to rebroadcast.": "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση.", + "Track": "Κομμάτι", + "Played": "Παίχτηκε", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/en_CA.json b/webapp/src/locale/en_CA.json index d9670b5c7a..a67c36986d 100644 --- a/webapp/src/locale/en_CA.json +++ b/webapp/src/locale/en_CA.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendar", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Users", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "", - "Playlist": "", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Colour:", - "Text Colour:": "Text Colour:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "First name:", - "Lastname:": "Last name:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "", - "Username": "Username", - "Reset password": "Reset password", - "Back": "", - "Now Playing": "Now Playing", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Enabled:", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Select Country", - "livestream": "", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognized stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edit Show", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "First name:", + "Lastname:": "Last name:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/en_GB.json b/webapp/src/locale/en_GB.json index 72ea305005..ff92eec3af 100644 --- a/webapp/src/locale/en_GB.json +++ b/webapp/src/locale/en_GB.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "English (United Kingdom)", - "Afar": "Afar", - "Abkhazian": "Abkhazian", - "Afrikaans": "Afrikaans", - "Amharic": "Amharic", - "Arabic": "Arabic", - "Assamese": "Assamese", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkir", - "Belarusian": "Bashkir", - "Bulgarian": "Bulgarian", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengali", - "Tibetan": "Tibetan", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corsican", - "Czech": "Czech", - "Welsh": "Welsh", - "Danish": "Danish", - "German": "German", - "Bhutani": "Bhutani", - "Greek": "Greek", - "Esperanto": "Esperanto", - "Spanish": "Spanish", - "Estonian": "Estonian", - "Basque": "Basque", - "Persian": "Persian", - "Finnish": "Finnish", - "Fiji": "Fiji", - "Faeroese": "Faeroese", - "French": "French", - "Frisian": "Frisian", - "Irish": "Irish", - "Scots/Gaelic": "Scots/Gaelic", - "Galician": "Galician", - "Guarani": "Guarani", - "Gujarati": "Gujarati", - "Hausa": "Hausa", - "Hindi": "Hindi", - "Croatian": "Croatian", - "Hungarian": "Hungarian", - "Armenian": "Armenian", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesian", - "Icelandic": "Icelandic", - "Italian": "Italian", - "Hebrew": "Hebrew", - "Japanese": "Japanese", - "Yiddish": "Yiddish", - "Javanese": "Javanese", - "Georgian": "Georgian", - "Kazakh": "Kazakh", - "Greenlandic": "Greenlandic", - "Cambodian": "Cambodian", - "Kannada": "Kannada", - "Korean": "Korean", - "Kashmiri": "Kashmiri", - "Kurdish": "Kurdish", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Laothian", - "Lithuanian": "Lithuanian", - "Latvian/Lettish": "Latvian/Lettish", - "Malagasy": "Malagasy", - "Maori": "Maori", - "Macedonian": "Macedonian", - "Malayalam": "Malayalam", - "Mongolian": "Mongolian", - "Moldavian": "Moldavian", - "Marathi": "Marathi", - "Malay": "Malay", - "Maltese": "Maltese", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Upload some tracks below to add them to your library!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.", - "Click the 'New Show' button and fill out the required fields.": "Please click the 'New Show' button and fill out the required fields.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "It looks like you don't have any shows scheduled yet. %sCreate a show now%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "To start broadcasting, click on the current show and select 'Schedule Tracks'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Click on the show starting next and select 'Schedule Tracks'", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "It looks like the next show is empty. %sAdd tracks to your show now%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Radio Page", - "Calendar": "Calendar", - "Widgets": "Widgets", - "Player": "Player", - "Weekly Schedule": "Weekly Schedule", - "Settings": "Settings", - "General": "General", - "My Profile": "My Profile", - "Users": "Users", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "Analytics", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "Get Help Online", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "File does not exist in %s", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Page not found.", - "The requested action is not supported.": "The requested action is not supported.", - "You do not have permission to access this resource.": "You do not have permission to access this resource.", - "An internal application error has occurred.": "An internal application error has occurred.", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "Could not delete file because it is scheduled in the future.", - "Could not delete file(s).": "Could not delete file(s).", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "Something went wrong!", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "You haven't added any tracks", - "You haven't added any playlists": "You haven't added any playlists", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "You haven't added any smart blocks", - "You haven't added any webstreams": "You haven't added any webstreams", - "Learn about tracks": "Learn about tracks", - "Learn about playlists": "Learn about playlists", - "Learn about podcasts": "", - "Learn about smart blocks": "Learn about smart blocks", - "Learn about webstreams": "Learn about webstreams", - "Click 'New' to create one.": "Click 'New' to create one.", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "Tracks", - "Playlist": "Playlist", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "View", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "WARNING: This will restart your stream and may cause a short dropout for your listeners!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Today", - "Day": "Day", - "Week": "Week", - "Month": "Month", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "Filtering out ", - " of ": " of ", - " records": " records", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "Trim overbooked shows", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished.", - "New Show": "New Show", - "New Log Entry": "New Log Entry", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "Smart Block", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Please enter your username and password.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "There was a problem with the username or email address you entered.", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "Request method not accepted", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "Use %s Authentication:", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "Host:", - "Port:": "Port:", - "Mount:": "Mount:", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Colour:", - "Text Colour:": "Text Colour:", - "Current Logo:": "Current Logo:", - "Show Logo:": "Show Logo:", - "Logo Preview:": "Logo Preview:", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "Instance Description:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", - "Start Time:": "Start Time:", - "In the Future:": "In the Future:", - "End Time:": "End Time:", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "Firstname:", - "Lastname:": "Lastname:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "Delete All Tracks in Library", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "Station Description", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "Please enter a time in seconds (e.g. 0.5)", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Required for embeddable schedule widget.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.", - "Default Language": "Default Language", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "Display login button on your Radio Page?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Auto Switch Off:", - "Auto Switch On:": "Auto Switch On:", - "Switch Transition Fade (s):": "Switch Transition Fade (s):", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "Email", - "Username": "Username", - "Reset password": "Reset password", - "Back": "Back", - "Now Playing": "Now Playing", - "Select Stream:": "Select Stream:", - "Auto detect the most appropriate stream to use.": "Auto-detect the most appropriate stream to use.", - "Select a stream:": "Select a stream:", - " - Mobile friendly": " - Mobile friendly", - " - The player does not support Opus streams.": " - The player does not support Opus streams.", - "Embeddable code:": "Embeddable code:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copy this code and paste it into your website's HTML to embed the player in your site.", - "Preview:": "Preview:", - "Feed Privacy": "", - "Public": "Public", - "Private": "Private", - "Station Language": "Station Language", - "Filter by Show": "Filter by Show", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "Randomly", - "Newest": "Newest", - "Oldest": "Oldest", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "Select Track Type", - "Type:": "Type:", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "Select track type", - "Allow Repeated Tracks:": "Allow Repeated Tracks:", - "Allow last track to exceed time limit:": "Allow last track to exceed time limit:", - "Sort Tracks:": "Sort Tracks:", - "Limit to:": "Limit to:", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value", - "You must select a time unit for a relative datetime.": "You must select a time unit for a relative date and time.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Only non-negative integer numbers are allowed for a relative date time", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "Hardware Audio Output:", - "Output Type": "Output Type", - "Enabled:": "Enabled:", - "Mobile:": "Mobile:", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Push metadata to your station on TuneIn?", - "Station ID:": "Station ID:", - "Partner Key:": "Partner Key:", - "Partner Id:": "Partner ID:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", - "\n\nThank you,\nThe %s Team": "\n\nThank you,\nThe %s Team", - "%s Password Reset": "%s Password Reset", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "Upload Time", - "None": "None", - "Powered by %s": "Powered by %s", - "Select Country": "Select Country", - "livestream": "livestream", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Cannot schedule a playlist that contains missing files.", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognised stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "Schedule Tracks", - "Clear Show": "Clear Show", - "Cancel Show": "Cancel Show", - "Edit Instance": "Edit Instance", - "Edit Show": "Edit Show", - "Delete Instance": "Delete Instance", - "Delete Instance and All Following": "Delete Instance and All Following", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "Auto-generated smart-block for podcast", - "Webstreams": "Webstreams" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "English (United Kingdom)", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Bashkir", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "Hungarian", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Upload some tracks below to add them to your library!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.", + "Click the 'New Show' button and fill out the required fields.": "Please click the 'New Show' button and fill out the required fields.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "It looks like you don't have any shows scheduled yet. %sCreate a show now%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "To start broadcasting, click on the current show and select 'Schedule Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Click on the show starting next and select 'Schedule Tracks'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "It looks like the next show is empty. %sAdd tracks to your show now%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Page", + "Calendar": "Calendar", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Weekly Schedule", + "Settings": "Settings", + "General": "General", + "My Profile": "My Profile", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "Analytics", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "Get Help Online", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "File does not exist in %s", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Page not found.", + "The requested action is not supported.": "The requested action is not supported.", + "You do not have permission to access this resource.": "You do not have permission to access this resource.", + "An internal application error has occurred.": "An internal application error has occurred.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "Could not delete file because it is scheduled in the future.", + "Could not delete file(s).": "Could not delete file(s).", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "Something went wrong!", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "You haven't added any tracks", + "You haven't added any playlists": "You haven't added any playlists", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "You haven't added any smart blocks", + "You haven't added any webstreams": "You haven't added any webstreams", + "Learn about tracks": "Learn about tracks", + "Learn about playlists": "Learn about playlists", + "Learn about podcasts": "", + "Learn about smart blocks": "Learn about smart blocks", + "Learn about webstreams": "Learn about webstreams", + "Click 'New' to create one.": "Click 'New' to create one.", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "Tracks", + "Playlist": "Playlist", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "View", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "WARNING: This will restart your stream and may cause a short dropout for your listeners!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Today", + "Day": "Day", + "Week": "Week", + "Month": "Month", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "Filtering out ", + " of ": " of ", + " records": " records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "Trim overbooked shows", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished.", + "New Show": "New Show", + "New Log Entry": "New Log Entry", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "Smart Block", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Please enter your username and password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "There was a problem with the username or email address you entered.", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "Request method not accepted", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Use %s Authentication:", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "Host:", + "Port:": "Port:", + "Mount:": "Mount:", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "Current Logo:", + "Show Logo:": "Show Logo:", + "Logo Preview:": "Logo Preview:", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "Instance Description:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "Start Time:", + "In the Future:": "In the Future:", + "End Time:": "End Time:", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "Delete All Tracks in Library", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "Station Description", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "Please enter a time in seconds (e.g. 0.5)", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Required for embeddable schedule widget.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.", + "Default Language": "Default Language", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "Display login button on your Radio Page?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Auto Switch Off:", + "Auto Switch On:": "Auto Switch On:", + "Switch Transition Fade (s):": "Switch Transition Fade (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "Email", + "Username": "Username", + "Reset password": "Reset password", + "Back": "Back", + "Now Playing": "Now Playing", + "Select Stream:": "Select Stream:", + "Auto detect the most appropriate stream to use.": "Auto-detect the most appropriate stream to use.", + "Select a stream:": "Select a stream:", + " - Mobile friendly": " - Mobile friendly", + " - The player does not support Opus streams.": " - The player does not support Opus streams.", + "Embeddable code:": "Embeddable code:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copy this code and paste it into your website's HTML to embed the player in your site.", + "Preview:": "Preview:", + "Feed Privacy": "", + "Public": "Public", + "Private": "Private", + "Station Language": "Station Language", + "Filter by Show": "Filter by Show", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "Randomly", + "Newest": "Newest", + "Oldest": "Oldest", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "Select Track Type", + "Type:": "Type:", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "Select track type", + "Allow Repeated Tracks:": "Allow Repeated Tracks:", + "Allow last track to exceed time limit:": "Allow last track to exceed time limit:", + "Sort Tracks:": "Sort Tracks:", + "Limit to:": "Limit to:", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value", + "You must select a time unit for a relative datetime.": "You must select a time unit for a relative date and time.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Only non-negative integer numbers are allowed for a relative date time", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "Hardware Audio Output:", + "Output Type": "Output Type", + "Enabled:": "Enabled:", + "Mobile:": "Mobile:", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Push metadata to your station on TuneIn?", + "Station ID:": "Station ID:", + "Partner Key:": "Partner Key:", + "Partner Id:": "Partner ID:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", + "\n\nThank you,\nThe %s Team": "\n\nThank you,\nThe %s Team", + "%s Password Reset": "%s Password Reset", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "Upload Time", + "None": "None", + "Powered by %s": "Powered by %s", + "Select Country": "Select Country", + "livestream": "livestream", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Cannot schedule a playlist that contains missing files.", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognised stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "Schedule Tracks", + "Clear Show": "Clear Show", + "Cancel Show": "Cancel Show", + "Edit Instance": "Edit Instance", + "Edit Show": "Edit Show", + "Delete Instance": "Delete Instance", + "Delete Instance and All Following": "Delete Instance and All Following", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "Auto-generated smart-block for podcast", + "Webstreams": "Webstreams" +} diff --git a/webapp/src/locale/en_US.json b/webapp/src/locale/en_US.json index 6f56028a66..e0ec5d34c3 100644 --- a/webapp/src/locale/en_US.json +++ b/webapp/src/locale/en_US.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendar", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Users", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "", - "Playlist": "", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Color:", - "Text Colour:": "Text Color:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "Firstname:", - "Lastname:": "Lastname:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "", - "Username": "Username", - "Reset password": "Reset password", - "Back": "", - "Now Playing": "Now Playing", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Enabled:", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Select Country", - "livestream": "", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognized stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edit Show", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Color:", + "Text Colour:": "Text Color:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", + "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/es_ES.json b/webapp/src/locale/es_ES.json index bc9e1295a4..56a9827cf9 100644 --- a/webapp/src/locale/es_ES.json +++ b/webapp/src/locale/es_ES.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "El año %s debe estar dentro del rango de 1753-9999", - "%s-%s-%s is not a valid date": "%s-%s-%s no es una fecha válida", - "%s:%s:%s is not a valid time": "%s:%s:%s no es una hora válida", - "English": "Inglés", - "Afar": "Pueblo afar", - "Abkhazian": "Abjasia", - "Afrikaans": "Afrikáans", - "Amharic": "Amhárico", - "Arabic": "Árabe", - "Assamese": "Asamés", - "Aymara": "Aimara", - "Azerbaijani": "Azerbaiyano", - "Bashkir": "Idioma Bashkir", - "Belarusian": "Bielorruso", - "Bulgarian": "Búlgaro", - "Bihari": "Lenguas Bihari", - "Bislama": "Bichelamar", - "Bengali/Bangla": "Bengalí/Bangla", - "Tibetan": "Tibetano", - "Breton": "Bretón", - "Catalan": "Catalán", - "Corsican": "Corso", - "Czech": "Checo", - "Welsh": "Galés", - "Danish": "Danés", - "German": "Alemán", - "Bhutani": "Butaní", - "Greek": "Griego", - "Esperanto": "Esperanto", - "Spanish": "Español", - "Estonian": "Estonia", - "Basque": "Vasco", - "Persian": "Persa", - "Finnish": "Finés", - "Fiji": "Fiyi", - "Faeroese": "Feroés", - "French": "Francés", - "Frisian": "Frisón", - "Irish": "Irlandés", - "Scots/Gaelic": "Escocés/Gaelico", - "Galician": "Galego", - "Guarani": "Guaraní", - "Gujarati": "Guyaratí", - "Hausa": "Idioma Hausa", - "Hindi": "Hindú", - "Croatian": "Croata", - "Hungarian": "Húngaro", - "Armenian": "Armenio", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue o Occidental", - "Inupiak": "Iñupiaq", - "Indonesian": "Indonesio", - "Icelandic": "Islandés", - "Italian": "Italiano", - "Hebrew": "Hebreo", - "Japanese": "Japonés", - "Yiddish": "Yidis", - "Javanese": "Javanés", - "Georgian": "Georgiano", - "Kazakh": "Kazajo", - "Greenlandic": "Groenlandés", - "Cambodian": "Camboyano", - "Kannada": "Canarés", - "Korean": "Coreano", - "Kashmiri": "Cachemir", - "Kurdish": "Kurdo", - "Kirghiz": "Kirguís", - "Latin": "Latín", - "Lingala": "Lingala", - "Laothian": "Laosiano", - "Lithuanian": "Lituano", - "Latvian/Lettish": "Letón", - "Malagasy": "Malgache", - "Maori": "Maorí", - "Macedonian": "Macedonio", - "Malayalam": "Malayo", - "Mongolian": "Mongol", - "Moldavian": "Moldavo", - "Marathi": "Maratí", - "Malay": "Malay", - "Maltese": "Maltés", - "Burmese": "Birmano", - "Nauru": "Nauru o Naurú", - "Nepali": "Nepalí", - "Dutch": "Holandés", - "Norwegian": "Noruego", - "Occitan": "Occitano o lengua de oc", - "(Afan)/Oromoor/Oriya": "Oriya", - "Punjabi": "Panyabí", - "Polish": "Polaco", - "Pashto/Pushto": "Pastún/Ushto", - "Portuguese": "Portugués", - "Quechua": "Quechua", - "Rhaeto-Romance": "Romanche", - "Kirundi": "Kirundi (Rundi)", - "Romanian": "Rumano", - "Russian": "Ruso", - "Kinyarwanda": "Kiñaruanda", - "Sanskrit": "Sánscrito", - "Sindhi": "Sindi", - "Sangro": "Sango", - "Serbo-Croatian": "Serbocroata", - "Singhalese": "Cingalés", - "Slovak": "Eslovaco", - "Slovenian": "Esloveno", - "Samoan": "Samoano", - "Shona": "Shona", - "Somali": "Somalí", - "Albanian": "Albanés", - "Serbian": "Serbio", - "Siswati": "Suazi", - "Sesotho": "Sesoto", - "Sundanese": "Sundanés", - "Swedish": "Sueco", - "Swahili": "Suajili", - "Tamil": "Tamil", - "Tegulu": "Télugu", - "Tajik": "Tayiko", - "Thai": "Tailandés", - "Tigrinya": "Tigriña", - "Turkmen": "Turkmeno o Turkeno", - "Tagalog": "Tagalo o tagálog", - "Setswana": "Setsuana", - "Tonga": "Tongano", - "Turkish": "Turco", - "Tsonga": "Tsonga", - "Tatar": "Tártaro", - "Twi": "Twi o Chuí", - "Ukrainian": "Ucraniano", - "Urdu": "Urdu", - "Uzbek": "Uzbeko", - "Vietnamese": "Vietnamita", - "Volapuk": "Volapük", - "Wolof": "Wólof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chino", - "Zulu": "Zulú", - "Use station default": "Usar el predeterminado de la estación", - "Upload some tracks below to add them to your library!": "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s.", - "Click the 'New Show' button and fill out the required fields.": "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Parece que no tienes shows programados. %sCrea un show ahora%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n %sCrear un show no enlazado ahora%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Parece que el programa actual necesita más pistas. %sAñade pistas a tu programa ahora%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s.", - "LibreTime media analyzer service": "Servicio de análisis multimedia LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Compruebe que el servicio libretime-analyzer está instalado correctamente en ", - " and ensure that it's running with ": " y asegúrate de que se ejecuta con ", - "If not, try ": "Si no, prueba ", - "LibreTime playout service": "Servicio de emisión de LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Compruebe que el servicio libretime-playout está instalado correctamente en ", - "LibreTime liquidsoap service": "Servicio LibreTime liquidsoap", - "Check that the libretime-liquidsoap service is installed correctly in ": "Comprueba que el servicio libretime-liquidsoap está instalado correctamente en ", - "LibreTime Celery Task service": "Servicio de tareas LibreTime Celery", - "Check that the libretime-worker service is installed correctly in ": "Compruebe que el servicio libretime-worker está instalado correctamente en ", - "LibreTime API service": "Servicio API de LibreTime", - "Check that the libretime-api service is installed correctly in ": "Comprueba que el servicio libretime-api está instalado correctamente en ", - "Radio Page": "Radio Web", - "Calendar": "Calendario", - "Widgets": "Widgets", - "Player": "Reproductor", - "Weekly Schedule": "Calendario Semanal", - "Settings": "Ajustes", - "General": "General", - "My Profile": "Mi Perfil", - "Users": "Usuarios", - "Track Types": "Tipos de pista", - "Streams": "Streamer", - "Status": "Estado", - "Analytics": "Estadísticas", - "Playout History": "Historial de reproducción", - "History Templates": "Plantillas Historial", - "Listener Stats": "Estadísticas de oyentes", - "Show Listener Stats": "Mostrar las estadísticas de los oyentes", - "Help": "Ayuda", - "Getting Started": "Cómo iniciar", - "User Manual": "Manual para el usuario", - "Get Help Online": "Conseguir ayuda en línea", - "Contribute to LibreTime": "Contribuir a LibreTime", - "What's New?": "¿Qué hay de nuevo?", - "You are not allowed to access this resource.": "No tienes permiso para acceder a este recurso.", - "You are not allowed to access this resource. ": "No tienes permiso para acceder a este recurso. ", - "File does not exist in %s": "El archivo no existe en %s", - "Bad request. no 'mode' parameter passed.": "Solicitud incorrecta. No se pasa el parámetro 'mode'.", - "Bad request. 'mode' parameter is invalid": "Solicitud incorrecta. El parámetro 'mode' pasado es inválido", - "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", - "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", - "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:

\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer
\n 2. Active la API pública LibreTime en Configuración -> Preferencias", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", - "Page not found.": "Página no encontrada.", - "The requested action is not supported.": "No se admite la acción solicitada.", - "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", - "An internal application error has occurred.": "Se ha producido un error interno de la aplicación.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "No se han publicado pistas todavía.", - "%s not found": "No se encontró %s", - "Something went wrong.": "Algo salió mal.", - "Preview": "Previsualizar", - "Add to Playlist": "Añadir a la lista de reproducción", - "Add to Smart Block": "Agregar un bloque inteligente", - "Delete": "Eliminar", - "Edit...": "Editar...", - "Download": "Descargar", - "Duplicate Playlist": "Duplicar lista de reproducción", - "Duplicate Smartblock": "Bloque inteligente duplicado", - "No action available": "No hay acción disponible", - "You don't have permission to delete selected items.": "No tienes permiso para eliminar los elementos seleccionados.", - "Could not delete file because it is scheduled in the future.": "No se ha podido eliminar el archivo porque está programado para el futuro.", - "Could not delete file(s).": "No se pudo eliminar el archivo(s).", - "Copy of %s": "Copia de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Asegúrese de que el usuario/contraseña de administrador es correcto en la página Configuración->Streams.", - "Audio Player": "Reproductor de audio", - "Something went wrong!": "¡Algo salió mal!", - "Recording:": "Grabando:", - "Master Stream": "Stream maestro", - "Live Stream": "Stream en vivo", - "Nothing Scheduled": "Nada programado", - "Current Show:": "Show actual:", - "Current": "Actual", - "You are running the latest version": "Estás usando la versión más reciente", - "New version available: ": "Nueva versión disponible: ", - "You have a pre-release version of LibreTime intalled.": "Tienes una versión pre-lanzamiento de LibreTime instalada.", - "A patch update for your LibreTime installation is available.": "Hay disponible una actualización de parche para la instalación de LibreTime.", - "A feature update for your LibreTime installation is available.": "Hay disponible una actualización de funcionalidad para su instalación de LibreTime.", - "A major update for your LibreTime installation is available.": "Hay disponible una actualización importante para su instalación de LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible.", - "Add to current playlist": "Añadir a la lista de reproducción actual", - "Add to current smart block": "Añadir al bloque inteligente actual", - "Adding 1 Item": "Añadiendo 1 item", - "Adding %s Items": "Añadiendo %s elementos", - "You can only add tracks to smart blocks.": "Solo puede agregar canciones a los bloques inteligentes.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción.", - "Please select a cursor position on timeline.": "Indica tu selección en la lista de reproducción actual.", - "You haven't added any tracks": "No ha añadido ninguna pista", - "You haven't added any playlists": "No has añadido ninguna lista de reproducción", - "You haven't added any podcasts": "No has añadido ningún podcast", - "You haven't added any smart blocks": "No has añadido ningún bloque inteligente", - "You haven't added any webstreams": "No has añadido ningún webstream", - "Learn about tracks": "Aprenda sobre pistas", - "Learn about playlists": "Aprenda sobre listas de reproducción", - "Learn about podcasts": "Aprenda sobre podcasts", - "Learn about smart blocks": "Aprenda sobre bloques inteligentes", - "Learn about webstreams": "Aprenda sobre webstreams", - "Click 'New' to create one.": "Clic 'Nuevo' para crear uno.", - "Add": "Añadir", - "New": "Nuevo", - "Edit": "Editar", - "Add to Schedule": "Añadir al show próximo", - "Add to next show": "Añadir al show próximo", - "Add to current show": "Añadir al show actual", - "Add after selected items": "Añadir después de los elementos seleccionados", - "Publish": "Publicar", - "Remove": "Eliminar", - "Edit Metadata": "Editar metadatos", - "Add to selected show": "Añadir al show seleccionado", - "Select": "Seleccionar", - "Select this page": "Seleccionar esta página", - "Deselect this page": "Deseleccionar esta página", - "Deselect all": "Deseleccionar todo", - "Are you sure you want to delete the selected item(s)?": "¿De verdad quieres eliminar los ítems seleccionados?", - "Scheduled": "Programado", - "Tracks": "Pistas", - "Playlist": "Listas de reproducción", - "Title": "Título", - "Creator": "Creador", - "Album": "Álbum", - "Bit Rate": "Tasa de bits", - "BPM": "BPM", - "Composer": "Compositor", - "Conductor": "Director", - "Copyright": "Derechos de autor", - "Encoded By": "Codificado por", - "Genre": "Género", - "ISRC": "ISRC", - "Label": "Sello", - "Language": "Idioma", - "Last Modified": "Ult.Modificado", - "Last Played": "Ult.Reproducido", - "Length": "Duración", - "Mime": "Mime", - "Mood": "Estilo (mood)", - "Owner": "Propietario", - "Replay Gain": "Ganancia", - "Sample Rate": "Tasa de muestreo", - "Track Number": "Núm.Pista", - "Uploaded": "Subido", - "Website": "Sitio web", - "Year": "Año", - "Loading...": "Cargando...", - "All": "Todo", - "Files": "Archivos", - "Playlists": "Listas", - "Smart Blocks": "Bloques", - "Web Streams": "Web streams", - "Unknown type: ": "Tipo desconocido: ", - "Are you sure you want to delete the selected item?": "¿De verdad deseas eliminar el ítem seleccionado?", - "Uploading in progress...": "Carga en progreso...", - "Retrieving data from the server...": "Recolectando data desde el servidor...", - "Import": "Importar", - "Imported?": "Importado?", - "View": "Ver", - "Error code: ": "Código del error: ", - "Error msg: ": "Msg de error: ", - "Input must be a positive number": "La entrada debe ser un número positivo", - "Input must be a number": "La entrada debe ser un número", - "Input must be in the format: yyyy-mm-dd": "La entrada debe tener el formato: aaaa-mm-dd", - "Input must be in the format: hh:mm:ss.t": "La entrada debe tener el formato: hh:mm:ss.t", - "My Podcast": "Mi Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. %s¿Estás seguro de que quieres salir de la página?", - "Open Media Builder": "Abrir Media Builder", - "please put in a time '00:00:00 (.0)'": "Por favor introduce un tiempo '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Por favor introduce un tiempo en segundos válido. Ej. 0.5", - "Your browser does not support playing this file type: ": "Tu navegador no soporta la reproducción de este tipo de archivos: ", - "Dynamic block is not previewable": "Los bloques dinámicos no se pueden previsualizar", - "Limit to: ": "Limitado a: ", - "Playlist saved": "Se guardó la lista de reproducción", - "Playlist shuffled": "Lista de reproducción mezclada", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime no está seguro del estado de este archivo. Esto puede suceder cuando el archivo está en una unidad remota a la que no se puede acceder o el archivo está en un directorio que ya no se 'vigila'.", - "Listener Count on %s: %s": "Número de oyentes en %s: %s", - "Remind me in 1 week": "Recuérdame en 1 semana", - "Remind me never": "Nunca recordarme", - "Yes, help Airtime": "Sí, ayudar a Libretime", - "Image must be one of jpg, jpeg, png, or gif": "La imagen debe ser jpg, jpeg, png, o gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloque inteligente estático guardará los criterios y generará el contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la Biblioteca antes de añadirlo a un programa.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "No se alcanzará la longitud de bloque deseada si %s no puede encontrar suficientes pistas únicas que coincidan con sus criterios. Active esta opción si desea permitir que las pistas se añadan varias veces al bloque inteligente.", - "Smart block shuffled": "Se reprodujo el bloque inteligente de forma aleatoria", - "Smart block generated and criteria saved": "Bloque inteligente generado y criterios guardados", - "Smart block saved": "Bloque inteligente guardado", - "Processing...": "Procesando...", - "Select modifier": "Elige modificador", - "contains": "contiene", - "does not contain": "no contiene", - "is": "es", - "is not": "no es", - "starts with": "empieza con", - "ends with": "termina con", - "is greater than": "es mayor que", - "is less than": "es menor que", - "is in the range": "está en el rango de", - "Generate": "Generar", - "Choose Storage Folder": "Elegir carpeta de almacenamiento", - "Choose Folder to Watch": "Elegir carpeta a monitorizar", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n ¡Esto eliminará los archivos de tu biblioteca de Airtime!", - "Manage Media Folders": "Administrar las Carpetas de Medios", - "Are you sure you want to remove the watched folder?": "¿Estás seguro de que quieres quitar la carpeta monitorizada?", - "This path is currently not accessible.": "Esta ruta es actualmente inaccesible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s.", - "Connected to the streaming server": "Conectado al servidor de streaming", - "The stream is disabled": "Se desactivó el stream", - "Getting information from the server...": "Obteniendo información desde el servidor...", - "Can not connect to the streaming server": "No es posible conectar el servidor de streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s está detrás de un router o firewall, puede que necesites configurar el reenvío de puertos y la información de este campo será incorrecta. En este caso, tendrá que actualizar manualmente este campo para que muestre el host/puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido está entre 1024 y 49151.", - "For more details, please read the %s%s Manual%s": "Para más detalles, lea el %s%s Manual %s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opción para activar los metadatos para los flujos OGG (los metadatos del flujo son el título de la pista, el artista y el nombre del programa que se muestran en un reproductor de audio). VLC y mplayer tienen un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la información de metadatos: se desconectarán del flujo después de cada canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte para estos reproductores de audio, entonces siéntete libre de habilitar esta opción.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente).", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes.", - "Warning: You cannot change this field while the show is currently playing": "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show", - "No result found": "Sin resultados", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show.", - "Specify custom authentication which will work only for this show.": "Especifique una autenticación personalizada que funcione solo para este show.", - "The show instance doesn't exist anymore!": "¡La instancia de este show ya no existe!", - "Warning: Shows cannot be re-linked": "Advertencia: Los shows no pueden re-enlazarse", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario.", - "Show": "Mostrar", - "Show is empty": "El show está vacío", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Recopilando información desde el servidor...", - "This show has no scheduled content.": "Este show no cuenta con contenido programado.", - "This show is not completely filled with content.": "Este programa aún no está lleno de contenido.", - "January": "Enero", - "February": "Febrero", - "March": "Marzo", - "April": "Abril", - "May": "Mayo", - "June": "Junio", - "July": "Julio", - "August": "Agosto", - "September": "Septiembre", - "October": "Octubre", - "November": "Noviembre", - "December": "Diciembre", - "Jan": "Ene", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Abr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Ago", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dic", - "Today": "Hoy", - "Day": "Día", - "Week": "Semana", - "Month": "Mes", - "Sunday": "Domingo", - "Monday": "Lunes", - "Tuesday": "Martes", - "Wednesday": "Miércoles", - "Thursday": "Jueves", - "Friday": "Viernes", - "Saturday": "Sábado", - "Sun": "Dom", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mie", - "Thu": "Jue", - "Fri": "Vie", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Los shows más largos que su segmento programado serán cortados por el show que le sigue.", - "Cancel Current Show?": "¿Cancelar el show actual?", - "Stop recording current show?": "¿Detener la grabación del show actual?", - "Ok": "Ok", - "Contents of Show": "Contenidos del show", - "Remove all content?": "¿Eliminar todo el contenido?", - "Delete selected item(s)?": "¿Eliminar los ítems seleccionados?", - "Start": "Inicio", - "End": "Final", - "Duration": "Duración", - "Filtering out ": "Filtrando ", - " of ": " de ", - " records": " registros", - "There are no shows scheduled during the specified time period.": "No hay shows programados durante el período de tiempo especificado.", - "Cue In": "Señal de entrada", - "Cue Out": "Señal de salida", - "Fade In": "Unirse", - "Fade Out": "Desaparecer", - "Show Empty": "Show vacío", - "Recording From Line In": "Grabando desde la entrada", - "Track preview": "Previsualización de la pista", - "Cannot schedule outside a show.": "No es posible programar un show externo.", - "Moving 1 Item": "Moviendo 1 ítem", - "Moving %s Items": "Moviendo %s elementos", - "Save": "Guardar", - "Cancel": "Cancelar", - "Fade Editor": "Editor de desvanecimiento", - "Cue Editor": "Editor de Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio", - "Select all": "Seleccionar todos", - "Select none": "Seleccionar uno", - "Trim overbooked shows": "Recortar exceso de shows", - "Remove selected scheduled items": "Eliminar los ítems programados seleccionados", - "Jump to the current playing track": "Saltar a la pista en reproducción actual", - "Jump to Current": "Saltar a la pista actual", - "Cancel current show": "Cancelar el show actual", - "Open library to add or remove content": "Abrir biblioteca para agregar o eliminar contenido", - "Add / Remove Content": "Agregar / eliminar contenido", - "in use": "en uso", - "Disk": "Disco", - "Look in": "Buscar en", - "Open": "Abrir", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Administrador de programa", - "Guest": "Invitado", - "Guests can do the following:": "Los invitados pueden hacer lo siguiente:", - "View schedule": "Ver programación", - "View show content": "Ver contenido del show", - "DJs can do the following:": "Los DJ pueden hacer lo siguiente:", - "Manage assigned show content": "Administrar el contenido del show asignado", - "Import media files": "Importar archivos de medios", - "Create playlists, smart blocks, and webstreams": "Crear listas de reproducción, bloques inteligentes y webstreams", - "Manage their own library content": "Administrar su propia biblioteca de contenido", - "Program Managers can do the following:": "Los administradores de programas pueden hacer lo siguiente:", - "View and manage show content": "Ver y administrar contenido del show", - "Schedule shows": "Programar shows", - "Manage all library content": "Administrar el contenido de toda la biblioteca", - "Admins can do the following:": "Los administradores pueden:", - "Manage preferences": "Administrar preferencias", - "Manage users": "Administrar usuarios", - "Manage watched folders": "Administrar carpetas monitorizadas", - "Send support feedback": "Enviar opinión de soporte", - "View system status": "Ver el estado del sistema", - "Access playout history": "Acceder al historial de reproducción", - "View listener stats": "Ver estadísticas de oyentes", - "Show / hide columns": "Mostrar / ocultar columnas", - "Columns": "Columnas", - "From {from} to {to}": "De {from} para {to}", - "kbps": "kbps", - "yyyy-mm-dd": "dd-mm-yyyy", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Do", - "Mo": "Lu", - "Tu": "Ma", - "We": "Mi", - "Th": "Ju", - "Fr": "Vi", - "Sa": "Sa", - "Close": "Cerrar", - "Hour": "Hora", - "Minute": "Minuto", - "Done": "Hecho", - "Select files": "Seleccione los archivos", - "Add files to the upload queue and click the start button.": "Añade los archivos a la cola de carga y haz clic en el botón de iniciar.", - "Filename": "Nombre del archivo", - "Size": "Tamaño", - "Add Files": "Añadir archivos", - "Stop Upload": "Detener carga", - "Start upload": "Iniciar carga", - "Start Upload": "Empezar a cargar", - "Add files": "Añadir archivos", - "Stop current upload": "Detener la carga en curso", - "Start uploading queue": "Iniciar la carga en la cola", - "Uploaded %d/%d files": "Archivos %d/%d cargados", - "N/A": "No disponible", - "Drag files here.": "Arrastra los archivos a esta área.", - "File extension error.": "Error de extensión del archivo.", - "File size error.": "Error de tamaño del archivo.", - "File count error.": "Error de cuenta del archivo.", - "Init error.": "Error de inicialización.", - "HTTP Error.": "Error de HTTP.", - "Security error.": "Error de seguridad.", - "Generic error.": "Error genérico.", - "IO error.": "Error IO.", - "File: %s": "Archivo: %s", - "%d files queued": "%d archivos en cola", - "File: %f, size: %s, max file size: %m": "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m", - "Upload URL might be wrong or doesn't exist": "Puede que el URL de carga no esté funcionando o no exista", - "Error: File too large: ": "Error: Fichero demasiado grande: ", - "Error: Invalid file extension: ": "Error: Extensión de archivo no válida: ", - "Set Default": "Establecer predeterminado", - "Create Entry": "Crear Entrada", - "Edit History Record": "Editar historial", - "No Show": "No hay Show", - "Copied %s row%s to the clipboard": "Se copiaron %s celda%s al portapapeles", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sImprimir vista%sPor favor, utilice la función de impresión de su navegador para imprimir esta tabla. Pulse Escape cuando termine.", - "New Show": "Nuevo Show", - "New Log Entry": "Nueva entrada de registro", - "No data available in table": "No hay datos en la tabla", - "(filtered from _MAX_ total entries)": "(filtrado de _MAX_ entradas totales)", - "First": "Primero", - "Last": "Último", - "Next": "Siguiente", - "Previous": "Anterior", - "Search:": "Buscar:", - "No matching records found": "No se han encontrado coincidencias", - "Drag tracks here from the library": "Arrastre las pistas desde la biblioteca", - "No tracks were played during the selected time period.": "No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado.", - "Unpublish": "Despublicar", - "No matching results found.": "No se ha encontrado ningún resultado.", - "Author": "Autor", - "Description": "Descripción", - "Link": "Enlace", - "Publication Date": "Fecha de publicación", - "Import Status": "Estado de la importación", - "Actions": "Acciones", - "Delete from Library": "Eliminar de la biblioteca", - "Successfully imported": "Importado correctamente", - "Show _MENU_": "Mostrar el _MENU_", - "Show _MENU_ entries": "Mostrar las entradas del _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Mostrando el _START_ a _END_ del _TOTAL_ las pistas", - "Showing _START_ to _END_ of _TOTAL_ track types": "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas", - "Showing _START_ to _END_ of _TOTAL_ users": "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios", - "Showing 0 to 0 of 0 entries": "Mostrando 0 de 0 de 0 entradas", - "Showing 0 to 0 of 0 tracks": "Mostrando 0 a 0 de 0 pistas", - "Showing 0 to 0 of 0 track types": "Mostrando 0 a 0 de 0 tipos de pistas", - "(filtered from _MAX_ total track types)": "(filtrado de _MAX_ tipos de pistas totales)", - "Are you sure you want to delete this tracktype?": "¿Está seguro de que desea eliminar este tipo de pista?", - "No track types were found.": "No se encontró ningún tipo de pista.", - "No track types found": "No se han encontrado tipos de pista", - "No matching track types found": "No se ha encontrado ningún tipo de pista", - "Enabled": "Activado", - "Disabled": "Desactivado", - "Cancel upload": "Cancelar la carga", - "Type": "Tipo", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", - "Podcast settings saved": "Configuración del podcasts guardado", - "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", - "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", - "You haven't published any episodes!": "¡No has publicado ningún episodio!", - "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", - "Try it now": "Pruebalo ahora", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.

Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.

", - "Playlist preview": "Vista previa de la lista de reproducción", - "Smart Block": "Bloque Inteligente", - "Webstream preview": "Vista previa de la transmisión web", - "You don't have permission to view the library.": "No tienes permiso para ver la biblioteca.", - "Now": "Ahora", - "Click 'New' to create one now.": "Haz clic en 'Nuevo' para crear uno ahora.", - "Click 'Upload' to add some now.": "Haz clic en 'Cargar' para agregar algunos ahora.", - "Feed URL": "URL para el canal", - "Import Date": "Fecha de importación", - "Add New Podcast": "Agregar un nuevo podcast", - "Cannot schedule outside a show.\nTry creating a show first.": "No se puede programar fuera de un programa.\nIntente crear primero un programa.", - "No files have been uploaded yet.": "Aún no se han cargado archivos.", - "On Air": "En directo", - "Off Air": "Fuera de antena", - "Offline": "Sin conexión", - "Nothing scheduled": "Nada programado", - "Click 'Add' to create one now.": "Haga clic en 'Agregar' para crear uno ahora.", - "Please enter your username and password.": "Por favor, introduzca su nombre de usuario y contraseña.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta.", - "That username or email address could not be found.": "No se ha podido encontrar ese nombre de usuario o dirección de correo electrónico.", - "There was a problem with the username or email address you entered.": "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste.", - "Wrong username or password provided. Please try again.": "Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo.", - "You are viewing an older version of %s": "Estas viendo una versión antigua de %s", - "You cannot add tracks to dynamic blocks.": "No puedes añadir pistas a los bloques dinámicos.", - "You don't have permission to delete selected %s(s).": "No tienes permiso para eliminar los %s(s) seleccionados.", - "You can only add tracks to smart block.": "Solo puedes añadir pistas a los bloques inteligentes.", - "Untitled Playlist": "Lista de reproducción sin nombre", - "Untitled Smart Block": "Bloque inteligente sin nombre", - "Unknown Playlist": "Lista de reproducción desconocida", - "Preferences updated.": "Se actualizaron las preferencias.", - "Stream Setting Updated.": "Se actualizaron las configuraciones del stream.", - "path should be specified": "se debe especificar la ruta", - "Problem with Liquidsoap...": "Hay un problema con Liquidsoap...", - "Request method not accepted": "Método de solicitud no aceptado", - "Rebroadcast of show %s from %s at %s": "Retransmisión del programa %s de %s en %s", - "Select cursor": "Elegir cursor", - "Remove cursor": "Eliminar cursor", - "show does not exist": "El show no existe", - "Track Type added successfully!": "¡Tipo de pista añadido con éxito!", - "Track Type updated successfully!": "¡Tipo de pista actualizado con éxito!", - "User added successfully!": "¡Usuario añadido correctamente!", - "User updated successfully!": "¡Usuario actualizado correctamente!", - "Settings updated successfully!": "¡Configuración actualizada correctamente!", - "Untitled Webstream": "Webstream sin título", - "Webstream saved.": "Transmisión web guardada.", - "Invalid form values.": "Los valores en el formulario son inválidos.", - "Invalid character entered": "Se introdujo un caracter inválido", - "Day must be specified": "Se debe especificar un día", - "Time must be specified": "Se debe especificar una hora", - "Must wait at least 1 hour to rebroadcast": "Debes esperar al menos 1 hora para reprogramar", - "Add Autoloading Playlist ?": "¿Programar Lista Auto-Cargada?", - "Select Playlist": "Seleccionar Lista", - "Repeat Playlist Until Show is Full ?": "Repitir lista hasta que termine el programa?", - "Use %s Authentication:": "Usar la autenticación %s:", - "Use Custom Authentication:": "Usar la autenticación personalizada:", - "Custom Username": "Usuario personalizado", - "Custom Password": "Contraseña personalizada", - "Host:": "Host:", - "Port:": "Puerto:", - "Mount:": "Montaje:", - "Username field cannot be empty.": "El campo de usuario no puede estar vacío.", - "Password field cannot be empty.": "El campo de contraseña no puede estar vacío.", - "Record from Line In?": "¿Grabar desde la entrada (line in)?", - "Rebroadcast?": "¿Reprogramar?", - "days": "días", - "Link:": "Enlace:", - "Repeat Type:": "Tipo de repetición:", - "weekly": "semanal", - "every 2 weeks": "cada 2 semanas", - "every 3 weeks": "cada 3 semanas", - "every 4 weeks": "cada 4 semanas", - "monthly": "mensual", - "Select Days:": "Seleccione días:", - "Repeat By:": "Repetir por:", - "day of the month": "día del mes", - "day of the week": "día de la semana", - "Date End:": "Fecha de Finalización:", - "No End?": "¿Sin fin?", - "End date must be after start date": "La fecha de finalización debe ser posterior a la inicio", - "Please select a repeat day": "Por favor, selecciona un día de repeticón", - "Background Colour:": "Color de fondo:", - "Text Colour:": "Color del texto:", - "Current Logo:": "Loco actual:", - "Show Logo:": "Logo del Show:", - "Logo Preview:": "Vista previa del Logo:", - "Name:": "Nombre:", - "Untitled Show": "Show sin nombre", - "URL:": "URL:", - "Genre:": "Género:", - "Description:": "Descripción:", - "Instance Description:": "Descripcin de instancia:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' no concuerda con el formato de tiempo 'HH:mm'", - "Start Time:": "Hora de inicio:", - "In the Future:": "En el Futuro:", - "End Time:": "Hora de fin:", - "Duration:": "Duración:", - "Timezone:": "Zona horaria:", - "Repeats?": "¿Se repite?", - "Cannot create show in the past": "No puedes crear un show en el pasado", - "Cannot modify start date/time of the show that is already started": "No puedes modificar la hora/fecha de inicio de un show que ya empezó", - "End date/time cannot be in the past": "La fecha/hora de finalización no puede ser anterior", - "Cannot have duration < 0m": "No puede tener una duración < 0min", - "Cannot have duration 00h 00m": "No puede tener una duración 00h 00m", - "Cannot have duration greater than 24h": "No puede tener una duración mayor a 24 horas", - "Cannot schedule overlapping shows": "No se pueden programar shows traslapados", - "Search Users:": "Buscar usuarios:", - "DJs:": "Disc-jockeys (DJs):", - "Type Name:": "Escribe un nombre:", - "Code:": "Código:", - "Visibility:": "Visibilidad:", - "Analyze cue points:": "Analizar los puntos de referencia:", - "Code is not unique.": "El código no es único.", - "Username:": "Usuario:", - "Password:": "Contraseña:", - "Verify Password:": "Verificar contraseña:", - "Firstname:": "Nombre:", - "Lastname:": "Apellido:", - "Email:": "Correo electrónico:", - "Mobile Phone:": "Teléfono móvil:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Tipo de usuario:", - "Login name is not unique.": "El nombre de usuario no es único.", - "Delete All Tracks in Library": "Eliminar todas las pistas de la biblioteca", - "Date Start:": "Fecha de Inicio:", - "Title:": "Título:", - "Creator:": "Creador:", - "Album:": "Álbum:", - "Owner:": "Propietario:", - "Select a Type": "Seleccionar un tipo", - "Track Type:": "Tipo de pista:", - "Year:": "Año:", - "Label:": "Sello:", - "Composer:": "Compositor:", - "Conductor:": "Conductor:", - "Mood:": "Ánimo (mood):", - "BPM:": "BPM:", - "Copyright:": "Derechos de autor:", - "ISRC Number:": "Número ISRC:", - "Website:": "Sitio web:", - "Language:": "Idioma:", - "Publish...": "Publicar...", - "Start Time": "Hora de Inicio", - "End Time": "Hora de Finalización", - "Interface Timezone:": "Zona horaria de la interfaz:", - "Station Name": "Nombre de la estación", - "Station Description": "Descripción de la estación", - "Station Logo:": "Logo de la estación:", - "Note: Anything larger than 600x600 will be resized.": "Nota: Cualquiera mayor que 600x600 será redimensionada.", - "Default Crossfade Duration (s):": "Duración predeterminada del Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "Por favor, escribe un valor en segundos (eg. 0.5)", - "Default Fade In (s):": "Fade In perdeterminado (s):", - "Default Fade Out (s):": "Fade Out preseterminado (s):", - "Track Type Upload Default": "Tipo de pista cargado predeterminado", - "Intro Autoloading Playlist": "Lista de reproducción automática", - "Outro Autoloading Playlist": "Lista de reproducción de salida automática", - "Overwrite Podcast Episode Metatags": "Sobrescribir el álbum del podcast", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Genere un bloque inteligente y una lista de reproducción al crear un nuevo podcast", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si esta opción está activada, se generará un nuevo bloque inteligente y una nueva lista de reproducción que coincidan con la pista más reciente de un podcast inmediatamente después de la creación de un nuevo podcast. Tenga en cuenta que la función \"Sobrescribir metatags de episodios de podcast\" también debe estar activada para que los smartblocks encuentren episodios de forma fiable.", - "Public LibreTime API": "API Pública de Libretime", - "Required for embeddable schedule widget.": "Requerido para el widget de programación.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Habilitar esta función permite a Libretime proporcionar datos de programación\n a widgets externos que se pueden integrar en tu sitio web.", - "Default Language": "Idioma predeterminado", - "Station Timezone": "Zona horaria de la Estación", - "Week Starts On": "La semana empieza el", - "Display login button on your Radio Page?": "¿Mostrar el botón de inicio de sesión en su página de radio?", - "Feature Previews": "Vistas previas de funciones", - "Enable this to opt-in to test new features.": "Active esta opción para probar nuevas funciones.", - "Auto Switch Off:": "Desconexión automática:", - "Auto Switch On:": "Encendido automático:", - "Switch Transition Fade (s):": "Transición de desvanecimiento (s):", - "Master Source Host:": "Host Fuente Maestro:", - "Master Source Port:": "Puerto Fuente Maestro:", - "Master Source Mount:": "Montaje Fuente Maestro:", - "Show Source Host:": "Host Fuente del Show:", - "Show Source Port:": "Puerto Fuente del Show:", - "Show Source Mount:": "Montaje Fuente del Show:", - "Login": "Iniciar sesión", - "Password": "Contraseña", - "Confirm new password": "Confirma nueva contraseña", - "Password confirmation does not match your password.": "La confirmación de la contraseña no coincide con tu contraseña.", - "Email": "Correo electrónico", - "Username": "Usuario", - "Reset password": "Restablecer contraseña", - "Back": "Atrás", - "Now Playing": "Reproduciéndose ahora", - "Select Stream:": "Seleccionar Stream:", - "Auto detect the most appropriate stream to use.": "Autodetectar el stream más apropiado a reproducir.", - "Select a stream:": "Selecciona un stream:", - " - Mobile friendly": " - Apto para móviles", - " - The player does not support Opus streams.": " - El reproductor no soporta streams Opus.", - "Embeddable code:": "Código de inserción:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio.", - "Preview:": "Vista previa:", - "Feed Privacy": "Privacidad del Feed", - "Public": "Público", - "Private": "Privado", - "Station Language": "Idioma de la Estación", - "Filter by Show": "Filtrar por Show", - "All My Shows:": "Todos mis shows:", - "My Shows": "Mis Shows", - "Select criteria": "Seleccionar criterio", - "Bit Rate (Kbps)": "Tasa de bits (Kbps)", - "Track Type": "Tipo de pista", - "Sample Rate (kHz)": "Tasa de muestreo (kHz)", - "before": "antes", - "after": "después", - "between": "entre", - "Select unit of time": "Seleccionar la unidad de tiempo", - "minute(s)": "minuto(s)", - "hour(s)": "hora(s)", - "day(s)": "día(s)", - "week(s)": "semana(s)", - "month(s)": "mes(es)", - "year(s)": "año(s)", - "hours": "horas", - "minutes": "minutos", - "items": "elementos", - "time remaining in show": "tiempo restante del programa", - "Randomly": "Aleatorio", - "Newest": "Más nuevo", - "Oldest": "Más antiguo", - "Most recently played": "Reproducido más recientemente", - "Least recently played": "Último reproducido", - "Select Track Type": "Seleccione el tipo de pista", - "Type:": "Tipo:", - "Dynamic": "Dinámico", - "Static": "Estático", - "Select track type": "Selecciona el tipo de pista", - "Allow Repeated Tracks:": "Permitir Pistas Repetidas:", - "Allow last track to exceed time limit:": "Permitir que la última pista supere el límite de tiempo:", - "Sort Tracks:": "Ordenar Pistas:", - "Limit to:": "Limitar a:", - "Generate playlist content and save criteria": "Generar contenido para la lista de reproducción y guardar criterios", - "Shuffle playlist content": "Reproducir de forma aleatoria los contenidos de la lista de reproducción", - "Shuffle": "Reproducción aleatoria", - "Limit cannot be empty or smaller than 0": "El límite no puede estar vacío o ser menor que 0", - "Limit cannot be more than 24 hrs": "El límite no puede ser mayor a 24 horas", - "The value should be an integer": "El valor debe ser un número entero", - "500 is the max item limit value you can set": "500 es el valor máximo de ítems que se pueden configurar", - "You must select Criteria and Modifier": "Debes elegir Criterios y Modificador", - "'Length' should be in '00:00:00' format": "'Longitud' debe estar en formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el valor del texto", - "You must select a time unit for a relative datetime.": "Debe seleccionar una unidad de tiempo para una fecha-hora relativa.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Sólo se permiten números enteros no negativos para una fecha-hora relativa", - "The value has to be numeric": "El valor debe ser numérico", - "The value should be less then 2147483648": "El valor debe ser menor a 2147483648", - "The value cannot be empty": "El valor no puede estar vacío", - "The value should be less than %s characters": "El valor debe ser menor que %s caracteres", - "Value cannot be empty": "El valor no puede estar vacío", - "Stream Label:": "Etiqueta del stream:", - "Artist - Title": "Artísta - Título", - "Show - Artist - Title": "Show - Artista - Título", - "Station name - Show name": "Nombre de la estación - nombre del show", - "Off Air Metadata": "Metadatos Off Air", - "Enable Replay Gain": "Activar ajuste del volumen", - "Replay Gain Modifier": "Modificar ajuste de volumen", - "Hardware Audio Output:": "Salida Hardware Audio:", - "Output Type": "Tipo de Salida", - "Enabled:": "Activado:", - "Mobile:": "Móvil:", - "Stream Type:": "Tipo de stream:", - "Bit Rate:": "Tasa de bits:", - "Service Type:": "Tipo de servicio:", - "Channels:": "Canales:", - "Server": "Servidor", - "Port": "Puerto", - "Mount Point": "Punto de montaje", - "Name": "Nombre", - "URL": "URL", - "Stream URL": "URL de la transmisión", - "Push metadata to your station on TuneIn?": "¿Actualizar metadatos de tu estación en TuneIn?", - "Station ID:": "ID Estación:", - "Partner Key:": "Clave Socio:", - "Partner Id:": "Id Socio:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo.", - "Import Folder:": "Carpeta de importación:", - "Watched Folders:": "Carpetas monitorizadas:", - "Not a valid Directory": "No es un directorio válido", - "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' no se ajusta al formato de fecha '%format%'", - "'%value%' is less than %min% characters long": "'%value%' tiene menos de %min% caracteres", - "'%value%' is more than %max% characters long": "'%value%' tiene más de %max% caracteres", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' no está entre '%min%' y '%max%', inclusive", - "Passwords do not match": "Las contraseñas no coinciden", - "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", - "\n\nThank you,\nThe %s Team": "\n\nGracias,\nEl equipo %s", - "%s Password Reset": "%s Restablecimiento de Contraseña", - "Cue in and cue out are null.": "Cue in y cue out son nulos.", - "Can't set cue out to be greater than file length.": "No se puede asignar un cue out mayor que la duración del archivo.", - "Can't set cue in to be larger than cue out.": "No se puede asignar un cue in mayor al cue out.", - "Can't set cue out to be smaller than cue in.": "No se puede asignar un cue out menor que el cue in.", - "Upload Time": "Hora de Subida", - "None": "Ninguno", - "Powered by %s": "Desarrollado por %s", - "Select Country": "Seleccionar país", - "livestream": "transmisión en directo", - "Cannot move items out of linked shows": "No se pueden mover elementos de los shows enlazados", - "The schedule you're viewing is out of date! (sched mismatch)": "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "¡La programación que estás viendo está desactualizada! (desfase de instancia)", - "The schedule you're viewing is out of date!": "¡La programación que estás viendo está desactualizada!", - "You are not allowed to schedule show %s.": "No tienes permiso para programar el show %s.", - "You cannot add files to recording shows.": "No puedes agregar pistas a shows en grabación.", - "The show %s is over and cannot be scheduled.": "El show %s terminó y no puede ser programado.", - "The show %s has been previously updated!": "¡El show %s ha sido actualizado anteriormente!", - "Content in linked shows cannot be changed while on air!": "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!", - "Cannot schedule a playlist that contains missing files.": "No se puede programar una lista de reproducción que contenga archivos perdidos.", - "A selected File does not exist!": "¡Un Archivo seleccionado no existe!", - "Shows can have a max length of 24 hours.": "Los shows pueden tener una duración máxima de 24 horas.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "No se pueden programar shows solapados.\nNota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones.", - "Rebroadcast of %s from %s": "Retransmisión de %s desde %s", - "Length needs to be greater than 0 minutes": "La duración debe ser mayor de 0 minutos", - "Length should be of form \"00h 00m\"": "La duración debe estar en el formato \"00h 00m\"", - "URL should be of form \"https://example.org\"": "El URL debe estar en el formato \"https://example.org\"", - "URL should be 512 characters or less": "El URL debe ser de 512 caracteres o menos", - "No MIME type found for webstream.": "No se encontró ningún tipo MIME para el webstream.", - "Webstream name cannot be empty": "El nombre del webstream no puede estar vacío", - "Could not parse XSPF playlist": "No se pudo procesar el XSPF de la lista de reproducción", - "Could not parse PLS playlist": "No se pudo procesar el XSPF de la lista de reproducción", - "Could not parse M3U playlist": "No se pudo procesar el M3U de la lista de reproducción", - "Invalid webstream - This appears to be a file download.": "Webstream inválido - Esto parece ser una descarga de archivo.", - "Unrecognized stream type: %s": "Tipo de stream no reconocido: %s", - "Record file doesn't exist": "No existe el archivo", - "View Recorded File Metadata": "Ver los metadatos del archivo grabado", - "Schedule Tracks": "Programar pistas", - "Clear Show": "Vaciar Show", - "Cancel Show": "Cancelar Show", - "Edit Instance": "Editar instancia", - "Edit Show": "Editar Show", - "Delete Instance": "Eliminar instancia", - "Delete Instance and All Following": "Eliminar instancia y todas las siguientes", - "Permission denied": "Permiso denegado", - "Can't drag and drop repeating shows": "No es posible arrastrar y soltar shows que se repiten", - "Can't move a past show": "No se puede mover un show pasado", - "Can't move show into past": "No se puede mover un show al pasado", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión.", - "Show was deleted because recorded show does not exist!": "¡El show se eliminó porque el show grabado no existe!", - "Must wait 1 hour to rebroadcast.": "Debe esperar 1 hora para retransmitir.", - "Track": "Pista", - "Played": "Reproducido", - "Auto-generated smartblock for podcast": "Bloque inteligente autogenerado para el podcast", - "Webstreams": "Retransmisiones por Internet" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "El año %s debe estar dentro del rango de 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s no es una fecha válida", + "%s:%s:%s is not a valid time": "%s:%s:%s no es una hora válida", + "English": "Inglés", + "Afar": "Pueblo afar", + "Abkhazian": "Abjasia", + "Afrikaans": "Afrikáans", + "Amharic": "Amhárico", + "Arabic": "Árabe", + "Assamese": "Asamés", + "Aymara": "Aimara", + "Azerbaijani": "Azerbaiyano", + "Bashkir": "Idioma Bashkir", + "Belarusian": "Bielorruso", + "Bulgarian": "Búlgaro", + "Bihari": "Lenguas Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengalí/Bangla", + "Tibetan": "Tibetano", + "Breton": "Bretón", + "Catalan": "Catalán", + "Corsican": "Corso", + "Czech": "Checo", + "Welsh": "Galés", + "Danish": "Danés", + "German": "Alemán", + "Bhutani": "Butaní", + "Greek": "Griego", + "Esperanto": "Esperanto", + "Spanish": "Español", + "Estonian": "Estonia", + "Basque": "Vasco", + "Persian": "Persa", + "Finnish": "Finés", + "Fiji": "Fiyi", + "Faeroese": "Feroés", + "French": "Francés", + "Frisian": "Frisón", + "Irish": "Irlandés", + "Scots/Gaelic": "Escocés/Gaelico", + "Galician": "Galego", + "Guarani": "Guaraní", + "Gujarati": "Guyaratí", + "Hausa": "Idioma Hausa", + "Hindi": "Hindú", + "Croatian": "Croata", + "Hungarian": "Húngaro", + "Armenian": "Armenio", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue o Occidental", + "Inupiak": "Iñupiaq", + "Indonesian": "Indonesio", + "Icelandic": "Islandés", + "Italian": "Italiano", + "Hebrew": "Hebreo", + "Japanese": "Japonés", + "Yiddish": "Yidis", + "Javanese": "Javanés", + "Georgian": "Georgiano", + "Kazakh": "Kazajo", + "Greenlandic": "Groenlandés", + "Cambodian": "Camboyano", + "Kannada": "Canarés", + "Korean": "Coreano", + "Kashmiri": "Cachemir", + "Kurdish": "Kurdo", + "Kirghiz": "Kirguís", + "Latin": "Latín", + "Lingala": "Lingala", + "Laothian": "Laosiano", + "Lithuanian": "Lituano", + "Latvian/Lettish": "Letón", + "Malagasy": "Malgache", + "Maori": "Maorí", + "Macedonian": "Macedonio", + "Malayalam": "Malayo", + "Mongolian": "Mongol", + "Moldavian": "Moldavo", + "Marathi": "Maratí", + "Malay": "Malay", + "Maltese": "Maltés", + "Burmese": "Birmano", + "Nauru": "Nauru o Naurú", + "Nepali": "Nepalí", + "Dutch": "Holandés", + "Norwegian": "Noruego", + "Occitan": "Occitano o lengua de oc", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Panyabí", + "Polish": "Polaco", + "Pashto/Pushto": "Pastún/Ushto", + "Portuguese": "Portugués", + "Quechua": "Quechua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi (Rundi)", + "Romanian": "Rumano", + "Russian": "Ruso", + "Kinyarwanda": "Kiñaruanda", + "Sanskrit": "Sánscrito", + "Sindhi": "Sindi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbocroata", + "Singhalese": "Cingalés", + "Slovak": "Eslovaco", + "Slovenian": "Esloveno", + "Samoan": "Samoano", + "Shona": "Shona", + "Somali": "Somalí", + "Albanian": "Albanés", + "Serbian": "Serbio", + "Siswati": "Suazi", + "Sesotho": "Sesoto", + "Sundanese": "Sundanés", + "Swedish": "Sueco", + "Swahili": "Suajili", + "Tamil": "Tamil", + "Tegulu": "Télugu", + "Tajik": "Tayiko", + "Thai": "Tailandés", + "Tigrinya": "Tigriña", + "Turkmen": "Turkmeno o Turkeno", + "Tagalog": "Tagalo o tagálog", + "Setswana": "Setsuana", + "Tonga": "Tongano", + "Turkish": "Turco", + "Tsonga": "Tsonga", + "Tatar": "Tártaro", + "Twi": "Twi o Chuí", + "Ukrainian": "Ucraniano", + "Urdu": "Urdu", + "Uzbek": "Uzbeko", + "Vietnamese": "Vietnamita", + "Volapuk": "Volapük", + "Wolof": "Wólof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chino", + "Zulu": "Zulú", + "Use station default": "Usar el predeterminado de la estación", + "Upload some tracks below to add them to your library!": "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s.", + "Click the 'New Show' button and fill out the required fields.": "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Parece que no tienes shows programados. %sCrea un show ahora%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n %sCrear un show no enlazado ahora%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Parece que el programa actual necesita más pistas. %sAñade pistas a tu programa ahora%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s.", + "LibreTime media analyzer service": "Servicio de análisis multimedia LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Compruebe que el servicio libretime-analyzer está instalado correctamente en ", + " and ensure that it's running with ": " y asegúrate de que se ejecuta con ", + "If not, try ": "Si no, prueba ", + "LibreTime playout service": "Servicio de emisión de LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Compruebe que el servicio libretime-playout está instalado correctamente en ", + "LibreTime liquidsoap service": "Servicio LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Comprueba que el servicio libretime-liquidsoap está instalado correctamente en ", + "LibreTime Celery Task service": "Servicio de tareas LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Compruebe que el servicio libretime-worker está instalado correctamente en ", + "LibreTime API service": "Servicio API de LibreTime", + "Check that the libretime-api service is installed correctly in ": "Comprueba que el servicio libretime-api está instalado correctamente en ", + "Radio Page": "Radio Web", + "Calendar": "Calendario", + "Widgets": "Widgets", + "Player": "Reproductor", + "Weekly Schedule": "Calendario Semanal", + "Settings": "Ajustes", + "General": "General", + "My Profile": "Mi Perfil", + "Users": "Usuarios", + "Track Types": "Tipos de pista", + "Streams": "Streamer", + "Status": "Estado", + "Analytics": "Estadísticas", + "Playout History": "Historial de reproducción", + "History Templates": "Plantillas Historial", + "Listener Stats": "Estadísticas de oyentes", + "Show Listener Stats": "Mostrar las estadísticas de los oyentes", + "Help": "Ayuda", + "Getting Started": "Cómo iniciar", + "User Manual": "Manual para el usuario", + "Get Help Online": "Conseguir ayuda en línea", + "Contribute to LibreTime": "Contribuir a LibreTime", + "What's New?": "¿Qué hay de nuevo?", + "You are not allowed to access this resource.": "No tienes permiso para acceder a este recurso.", + "You are not allowed to access this resource. ": "No tienes permiso para acceder a este recurso. ", + "File does not exist in %s": "El archivo no existe en %s", + "Bad request. no 'mode' parameter passed.": "Solicitud incorrecta. No se pasa el parámetro 'mode'.", + "Bad request. 'mode' parameter is invalid": "Solicitud incorrecta. El parámetro 'mode' pasado es inválido", + "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", + "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", + "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:

\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer
\n 2. Active la API pública LibreTime en Configuración -> Preferencias", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "Page not found.": "Página no encontrada.", + "The requested action is not supported.": "No se admite la acción solicitada.", + "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", + "An internal application error has occurred.": "Se ha producido un error interno de la aplicación.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "No se han publicado pistas todavía.", + "%s not found": "No se encontró %s", + "Something went wrong.": "Algo salió mal.", + "Preview": "Previsualizar", + "Add to Playlist": "Añadir a la lista de reproducción", + "Add to Smart Block": "Agregar un bloque inteligente", + "Delete": "Eliminar", + "Edit...": "Editar...", + "Download": "Descargar", + "Duplicate Playlist": "Duplicar lista de reproducción", + "Duplicate Smartblock": "Bloque inteligente duplicado", + "No action available": "No hay acción disponible", + "You don't have permission to delete selected items.": "No tienes permiso para eliminar los elementos seleccionados.", + "Could not delete file because it is scheduled in the future.": "No se ha podido eliminar el archivo porque está programado para el futuro.", + "Could not delete file(s).": "No se pudo eliminar el archivo(s).", + "Copy of %s": "Copia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Asegúrese de que el usuario/contraseña de administrador es correcto en la página Configuración->Streams.", + "Audio Player": "Reproductor de audio", + "Something went wrong!": "¡Algo salió mal!", + "Recording:": "Grabando:", + "Master Stream": "Stream maestro", + "Live Stream": "Stream en vivo", + "Nothing Scheduled": "Nada programado", + "Current Show:": "Show actual:", + "Current": "Actual", + "You are running the latest version": "Estás usando la versión más reciente", + "New version available: ": "Nueva versión disponible: ", + "You have a pre-release version of LibreTime intalled.": "Tienes una versión pre-lanzamiento de LibreTime instalada.", + "A patch update for your LibreTime installation is available.": "Hay disponible una actualización de parche para la instalación de LibreTime.", + "A feature update for your LibreTime installation is available.": "Hay disponible una actualización de funcionalidad para su instalación de LibreTime.", + "A major update for your LibreTime installation is available.": "Hay disponible una actualización importante para su instalación de LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible.", + "Add to current playlist": "Añadir a la lista de reproducción actual", + "Add to current smart block": "Añadir al bloque inteligente actual", + "Adding 1 Item": "Añadiendo 1 item", + "Adding %s Items": "Añadiendo %s elementos", + "You can only add tracks to smart blocks.": "Solo puede agregar canciones a los bloques inteligentes.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción.", + "Please select a cursor position on timeline.": "Indica tu selección en la lista de reproducción actual.", + "You haven't added any tracks": "No ha añadido ninguna pista", + "You haven't added any playlists": "No has añadido ninguna lista de reproducción", + "You haven't added any podcasts": "No has añadido ningún podcast", + "You haven't added any smart blocks": "No has añadido ningún bloque inteligente", + "You haven't added any webstreams": "No has añadido ningún webstream", + "Learn about tracks": "Aprenda sobre pistas", + "Learn about playlists": "Aprenda sobre listas de reproducción", + "Learn about podcasts": "Aprenda sobre podcasts", + "Learn about smart blocks": "Aprenda sobre bloques inteligentes", + "Learn about webstreams": "Aprenda sobre webstreams", + "Click 'New' to create one.": "Clic 'Nuevo' para crear uno.", + "Add": "Añadir", + "New": "Nuevo", + "Edit": "Editar", + "Add to Schedule": "Añadir al show próximo", + "Add to next show": "Añadir al show próximo", + "Add to current show": "Añadir al show actual", + "Add after selected items": "Añadir después de los elementos seleccionados", + "Publish": "Publicar", + "Remove": "Eliminar", + "Edit Metadata": "Editar metadatos", + "Add to selected show": "Añadir al show seleccionado", + "Select": "Seleccionar", + "Select this page": "Seleccionar esta página", + "Deselect this page": "Deseleccionar esta página", + "Deselect all": "Deseleccionar todo", + "Are you sure you want to delete the selected item(s)?": "¿De verdad quieres eliminar los ítems seleccionados?", + "Scheduled": "Programado", + "Tracks": "Pistas", + "Playlist": "Listas de reproducción", + "Title": "Título", + "Creator": "Creador", + "Album": "Álbum", + "Bit Rate": "Tasa de bits", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Director", + "Copyright": "Derechos de autor", + "Encoded By": "Codificado por", + "Genre": "Género", + "ISRC": "ISRC", + "Label": "Sello", + "Language": "Idioma", + "Last Modified": "Ult.Modificado", + "Last Played": "Ult.Reproducido", + "Length": "Duración", + "Mime": "Mime", + "Mood": "Estilo (mood)", + "Owner": "Propietario", + "Replay Gain": "Ganancia", + "Sample Rate": "Tasa de muestreo", + "Track Number": "Núm.Pista", + "Uploaded": "Subido", + "Website": "Sitio web", + "Year": "Año", + "Loading...": "Cargando...", + "All": "Todo", + "Files": "Archivos", + "Playlists": "Listas", + "Smart Blocks": "Bloques", + "Web Streams": "Web streams", + "Unknown type: ": "Tipo desconocido: ", + "Are you sure you want to delete the selected item?": "¿De verdad deseas eliminar el ítem seleccionado?", + "Uploading in progress...": "Carga en progreso...", + "Retrieving data from the server...": "Recolectando data desde el servidor...", + "Import": "Importar", + "Imported?": "Importado?", + "View": "Ver", + "Error code: ": "Código del error: ", + "Error msg: ": "Msg de error: ", + "Input must be a positive number": "La entrada debe ser un número positivo", + "Input must be a number": "La entrada debe ser un número", + "Input must be in the format: yyyy-mm-dd": "La entrada debe tener el formato: aaaa-mm-dd", + "Input must be in the format: hh:mm:ss.t": "La entrada debe tener el formato: hh:mm:ss.t", + "My Podcast": "Mi Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. %s¿Estás seguro de que quieres salir de la página?", + "Open Media Builder": "Abrir Media Builder", + "please put in a time '00:00:00 (.0)'": "Por favor introduce un tiempo '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Por favor introduce un tiempo en segundos válido. Ej. 0.5", + "Your browser does not support playing this file type: ": "Tu navegador no soporta la reproducción de este tipo de archivos: ", + "Dynamic block is not previewable": "Los bloques dinámicos no se pueden previsualizar", + "Limit to: ": "Limitado a: ", + "Playlist saved": "Se guardó la lista de reproducción", + "Playlist shuffled": "Lista de reproducción mezclada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime no está seguro del estado de este archivo. Esto puede suceder cuando el archivo está en una unidad remota a la que no se puede acceder o el archivo está en un directorio que ya no se 'vigila'.", + "Listener Count on %s: %s": "Número de oyentes en %s: %s", + "Remind me in 1 week": "Recuérdame en 1 semana", + "Remind me never": "Nunca recordarme", + "Yes, help Airtime": "Sí, ayudar a Libretime", + "Image must be one of jpg, jpeg, png, or gif": "La imagen debe ser jpg, jpeg, png, o gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloque inteligente estático guardará los criterios y generará el contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la Biblioteca antes de añadirlo a un programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "No se alcanzará la longitud de bloque deseada si %s no puede encontrar suficientes pistas únicas que coincidan con sus criterios. Active esta opción si desea permitir que las pistas se añadan varias veces al bloque inteligente.", + "Smart block shuffled": "Se reprodujo el bloque inteligente de forma aleatoria", + "Smart block generated and criteria saved": "Bloque inteligente generado y criterios guardados", + "Smart block saved": "Bloque inteligente guardado", + "Processing...": "Procesando...", + "Select modifier": "Elige modificador", + "contains": "contiene", + "does not contain": "no contiene", + "is": "es", + "is not": "no es", + "starts with": "empieza con", + "ends with": "termina con", + "is greater than": "es mayor que", + "is less than": "es menor que", + "is in the range": "está en el rango de", + "Generate": "Generar", + "Choose Storage Folder": "Elegir carpeta de almacenamiento", + "Choose Folder to Watch": "Elegir carpeta a monitorizar", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n ¡Esto eliminará los archivos de tu biblioteca de Airtime!", + "Manage Media Folders": "Administrar las Carpetas de Medios", + "Are you sure you want to remove the watched folder?": "¿Estás seguro de que quieres quitar la carpeta monitorizada?", + "This path is currently not accessible.": "Esta ruta es actualmente inaccesible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s.", + "Connected to the streaming server": "Conectado al servidor de streaming", + "The stream is disabled": "Se desactivó el stream", + "Getting information from the server...": "Obteniendo información desde el servidor...", + "Can not connect to the streaming server": "No es posible conectar el servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s está detrás de un router o firewall, puede que necesites configurar el reenvío de puertos y la información de este campo será incorrecta. En este caso, tendrá que actualizar manualmente este campo para que muestre el host/puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido está entre 1024 y 49151.", + "For more details, please read the %s%s Manual%s": "Para más detalles, lea el %s%s Manual %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opción para activar los metadatos para los flujos OGG (los metadatos del flujo son el título de la pista, el artista y el nombre del programa que se muestran en un reproductor de audio). VLC y mplayer tienen un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la información de metadatos: se desconectarán del flujo después de cada canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte para estos reproductores de audio, entonces siéntete libre de habilitar esta opción.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente).", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes.", + "Warning: You cannot change this field while the show is currently playing": "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show", + "No result found": "Sin resultados", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show.", + "Specify custom authentication which will work only for this show.": "Especifique una autenticación personalizada que funcione solo para este show.", + "The show instance doesn't exist anymore!": "¡La instancia de este show ya no existe!", + "Warning: Shows cannot be re-linked": "Advertencia: Los shows no pueden re-enlazarse", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario.", + "Show": "Mostrar", + "Show is empty": "El show está vacío", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Recopilando información desde el servidor...", + "This show has no scheduled content.": "Este show no cuenta con contenido programado.", + "This show is not completely filled with content.": "Este programa aún no está lleno de contenido.", + "January": "Enero", + "February": "Febrero", + "March": "Marzo", + "April": "Abril", + "May": "Mayo", + "June": "Junio", + "July": "Julio", + "August": "Agosto", + "September": "Septiembre", + "October": "Octubre", + "November": "Noviembre", + "December": "Diciembre", + "Jan": "Ene", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dic", + "Today": "Hoy", + "Day": "Día", + "Week": "Semana", + "Month": "Mes", + "Sunday": "Domingo", + "Monday": "Lunes", + "Tuesday": "Martes", + "Wednesday": "Miércoles", + "Thursday": "Jueves", + "Friday": "Viernes", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mie", + "Thu": "Jue", + "Fri": "Vie", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Los shows más largos que su segmento programado serán cortados por el show que le sigue.", + "Cancel Current Show?": "¿Cancelar el show actual?", + "Stop recording current show?": "¿Detener la grabación del show actual?", + "Ok": "Ok", + "Contents of Show": "Contenidos del show", + "Remove all content?": "¿Eliminar todo el contenido?", + "Delete selected item(s)?": "¿Eliminar los ítems seleccionados?", + "Start": "Inicio", + "End": "Final", + "Duration": "Duración", + "Filtering out ": "Filtrando ", + " of ": " de ", + " records": " registros", + "There are no shows scheduled during the specified time period.": "No hay shows programados durante el período de tiempo especificado.", + "Cue In": "Señal de entrada", + "Cue Out": "Señal de salida", + "Fade In": "Unirse", + "Fade Out": "Desaparecer", + "Show Empty": "Show vacío", + "Recording From Line In": "Grabando desde la entrada", + "Track preview": "Previsualización de la pista", + "Cannot schedule outside a show.": "No es posible programar un show externo.", + "Moving 1 Item": "Moviendo 1 ítem", + "Moving %s Items": "Moviendo %s elementos", + "Save": "Guardar", + "Cancel": "Cancelar", + "Fade Editor": "Editor de desvanecimiento", + "Cue Editor": "Editor de Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio", + "Select all": "Seleccionar todos", + "Select none": "Seleccionar uno", + "Trim overbooked shows": "Recortar exceso de shows", + "Remove selected scheduled items": "Eliminar los ítems programados seleccionados", + "Jump to the current playing track": "Saltar a la pista en reproducción actual", + "Jump to Current": "Saltar a la pista actual", + "Cancel current show": "Cancelar el show actual", + "Open library to add or remove content": "Abrir biblioteca para agregar o eliminar contenido", + "Add / Remove Content": "Agregar / eliminar contenido", + "in use": "en uso", + "Disk": "Disco", + "Look in": "Buscar en", + "Open": "Abrir", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Administrador de programa", + "Guest": "Invitado", + "Guests can do the following:": "Los invitados pueden hacer lo siguiente:", + "View schedule": "Ver programación", + "View show content": "Ver contenido del show", + "DJs can do the following:": "Los DJ pueden hacer lo siguiente:", + "Manage assigned show content": "Administrar el contenido del show asignado", + "Import media files": "Importar archivos de medios", + "Create playlists, smart blocks, and webstreams": "Crear listas de reproducción, bloques inteligentes y webstreams", + "Manage their own library content": "Administrar su propia biblioteca de contenido", + "Program Managers can do the following:": "Los administradores de programas pueden hacer lo siguiente:", + "View and manage show content": "Ver y administrar contenido del show", + "Schedule shows": "Programar shows", + "Manage all library content": "Administrar el contenido de toda la biblioteca", + "Admins can do the following:": "Los administradores pueden:", + "Manage preferences": "Administrar preferencias", + "Manage users": "Administrar usuarios", + "Manage watched folders": "Administrar carpetas monitorizadas", + "Send support feedback": "Enviar opinión de soporte", + "View system status": "Ver el estado del sistema", + "Access playout history": "Acceder al historial de reproducción", + "View listener stats": "Ver estadísticas de oyentes", + "Show / hide columns": "Mostrar / ocultar columnas", + "Columns": "Columnas", + "From {from} to {to}": "De {from} para {to}", + "kbps": "kbps", + "yyyy-mm-dd": "dd-mm-yyyy", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Do", + "Mo": "Lu", + "Tu": "Ma", + "We": "Mi", + "Th": "Ju", + "Fr": "Vi", + "Sa": "Sa", + "Close": "Cerrar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Hecho", + "Select files": "Seleccione los archivos", + "Add files to the upload queue and click the start button.": "Añade los archivos a la cola de carga y haz clic en el botón de iniciar.", + "Filename": "Nombre del archivo", + "Size": "Tamaño", + "Add Files": "Añadir archivos", + "Stop Upload": "Detener carga", + "Start upload": "Iniciar carga", + "Start Upload": "Empezar a cargar", + "Add files": "Añadir archivos", + "Stop current upload": "Detener la carga en curso", + "Start uploading queue": "Iniciar la carga en la cola", + "Uploaded %d/%d files": "Archivos %d/%d cargados", + "N/A": "No disponible", + "Drag files here.": "Arrastra los archivos a esta área.", + "File extension error.": "Error de extensión del archivo.", + "File size error.": "Error de tamaño del archivo.", + "File count error.": "Error de cuenta del archivo.", + "Init error.": "Error de inicialización.", + "HTTP Error.": "Error de HTTP.", + "Security error.": "Error de seguridad.", + "Generic error.": "Error genérico.", + "IO error.": "Error IO.", + "File: %s": "Archivo: %s", + "%d files queued": "%d archivos en cola", + "File: %f, size: %s, max file size: %m": "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m", + "Upload URL might be wrong or doesn't exist": "Puede que el URL de carga no esté funcionando o no exista", + "Error: File too large: ": "Error: Fichero demasiado grande: ", + "Error: Invalid file extension: ": "Error: Extensión de archivo no válida: ", + "Set Default": "Establecer predeterminado", + "Create Entry": "Crear Entrada", + "Edit History Record": "Editar historial", + "No Show": "No hay Show", + "Copied %s row%s to the clipboard": "Se copiaron %s celda%s al portapapeles", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sImprimir vista%sPor favor, utilice la función de impresión de su navegador para imprimir esta tabla. Pulse Escape cuando termine.", + "New Show": "Nuevo Show", + "New Log Entry": "Nueva entrada de registro", + "No data available in table": "No hay datos en la tabla", + "(filtered from _MAX_ total entries)": "(filtrado de _MAX_ entradas totales)", + "First": "Primero", + "Last": "Último", + "Next": "Siguiente", + "Previous": "Anterior", + "Search:": "Buscar:", + "No matching records found": "No se han encontrado coincidencias", + "Drag tracks here from the library": "Arrastre las pistas desde la biblioteca", + "No tracks were played during the selected time period.": "No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado.", + "Unpublish": "Despublicar", + "No matching results found.": "No se ha encontrado ningún resultado.", + "Author": "Autor", + "Description": "Descripción", + "Link": "Enlace", + "Publication Date": "Fecha de publicación", + "Import Status": "Estado de la importación", + "Actions": "Acciones", + "Delete from Library": "Eliminar de la biblioteca", + "Successfully imported": "Importado correctamente", + "Show _MENU_": "Mostrar el _MENU_", + "Show _MENU_ entries": "Mostrar las entradas del _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Mostrando el _START_ a _END_ del _TOTAL_ las pistas", + "Showing _START_ to _END_ of _TOTAL_ track types": "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas", + "Showing _START_ to _END_ of _TOTAL_ users": "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios", + "Showing 0 to 0 of 0 entries": "Mostrando 0 de 0 de 0 entradas", + "Showing 0 to 0 of 0 tracks": "Mostrando 0 a 0 de 0 pistas", + "Showing 0 to 0 of 0 track types": "Mostrando 0 a 0 de 0 tipos de pistas", + "(filtered from _MAX_ total track types)": "(filtrado de _MAX_ tipos de pistas totales)", + "Are you sure you want to delete this tracktype?": "¿Está seguro de que desea eliminar este tipo de pista?", + "No track types were found.": "No se encontró ningún tipo de pista.", + "No track types found": "No se han encontrado tipos de pista", + "No matching track types found": "No se ha encontrado ningún tipo de pista", + "Enabled": "Activado", + "Disabled": "Desactivado", + "Cancel upload": "Cancelar la carga", + "Type": "Tipo", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", + "Podcast settings saved": "Configuración del podcasts guardado", + "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", + "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", + "You haven't published any episodes!": "¡No has publicado ningún episodio!", + "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", + "Try it now": "Pruebalo ahora", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.

Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.

", + "Playlist preview": "Vista previa de la lista de reproducción", + "Smart Block": "Bloque Inteligente", + "Webstream preview": "Vista previa de la transmisión web", + "You don't have permission to view the library.": "No tienes permiso para ver la biblioteca.", + "Now": "Ahora", + "Click 'New' to create one now.": "Haz clic en 'Nuevo' para crear uno ahora.", + "Click 'Upload' to add some now.": "Haz clic en 'Cargar' para agregar algunos ahora.", + "Feed URL": "URL para el canal", + "Import Date": "Fecha de importación", + "Add New Podcast": "Agregar un nuevo podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "No se puede programar fuera de un programa.\nIntente crear primero un programa.", + "No files have been uploaded yet.": "Aún no se han cargado archivos.", + "On Air": "En directo", + "Off Air": "Fuera de antena", + "Offline": "Sin conexión", + "Nothing scheduled": "Nada programado", + "Click 'Add' to create one now.": "Haga clic en 'Agregar' para crear uno ahora.", + "Please enter your username and password.": "Por favor, introduzca su nombre de usuario y contraseña.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta.", + "That username or email address could not be found.": "No se ha podido encontrar ese nombre de usuario o dirección de correo electrónico.", + "There was a problem with the username or email address you entered.": "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste.", + "Wrong username or password provided. Please try again.": "Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo.", + "You are viewing an older version of %s": "Estas viendo una versión antigua de %s", + "You cannot add tracks to dynamic blocks.": "No puedes añadir pistas a los bloques dinámicos.", + "You don't have permission to delete selected %s(s).": "No tienes permiso para eliminar los %s(s) seleccionados.", + "You can only add tracks to smart block.": "Solo puedes añadir pistas a los bloques inteligentes.", + "Untitled Playlist": "Lista de reproducción sin nombre", + "Untitled Smart Block": "Bloque inteligente sin nombre", + "Unknown Playlist": "Lista de reproducción desconocida", + "Preferences updated.": "Se actualizaron las preferencias.", + "Stream Setting Updated.": "Se actualizaron las configuraciones del stream.", + "path should be specified": "se debe especificar la ruta", + "Problem with Liquidsoap...": "Hay un problema con Liquidsoap...", + "Request method not accepted": "Método de solicitud no aceptado", + "Rebroadcast of show %s from %s at %s": "Retransmisión del programa %s de %s en %s", + "Select cursor": "Elegir cursor", + "Remove cursor": "Eliminar cursor", + "show does not exist": "El show no existe", + "Track Type added successfully!": "¡Tipo de pista añadido con éxito!", + "Track Type updated successfully!": "¡Tipo de pista actualizado con éxito!", + "User added successfully!": "¡Usuario añadido correctamente!", + "User updated successfully!": "¡Usuario actualizado correctamente!", + "Settings updated successfully!": "¡Configuración actualizada correctamente!", + "Untitled Webstream": "Webstream sin título", + "Webstream saved.": "Transmisión web guardada.", + "Invalid form values.": "Los valores en el formulario son inválidos.", + "Invalid character entered": "Se introdujo un caracter inválido", + "Day must be specified": "Se debe especificar un día", + "Time must be specified": "Se debe especificar una hora", + "Must wait at least 1 hour to rebroadcast": "Debes esperar al menos 1 hora para reprogramar", + "Add Autoloading Playlist ?": "¿Programar Lista Auto-Cargada?", + "Select Playlist": "Seleccionar Lista", + "Repeat Playlist Until Show is Full ?": "Repitir lista hasta que termine el programa?", + "Use %s Authentication:": "Usar la autenticación %s:", + "Use Custom Authentication:": "Usar la autenticación personalizada:", + "Custom Username": "Usuario personalizado", + "Custom Password": "Contraseña personalizada", + "Host:": "Host:", + "Port:": "Puerto:", + "Mount:": "Montaje:", + "Username field cannot be empty.": "El campo de usuario no puede estar vacío.", + "Password field cannot be empty.": "El campo de contraseña no puede estar vacío.", + "Record from Line In?": "¿Grabar desde la entrada (line in)?", + "Rebroadcast?": "¿Reprogramar?", + "days": "días", + "Link:": "Enlace:", + "Repeat Type:": "Tipo de repetición:", + "weekly": "semanal", + "every 2 weeks": "cada 2 semanas", + "every 3 weeks": "cada 3 semanas", + "every 4 weeks": "cada 4 semanas", + "monthly": "mensual", + "Select Days:": "Seleccione días:", + "Repeat By:": "Repetir por:", + "day of the month": "día del mes", + "day of the week": "día de la semana", + "Date End:": "Fecha de Finalización:", + "No End?": "¿Sin fin?", + "End date must be after start date": "La fecha de finalización debe ser posterior a la inicio", + "Please select a repeat day": "Por favor, selecciona un día de repeticón", + "Background Colour:": "Color de fondo:", + "Text Colour:": "Color del texto:", + "Current Logo:": "Loco actual:", + "Show Logo:": "Logo del Show:", + "Logo Preview:": "Vista previa del Logo:", + "Name:": "Nombre:", + "Untitled Show": "Show sin nombre", + "URL:": "URL:", + "Genre:": "Género:", + "Description:": "Descripción:", + "Instance Description:": "Descripcin de instancia:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' no concuerda con el formato de tiempo 'HH:mm'", + "Start Time:": "Hora de inicio:", + "In the Future:": "En el Futuro:", + "End Time:": "Hora de fin:", + "Duration:": "Duración:", + "Timezone:": "Zona horaria:", + "Repeats?": "¿Se repite?", + "Cannot create show in the past": "No puedes crear un show en el pasado", + "Cannot modify start date/time of the show that is already started": "No puedes modificar la hora/fecha de inicio de un show que ya empezó", + "End date/time cannot be in the past": "La fecha/hora de finalización no puede ser anterior", + "Cannot have duration < 0m": "No puede tener una duración < 0min", + "Cannot have duration 00h 00m": "No puede tener una duración 00h 00m", + "Cannot have duration greater than 24h": "No puede tener una duración mayor a 24 horas", + "Cannot schedule overlapping shows": "No se pueden programar shows traslapados", + "Search Users:": "Buscar usuarios:", + "DJs:": "Disc-jockeys (DJs):", + "Type Name:": "Escribe un nombre:", + "Code:": "Código:", + "Visibility:": "Visibilidad:", + "Analyze cue points:": "Analizar los puntos de referencia:", + "Code is not unique.": "El código no es único.", + "Username:": "Usuario:", + "Password:": "Contraseña:", + "Verify Password:": "Verificar contraseña:", + "Firstname:": "Nombre:", + "Lastname:": "Apellido:", + "Email:": "Correo electrónico:", + "Mobile Phone:": "Teléfono móvil:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Tipo de usuario:", + "Login name is not unique.": "El nombre de usuario no es único.", + "Delete All Tracks in Library": "Eliminar todas las pistas de la biblioteca", + "Date Start:": "Fecha de Inicio:", + "Title:": "Título:", + "Creator:": "Creador:", + "Album:": "Álbum:", + "Owner:": "Propietario:", + "Select a Type": "Seleccionar un tipo", + "Track Type:": "Tipo de pista:", + "Year:": "Año:", + "Label:": "Sello:", + "Composer:": "Compositor:", + "Conductor:": "Conductor:", + "Mood:": "Ánimo (mood):", + "BPM:": "BPM:", + "Copyright:": "Derechos de autor:", + "ISRC Number:": "Número ISRC:", + "Website:": "Sitio web:", + "Language:": "Idioma:", + "Publish...": "Publicar...", + "Start Time": "Hora de Inicio", + "End Time": "Hora de Finalización", + "Interface Timezone:": "Zona horaria de la interfaz:", + "Station Name": "Nombre de la estación", + "Station Description": "Descripción de la estación", + "Station Logo:": "Logo de la estación:", + "Note: Anything larger than 600x600 will be resized.": "Nota: Cualquiera mayor que 600x600 será redimensionada.", + "Default Crossfade Duration (s):": "Duración predeterminada del Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "Por favor, escribe un valor en segundos (eg. 0.5)", + "Default Fade In (s):": "Fade In perdeterminado (s):", + "Default Fade Out (s):": "Fade Out preseterminado (s):", + "Track Type Upload Default": "Tipo de pista cargado predeterminado", + "Intro Autoloading Playlist": "Lista de reproducción automática", + "Outro Autoloading Playlist": "Lista de reproducción de salida automática", + "Overwrite Podcast Episode Metatags": "Sobrescribir el álbum del podcast", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Genere un bloque inteligente y una lista de reproducción al crear un nuevo podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si esta opción está activada, se generará un nuevo bloque inteligente y una nueva lista de reproducción que coincidan con la pista más reciente de un podcast inmediatamente después de la creación de un nuevo podcast. Tenga en cuenta que la función \"Sobrescribir metatags de episodios de podcast\" también debe estar activada para que los smartblocks encuentren episodios de forma fiable.", + "Public LibreTime API": "API Pública de Libretime", + "Required for embeddable schedule widget.": "Requerido para el widget de programación.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Habilitar esta función permite a Libretime proporcionar datos de programación\n a widgets externos que se pueden integrar en tu sitio web.", + "Default Language": "Idioma predeterminado", + "Station Timezone": "Zona horaria de la Estación", + "Week Starts On": "La semana empieza el", + "Display login button on your Radio Page?": "¿Mostrar el botón de inicio de sesión en su página de radio?", + "Feature Previews": "Vistas previas de funciones", + "Enable this to opt-in to test new features.": "Active esta opción para probar nuevas funciones.", + "Auto Switch Off:": "Desconexión automática:", + "Auto Switch On:": "Encendido automático:", + "Switch Transition Fade (s):": "Transición de desvanecimiento (s):", + "Master Source Host:": "Host Fuente Maestro:", + "Master Source Port:": "Puerto Fuente Maestro:", + "Master Source Mount:": "Montaje Fuente Maestro:", + "Show Source Host:": "Host Fuente del Show:", + "Show Source Port:": "Puerto Fuente del Show:", + "Show Source Mount:": "Montaje Fuente del Show:", + "Login": "Iniciar sesión", + "Password": "Contraseña", + "Confirm new password": "Confirma nueva contraseña", + "Password confirmation does not match your password.": "La confirmación de la contraseña no coincide con tu contraseña.", + "Email": "Correo electrónico", + "Username": "Usuario", + "Reset password": "Restablecer contraseña", + "Back": "Atrás", + "Now Playing": "Reproduciéndose ahora", + "Select Stream:": "Seleccionar Stream:", + "Auto detect the most appropriate stream to use.": "Autodetectar el stream más apropiado a reproducir.", + "Select a stream:": "Selecciona un stream:", + " - Mobile friendly": " - Apto para móviles", + " - The player does not support Opus streams.": " - El reproductor no soporta streams Opus.", + "Embeddable code:": "Código de inserción:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio.", + "Preview:": "Vista previa:", + "Feed Privacy": "Privacidad del Feed", + "Public": "Público", + "Private": "Privado", + "Station Language": "Idioma de la Estación", + "Filter by Show": "Filtrar por Show", + "All My Shows:": "Todos mis shows:", + "My Shows": "Mis Shows", + "Select criteria": "Seleccionar criterio", + "Bit Rate (Kbps)": "Tasa de bits (Kbps)", + "Track Type": "Tipo de pista", + "Sample Rate (kHz)": "Tasa de muestreo (kHz)", + "before": "antes", + "after": "después", + "between": "entre", + "Select unit of time": "Seleccionar la unidad de tiempo", + "minute(s)": "minuto(s)", + "hour(s)": "hora(s)", + "day(s)": "día(s)", + "week(s)": "semana(s)", + "month(s)": "mes(es)", + "year(s)": "año(s)", + "hours": "horas", + "minutes": "minutos", + "items": "elementos", + "time remaining in show": "tiempo restante del programa", + "Randomly": "Aleatorio", + "Newest": "Más nuevo", + "Oldest": "Más antiguo", + "Most recently played": "Reproducido más recientemente", + "Least recently played": "Último reproducido", + "Select Track Type": "Seleccione el tipo de pista", + "Type:": "Tipo:", + "Dynamic": "Dinámico", + "Static": "Estático", + "Select track type": "Selecciona el tipo de pista", + "Allow Repeated Tracks:": "Permitir Pistas Repetidas:", + "Allow last track to exceed time limit:": "Permitir que la última pista supere el límite de tiempo:", + "Sort Tracks:": "Ordenar Pistas:", + "Limit to:": "Limitar a:", + "Generate playlist content and save criteria": "Generar contenido para la lista de reproducción y guardar criterios", + "Shuffle playlist content": "Reproducir de forma aleatoria los contenidos de la lista de reproducción", + "Shuffle": "Reproducción aleatoria", + "Limit cannot be empty or smaller than 0": "El límite no puede estar vacío o ser menor que 0", + "Limit cannot be more than 24 hrs": "El límite no puede ser mayor a 24 horas", + "The value should be an integer": "El valor debe ser un número entero", + "500 is the max item limit value you can set": "500 es el valor máximo de ítems que se pueden configurar", + "You must select Criteria and Modifier": "Debes elegir Criterios y Modificador", + "'Length' should be in '00:00:00' format": "'Longitud' debe estar en formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el valor del texto", + "You must select a time unit for a relative datetime.": "Debe seleccionar una unidad de tiempo para una fecha-hora relativa.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Sólo se permiten números enteros no negativos para una fecha-hora relativa", + "The value has to be numeric": "El valor debe ser numérico", + "The value should be less then 2147483648": "El valor debe ser menor a 2147483648", + "The value cannot be empty": "El valor no puede estar vacío", + "The value should be less than %s characters": "El valor debe ser menor que %s caracteres", + "Value cannot be empty": "El valor no puede estar vacío", + "Stream Label:": "Etiqueta del stream:", + "Artist - Title": "Artísta - Título", + "Show - Artist - Title": "Show - Artista - Título", + "Station name - Show name": "Nombre de la estación - nombre del show", + "Off Air Metadata": "Metadatos Off Air", + "Enable Replay Gain": "Activar ajuste del volumen", + "Replay Gain Modifier": "Modificar ajuste de volumen", + "Hardware Audio Output:": "Salida Hardware Audio:", + "Output Type": "Tipo de Salida", + "Enabled:": "Activado:", + "Mobile:": "Móvil:", + "Stream Type:": "Tipo de stream:", + "Bit Rate:": "Tasa de bits:", + "Service Type:": "Tipo de servicio:", + "Channels:": "Canales:", + "Server": "Servidor", + "Port": "Puerto", + "Mount Point": "Punto de montaje", + "Name": "Nombre", + "URL": "URL", + "Stream URL": "URL de la transmisión", + "Push metadata to your station on TuneIn?": "¿Actualizar metadatos de tu estación en TuneIn?", + "Station ID:": "ID Estación:", + "Partner Key:": "Clave Socio:", + "Partner Id:": "Id Socio:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo.", + "Import Folder:": "Carpeta de importación:", + "Watched Folders:": "Carpetas monitorizadas:", + "Not a valid Directory": "No es un directorio válido", + "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' no se ajusta al formato de fecha '%format%'", + "'%value%' is less than %min% characters long": "'%value%' tiene menos de %min% caracteres", + "'%value%' is more than %max% characters long": "'%value%' tiene más de %max% caracteres", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' no está entre '%min%' y '%max%', inclusive", + "Passwords do not match": "Las contraseñas no coinciden", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", + "\n\nThank you,\nThe %s Team": "\n\nGracias,\nEl equipo %s", + "%s Password Reset": "%s Restablecimiento de Contraseña", + "Cue in and cue out are null.": "Cue in y cue out son nulos.", + "Can't set cue out to be greater than file length.": "No se puede asignar un cue out mayor que la duración del archivo.", + "Can't set cue in to be larger than cue out.": "No se puede asignar un cue in mayor al cue out.", + "Can't set cue out to be smaller than cue in.": "No se puede asignar un cue out menor que el cue in.", + "Upload Time": "Hora de Subida", + "None": "Ninguno", + "Powered by %s": "Desarrollado por %s", + "Select Country": "Seleccionar país", + "livestream": "transmisión en directo", + "Cannot move items out of linked shows": "No se pueden mover elementos de los shows enlazados", + "The schedule you're viewing is out of date! (sched mismatch)": "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "¡La programación que estás viendo está desactualizada! (desfase de instancia)", + "The schedule you're viewing is out of date!": "¡La programación que estás viendo está desactualizada!", + "You are not allowed to schedule show %s.": "No tienes permiso para programar el show %s.", + "You cannot add files to recording shows.": "No puedes agregar pistas a shows en grabación.", + "The show %s is over and cannot be scheduled.": "El show %s terminó y no puede ser programado.", + "The show %s has been previously updated!": "¡El show %s ha sido actualizado anteriormente!", + "Content in linked shows cannot be changed while on air!": "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!", + "Cannot schedule a playlist that contains missing files.": "No se puede programar una lista de reproducción que contenga archivos perdidos.", + "A selected File does not exist!": "¡Un Archivo seleccionado no existe!", + "Shows can have a max length of 24 hours.": "Los shows pueden tener una duración máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "No se pueden programar shows solapados.\nNota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones.", + "Rebroadcast of %s from %s": "Retransmisión de %s desde %s", + "Length needs to be greater than 0 minutes": "La duración debe ser mayor de 0 minutos", + "Length should be of form \"00h 00m\"": "La duración debe estar en el formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "El URL debe estar en el formato \"https://example.org\"", + "URL should be 512 characters or less": "El URL debe ser de 512 caracteres o menos", + "No MIME type found for webstream.": "No se encontró ningún tipo MIME para el webstream.", + "Webstream name cannot be empty": "El nombre del webstream no puede estar vacío", + "Could not parse XSPF playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse PLS playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse M3U playlist": "No se pudo procesar el M3U de la lista de reproducción", + "Invalid webstream - This appears to be a file download.": "Webstream inválido - Esto parece ser una descarga de archivo.", + "Unrecognized stream type: %s": "Tipo de stream no reconocido: %s", + "Record file doesn't exist": "No existe el archivo", + "View Recorded File Metadata": "Ver los metadatos del archivo grabado", + "Schedule Tracks": "Programar pistas", + "Clear Show": "Vaciar Show", + "Cancel Show": "Cancelar Show", + "Edit Instance": "Editar instancia", + "Edit Show": "Editar Show", + "Delete Instance": "Eliminar instancia", + "Delete Instance and All Following": "Eliminar instancia y todas las siguientes", + "Permission denied": "Permiso denegado", + "Can't drag and drop repeating shows": "No es posible arrastrar y soltar shows que se repiten", + "Can't move a past show": "No se puede mover un show pasado", + "Can't move show into past": "No se puede mover un show al pasado", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión.", + "Show was deleted because recorded show does not exist!": "¡El show se eliminó porque el show grabado no existe!", + "Must wait 1 hour to rebroadcast.": "Debe esperar 1 hora para retransmitir.", + "Track": "Pista", + "Played": "Reproducido", + "Auto-generated smartblock for podcast": "Bloque inteligente autogenerado para el podcast", + "Webstreams": "Retransmisiones por Internet" +} diff --git a/webapp/src/locale/fr_FR.json b/webapp/src/locale/fr_FR.json index a3ab339fdb..0b6ccdaa4b 100644 --- a/webapp/src/locale/fr_FR.json +++ b/webapp/src/locale/fr_FR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "L'année %s doit être comprise entre 1753 et 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s n'est pas une date valide", - "%s:%s:%s is not a valid time": "%s:%s:%s n'est pas une durée valide", - "English": "Anglais", - "Afar": "Afar", - "Abkhazian": "Abkhaze", - "Afrikaans": "Afrikaans", - "Amharic": "Amharique", - "Arabic": "Arabe", - "Assamese": "Assamais", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaïdjanais", - "Bashkir": "Bachkir", - "Belarusian": "Biélorusse", - "Bulgarian": "Bulgare", - "Bihari": "Bihari", - "Bislama": "Bichelamar", - "Bengali/Bangla": "Bengali", - "Tibetan": "Tibétain", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corse", - "Czech": "Tchèque", - "Welsh": "Gallois", - "Danish": "Danois", - "German": "Allemand", - "Bhutani": "Dzongkha", - "Greek": "Grec", - "Esperanto": "Espéranto", - "Spanish": "Espagnol", - "Estonian": "Estonien", - "Basque": "Basque", - "Persian": "Persan", - "Finnish": "Finnois", - "Fiji": "Fidjien", - "Faeroese": "Féroïen", - "French": "Français", - "Frisian": "Frison", - "Irish": "Irlandais", - "Scots/Gaelic": "Gaélique écossais", - "Galician": "Galicien", - "Guarani": "Guarani", - "Gujarati": "Goudjarati", - "Hausa": "Haoussa", - "Hindi": "Hindi", - "Croatian": "Croate", - "Hungarian": "Hongrois", - "Armenian": "Arménien", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonésien", - "Icelandic": "Islandais", - "Italian": "Italien", - "Hebrew": "Hébreu", - "Japanese": "Japonais", - "Yiddish": "Yiddish", - "Javanese": "Javanais", - "Georgian": "Géorgien", - "Kazakh": "Kazakh", - "Greenlandic": "Groenlandais", - "Cambodian": "Cambodgien", - "Kannada": "Kannada", - "Korean": "Coréen", - "Kashmiri": "Cachemire", - "Kurdish": "Kurde", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Lao", - "Lithuanian": "Lituanien", - "Latvian/Lettish": "Letton", - "Malagasy": "Malgache", - "Maori": "Maori", - "Macedonian": "Macédonien", - "Malayalam": "Malayalam", - "Mongolian": "Mongol", - "Moldavian": "Moldave", - "Marathi": "Marathi", - "Malay": "Malais", - "Maltese": "Maltais", - "Burmese": "Birman", - "Nauru": "Nauru", - "Nepali": "Népalais", - "Dutch": "Néerlandais", - "Norwegian": "Norvégien", - "Occitan": "Occitan", - "(Afan)/Oromoor/Oriya": "(Afan) / Oromoor / Oriya", - "Punjabi": "Pendjabi", - "Polish": "Polonais", - "Pashto/Pushto": "Pachto", - "Portuguese": "Portugais", - "Quechua": "Quetchua", - "Rhaeto-Romance": "Romanche", - "Kirundi": "Kirundi", - "Romanian": "Roumain", - "Russian": "Russe", - "Kinyarwanda": "Kinyarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sangro", - "Serbo-Croatian": "Serbo-croate", - "Singhalese": "Singhalais", - "Slovak": "Slovaque", - "Slovenian": "Slovène", - "Samoan": "Samoan", - "Shona": "Shona", - "Somali": "Somali", - "Albanian": "Albanais", - "Serbian": "Serbe", - "Siswati": "Siswati", - "Sesotho": "Sesotho", - "Sundanese": "Soundanais", - "Swedish": "Suédois", - "Swahili": "Swahili", - "Tamil": "Tamil", - "Tegulu": "Télougou", - "Tajik": "Tadjik", - "Thai": "Thaï", - "Tigrinya": "Tigrigna", - "Turkmen": "Turkmène", - "Tagalog": "Tagalog", - "Setswana": "Setswana", - "Tonga": "Tonguien", - "Turkish": "Turc", - "Tsonga": "Tsonga", - "Tatar": "Tatar", - "Twi": "Twi", - "Ukrainian": "Ukrainien", - "Urdu": "Ourdou", - "Uzbek": "Ouzbek", - "Vietnamese": "Vietnamien", - "Volapuk": "Volapük", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinois", - "Zulu": "Zoulou", - "Use station default": "Utiliser les réglages par défaut", - "Upload some tracks below to add them to your library!": "Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s.", - "Click the 'New Show' button and fill out the required fields.": "Cliquez sur le bouton « Nouvelle émission » et remplissez les champs requis.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission ».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n %sCréer une émission dé-liée%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "L'émission actuelle est vide. %sAjouter des pistes audio%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "La prochaine émission est vide. %sAjouter des pistes à cette émission%s.", - "LibreTime media analyzer service": "Service d'analyseur de médias LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire ", - " and ensure that it's running with ": " et assurez-vous qu'il fonctionne avec ", - "If not, try ": "Sinon, essayez ", - "LibreTime playout service": "Service de diffusion LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Vérifiez que le service « libretime-playout » est installé correctement dans ", - "LibreTime liquidsoap service": "Service liquidsoap de LibreTime", - "Check that the libretime-liquidsoap service is installed correctly in ": "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans ", - "LibreTime Celery Task service": "Service Celery Task de LibreTime", - "Check that the libretime-worker service is installed correctly in ": "Vérifiez que le service « libretime-worker » est installé correctement dans ", - "LibreTime API service": "Service API LibreTime", - "Check that the libretime-api service is installed correctly in ": "Vérifiez que le service « libretime-api » est installé correctement dans ", - "Radio Page": "Page de la radio", - "Calendar": "Calendrier", - "Widgets": "Widgets", - "Player": "Lecteur", - "Weekly Schedule": "Grille hebdomadaire", - "Settings": "Paramètres", - "General": "Général", - "My Profile": "Mon profil", - "Users": "Utilisateurs", - "Track Types": "Types de flux", - "Streams": "Flux", - "Status": "Statut", - "Analytics": "Statistiques", - "Playout History": "Historique de diffusion", - "History Templates": "Modèle d'historique", - "Listener Stats": "Statistiques des auditeurs", - "Show Listener Stats": "Afficher les statistiques des auditeurs", - "Help": "Aide", - "Getting Started": "Mise en route", - "User Manual": "Manuel Utilisateur", - "Get Help Online": "Obtenir de l'aide en ligne", - "Contribute to LibreTime": "Contribuer à LibreTime", - "What's New?": "Qu'est-ce qui a changé ?", - "You are not allowed to access this resource.": "Vous n'avez pas le droit d'accéder à cette ressource.", - "You are not allowed to access this resource. ": "Vous n'avez pas le droit d'accéder à cette ressource. ", - "File does not exist in %s": "Le fichier n'existe pas dans %s", - "Bad request. no 'mode' parameter passed.": "Mauvaise requête. pas de « mode » paramètre passé.", - "Bad request. 'mode' parameter is invalid": "Mauvaise requête. Le paramètre « mode » est invalide", - "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", - "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", - "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :

\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", - "Page not found.": "Page introuvable.", - "The requested action is not supported.": "L'action requise n'est pas implémentée.", - "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", - "An internal application error has occurred.": "Une erreur interne est survenue.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Aucune piste n'a encore été publiée.", - "%s not found": "%s non trouvé", - "Something went wrong.": "Quelque chose s'est mal passé.", - "Preview": "Prévisualisation", - "Add to Playlist": "Ajouter à la liste", - "Add to Smart Block": "Ajouter un bloc intelligent", - "Delete": "Supprimer", - "Edit...": "Modifier…", - "Download": "Téléchargement", - "Duplicate Playlist": "Dupliquer la liste de lecture", - "Duplicate Smartblock": "Dupliquer le bloc intelligent", - "No action available": "Aucune action disponible", - "You don't have permission to delete selected items.": "Vous n'avez pas la permission de supprimer les éléments sélectionnés.", - "Could not delete file because it is scheduled in the future.": "Impossible de supprimer ce fichier car il est dans la programmation.", - "Could not delete file(s).": "Impossible de supprimer ce(s) fichier(s).", - "Copy of %s": "Copie de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux.", - "Audio Player": "Lecteur Audio", - "Something went wrong!": "Quelque chose s'est mal passé !", - "Recording:": "Enregistrement :", - "Master Stream": "Flux Maitre", - "Live Stream": "Flux en Direct", - "Nothing Scheduled": "Rien de Prévu", - "Current Show:": "Émission en cours :", - "Current": "En ce moment", - "You are running the latest version": "Vous exécutez la dernière version", - "New version available: ": "Nouvelle version disponible : ", - "You have a pre-release version of LibreTime intalled.": "Vous avez une version préliminaire de LibreTime intégrée.", - "A patch update for your LibreTime installation is available.": "Une mise à jour du correctif pour votre installation LibreTime est disponible.", - "A feature update for your LibreTime installation is available.": "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible.", - "A major update for your LibreTime installation is available.": "Une mise à jour majeure de votre installation LibreTime est disponible.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible.", - "Add to current playlist": "Ajouter à la liste de lecture", - "Add to current smart block": "Ajouter au bloc intelligent", - "Adding 1 Item": "Ajouter 1 élément", - "Adding %s Items": "Ajout de %s Elements", - "You can only add tracks to smart blocks.": "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture.", - "Please select a cursor position on timeline.": "S'il vous plaît sélectionner un curseur sur la timeline.", - "You haven't added any tracks": "Vous n'avez pas ajouté de pistes", - "You haven't added any playlists": "Vous n'avez pas ajouté de playlists", - "You haven't added any podcasts": "Vous n'avez pas ajouté de podcast", - "You haven't added any smart blocks": "Vous n'avez ajouté aucun bloc intelligent", - "You haven't added any webstreams": "Vous n'avez ajouté aucun flux web", - "Learn about tracks": "A propos des pistes", - "Learn about playlists": "A propos des playlists", - "Learn about podcasts": "A propos des podcasts", - "Learn about smart blocks": "A propos des blocs intelligents", - "Learn about webstreams": "A propos des flux webs", - "Click 'New' to create one.": "Cliquez sur 'Nouveau' pour en créer un.", - "Add": "Ajouter", - "New": "Nouveau", - "Edit": "Edition", - "Add to Schedule": "Ajouter à la grille", - "Add to next show": "Ajouter à la prochaine émission", - "Add to current show": "Ajouter à l'émission actuelle", - "Add after selected items": "Ajouter après les éléments sélectionnés", - "Publish": "Publier", - "Remove": "Enlever", - "Edit Metadata": "Édition des Méta-Données", - "Add to selected show": "Ajouter à l'émission sélectionnée", - "Select": "Sélection", - "Select this page": "Sélectionner cette page", - "Deselect this page": "Dé-selectionner cette page", - "Deselect all": "Tous déselectioner", - "Are you sure you want to delete the selected item(s)?": "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?", - "Scheduled": "Programmé", - "Tracks": "Pistes", - "Playlist": "Playlist", - "Title": "Titre", - "Creator": "Créateur.ice", - "Album": "Album", - "Bit Rate": "Taux d'echantillonage", - "BPM": "BPM", - "Composer": "Compositeur.ice", - "Conductor": "Conducteur", - "Copyright": "Droit d'Auteur.ice", - "Encoded By": "Encodé Par", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Langue", - "Last Modified": "Dernier Modifié", - "Last Played": "Dernier Joué", - "Length": "Durée", - "Mime": "Mime", - "Mood": "Humeur", - "Owner": "Propriétaire", - "Replay Gain": "Replay Gain", - "Sample Rate": "Taux d'échantillonnage", - "Track Number": "Numéro de la Piste", - "Uploaded": "Téléversé", - "Website": "Site Internet", - "Year": "Année", - "Loading...": "Chargement...", - "All": "Tous", - "Files": "Fichiers", - "Playlists": "Listes de lecture", - "Smart Blocks": "Blocs Intelligents", - "Web Streams": "Flux Web", - "Unknown type: ": "Type inconnu : ", - "Are you sure you want to delete the selected item?": "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?", - "Uploading in progress...": "Téléversement en cours...", - "Retrieving data from the server...": "Récupération des données du serveur...", - "Import": "Importer", - "Imported?": "Importé ?", - "View": "Afficher", - "Error code: ": "Code d'erreur : ", - "Error msg: ": "Message d'erreur : ", - "Input must be a positive number": "L'entrée doit être un nombre positif", - "Input must be a number": "L'entrée doit être un nombre", - "Input must be in the format: yyyy-mm-dd": "L'entrée doit être au format : aaaa-mm-jj", - "Input must be in the format: hh:mm:ss.t": "L'entrée doit être au format : hh:mm:ss.t", - "My Podcast": "Section Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?", - "Open Media Builder": "Ouvrir le Constructeur de Média", - "please put in a time '00:00:00 (.0)'": "veuillez mettre la durée '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Veuillez entrer un temps en secondes. Par exemple 0.5", - "Your browser does not support playing this file type: ": "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : ", - "Dynamic block is not previewable": "Le Bloc dynamique n'est pas prévisualisable", - "Limit to: ": "Limiter à : ", - "Playlist saved": "Liste de Lecture sauvegardé", - "Playlist shuffled": "Playlist en aléatoire", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé».", - "Listener Count on %s: %s": "Nombre d'auditeur·ice·s sur %s : %s", - "Remind me in 1 week": "Me le rappeler dans une semain", - "Remind me never": "Ne jamais me le rappeler", - "Yes, help Airtime": "Oui, aider Airtime", - "Image must be one of jpg, jpeg, png, or gif": "L'Image doit être du type jpg, jpeg, png, ou gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent.", - "Smart block shuffled": "Bloc intelligent mélangé", - "Smart block generated and criteria saved": "Bloc intelligent généré et critère(s) sauvegardé(s)", - "Smart block saved": "Bloc intelligent sauvegardé", - "Processing...": "Traitement en cours ...", - "Select modifier": "Sélectionnez modification", - "contains": "contient", - "does not contain": "ne contient pas", - "is": "est", - "is not": "n'est pas", - "starts with": "commence par", - "ends with": "fini par", - "is greater than": "est plus grand que", - "is less than": "est plus petit que", - "is in the range": "est dans le champ", - "Generate": "Générer", - "Choose Storage Folder": "Choisir un Répertoire de Stockage", - "Choose Folder to Watch": "Choisir un Répertoire à Surveiller", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \nCela supprimera les fichiers de votre médiathèque Airtime !", - "Manage Media Folders": "Gérer les Répertoires des Médias", - "Are you sure you want to remove the watched folder?": "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?", - "This path is currently not accessible.": "Ce chemin n'est pas accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus.", - "Connected to the streaming server": "Connecté au serveur de flux", - "The stream is disabled": "Le flux est désactivé", - "Getting information from the server...": "Obtention des informations à partir du serveur ...", - "Can not connect to the streaming server": "Impossible de se connecter au serveur de flux", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151.", - "For more details, please read the %s%s Manual%s": "Pour plus d'informations, veuillez lire le manuel %s%s %s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute.", - "Warning: You cannot change this field while the show is currently playing": "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture", - "No result found": "Aucun résultat trouvé", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter.", - "Specify custom authentication which will work only for this show.": "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission.", - "The show instance doesn't exist anymore!": "L'instance de l'émission n'existe plus !", - "Warning: Shows cannot be re-linked": "Attention : Les émissions ne peuvent pas être liées à nouveau", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur.", - "Show": "Émission", - "Show is empty": "L'émission est vide", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Récupération des données du serveur...", - "This show has no scheduled content.": "Cette émission n'a pas de contenu programmée.", - "This show is not completely filled with content.": "Cette émission n'est pas complètement remplie avec ce contenu.", - "January": "Janvier", - "February": "Fevrier", - "March": "Mars", - "April": "Avril", - "May": "Mai", - "June": "Juin", - "July": "Juillet", - "August": "Août", - "September": "Septembre", - "October": "Octobre", - "November": "Novembre", - "December": "Décembre", - "Jan": "Jan", - "Feb": "Fev", - "Mar": "Mar", - "Apr": "Avr", - "Jun": "Jun", - "Jul": "Jui", - "Aug": "Aou", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Aujourd'hui", - "Day": "Jour", - "Week": "Semaine", - "Month": "Mois", - "Sunday": "Dimanche", - "Monday": "Lundi", - "Tuesday": "Mardi", - "Wednesday": "Mercredi", - "Thursday": "Jeudi", - "Friday": "Vendredi", - "Saturday": "Samedi", - "Sun": "Dim", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mer", - "Thu": "Jeu", - "Fri": "Ven", - "Sat": "Sam", - "Shows longer than their scheduled time will be cut off by a following show.": "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes.", - "Cancel Current Show?": "Annuler l'émission en cours ?", - "Stop recording current show?": "Arrêter l'enregistrement de l'émission en cours ?", - "Ok": "Ok", - "Contents of Show": "Contenu de l'émission", - "Remove all content?": "Enlever tous les contenus ?", - "Delete selected item(s)?": "Supprimer le(s) élément(s) sélectionné(s) ?", - "Start": "Début", - "End": "Fin", - "Duration": "Durée", - "Filtering out ": "Filtrage ", - " of ": " de ", - " records": " enregistrements", - "There are no shows scheduled during the specified time period.": "Il n'y a pas d'émissions prévues durant cette période.", - "Cue In": "Point d'entrée", - "Cue Out": "Point de sortie", - "Fade In": "Fondu en entrée", - "Fade Out": "Fondu en sortie", - "Show Empty": "Émission vide", - "Recording From Line In": "Enregistrement à partir de 'Line In'", - "Track preview": "Pré-écoute de la piste", - "Cannot schedule outside a show.": "Vous ne pouvez pas programmer en dehors d'une émission.", - "Moving 1 Item": "Déplacer 1 élément", - "Moving %s Items": "Déplacer %s éléments", - "Save": "Sauvegarder", - "Cancel": "Annuler", - "Fade Editor": "Éditeur de fondu", - "Cue Editor": "Éditeur de points d'E/S", - "Waveform features are available in a browser supporting the Web Audio API": "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio", - "Select all": "Tout Selectionner", - "Select none": "Ne Rien Selectionner", - "Trim overbooked shows": "Enlever les émissions surbookées", - "Remove selected scheduled items": "Supprimer les éléments programmés sélectionnés", - "Jump to the current playing track": "Aller à la piste en cours de lecture", - "Jump to Current": "Aller à l'émission en cours", - "Cancel current show": "Annuler l'émission en cours", - "Open library to add or remove content": "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu", - "Add / Remove Content": "Ajouter/Supprimer Contenu", - "in use": "en cours d'utilisation", - "Disk": "Disque", - "Look in": "Regarder à l'intérieur", - "Open": "Ouvrir", - "Admin": "Administrateur·ice", - "DJ": "DeaJee", - "Program Manager": "Programmateur·ice", - "Guest": "Invité·e", - "Guests can do the following:": "Les Invité·e·s peuvent effectuer les opérations suivantes :", - "View schedule": "Voir le calendrier", - "View show content": "Voir le contenu des émissions", - "DJs can do the following:": "Les DJs peuvent effectuer les opérations suivantes :", - "Manage assigned show content": "Gérer le contenu des émissions attribuées", - "Import media files": "Importer des fichiers multimédias", - "Create playlists, smart blocks, and webstreams": "Créez des listes de lectures, des blocs intelligents et des flux web", - "Manage their own library content": "Gérer le contenu de leur propre audiothèque", - "Program Managers can do the following:": "Les gestionnaires de programmes peuvent faire ceci :", - "View and manage show content": "Afficher et gérer le contenu des émissions", - "Schedule shows": "Programmer des émissions", - "Manage all library content": "Gérez tout le contenu de l'audiothèque", - "Admins can do the following:": "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :", - "Manage preferences": "Gérer les préférences", - "Manage users": "Gérer les utilisateur·ice·s", - "Manage watched folders": "Gérer les dossiers surveillés", - "Send support feedback": "Envoyez vos remarques au support", - "View system status": "Voir l'état du système", - "Access playout history": "Accédez à l'historique diffusion", - "View listener stats": "Voir les statistiques d'audience", - "Show / hide columns": "Montrer / cacher les colonnes", - "Columns": "Colonnes", - "From {from} to {to}": "De {from} à {to}", - "kbps": "kbps", - "yyyy-mm-dd": "aaaa-mm-jj", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Di", - "Mo": "Lu", - "Tu": "Ma", - "We": "Me", - "Th": "Je", - "Fr": "Ve", - "Sa": "Sa", - "Close": "Fermer", - "Hour": "Heure", - "Minute": "Minute", - "Done": "Fait", - "Select files": "Sélectionnez les fichiers", - "Add files to the upload queue and click the start button.": "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer.", - "Filename": "Nom du fichier", - "Size": "Taille", - "Add Files": "Ajouter des fichiers", - "Stop Upload": "Arrêter le Téléversement", - "Start upload": "Démarrer le Téléversement", - "Start Upload": "Démarrer le téléversement", - "Add files": "Ajouter des fichiers", - "Stop current upload": "Arrêter le téléversement en cours", - "Start uploading queue": "Démarrer le téléversement de la file", - "Uploaded %d/%d files": "Téléversement de %d sur %d fichiers", - "N/A": "N/A", - "Drag files here.": "Faites glisser les fichiers ici.", - "File extension error.": "Erreur d'extension du fichier.", - "File size error.": "Erreur de la Taille de Fichier.", - "File count error.": "Erreur de comptage des fichiers.", - "Init error.": "Erreur d'initialisation.", - "HTTP Error.": "Erreur HTTP.", - "Security error.": "Erreur de sécurité.", - "Generic error.": "Erreur générique.", - "IO error.": "Erreur d'E/S.", - "File: %s": "Fichier : %s", - "%d files queued": "%d fichiers en file d'attente", - "File: %f, size: %s, max file size: %m": "Fichier : %f, taille : %s, taille de fichier maximale : %m", - "Upload URL might be wrong or doesn't exist": "L'URL de téléversement est peut être erronée ou inexistante", - "Error: File too large: ": "Erreur : Fichier trop grand : ", - "Error: Invalid file extension: ": "Erreur : extension de fichier non valide : ", - "Set Default": "Définir par défaut", - "Create Entry": "Créer une entrée", - "Edit History Record": "Éditer l'enregistrement de l'historique", - "No Show": "Pas d'émission", - "Copied %s row%s to the clipboard": "Copié %s ligne(s)%s dans le presse papier", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé.", - "New Show": "Nouvelle émission", - "New Log Entry": "Nouvelle entrée de log", - "No data available in table": "Aucune date disponible dans le tableau", - "(filtered from _MAX_ total entries)": "(limité à _MAX_ entrées au total)", - "First": "Premier", - "Last": "Dernier", - "Next": "Suivant", - "Previous": "Précédent", - "Search:": "Rechercher :", - "No matching records found": "Aucun enregistrement correspondant trouvé", - "Drag tracks here from the library": "Glissez ici les pistes depuis la bibliothèque", - "No tracks were played during the selected time period.": "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné.", - "Unpublish": "Annuler la publication", - "No matching results found.": "Aucun résultat correspondant trouvé.", - "Author": "Auteur·ice", - "Description": "Description", - "Link": "Lien", - "Publication Date": "Date de publication", - "Import Status": "Statuts d'importation", - "Actions": "Actions", - "Delete from Library": "Supprimer de la bibliothèque", - "Successfully imported": "Succès de l'importation", - "Show _MENU_": "Afficher _MENU_", - "Show _MENU_ entries": "Afficher les entrées du _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Affiche de _START_ à _END_ sur _TOTAL_ entrées", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Affiche de _START_ à _END_ sur _TOTAL_ pistes", - "Showing _START_ to _END_ of _TOTAL_ track types": "Affiche de _START_ à _END_ sur _TOTAL_ types de piste", - "Showing _START_ to _END_ of _TOTAL_ users": "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs", - "Showing 0 to 0 of 0 entries": "Affiche de 0 à 0 sur 0 entrées", - "Showing 0 to 0 of 0 tracks": "Affiche de 0 à 0 sur 0 pistes", - "Showing 0 to 0 of 0 track types": "Affiche de 0 à 0 sur 0 types de piste", - "(filtered from _MAX_ total track types)": "(limité à _MAX_ types de piste au total)", - "Are you sure you want to delete this tracktype?": "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?", - "No track types were found.": "Aucun type de piste trouvé.", - "No track types found": "Aucun type de piste trouvé", - "No matching track types found": "Aucun type de piste correspondant trouvé", - "Enabled": "Activé", - "Disabled": "Désactivé", - "Cancel upload": "Annuler le téléversement", - "Type": "Type", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", - "Podcast settings saved": "Préférences des podcasts enregistrées", - "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", - "Can't delete yourself!": "Impossible de vous supprimer vous-même !", - "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", - "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", - "Try it now": "Essayer maintenant", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

", - "Playlist preview": "Aperçu de la liste de lecture", - "Smart Block": "Bloc intelligent", - "Webstream preview": "Aperçu du webstream", - "You don't have permission to view the library.": "Vous n'avez pas l'autorisation de voir la bibliothèque.", - "Now": "Maintenant", - "Click 'New' to create one now.": "Cliquez « Nouveau » pour en créer un nouveau.", - "Click 'Upload' to add some now.": "Cliquez « Téléverser » pour en ajouter de nouveaux.", - "Feed URL": "URL du flux", - "Import Date": "Date d'importation", - "Add New Podcast": "Ajouter un nouveau podcast", - "Cannot schedule outside a show.\nTry creating a show first.": "Impossible de programmer en-dehors d'un épisode.\nVeuillez d'abord créer un épisode.", - "No files have been uploaded yet.": "Aucun fichier n'a encore été téléversé.", - "On Air": "À l'antenne", - "Off Air": "Hors antenne", - "Offline": "Éteint", - "Nothing scheduled": "Aucun programme", - "Click 'Add' to create one now.": "Cliquez « Ajouter » pour en créer un nouveau maintenant.", - "Please enter your username and password.": "Veuillez entrer vos identifiants.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré.", - "That username or email address could not be found.": "Cet identifiant ou cette adresse courriel n'ont pu être trouvés.", - "There was a problem with the username or email address you entered.": "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e).", - "Wrong username or password provided. Please try again.": "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau.", - "You are viewing an older version of %s": "Vous visualisez l'ancienne version de %s", - "You cannot add tracks to dynamic blocks.": "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques.", - "You don't have permission to delete selected %s(s).": "Vous n'avez pas la permission de supprimer la sélection %s(s).", - "You can only add tracks to smart block.": "Vous pouvez seulement ajouter des pistes au bloc intelligent.", - "Untitled Playlist": "Liste de lecture sans titre", - "Untitled Smart Block": "Bloc intelligent sans titre", - "Unknown Playlist": "Liste de lecture inconnue", - "Preferences updated.": "Préférences mises à jour.", - "Stream Setting Updated.": "Réglages du Flux mis à jour.", - "path should be specified": "le chemin doit être spécifié", - "Problem with Liquidsoap...": "Problème avec Liquidsoap...", - "Request method not accepted": "Cette méthode de requête ne peut aboutir", - "Rebroadcast of show %s from %s at %s": "Rediffusion de l'émission %s de %s à %s", - "Select cursor": "Sélectionner le Curseur", - "Remove cursor": "Enlever le Curseur", - "show does not exist": "l'émission n'existe pas", - "Track Type added successfully!": "Type de piste ajouté avec succès !", - "Track Type updated successfully!": "Type de piste mis à jour avec succès !", - "User added successfully!": "Utilisateur·ice ajouté avec succès !", - "User updated successfully!": "Utilisateur·ice mis à jour avec succès !", - "Settings updated successfully!": "Paramètres mis à jour avec succès !", - "Untitled Webstream": "Flux Web sans Titre", - "Webstream saved.": "Flux Web sauvegardé.", - "Invalid form values.": "Valeurs du formulaire non valides.", - "Invalid character entered": "Caractère Invalide saisi", - "Day must be specified": "Le Jour doit être spécifié", - "Time must be specified": "La durée doit être spécifiée", - "Must wait at least 1 hour to rebroadcast": "Vous devez attendre au moins 1 heure pour retransmettre", - "Add Autoloading Playlist ?": "Ajouter une playlist automatique ?", - "Select Playlist": "Sélectionner la playlist", - "Repeat Playlist Until Show is Full ?": "Répéter la playlist jusqu'à ce que l'émission soit pleine ?", - "Use %s Authentication:": "Utilisez l'authentification %s :", - "Use Custom Authentication:": "Utiliser l'authentification personnalisée :", - "Custom Username": "Nom d'utilisateur·ice personnalisé", - "Custom Password": "Mot de Passe personnalisé", - "Host:": "Hôte :", - "Port:": "Port :", - "Mount:": "Point de Montage :", - "Username field cannot be empty.": "Le champ Nom d'Utilisateur·ice ne peut pas être vide.", - "Password field cannot be empty.": "Le champ Mot de Passe ne peut être vide.", - "Record from Line In?": "Enregistrer à partir de « Line In » ?", - "Rebroadcast?": "Rediffusion ?", - "days": "jours", - "Link:": "Lien :", - "Repeat Type:": "Type de Répétition :", - "weekly": "hebdomadaire", - "every 2 weeks": "toutes les 2 semaines", - "every 3 weeks": "toutes les 3 semaines", - "every 4 weeks": "toutes les 4 semaines", - "monthly": "mensuel", - "Select Days:": "Sélection des jours :", - "Repeat By:": "Répéter par :", - "day of the month": "jour du mois", - "day of the week": "jour de la semaine", - "Date End:": "Date de fin :", - "No End?": "Sans fin ?", - "End date must be after start date": "La Date de Fin doit être postérieure à la Date de Début", - "Please select a repeat day": "Veuillez sélectionner un jour de répétition", - "Background Colour:": "Couleur de fond :", - "Text Colour:": "Couleur du texte :", - "Current Logo:": "Logo actuel :", - "Show Logo:": "Montrer le logo :", - "Logo Preview:": "Aperçu du logo :", - "Name:": "Nom :", - "Untitled Show": "Émission sans Titre", - "URL:": "URL :", - "Genre:": "Genre :", - "Description:": "Description :", - "Instance Description:": "Description de l'instance :", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ne correspond pas au format de durée 'HH:mm'", - "Start Time:": "Heure de début :", - "In the Future:": "À venir :", - "End Time:": "Temps de fin :", - "Duration:": "Durée :", - "Timezone:": "Fuseau horaire :", - "Repeats?": "Répéter ?", - "Cannot create show in the past": "Impossible de créer une émission dans le passé", - "Cannot modify start date/time of the show that is already started": "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé", - "End date/time cannot be in the past": "La date/heure de Fin ne peut être dans le passé", - "Cannot have duration < 0m": "Ne peut pas avoir une durée < 0m", - "Cannot have duration 00h 00m": "Ne peut pas avoir une durée de 00h 00m", - "Cannot have duration greater than 24h": "Ne peut pas avoir une durée supérieure à 24h", - "Cannot schedule overlapping shows": "Ne peut pas programmer des émissions qui se chevauchent", - "Search Users:": "Recherche d'utilisateur·ice·s :", - "DJs:": "DJs :", - "Type Name:": "Nom du type :", - "Code:": "Code :", - "Visibility:": "Visibilité :", - "Analyze cue points:": "Analyser les points d'entrée et de sortie :", - "Code is not unique.": "Ce code n'est pas unique.", - "Username:": "Utilisateur·ice :", - "Password:": "Mot de Passe :", - "Verify Password:": "Vérification du mot de Passe :", - "Firstname:": "Prénom :", - "Lastname:": "Nom :", - "Email:": "Courriel :", - "Mobile Phone:": "Numéro de mobile :", - "Skype:": "Skype :", - "Jabber:": "Jabber :", - "User Type:": "Type d'utilisateur·ice :", - "Login name is not unique.": "Le Nom de connexion n'est pas unique.", - "Delete All Tracks in Library": "Supprimer toutes les pistes de la librairie", - "Date Start:": "Date de début :", - "Title:": "Titre :", - "Creator:": "Créateur·ice :", - "Album:": "Album :", - "Owner:": "Propriétaire :", - "Select a Type": "Sélectionner un type", - "Track Type:": "Type de piste :", - "Year:": "Année :", - "Label:": "Étiquette :", - "Composer:": "Compositeur·ice :", - "Conductor:": "Conducteur :", - "Mood:": "Atmosphère :", - "BPM:": "BPM :", - "Copyright:": "Copyright :", - "ISRC Number:": "Numéro ISRC :", - "Website:": "Site Internet :", - "Language:": "Langue :", - "Publish...": "Publier...", - "Start Time": "Heure de Début", - "End Time": "Heure de Fin", - "Interface Timezone:": "Fuseau horaire de l'interface :", - "Station Name": "Nom de la Station", - "Station Description": "Description de la station", - "Station Logo:": "Logo de la Station :", - "Note: Anything larger than 600x600 will be resized.": "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné.", - "Default Crossfade Duration (s):": "Durée du fondu enchaîné (en sec) :", - "Please enter a time in seconds (eg. 0.5)": "Veuillez entrer un temps en secondes (ex. 0.5)", - "Default Fade In (s):": "Fondu en Entrée par défaut (en sec) :", - "Default Fade Out (s):": "Fondu en Sortie par défaut (en sec) :", - "Track Type Upload Default": "Type de piste par défaut", - "Intro Autoloading Playlist": "Playlist automatique d'intro", - "Outro Autoloading Playlist": "Playlist automatique d'outro", - "Overwrite Podcast Episode Metatags": "Remplacer les metatags de l'épisode", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement.", - "Public LibreTime API": "API publique LibreTime", - "Required for embeddable schedule widget.": "Requis pour le widget de programmation.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n à des widgets externes pouvant être intégrés à votre site Web.", - "Default Language": "Langage par défaut", - "Station Timezone": "Fuseau horaire de la Station", - "Week Starts On": "La semaine commence le", - "Display login button on your Radio Page?": "Afficher le bouton de connexion sur votre page radio ?", - "Feature Previews": "Aperçus de fonctionnalités", - "Enable this to opt-in to test new features.": "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités.", - "Auto Switch Off:": "Arrêt automatique :", - "Auto Switch On:": "Mise en marche automatique :", - "Switch Transition Fade (s):": "Changement de transition en fondu (en sec) :", - "Master Source Host:": "Hôte source maître :", - "Master Source Port:": "Port source maître :", - "Master Source Mount:": "Point de montage principal :", - "Show Source Host:": "Afficher l'hôte de la source :", - "Show Source Port:": "Afficher le port de la source :", - "Show Source Mount:": "Afficher le point de montage de la source :", - "Login": "Connexion", - "Password": "Mot de Passe", - "Confirm new password": "Confirmez le nouveau mot de passe", - "Password confirmation does not match your password.": "La confirmation du mot de passe ne correspond pas à votre mot de passe.", - "Email": "Courriel", - "Username": "Utilisateur", - "Reset password": "Réinitialisation du Mot de Passe", - "Back": "Retour", - "Now Playing": "En Lecture", - "Select Stream:": "Sélectionnez un flux :", - "Auto detect the most appropriate stream to use.": "Détecter automatiquement le flux le plus approprié à utiliser.", - "Select a stream:": "Sélectionnez un flux :", - " - Mobile friendly": " - Interface mobile", - " - The player does not support Opus streams.": " - Le lecteur ne fonctionne pas avec des flux Opus.", - "Embeddable code:": "Code à intégrer :", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur.", - "Preview:": "Aperçu :", - "Feed Privacy": "Confidentialité du flux", - "Public": "Publique", - "Private": "Privé", - "Station Language": "Langage de la station", - "Filter by Show": "Filtrer par émissions", - "All My Shows:": "Toutes mes émissions :", - "My Shows": "Mes émissions", - "Select criteria": "Sélectionner le critère", - "Bit Rate (Kbps)": "Taux d'échantillonage (Kbps)", - "Track Type": "Type de piste", - "Sample Rate (kHz)": "Taux d'échantillonage (Khz)", - "before": "avant", - "after": "après", - "between": "entre", - "Select unit of time": "Sélectionner une unité de temps", - "minute(s)": "minute(s)", - "hour(s)": "heure(s)", - "day(s)": "jour(s)", - "week(s)": "semaine(s)", - "month(s)": "mois", - "year(s)": "année(s)", - "hours": "heures", - "minutes": "minutes", - "items": "éléments", - "time remaining in show": "temps restant de l'émission", - "Randomly": "Aléatoirement", - "Newest": "Plus récent", - "Oldest": "Plus vieux", - "Most recently played": "Les plus joués récemment", - "Least recently played": "Les moins jouées récemment", - "Select Track Type": "Sélectionner un type de piste", - "Type:": "Type :", - "Dynamic": "Dynamique", - "Static": "Statique", - "Select track type": "Sélectionner un type de piste", - "Allow Repeated Tracks:": "Autoriser la répétition de pistes :", - "Allow last track to exceed time limit:": "Autoriser la dernière piste à dépasser l'horaire :", - "Sort Tracks:": "Trier les pistes :", - "Limit to:": "Limiter à :", - "Generate playlist content and save criteria": "Génération de la liste de lecture et sauvegarde des critères", - "Shuffle playlist content": "Contenu de la liste de lecture alèatoire", - "Shuffle": "Aléatoire", - "Limit cannot be empty or smaller than 0": "La Limite ne peut être vide ou plus petite que 0", - "Limit cannot be more than 24 hrs": "La Limite ne peut être supérieure à 24 heures", - "The value should be an integer": "La valeur doit être un entier", - "500 is the max item limit value you can set": "500 est la valeur maximale de l'élément que vous pouvez définir", - "You must select Criteria and Modifier": "Vous devez sélectionner Critères et Modification", - "'Length' should be in '00:00:00' format": "La 'Durée' doit être au format '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte", - "You must select a time unit for a relative datetime.": "Vous devez sélectionner une unité de temps pour une date relative.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Seuls les entiers positifs sont autorisés pour les dates relatives", - "The value has to be numeric": "La valeur doit être numérique", - "The value should be less then 2147483648": "La valeur doit être inférieure à 2147483648", - "The value cannot be empty": "La valeur ne peut pas être vide", - "The value should be less than %s characters": "La valeur doit être inférieure à %s caractères", - "Value cannot be empty": "La Valeur ne peut pas être vide", - "Stream Label:": "Label du Flux :", - "Artist - Title": "Artiste - Titre", - "Show - Artist - Title": "Émission - Artiste - Titre", - "Station name - Show name": "Nom de la Station - Nom de l'émission", - "Off Air Metadata": "Métadonnées Hors Antenne", - "Enable Replay Gain": "Activer", - "Replay Gain Modifier": "Modifier le Niveau du Gain", - "Hardware Audio Output:": "Sortie audio matérielle :", - "Output Type": "Type de Sortie", - "Enabled:": "Activé :", - "Mobile:": "Mobile :", - "Stream Type:": "Type de Flux :", - "Bit Rate:": "Débit :", - "Service Type:": "Type de service :", - "Channels:": "Canaux :", - "Server": "Serveur", - "Port": "Port", - "Mount Point": "Point de Montage", - "Name": "Nom", - "URL": "URL", - "Stream URL": "URL du flux", - "Push metadata to your station on TuneIn?": "Pousser les métadonnées sur votre station sur TuneIn ?", - "Station ID:": "Identifiant de la station :", - "Partner Key:": "Clé partenaire :", - "Partner Id:": "ID partenaire :", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez.", - "Import Folder:": "Répertoire d'importation :", - "Watched Folders:": "Répertoires Surveillés :", - "Not a valid Directory": "N'est pas un Répertoire valide", - "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", - "'%value%' is no valid email address in the basic format local-part@hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine", - "'%value%' does not fit the date format '%format%'": "'%value%' ne correspond pas au format de la date '%format%'", - "'%value%' is less than %min% characters long": "'%value%' est inférieur à %min% charactères", - "'%value%' is more than %max% characters long": "'%value%' est plus grand de %min% charactères", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' n'est pas entre '%min%' et '%max%', inclusivement", - "Passwords do not match": "Les mots de passe ne correspondent pas", - "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", - "\n\nThank you,\nThe %s Team": "\n\nMerci,\nL'équipe %s", - "%s Password Reset": "%s Réinitialisation du mot de passe", - "Cue in and cue out are null.": "Le points d'entrée et de sortie sont indéfinis.", - "Can't set cue out to be greater than file length.": "Ne peut pas fixer un point de sortie plus grand que la durée du fichier.", - "Can't set cue in to be larger than cue out.": "Impossible de définir un point d'entrée plus grand que le point de sortie.", - "Can't set cue out to be smaller than cue in.": "Ne peux pas fixer un point de sortie plus petit que le point d'entrée.", - "Upload Time": "Temps de téléversement", - "None": "Vide", - "Powered by %s": "Propulsé par %s", - "Select Country": "Selectionner le Pays", - "livestream": "diffusion en direct", - "Cannot move items out of linked shows": "Vous ne pouvez pas déplacer les éléments sur les émissions liées", - "The schedule you're viewing is out of date! (sched mismatch)": "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)", - "The schedule you're viewing is out of date! (instance mismatch)": "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)", - "The schedule you're viewing is out of date!": "Le calendrier que vous consultez n'est pas à jour !", - "You are not allowed to schedule show %s.": "Vous n'êtes pas autorisé à programme l'émission %s.", - "You cannot add files to recording shows.": "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées.", - "The show %s is over and cannot be scheduled.": "L émission %s est terminé et ne peut pas être programmé.", - "The show %s has been previously updated!": "L'émission %s a été précédemment mise à jour !", - "Content in linked shows cannot be changed while on air!": "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !", - "Cannot schedule a playlist that contains missing files.": "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants.", - "A selected File does not exist!": "Un fichier sélectionne n'existe pas !", - "Shows can have a max length of 24 hours.": "Les émissions peuvent avoir une durée maximale de 24 heures.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Ne peux pas programmer des émissions qui se chevauchent. \nRemarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions.", - "Rebroadcast of %s from %s": "Rediffusion de %s à %s", - "Length needs to be greater than 0 minutes": "La durée doit être supérieure à 0 minute", - "Length should be of form \"00h 00m\"": "La durée doit être de la forme \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL doit être de la forme \"https://example.org\"", - "URL should be 512 characters or less": "L'URL doit être de 512 caractères ou moins", - "No MIME type found for webstream.": "Aucun type MIME trouvé pour le Flux Web.", - "Webstream name cannot be empty": "Le Nom du Flux Web ne peut être vide", - "Could not parse XSPF playlist": "Impossible d'analyser la Sélection XSPF", - "Could not parse PLS playlist": "Impossible d'analyser la Sélection PLS", - "Could not parse M3U playlist": "Impossible d'analyser la Séléction M3U", - "Invalid webstream - This appears to be a file download.": "Flux Web Invalide - Ceci semble être un fichier téléchargeable.", - "Unrecognized stream type: %s": "Type de flux non reconnu : %s", - "Record file doesn't exist": "L'enregistrement du fichier n'existe pas", - "View Recorded File Metadata": "Afficher les métadonnées du fichier enregistré", - "Schedule Tracks": "Ajouter des pistes", - "Clear Show": "Vider le contenu de l'émission", - "Cancel Show": "Annuler l'émission", - "Edit Instance": "Modifier cet élément", - "Edit Show": "Édition de l'émission", - "Delete Instance": "Supprimer cet élément", - "Delete Instance and All Following": "Supprimer cet élément et tous les suivants", - "Permission denied": "Permission refusée", - "Can't drag and drop repeating shows": "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois", - "Can't move a past show": "Impossible de déplacer une émission déjà diffusée", - "Can't move show into past": "Impossible de déplacer une émission dans le passé", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions.", - "Show was deleted because recorded show does not exist!": "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !", - "Must wait 1 hour to rebroadcast.": "Doit attendre 1 heure pour retransmettre.", - "Track": "Piste", - "Played": "Joué", - "Auto-generated smartblock for podcast": "Playlist intelligente géré automatiquement pour le podcast", - "Webstreams": "Flux web" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "L'année %s doit être comprise entre 1753 et 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s n'est pas une date valide", + "%s:%s:%s is not a valid time": "%s:%s:%s n'est pas une durée valide", + "English": "Anglais", + "Afar": "Afar", + "Abkhazian": "Abkhaze", + "Afrikaans": "Afrikaans", + "Amharic": "Amharique", + "Arabic": "Arabe", + "Assamese": "Assamais", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaïdjanais", + "Bashkir": "Bachkir", + "Belarusian": "Biélorusse", + "Bulgarian": "Bulgare", + "Bihari": "Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibétain", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corse", + "Czech": "Tchèque", + "Welsh": "Gallois", + "Danish": "Danois", + "German": "Allemand", + "Bhutani": "Dzongkha", + "Greek": "Grec", + "Esperanto": "Espéranto", + "Spanish": "Espagnol", + "Estonian": "Estonien", + "Basque": "Basque", + "Persian": "Persan", + "Finnish": "Finnois", + "Fiji": "Fidjien", + "Faeroese": "Féroïen", + "French": "Français", + "Frisian": "Frison", + "Irish": "Irlandais", + "Scots/Gaelic": "Gaélique écossais", + "Galician": "Galicien", + "Guarani": "Guarani", + "Gujarati": "Goudjarati", + "Hausa": "Haoussa", + "Hindi": "Hindi", + "Croatian": "Croate", + "Hungarian": "Hongrois", + "Armenian": "Arménien", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonésien", + "Icelandic": "Islandais", + "Italian": "Italien", + "Hebrew": "Hébreu", + "Japanese": "Japonais", + "Yiddish": "Yiddish", + "Javanese": "Javanais", + "Georgian": "Géorgien", + "Kazakh": "Kazakh", + "Greenlandic": "Groenlandais", + "Cambodian": "Cambodgien", + "Kannada": "Kannada", + "Korean": "Coréen", + "Kashmiri": "Cachemire", + "Kurdish": "Kurde", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Lao", + "Lithuanian": "Lituanien", + "Latvian/Lettish": "Letton", + "Malagasy": "Malgache", + "Maori": "Maori", + "Macedonian": "Macédonien", + "Malayalam": "Malayalam", + "Mongolian": "Mongol", + "Moldavian": "Moldave", + "Marathi": "Marathi", + "Malay": "Malais", + "Maltese": "Maltais", + "Burmese": "Birman", + "Nauru": "Nauru", + "Nepali": "Népalais", + "Dutch": "Néerlandais", + "Norwegian": "Norvégien", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan) / Oromoor / Oriya", + "Punjabi": "Pendjabi", + "Polish": "Polonais", + "Pashto/Pushto": "Pachto", + "Portuguese": "Portugais", + "Quechua": "Quetchua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi", + "Romanian": "Roumain", + "Russian": "Russe", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-croate", + "Singhalese": "Singhalais", + "Slovak": "Slovaque", + "Slovenian": "Slovène", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanais", + "Serbian": "Serbe", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Soundanais", + "Swedish": "Suédois", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Télougou", + "Tajik": "Tadjik", + "Thai": "Thaï", + "Tigrinya": "Tigrigna", + "Turkmen": "Turkmène", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonguien", + "Turkish": "Turc", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainien", + "Urdu": "Ourdou", + "Uzbek": "Ouzbek", + "Vietnamese": "Vietnamien", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinois", + "Zulu": "Zoulou", + "Use station default": "Utiliser les réglages par défaut", + "Upload some tracks below to add them to your library!": "Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s.", + "Click the 'New Show' button and fill out the required fields.": "Cliquez sur le bouton « Nouvelle émission » et remplissez les champs requis.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission ».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n %sCréer une émission dé-liée%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "L'émission actuelle est vide. %sAjouter des pistes audio%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "La prochaine émission est vide. %sAjouter des pistes à cette émission%s.", + "LibreTime media analyzer service": "Service d'analyseur de médias LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire ", + " and ensure that it's running with ": " et assurez-vous qu'il fonctionne avec ", + "If not, try ": "Sinon, essayez ", + "LibreTime playout service": "Service de diffusion LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Vérifiez que le service « libretime-playout » est installé correctement dans ", + "LibreTime liquidsoap service": "Service liquidsoap de LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans ", + "LibreTime Celery Task service": "Service Celery Task de LibreTime", + "Check that the libretime-worker service is installed correctly in ": "Vérifiez que le service « libretime-worker » est installé correctement dans ", + "LibreTime API service": "Service API LibreTime", + "Check that the libretime-api service is installed correctly in ": "Vérifiez que le service « libretime-api » est installé correctement dans ", + "Radio Page": "Page de la radio", + "Calendar": "Calendrier", + "Widgets": "Widgets", + "Player": "Lecteur", + "Weekly Schedule": "Grille hebdomadaire", + "Settings": "Paramètres", + "General": "Général", + "My Profile": "Mon profil", + "Users": "Utilisateurs", + "Track Types": "Types de flux", + "Streams": "Flux", + "Status": "Statut", + "Analytics": "Statistiques", + "Playout History": "Historique de diffusion", + "History Templates": "Modèle d'historique", + "Listener Stats": "Statistiques des auditeurs", + "Show Listener Stats": "Afficher les statistiques des auditeurs", + "Help": "Aide", + "Getting Started": "Mise en route", + "User Manual": "Manuel Utilisateur", + "Get Help Online": "Obtenir de l'aide en ligne", + "Contribute to LibreTime": "Contribuer à LibreTime", + "What's New?": "Qu'est-ce qui a changé ?", + "You are not allowed to access this resource.": "Vous n'avez pas le droit d'accéder à cette ressource.", + "You are not allowed to access this resource. ": "Vous n'avez pas le droit d'accéder à cette ressource. ", + "File does not exist in %s": "Le fichier n'existe pas dans %s", + "Bad request. no 'mode' parameter passed.": "Mauvaise requête. pas de « mode » paramètre passé.", + "Bad request. 'mode' parameter is invalid": "Mauvaise requête. Le paramètre « mode » est invalide", + "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", + "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", + "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :

\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "Page not found.": "Page introuvable.", + "The requested action is not supported.": "L'action requise n'est pas implémentée.", + "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", + "An internal application error has occurred.": "Une erreur interne est survenue.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Aucune piste n'a encore été publiée.", + "%s not found": "%s non trouvé", + "Something went wrong.": "Quelque chose s'est mal passé.", + "Preview": "Prévisualisation", + "Add to Playlist": "Ajouter à la liste", + "Add to Smart Block": "Ajouter un bloc intelligent", + "Delete": "Supprimer", + "Edit...": "Modifier…", + "Download": "Téléchargement", + "Duplicate Playlist": "Dupliquer la liste de lecture", + "Duplicate Smartblock": "Dupliquer le bloc intelligent", + "No action available": "Aucune action disponible", + "You don't have permission to delete selected items.": "Vous n'avez pas la permission de supprimer les éléments sélectionnés.", + "Could not delete file because it is scheduled in the future.": "Impossible de supprimer ce fichier car il est dans la programmation.", + "Could not delete file(s).": "Impossible de supprimer ce(s) fichier(s).", + "Copy of %s": "Copie de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux.", + "Audio Player": "Lecteur Audio", + "Something went wrong!": "Quelque chose s'est mal passé !", + "Recording:": "Enregistrement :", + "Master Stream": "Flux Maitre", + "Live Stream": "Flux en Direct", + "Nothing Scheduled": "Rien de Prévu", + "Current Show:": "Émission en cours :", + "Current": "En ce moment", + "You are running the latest version": "Vous exécutez la dernière version", + "New version available: ": "Nouvelle version disponible : ", + "You have a pre-release version of LibreTime intalled.": "Vous avez une version préliminaire de LibreTime intégrée.", + "A patch update for your LibreTime installation is available.": "Une mise à jour du correctif pour votre installation LibreTime est disponible.", + "A feature update for your LibreTime installation is available.": "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible.", + "A major update for your LibreTime installation is available.": "Une mise à jour majeure de votre installation LibreTime est disponible.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible.", + "Add to current playlist": "Ajouter à la liste de lecture", + "Add to current smart block": "Ajouter au bloc intelligent", + "Adding 1 Item": "Ajouter 1 élément", + "Adding %s Items": "Ajout de %s Elements", + "You can only add tracks to smart blocks.": "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture.", + "Please select a cursor position on timeline.": "S'il vous plaît sélectionner un curseur sur la timeline.", + "You haven't added any tracks": "Vous n'avez pas ajouté de pistes", + "You haven't added any playlists": "Vous n'avez pas ajouté de playlists", + "You haven't added any podcasts": "Vous n'avez pas ajouté de podcast", + "You haven't added any smart blocks": "Vous n'avez ajouté aucun bloc intelligent", + "You haven't added any webstreams": "Vous n'avez ajouté aucun flux web", + "Learn about tracks": "A propos des pistes", + "Learn about playlists": "A propos des playlists", + "Learn about podcasts": "A propos des podcasts", + "Learn about smart blocks": "A propos des blocs intelligents", + "Learn about webstreams": "A propos des flux webs", + "Click 'New' to create one.": "Cliquez sur 'Nouveau' pour en créer un.", + "Add": "Ajouter", + "New": "Nouveau", + "Edit": "Edition", + "Add to Schedule": "Ajouter à la grille", + "Add to next show": "Ajouter à la prochaine émission", + "Add to current show": "Ajouter à l'émission actuelle", + "Add after selected items": "Ajouter après les éléments sélectionnés", + "Publish": "Publier", + "Remove": "Enlever", + "Edit Metadata": "Édition des Méta-Données", + "Add to selected show": "Ajouter à l'émission sélectionnée", + "Select": "Sélection", + "Select this page": "Sélectionner cette page", + "Deselect this page": "Dé-selectionner cette page", + "Deselect all": "Tous déselectioner", + "Are you sure you want to delete the selected item(s)?": "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?", + "Scheduled": "Programmé", + "Tracks": "Pistes", + "Playlist": "Playlist", + "Title": "Titre", + "Creator": "Créateur.ice", + "Album": "Album", + "Bit Rate": "Taux d'echantillonage", + "BPM": "BPM", + "Composer": "Compositeur.ice", + "Conductor": "Conducteur", + "Copyright": "Droit d'Auteur.ice", + "Encoded By": "Encodé Par", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Langue", + "Last Modified": "Dernier Modifié", + "Last Played": "Dernier Joué", + "Length": "Durée", + "Mime": "Mime", + "Mood": "Humeur", + "Owner": "Propriétaire", + "Replay Gain": "Replay Gain", + "Sample Rate": "Taux d'échantillonnage", + "Track Number": "Numéro de la Piste", + "Uploaded": "Téléversé", + "Website": "Site Internet", + "Year": "Année", + "Loading...": "Chargement...", + "All": "Tous", + "Files": "Fichiers", + "Playlists": "Listes de lecture", + "Smart Blocks": "Blocs Intelligents", + "Web Streams": "Flux Web", + "Unknown type: ": "Type inconnu : ", + "Are you sure you want to delete the selected item?": "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?", + "Uploading in progress...": "Téléversement en cours...", + "Retrieving data from the server...": "Récupération des données du serveur...", + "Import": "Importer", + "Imported?": "Importé ?", + "View": "Afficher", + "Error code: ": "Code d'erreur : ", + "Error msg: ": "Message d'erreur : ", + "Input must be a positive number": "L'entrée doit être un nombre positif", + "Input must be a number": "L'entrée doit être un nombre", + "Input must be in the format: yyyy-mm-dd": "L'entrée doit être au format : aaaa-mm-jj", + "Input must be in the format: hh:mm:ss.t": "L'entrée doit être au format : hh:mm:ss.t", + "My Podcast": "Section Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?", + "Open Media Builder": "Ouvrir le Constructeur de Média", + "please put in a time '00:00:00 (.0)'": "veuillez mettre la durée '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Veuillez entrer un temps en secondes. Par exemple 0.5", + "Your browser does not support playing this file type: ": "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : ", + "Dynamic block is not previewable": "Le Bloc dynamique n'est pas prévisualisable", + "Limit to: ": "Limiter à : ", + "Playlist saved": "Liste de Lecture sauvegardé", + "Playlist shuffled": "Playlist en aléatoire", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé».", + "Listener Count on %s: %s": "Nombre d'auditeur·ice·s sur %s : %s", + "Remind me in 1 week": "Me le rappeler dans une semain", + "Remind me never": "Ne jamais me le rappeler", + "Yes, help Airtime": "Oui, aider Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'Image doit être du type jpg, jpeg, png, ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent.", + "Smart block shuffled": "Bloc intelligent mélangé", + "Smart block generated and criteria saved": "Bloc intelligent généré et critère(s) sauvegardé(s)", + "Smart block saved": "Bloc intelligent sauvegardé", + "Processing...": "Traitement en cours ...", + "Select modifier": "Sélectionnez modification", + "contains": "contient", + "does not contain": "ne contient pas", + "is": "est", + "is not": "n'est pas", + "starts with": "commence par", + "ends with": "fini par", + "is greater than": "est plus grand que", + "is less than": "est plus petit que", + "is in the range": "est dans le champ", + "Generate": "Générer", + "Choose Storage Folder": "Choisir un Répertoire de Stockage", + "Choose Folder to Watch": "Choisir un Répertoire à Surveiller", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \nCela supprimera les fichiers de votre médiathèque Airtime !", + "Manage Media Folders": "Gérer les Répertoires des Médias", + "Are you sure you want to remove the watched folder?": "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?", + "This path is currently not accessible.": "Ce chemin n'est pas accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus.", + "Connected to the streaming server": "Connecté au serveur de flux", + "The stream is disabled": "Le flux est désactivé", + "Getting information from the server...": "Obtention des informations à partir du serveur ...", + "Can not connect to the streaming server": "Impossible de se connecter au serveur de flux", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151.", + "For more details, please read the %s%s Manual%s": "Pour plus d'informations, veuillez lire le manuel %s%s %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute.", + "Warning: You cannot change this field while the show is currently playing": "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture", + "No result found": "Aucun résultat trouvé", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter.", + "Specify custom authentication which will work only for this show.": "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission.", + "The show instance doesn't exist anymore!": "L'instance de l'émission n'existe plus !", + "Warning: Shows cannot be re-linked": "Attention : Les émissions ne peuvent pas être liées à nouveau", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur.", + "Show": "Émission", + "Show is empty": "L'émission est vide", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Récupération des données du serveur...", + "This show has no scheduled content.": "Cette émission n'a pas de contenu programmée.", + "This show is not completely filled with content.": "Cette émission n'est pas complètement remplie avec ce contenu.", + "January": "Janvier", + "February": "Fevrier", + "March": "Mars", + "April": "Avril", + "May": "Mai", + "June": "Juin", + "July": "Juillet", + "August": "Août", + "September": "Septembre", + "October": "Octobre", + "November": "Novembre", + "December": "Décembre", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Avr", + "Jun": "Jun", + "Jul": "Jui", + "Aug": "Aou", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Aujourd'hui", + "Day": "Jour", + "Week": "Semaine", + "Month": "Mois", + "Sunday": "Dimanche", + "Monday": "Lundi", + "Tuesday": "Mardi", + "Wednesday": "Mercredi", + "Thursday": "Jeudi", + "Friday": "Vendredi", + "Saturday": "Samedi", + "Sun": "Dim", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Jeu", + "Fri": "Ven", + "Sat": "Sam", + "Shows longer than their scheduled time will be cut off by a following show.": "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes.", + "Cancel Current Show?": "Annuler l'émission en cours ?", + "Stop recording current show?": "Arrêter l'enregistrement de l'émission en cours ?", + "Ok": "Ok", + "Contents of Show": "Contenu de l'émission", + "Remove all content?": "Enlever tous les contenus ?", + "Delete selected item(s)?": "Supprimer le(s) élément(s) sélectionné(s) ?", + "Start": "Début", + "End": "Fin", + "Duration": "Durée", + "Filtering out ": "Filtrage ", + " of ": " de ", + " records": " enregistrements", + "There are no shows scheduled during the specified time period.": "Il n'y a pas d'émissions prévues durant cette période.", + "Cue In": "Point d'entrée", + "Cue Out": "Point de sortie", + "Fade In": "Fondu en entrée", + "Fade Out": "Fondu en sortie", + "Show Empty": "Émission vide", + "Recording From Line In": "Enregistrement à partir de 'Line In'", + "Track preview": "Pré-écoute de la piste", + "Cannot schedule outside a show.": "Vous ne pouvez pas programmer en dehors d'une émission.", + "Moving 1 Item": "Déplacer 1 élément", + "Moving %s Items": "Déplacer %s éléments", + "Save": "Sauvegarder", + "Cancel": "Annuler", + "Fade Editor": "Éditeur de fondu", + "Cue Editor": "Éditeur de points d'E/S", + "Waveform features are available in a browser supporting the Web Audio API": "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio", + "Select all": "Tout Selectionner", + "Select none": "Ne Rien Selectionner", + "Trim overbooked shows": "Enlever les émissions surbookées", + "Remove selected scheduled items": "Supprimer les éléments programmés sélectionnés", + "Jump to the current playing track": "Aller à la piste en cours de lecture", + "Jump to Current": "Aller à l'émission en cours", + "Cancel current show": "Annuler l'émission en cours", + "Open library to add or remove content": "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu", + "Add / Remove Content": "Ajouter/Supprimer Contenu", + "in use": "en cours d'utilisation", + "Disk": "Disque", + "Look in": "Regarder à l'intérieur", + "Open": "Ouvrir", + "Admin": "Administrateur·ice", + "DJ": "DeaJee", + "Program Manager": "Programmateur·ice", + "Guest": "Invité·e", + "Guests can do the following:": "Les Invité·e·s peuvent effectuer les opérations suivantes :", + "View schedule": "Voir le calendrier", + "View show content": "Voir le contenu des émissions", + "DJs can do the following:": "Les DJs peuvent effectuer les opérations suivantes :", + "Manage assigned show content": "Gérer le contenu des émissions attribuées", + "Import media files": "Importer des fichiers multimédias", + "Create playlists, smart blocks, and webstreams": "Créez des listes de lectures, des blocs intelligents et des flux web", + "Manage their own library content": "Gérer le contenu de leur propre audiothèque", + "Program Managers can do the following:": "Les gestionnaires de programmes peuvent faire ceci :", + "View and manage show content": "Afficher et gérer le contenu des émissions", + "Schedule shows": "Programmer des émissions", + "Manage all library content": "Gérez tout le contenu de l'audiothèque", + "Admins can do the following:": "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :", + "Manage preferences": "Gérer les préférences", + "Manage users": "Gérer les utilisateur·ice·s", + "Manage watched folders": "Gérer les dossiers surveillés", + "Send support feedback": "Envoyez vos remarques au support", + "View system status": "Voir l'état du système", + "Access playout history": "Accédez à l'historique diffusion", + "View listener stats": "Voir les statistiques d'audience", + "Show / hide columns": "Montrer / cacher les colonnes", + "Columns": "Colonnes", + "From {from} to {to}": "De {from} à {to}", + "kbps": "kbps", + "yyyy-mm-dd": "aaaa-mm-jj", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Di", + "Mo": "Lu", + "Tu": "Ma", + "We": "Me", + "Th": "Je", + "Fr": "Ve", + "Sa": "Sa", + "Close": "Fermer", + "Hour": "Heure", + "Minute": "Minute", + "Done": "Fait", + "Select files": "Sélectionnez les fichiers", + "Add files to the upload queue and click the start button.": "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer.", + "Filename": "Nom du fichier", + "Size": "Taille", + "Add Files": "Ajouter des fichiers", + "Stop Upload": "Arrêter le Téléversement", + "Start upload": "Démarrer le Téléversement", + "Start Upload": "Démarrer le téléversement", + "Add files": "Ajouter des fichiers", + "Stop current upload": "Arrêter le téléversement en cours", + "Start uploading queue": "Démarrer le téléversement de la file", + "Uploaded %d/%d files": "Téléversement de %d sur %d fichiers", + "N/A": "N/A", + "Drag files here.": "Faites glisser les fichiers ici.", + "File extension error.": "Erreur d'extension du fichier.", + "File size error.": "Erreur de la Taille de Fichier.", + "File count error.": "Erreur de comptage des fichiers.", + "Init error.": "Erreur d'initialisation.", + "HTTP Error.": "Erreur HTTP.", + "Security error.": "Erreur de sécurité.", + "Generic error.": "Erreur générique.", + "IO error.": "Erreur d'E/S.", + "File: %s": "Fichier : %s", + "%d files queued": "%d fichiers en file d'attente", + "File: %f, size: %s, max file size: %m": "Fichier : %f, taille : %s, taille de fichier maximale : %m", + "Upload URL might be wrong or doesn't exist": "L'URL de téléversement est peut être erronée ou inexistante", + "Error: File too large: ": "Erreur : Fichier trop grand : ", + "Error: Invalid file extension: ": "Erreur : extension de fichier non valide : ", + "Set Default": "Définir par défaut", + "Create Entry": "Créer une entrée", + "Edit History Record": "Éditer l'enregistrement de l'historique", + "No Show": "Pas d'émission", + "Copied %s row%s to the clipboard": "Copié %s ligne(s)%s dans le presse papier", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé.", + "New Show": "Nouvelle émission", + "New Log Entry": "Nouvelle entrée de log", + "No data available in table": "Aucune date disponible dans le tableau", + "(filtered from _MAX_ total entries)": "(limité à _MAX_ entrées au total)", + "First": "Premier", + "Last": "Dernier", + "Next": "Suivant", + "Previous": "Précédent", + "Search:": "Rechercher :", + "No matching records found": "Aucun enregistrement correspondant trouvé", + "Drag tracks here from the library": "Glissez ici les pistes depuis la bibliothèque", + "No tracks were played during the selected time period.": "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné.", + "Unpublish": "Annuler la publication", + "No matching results found.": "Aucun résultat correspondant trouvé.", + "Author": "Auteur·ice", + "Description": "Description", + "Link": "Lien", + "Publication Date": "Date de publication", + "Import Status": "Statuts d'importation", + "Actions": "Actions", + "Delete from Library": "Supprimer de la bibliothèque", + "Successfully imported": "Succès de l'importation", + "Show _MENU_": "Afficher _MENU_", + "Show _MENU_ entries": "Afficher les entrées du _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Affiche de _START_ à _END_ sur _TOTAL_ entrées", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Affiche de _START_ à _END_ sur _TOTAL_ pistes", + "Showing _START_ to _END_ of _TOTAL_ track types": "Affiche de _START_ à _END_ sur _TOTAL_ types de piste", + "Showing _START_ to _END_ of _TOTAL_ users": "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs", + "Showing 0 to 0 of 0 entries": "Affiche de 0 à 0 sur 0 entrées", + "Showing 0 to 0 of 0 tracks": "Affiche de 0 à 0 sur 0 pistes", + "Showing 0 to 0 of 0 track types": "Affiche de 0 à 0 sur 0 types de piste", + "(filtered from _MAX_ total track types)": "(limité à _MAX_ types de piste au total)", + "Are you sure you want to delete this tracktype?": "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?", + "No track types were found.": "Aucun type de piste trouvé.", + "No track types found": "Aucun type de piste trouvé", + "No matching track types found": "Aucun type de piste correspondant trouvé", + "Enabled": "Activé", + "Disabled": "Désactivé", + "Cancel upload": "Annuler le téléversement", + "Type": "Type", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", + "Podcast settings saved": "Préférences des podcasts enregistrées", + "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", + "Can't delete yourself!": "Impossible de vous supprimer vous-même !", + "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", + "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", + "Try it now": "Essayer maintenant", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

", + "Playlist preview": "Aperçu de la liste de lecture", + "Smart Block": "Bloc intelligent", + "Webstream preview": "Aperçu du webstream", + "You don't have permission to view the library.": "Vous n'avez pas l'autorisation de voir la bibliothèque.", + "Now": "Maintenant", + "Click 'New' to create one now.": "Cliquez « Nouveau » pour en créer un nouveau.", + "Click 'Upload' to add some now.": "Cliquez « Téléverser » pour en ajouter de nouveaux.", + "Feed URL": "URL du flux", + "Import Date": "Date d'importation", + "Add New Podcast": "Ajouter un nouveau podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "Impossible de programmer en-dehors d'un épisode.\nVeuillez d'abord créer un épisode.", + "No files have been uploaded yet.": "Aucun fichier n'a encore été téléversé.", + "On Air": "À l'antenne", + "Off Air": "Hors antenne", + "Offline": "Éteint", + "Nothing scheduled": "Aucun programme", + "Click 'Add' to create one now.": "Cliquez « Ajouter » pour en créer un nouveau maintenant.", + "Please enter your username and password.": "Veuillez entrer vos identifiants.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré.", + "That username or email address could not be found.": "Cet identifiant ou cette adresse courriel n'ont pu être trouvés.", + "There was a problem with the username or email address you entered.": "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e).", + "Wrong username or password provided. Please try again.": "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau.", + "You are viewing an older version of %s": "Vous visualisez l'ancienne version de %s", + "You cannot add tracks to dynamic blocks.": "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques.", + "You don't have permission to delete selected %s(s).": "Vous n'avez pas la permission de supprimer la sélection %s(s).", + "You can only add tracks to smart block.": "Vous pouvez seulement ajouter des pistes au bloc intelligent.", + "Untitled Playlist": "Liste de lecture sans titre", + "Untitled Smart Block": "Bloc intelligent sans titre", + "Unknown Playlist": "Liste de lecture inconnue", + "Preferences updated.": "Préférences mises à jour.", + "Stream Setting Updated.": "Réglages du Flux mis à jour.", + "path should be specified": "le chemin doit être spécifié", + "Problem with Liquidsoap...": "Problème avec Liquidsoap...", + "Request method not accepted": "Cette méthode de requête ne peut aboutir", + "Rebroadcast of show %s from %s at %s": "Rediffusion de l'émission %s de %s à %s", + "Select cursor": "Sélectionner le Curseur", + "Remove cursor": "Enlever le Curseur", + "show does not exist": "l'émission n'existe pas", + "Track Type added successfully!": "Type de piste ajouté avec succès !", + "Track Type updated successfully!": "Type de piste mis à jour avec succès !", + "User added successfully!": "Utilisateur·ice ajouté avec succès !", + "User updated successfully!": "Utilisateur·ice mis à jour avec succès !", + "Settings updated successfully!": "Paramètres mis à jour avec succès !", + "Untitled Webstream": "Flux Web sans Titre", + "Webstream saved.": "Flux Web sauvegardé.", + "Invalid form values.": "Valeurs du formulaire non valides.", + "Invalid character entered": "Caractère Invalide saisi", + "Day must be specified": "Le Jour doit être spécifié", + "Time must be specified": "La durée doit être spécifiée", + "Must wait at least 1 hour to rebroadcast": "Vous devez attendre au moins 1 heure pour retransmettre", + "Add Autoloading Playlist ?": "Ajouter une playlist automatique ?", + "Select Playlist": "Sélectionner la playlist", + "Repeat Playlist Until Show is Full ?": "Répéter la playlist jusqu'à ce que l'émission soit pleine ?", + "Use %s Authentication:": "Utilisez l'authentification %s :", + "Use Custom Authentication:": "Utiliser l'authentification personnalisée :", + "Custom Username": "Nom d'utilisateur·ice personnalisé", + "Custom Password": "Mot de Passe personnalisé", + "Host:": "Hôte :", + "Port:": "Port :", + "Mount:": "Point de Montage :", + "Username field cannot be empty.": "Le champ Nom d'Utilisateur·ice ne peut pas être vide.", + "Password field cannot be empty.": "Le champ Mot de Passe ne peut être vide.", + "Record from Line In?": "Enregistrer à partir de « Line In » ?", + "Rebroadcast?": "Rediffusion ?", + "days": "jours", + "Link:": "Lien :", + "Repeat Type:": "Type de Répétition :", + "weekly": "hebdomadaire", + "every 2 weeks": "toutes les 2 semaines", + "every 3 weeks": "toutes les 3 semaines", + "every 4 weeks": "toutes les 4 semaines", + "monthly": "mensuel", + "Select Days:": "Sélection des jours :", + "Repeat By:": "Répéter par :", + "day of the month": "jour du mois", + "day of the week": "jour de la semaine", + "Date End:": "Date de fin :", + "No End?": "Sans fin ?", + "End date must be after start date": "La Date de Fin doit être postérieure à la Date de Début", + "Please select a repeat day": "Veuillez sélectionner un jour de répétition", + "Background Colour:": "Couleur de fond :", + "Text Colour:": "Couleur du texte :", + "Current Logo:": "Logo actuel :", + "Show Logo:": "Montrer le logo :", + "Logo Preview:": "Aperçu du logo :", + "Name:": "Nom :", + "Untitled Show": "Émission sans Titre", + "URL:": "URL :", + "Genre:": "Genre :", + "Description:": "Description :", + "Instance Description:": "Description de l'instance :", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' ne correspond pas au format de durée 'HH:mm'", + "Start Time:": "Heure de début :", + "In the Future:": "À venir :", + "End Time:": "Temps de fin :", + "Duration:": "Durée :", + "Timezone:": "Fuseau horaire :", + "Repeats?": "Répéter ?", + "Cannot create show in the past": "Impossible de créer une émission dans le passé", + "Cannot modify start date/time of the show that is already started": "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé", + "End date/time cannot be in the past": "La date/heure de Fin ne peut être dans le passé", + "Cannot have duration < 0m": "Ne peut pas avoir une durée < 0m", + "Cannot have duration 00h 00m": "Ne peut pas avoir une durée de 00h 00m", + "Cannot have duration greater than 24h": "Ne peut pas avoir une durée supérieure à 24h", + "Cannot schedule overlapping shows": "Ne peut pas programmer des émissions qui se chevauchent", + "Search Users:": "Recherche d'utilisateur·ice·s :", + "DJs:": "DJs :", + "Type Name:": "Nom du type :", + "Code:": "Code :", + "Visibility:": "Visibilité :", + "Analyze cue points:": "Analyser les points d'entrée et de sortie :", + "Code is not unique.": "Ce code n'est pas unique.", + "Username:": "Utilisateur·ice :", + "Password:": "Mot de Passe :", + "Verify Password:": "Vérification du mot de Passe :", + "Firstname:": "Prénom :", + "Lastname:": "Nom :", + "Email:": "Courriel :", + "Mobile Phone:": "Numéro de mobile :", + "Skype:": "Skype :", + "Jabber:": "Jabber :", + "User Type:": "Type d'utilisateur·ice :", + "Login name is not unique.": "Le Nom de connexion n'est pas unique.", + "Delete All Tracks in Library": "Supprimer toutes les pistes de la librairie", + "Date Start:": "Date de début :", + "Title:": "Titre :", + "Creator:": "Créateur·ice :", + "Album:": "Album :", + "Owner:": "Propriétaire :", + "Select a Type": "Sélectionner un type", + "Track Type:": "Type de piste :", + "Year:": "Année :", + "Label:": "Étiquette :", + "Composer:": "Compositeur·ice :", + "Conductor:": "Conducteur :", + "Mood:": "Atmosphère :", + "BPM:": "BPM :", + "Copyright:": "Copyright :", + "ISRC Number:": "Numéro ISRC :", + "Website:": "Site Internet :", + "Language:": "Langue :", + "Publish...": "Publier...", + "Start Time": "Heure de Début", + "End Time": "Heure de Fin", + "Interface Timezone:": "Fuseau horaire de l'interface :", + "Station Name": "Nom de la Station", + "Station Description": "Description de la station", + "Station Logo:": "Logo de la Station :", + "Note: Anything larger than 600x600 will be resized.": "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné.", + "Default Crossfade Duration (s):": "Durée du fondu enchaîné (en sec) :", + "Please enter a time in seconds (eg. 0.5)": "Veuillez entrer un temps en secondes (ex. 0.5)", + "Default Fade In (s):": "Fondu en Entrée par défaut (en sec) :", + "Default Fade Out (s):": "Fondu en Sortie par défaut (en sec) :", + "Track Type Upload Default": "Type de piste par défaut", + "Intro Autoloading Playlist": "Playlist automatique d'intro", + "Outro Autoloading Playlist": "Playlist automatique d'outro", + "Overwrite Podcast Episode Metatags": "Remplacer les metatags de l'épisode", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement.", + "Public LibreTime API": "API publique LibreTime", + "Required for embeddable schedule widget.": "Requis pour le widget de programmation.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n à des widgets externes pouvant être intégrés à votre site Web.", + "Default Language": "Langage par défaut", + "Station Timezone": "Fuseau horaire de la Station", + "Week Starts On": "La semaine commence le", + "Display login button on your Radio Page?": "Afficher le bouton de connexion sur votre page radio ?", + "Feature Previews": "Aperçus de fonctionnalités", + "Enable this to opt-in to test new features.": "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités.", + "Auto Switch Off:": "Arrêt automatique :", + "Auto Switch On:": "Mise en marche automatique :", + "Switch Transition Fade (s):": "Changement de transition en fondu (en sec) :", + "Master Source Host:": "Hôte source maître :", + "Master Source Port:": "Port source maître :", + "Master Source Mount:": "Point de montage principal :", + "Show Source Host:": "Afficher l'hôte de la source :", + "Show Source Port:": "Afficher le port de la source :", + "Show Source Mount:": "Afficher le point de montage de la source :", + "Login": "Connexion", + "Password": "Mot de Passe", + "Confirm new password": "Confirmez le nouveau mot de passe", + "Password confirmation does not match your password.": "La confirmation du mot de passe ne correspond pas à votre mot de passe.", + "Email": "Courriel", + "Username": "Utilisateur", + "Reset password": "Réinitialisation du Mot de Passe", + "Back": "Retour", + "Now Playing": "En Lecture", + "Select Stream:": "Sélectionnez un flux :", + "Auto detect the most appropriate stream to use.": "Détecter automatiquement le flux le plus approprié à utiliser.", + "Select a stream:": "Sélectionnez un flux :", + " - Mobile friendly": " - Interface mobile", + " - The player does not support Opus streams.": " - Le lecteur ne fonctionne pas avec des flux Opus.", + "Embeddable code:": "Code à intégrer :", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur.", + "Preview:": "Aperçu :", + "Feed Privacy": "Confidentialité du flux", + "Public": "Publique", + "Private": "Privé", + "Station Language": "Langage de la station", + "Filter by Show": "Filtrer par émissions", + "All My Shows:": "Toutes mes émissions :", + "My Shows": "Mes émissions", + "Select criteria": "Sélectionner le critère", + "Bit Rate (Kbps)": "Taux d'échantillonage (Kbps)", + "Track Type": "Type de piste", + "Sample Rate (kHz)": "Taux d'échantillonage (Khz)", + "before": "avant", + "after": "après", + "between": "entre", + "Select unit of time": "Sélectionner une unité de temps", + "minute(s)": "minute(s)", + "hour(s)": "heure(s)", + "day(s)": "jour(s)", + "week(s)": "semaine(s)", + "month(s)": "mois", + "year(s)": "année(s)", + "hours": "heures", + "minutes": "minutes", + "items": "éléments", + "time remaining in show": "temps restant de l'émission", + "Randomly": "Aléatoirement", + "Newest": "Plus récent", + "Oldest": "Plus vieux", + "Most recently played": "Les plus joués récemment", + "Least recently played": "Les moins jouées récemment", + "Select Track Type": "Sélectionner un type de piste", + "Type:": "Type :", + "Dynamic": "Dynamique", + "Static": "Statique", + "Select track type": "Sélectionner un type de piste", + "Allow Repeated Tracks:": "Autoriser la répétition de pistes :", + "Allow last track to exceed time limit:": "Autoriser la dernière piste à dépasser l'horaire :", + "Sort Tracks:": "Trier les pistes :", + "Limit to:": "Limiter à :", + "Generate playlist content and save criteria": "Génération de la liste de lecture et sauvegarde des critères", + "Shuffle playlist content": "Contenu de la liste de lecture alèatoire", + "Shuffle": "Aléatoire", + "Limit cannot be empty or smaller than 0": "La Limite ne peut être vide ou plus petite que 0", + "Limit cannot be more than 24 hrs": "La Limite ne peut être supérieure à 24 heures", + "The value should be an integer": "La valeur doit être un entier", + "500 is the max item limit value you can set": "500 est la valeur maximale de l'élément que vous pouvez définir", + "You must select Criteria and Modifier": "Vous devez sélectionner Critères et Modification", + "'Length' should be in '00:00:00' format": "La 'Durée' doit être au format '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte", + "You must select a time unit for a relative datetime.": "Vous devez sélectionner une unité de temps pour une date relative.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Seuls les entiers positifs sont autorisés pour les dates relatives", + "The value has to be numeric": "La valeur doit être numérique", + "The value should be less then 2147483648": "La valeur doit être inférieure à 2147483648", + "The value cannot be empty": "La valeur ne peut pas être vide", + "The value should be less than %s characters": "La valeur doit être inférieure à %s caractères", + "Value cannot be empty": "La Valeur ne peut pas être vide", + "Stream Label:": "Label du Flux :", + "Artist - Title": "Artiste - Titre", + "Show - Artist - Title": "Émission - Artiste - Titre", + "Station name - Show name": "Nom de la Station - Nom de l'émission", + "Off Air Metadata": "Métadonnées Hors Antenne", + "Enable Replay Gain": "Activer", + "Replay Gain Modifier": "Modifier le Niveau du Gain", + "Hardware Audio Output:": "Sortie audio matérielle :", + "Output Type": "Type de Sortie", + "Enabled:": "Activé :", + "Mobile:": "Mobile :", + "Stream Type:": "Type de Flux :", + "Bit Rate:": "Débit :", + "Service Type:": "Type de service :", + "Channels:": "Canaux :", + "Server": "Serveur", + "Port": "Port", + "Mount Point": "Point de Montage", + "Name": "Nom", + "URL": "URL", + "Stream URL": "URL du flux", + "Push metadata to your station on TuneIn?": "Pousser les métadonnées sur votre station sur TuneIn ?", + "Station ID:": "Identifiant de la station :", + "Partner Key:": "Clé partenaire :", + "Partner Id:": "ID partenaire :", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez.", + "Import Folder:": "Répertoire d'importation :", + "Watched Folders:": "Répertoires Surveillés :", + "Not a valid Directory": "N'est pas un Répertoire valide", + "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", + "'%value%' is no valid email address in the basic format local-part@hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine", + "'%value%' does not fit the date format '%format%'": "'%value%' ne correspond pas au format de la date '%format%'", + "'%value%' is less than %min% characters long": "'%value%' est inférieur à %min% charactères", + "'%value%' is more than %max% characters long": "'%value%' est plus grand de %min% charactères", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' n'est pas entre '%min%' et '%max%', inclusivement", + "Passwords do not match": "Les mots de passe ne correspondent pas", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", + "\n\nThank you,\nThe %s Team": "\n\nMerci,\nL'équipe %s", + "%s Password Reset": "%s Réinitialisation du mot de passe", + "Cue in and cue out are null.": "Le points d'entrée et de sortie sont indéfinis.", + "Can't set cue out to be greater than file length.": "Ne peut pas fixer un point de sortie plus grand que la durée du fichier.", + "Can't set cue in to be larger than cue out.": "Impossible de définir un point d'entrée plus grand que le point de sortie.", + "Can't set cue out to be smaller than cue in.": "Ne peux pas fixer un point de sortie plus petit que le point d'entrée.", + "Upload Time": "Temps de téléversement", + "None": "Vide", + "Powered by %s": "Propulsé par %s", + "Select Country": "Selectionner le Pays", + "livestream": "diffusion en direct", + "Cannot move items out of linked shows": "Vous ne pouvez pas déplacer les éléments sur les émissions liées", + "The schedule you're viewing is out of date! (sched mismatch)": "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)", + "The schedule you're viewing is out of date! (instance mismatch)": "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)", + "The schedule you're viewing is out of date!": "Le calendrier que vous consultez n'est pas à jour !", + "You are not allowed to schedule show %s.": "Vous n'êtes pas autorisé à programme l'émission %s.", + "You cannot add files to recording shows.": "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées.", + "The show %s is over and cannot be scheduled.": "L émission %s est terminé et ne peut pas être programmé.", + "The show %s has been previously updated!": "L'émission %s a été précédemment mise à jour !", + "Content in linked shows cannot be changed while on air!": "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !", + "Cannot schedule a playlist that contains missing files.": "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants.", + "A selected File does not exist!": "Un fichier sélectionne n'existe pas !", + "Shows can have a max length of 24 hours.": "Les émissions peuvent avoir une durée maximale de 24 heures.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Ne peux pas programmer des émissions qui se chevauchent. \nRemarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions.", + "Rebroadcast of %s from %s": "Rediffusion de %s à %s", + "Length needs to be greater than 0 minutes": "La durée doit être supérieure à 0 minute", + "Length should be of form \"00h 00m\"": "La durée doit être de la forme \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL doit être de la forme \"https://example.org\"", + "URL should be 512 characters or less": "L'URL doit être de 512 caractères ou moins", + "No MIME type found for webstream.": "Aucun type MIME trouvé pour le Flux Web.", + "Webstream name cannot be empty": "Le Nom du Flux Web ne peut être vide", + "Could not parse XSPF playlist": "Impossible d'analyser la Sélection XSPF", + "Could not parse PLS playlist": "Impossible d'analyser la Sélection PLS", + "Could not parse M3U playlist": "Impossible d'analyser la Séléction M3U", + "Invalid webstream - This appears to be a file download.": "Flux Web Invalide - Ceci semble être un fichier téléchargeable.", + "Unrecognized stream type: %s": "Type de flux non reconnu : %s", + "Record file doesn't exist": "L'enregistrement du fichier n'existe pas", + "View Recorded File Metadata": "Afficher les métadonnées du fichier enregistré", + "Schedule Tracks": "Ajouter des pistes", + "Clear Show": "Vider le contenu de l'émission", + "Cancel Show": "Annuler l'émission", + "Edit Instance": "Modifier cet élément", + "Edit Show": "Édition de l'émission", + "Delete Instance": "Supprimer cet élément", + "Delete Instance and All Following": "Supprimer cet élément et tous les suivants", + "Permission denied": "Permission refusée", + "Can't drag and drop repeating shows": "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois", + "Can't move a past show": "Impossible de déplacer une émission déjà diffusée", + "Can't move show into past": "Impossible de déplacer une émission dans le passé", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions.", + "Show was deleted because recorded show does not exist!": "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !", + "Must wait 1 hour to rebroadcast.": "Doit attendre 1 heure pour retransmettre.", + "Track": "Piste", + "Played": "Joué", + "Auto-generated smartblock for podcast": "Playlist intelligente géré automatiquement pour le podcast", + "Webstreams": "Flux web" +} diff --git a/webapp/src/locale/hr_HR.json b/webapp/src/locale/hr_HR.json index 847ba38a78..7847c3c1b0 100644 --- a/webapp/src/locale/hr_HR.json +++ b/webapp/src/locale/hr_HR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Godina %s mora biti u rasponu od 1753. – 9999.", - "%s-%s-%s is not a valid date": "%s-%s-%s nije ispravan datum", - "%s:%s:%s is not a valid time": "%s:%s:%s nije ispravno vrijeme", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "Koristi standardne podatke stanice", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Stranica radija", - "Calendar": "Kalendar", - "Widgets": "Programčići", - "Player": "Player", - "Weekly Schedule": "Tjedni raspored", - "Settings": "Postavke", - "General": "Opće", - "My Profile": "Moj profil", - "Users": "Korisnici", - "Track Types": "Vrste snimaka", - "Streams": "Prijenosi", - "Status": "Stanje", - "Analytics": "Analitike", - "Playout History": "Povijest reproduciranih pjesama", - "History Templates": "Predlošci za povijest", - "Listener Stats": "Statistika slušatelja", - "Show Listener Stats": "Prikaži statistiku slušatelja", - "Help": "Pomoć", - "Getting Started": "Prvi koraci", - "User Manual": "Korisnički priručnik", - "Get Help Online": "Pomoć na internetu", - "Contribute to LibreTime": "Doprinesi projektu LibreTime", - "What's New?": "Što je novo?", - "You are not allowed to access this resource.": "Ne smiješ pristupiti ovom izvoru.", - "You are not allowed to access this resource. ": "Ne smiješ pristupiti ovom izvoru. ", - "File does not exist in %s": "Datoteka ne postoji u %s", - "Bad request. no 'mode' parameter passed.": "Neispravan zahtjev. Prametar „mode” nije predan.", - "Bad request. 'mode' parameter is invalid": "Neispravan zahtjev. Prametar „mode” je neispravan", - "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", - "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", - "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Stranica nije pronađena.", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nije pronađen", - "Something went wrong.": "Dogodila se greška.", - "Preview": "Pregled", - "Add to Playlist": "Dodaj na Popis Pjesama", - "Add to Smart Block": "Dodaj u pametni blok", - "Delete": "Izbriši", - "Edit...": "Uredi …", - "Download": "Preuzimanje", - "Duplicate Playlist": "Dupliciraj playlistu", - "Duplicate Smartblock": "Dupliciraj pametni blok", - "No action available": "Nema dostupnih akcija", - "You don't have permission to delete selected items.": "Nemaš dozvole za brisanje odabrane stavke.", - "Could not delete file because it is scheduled in the future.": "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti.", - "Could not delete file(s).": "Nije bilo moguće izbrisati datoteku(e).", - "Copy of %s": "Kopiranje od %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa.", - "Audio Player": "Audio player", - "Something went wrong!": "Dogodila se greška!", - "Recording:": "Snimanje:", - "Master Stream": "Prijenos mastera", - "Live Stream": "Prijenos uživo", - "Nothing Scheduled": "Ništa nije zakazano", - "Current Show:": "Trenutačna emisija:", - "Current": "Trenutačna", - "You are running the latest version": "Pokrećeš najnoviju verziju", - "New version available: ": "Dostupna je nova verzija: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Dodaj u trenutni popis pjesama", - "Add to current smart block": "Dodaj u trenutačni pametni blok", - "Adding 1 Item": "Dodavanje 1 stavke", - "Adding %s Items": "Dodavanje %s stavki", - "You can only add tracks to smart blocks.": "Možeš dodavati samo pjesme u pametne blokove.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste.", - "Please select a cursor position on timeline.": "Odaberi mjesto pokazivača na vremenskoj crti.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Dodaj", - "New": "Nova", - "Edit": "Uredi", - "Add to Schedule": "Dodaj rasporedu", - "Add to next show": "Dodaj sljedećoj emisiji", - "Add to current show": "Dodaj trenutačnoj emisiji", - "Add after selected items": "Dodaj nakon odabranih stavki", - "Publish": "Objavi", - "Remove": "Ukloni", - "Edit Metadata": "Uredi metapodatke", - "Add to selected show": "Dodaj odabranoj emisiji", - "Select": "Odaberi", - "Select this page": "Odaberi ovu stranicu", - "Deselect this page": "Odznači ovu stranicu", - "Deselect all": "Odznači sve", - "Are you sure you want to delete the selected item(s)?": "Stvarno želiš izbrisati odabranu(e) stavku(e)?", - "Scheduled": "Zakazano", - "Tracks": "Snimke", - "Playlist": "Playlista", - "Title": "Naslov", - "Creator": "Tvorac", - "Album": "Album", - "Bit Rate": "Brzina prijenosa", - "BPM": "BPM", - "Composer": "Kompozitor", - "Conductor": "Dirigent", - "Copyright": "Autorsko pravo", - "Encoded By": "Kodirano je po", - "Genre": "Žanr", - "ISRC": "ISRC", - "Label": "Etiketa", - "Language": "Jezik", - "Last Modified": "Zadnja promjena", - "Last Played": "Zadnji put svirano", - "Length": "Trajanje", - "Mime": "Vrsta", - "Mood": "Ugođaj", - "Owner": "Vlasnik", - "Replay Gain": "Pojačanje reprodukcije", - "Sample Rate": "Frekvencija", - "Track Number": "Broj snimke", - "Uploaded": "Preneseno", - "Website": "Web stranica", - "Year": "Godina", - "Loading...": "Učitavanje...", - "All": "Sve", - "Files": "Datoteke", - "Playlists": "Playliste", - "Smart Blocks": "Pametni blokovi", - "Web Streams": "Prijenosi", - "Unknown type: ": "Nepoznata vrsta: ", - "Are you sure you want to delete the selected item?": "Stvarno želiš izbrisati odabranu stavku?", - "Uploading in progress...": "Prijenos je u tijeku...", - "Retrieving data from the server...": "Preuzimanje podataka s poslužitelja …", - "Import": "Uvezi", - "Imported?": "Uvezeno?", - "View": "Prikaz", - "Error code: ": "Kod pogreške: ", - "Error msg: ": "Poruka pogreške: ", - "Input must be a positive number": "Unos mora biti pozitivan broj", - "Input must be a number": "Unos mora biti broj", - "Input must be in the format: yyyy-mm-dd": "Unos mora biti u obliku: gggg-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Unos mora biti u obliku: hh:mm:ss.t", - "My Podcast": "Moj Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?", - "Open Media Builder": "Otvori Media Builder", - "please put in a time '00:00:00 (.0)'": "upiši vrijeme „00:00:00 (.0)”", - "Please enter a valid time in seconds. Eg. 0.5": "Upiši ispravno vrijeme u sekundama. Npr. 0,5", - "Your browser does not support playing this file type: ": "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: ", - "Dynamic block is not previewable": "Dinamički blok se ne može pregledati", - "Limit to: ": "Ograniči na: ", - "Playlist saved": "Playlista je spremljena", - "Playlist shuffled": "Playlista je izmiješana", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'.", - "Listener Count on %s: %s": "Broj slušatelja %s: %s", - "Remind me in 1 week": "Podsjeti me za 1 tjedan", - "Remind me never": "Nikada me nemoj podsjetiti", - "Yes, help Airtime": "Da, pomažem Airtime-u", - "Image must be one of jpg, jpeg, png, or gif": "Slika mora biti jpg, jpeg, png, ili gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Pametni blok je izmiješan", - "Smart block generated and criteria saved": "Pametni blok je generiran i kriteriji su spremljeni", - "Smart block saved": "Pametni blok je spremljen", - "Processing...": "Obrada...", - "Select modifier": "Odaberi modifikator", - "contains": "sadrži", - "does not contain": "ne sadrži", - "is": "je", - "is not": "nije", - "starts with": "počinje sa", - "ends with": "završava sa", - "is greater than": "je veći od", - "is less than": "je manji od", - "is in the range": "je u rasponu", - "Generate": "Generiraj", - "Choose Storage Folder": "Odaberi mapu za spremanje", - "Choose Folder to Watch": "Odaberi mapu za praćenje", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Stvarno želiš promijeniti mapu za spremanje?\nTo će ukloniti datoteke iz tvoje Airtime medijateke!", - "Manage Media Folders": "Upravljanje Medijske Mape", - "Are you sure you want to remove the watched folder?": "Stvarno želiš ukloniti nadzorsku mapu?", - "This path is currently not accessible.": "Ovaj put nije trenutno dostupan.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni.", - "Connected to the streaming server": "Priključen je na poslužitelju", - "The stream is disabled": "Prijenos je onemogućen", - "Getting information from the server...": "Preuzimanje informacija s poslužitelja …", - "Can not connect to the streaming server": "Ne može se povezati na poslužitelju", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku.", - "Warning: You cannot change this field while the show is currently playing": "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava", - "No result found": "Nema pronađenih rezultata", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju.", - "Specify custom authentication which will work only for this show.": "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju.", - "The show instance doesn't exist anymore!": "Emisija u ovom slučaju više ne postoji!", - "Warning: Shows cannot be re-linked": "Upozorenje: Emisije ne može ponovno se povezati", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima.", - "Show": "Emisija", - "Show is empty": "Emisija je prazna", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Preuzimanje podataka s poslužitelja …", - "This show has no scheduled content.": "Ova emisija nema zakazanog sadržaja.", - "This show is not completely filled with content.": "Ova emisija nije u potpunosti ispunjena sa sadržajem.", - "January": "Siječanj", - "February": "Veljača", - "March": "Ožujak", - "April": "Travanj", - "May": "Svibanj", - "June": "Lipanj", - "July": "Srpanj", - "August": "Kolovoz", - "September": "Rujan", - "October": "Listopad", - "November": "Studeni", - "December": "Prosinac", - "Jan": "Sij", - "Feb": "Vel", - "Mar": "Ožu", - "Apr": "Tra", - "Jun": "Lip", - "Jul": "Srp", - "Aug": "Kol", - "Sep": "Ruj", - "Oct": "Lis", - "Nov": "Stu", - "Dec": "Pro", - "Today": "Danas", - "Day": "Dan", - "Week": "Tjedan", - "Month": "", - "Sunday": "Nedjelja", - "Monday": "Ponedjeljak", - "Tuesday": "Utorak", - "Wednesday": "Srijeda", - "Thursday": "Četvrtak", - "Friday": "Petak", - "Saturday": "Subota", - "Sun": "Ned", - "Mon": "Pon", - "Tue": "Uto", - "Wed": "Sri", - "Thu": "Čet", - "Fri": "Pet", - "Sat": "Sub", - "Shows longer than their scheduled time will be cut off by a following show.": "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom.", - "Cancel Current Show?": "Prekinuti trenutačnu emisiju?", - "Stop recording current show?": "Zaustaviti snimanje emisije?", - "Ok": "U redu", - "Contents of Show": "Sadržaj emisije", - "Remove all content?": "Ukloniti sav sadržaj?", - "Delete selected item(s)?": "Izbrisati odabranu(e) stavku(e)?", - "Start": "Početak", - "End": "Završetak", - "Duration": "Trajanje", - "Filtering out ": "Izdvjanje ", - " of ": " od ", - " records": " snimaka", - "There are no shows scheduled during the specified time period.": "U navedenom vremenskom razdoblju nema zakazanih emisija.", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Postupno pojačavanje glasnoće", - "Fade Out": "Postupno smanjivanje glasnoće", - "Show Empty": "Prazna emisija", - "Recording From Line In": "Snimanje sa Line In", - "Track preview": "Pregled snimaka", - "Cannot schedule outside a show.": "Nije moguće zakazati izvan emisije.", - "Moving 1 Item": "Premještanje 1 stavke", - "Moving %s Items": "Premještanje %s stavki", - "Save": "Spremi", - "Cancel": "Odustani", - "Fade Editor": "Uređivač prijelaza", - "Cue Editor": "Cue Uređivač", - "Waveform features are available in a browser supporting the Web Audio API": "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku", - "Select all": "Odaberi sve", - "Select none": "Odaberi ništa", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Ukloni odabrane zakazane stavke", - "Jump to the current playing track": "Skoči na trenutnu sviranu pjesmu", - "Jump to Current": "Skoči na trenutnu", - "Cancel current show": "Prekini trenutačnu emisiju", - "Open library to add or remove content": "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja", - "Add / Remove Content": "Dodaj / Ukloni Sadržaj", - "in use": "u upotrebi", - "Disk": "Disk", - "Look in": "Pogledaj unutra", - "Open": "Otvori", - "Admin": "Administrator", - "DJ": "Disk-džokej", - "Program Manager": "Voditelj programa", - "Guest": "Gost", - "Guests can do the following:": "Gosti mogu učiniti sljedeće:", - "View schedule": "Prikaži raspored", - "View show content": "Prikaži sadržaj emisije", - "DJs can do the following:": "Disk-džokeji mogu učiniti sljedeće:", - "Manage assigned show content": "Upravljanje dodijeljen sadržaj emisije", - "Import media files": "Uvezi medijske datoteke", - "Create playlists, smart blocks, and webstreams": "Izradi popise naslova, pametnih blokova, i prijenose", - "Manage their own library content": "Upravljanje svoje knjižničnog sadržaja", - "Program Managers can do the following:": "Voditelj programa može:", - "View and manage show content": "Prikaži i upravljaj sadržajem emisije", - "Schedule shows": "Zakaži emisije", - "Manage all library content": "Upravljanje sve sadržaje knjižnica", - "Admins can do the following:": "Administratori mogu učiniti sljedeće:", - "Manage preferences": "Upravljanje postavke", - "Manage users": "Upravljanje korisnike", - "Manage watched folders": "Upravljanje nadziranih datoteke", - "Send support feedback": "Pošalji povratne informacije", - "View system status": "Prikaži stanje sustava", - "Access playout history": "Pristup za povijest puštenih pjesama", - "View listener stats": "Prikaži statistiku slušatelja", - "Show / hide columns": "Prikaži/sakrij stupce", - "Columns": "Stupci", - "From {from} to {to}": "Od {from} do {to}", - "kbps": "kbps", - "yyyy-mm-dd": "gggg-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Ne", - "Mo": "Po", - "Tu": "Ut", - "We": "Sr", - "Th": "Če", - "Fr": "Pe", - "Sa": "Su", - "Close": "Zatvori", - "Hour": "Sat", - "Minute": "Minuta", - "Done": "Gotovo", - "Select files": "Odaberi datoteke", - "Add files to the upload queue and click the start button.": "Dodaj datoteke i klikni na 'Pokreni Upload' dugme.", - "Filename": "", - "Size": "", - "Add Files": "Dodaj Datoteke", - "Stop Upload": "Prekini prijenos", - "Start upload": "Započni prijenos", - "Start Upload": "", - "Add files": "Dodaj datoteke", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Preneseno %d/%d datoteka", - "N/A": "N/A", - "Drag files here.": "Povuci datoteke ovamo.", - "File extension error.": "Pogrešan datotečni nastavak.", - "File size error.": "Pogrešna veličina datoteke.", - "File count error.": "Pogrešan broj datoteka.", - "Init error.": "Init pogreška.", - "HTTP Error.": "HTTP pogreška.", - "Security error.": "Sigurnosna pogreška.", - "Generic error.": "Opća pogreška.", - "IO error.": "IO pogreška.", - "File: %s": "Datoteka: %s", - "%d files queued": "%d datoteka na čekanju", - "File: %f, size: %s, max file size: %m": "Datoteka: %f, veličina: %s, maks veličina datoteke: %m", - "Upload URL might be wrong or doesn't exist": "URL prijenosa možda nije ispravan ili ne postoji", - "Error: File too large: ": "Pogreška: Datoteka je prevelika: ", - "Error: Invalid file extension: ": "Pogreška: Nevažeći datotečni nastavak: ", - "Set Default": "Postavi standardne postavke", - "Create Entry": "Stvaranje Unosa", - "Edit History Record": "Uredi zapis povijesti", - "No Show": "Nema Programa", - "Copied %s row%s to the clipboard": "%s red%s je kopiran u međumemoriju", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "Prvo", - "Last": "", - "Next": "", - "Previous": "Prethodno", - "Search:": "Traži:", - "No matching records found": "", - "Drag tracks here from the library": "Povuci snimke ovamo iz medijateke", - "No tracks were played during the selected time period.": "", - "Unpublish": "Poništi objavu", - "No matching results found.": "", - "Author": "Autor", - "Description": "Opis", - "Link": "", - "Publication Date": "Datum objavljivanja", - "Import Status": "Uvezi stanje", - "Actions": "", - "Delete from Library": "Izbriši iz medijateke", - "Successfully imported": "Uspješno uvezeno", - "Show _MENU_": "Prikaži _MENU_", - "Show _MENU_ entries": "Prikaži unose za _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Prikaz _START_ do _END_ od _TOTAL_ unosa", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Prikaz _START_ do _END_ od _TOTAL_ snimaka", - "Showing _START_ to _END_ of _TOTAL_ track types": "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka", - "Showing _START_ to _END_ of _TOTAL_ users": "Prikaz _START_ do _END_ od _TOTAL_ korisnika", - "Showing 0 to 0 of 0 entries": "Prikaz 0 do 0 od 0 unosa", - "Showing 0 to 0 of 0 tracks": "Prikaz 0 do 0 od 0 snimaka", - "Showing 0 to 0 of 0 track types": "Prikaz 0 do 0 od 0 vrsta snimaka", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "Stvarno želiš izbrisati ovu vrstu snimke?", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktivirano", - "Disabled": "Deaktivirano", - "Cancel upload": "Prekini prijenos", - "Type": "Vrsta", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "Postavke podcasta su spremljene", - "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", - "Can't delete yourself!": "Ne možeš sebe izbrisati!", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "Pregled playliste", - "Smart Block": "Pametni blok", - "Webstream preview": "Pregled internetskog prijenosa", - "You don't have permission to view the library.": "Nemaš dozvole za prikaz medijateke.", - "Now": "Sada", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "URL feeda", - "Import Date": "Uvezi datum", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "Nije moguće zakazati izvan emisije.\nPokušaj najprije stvoriti emisiju.", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Upiši svoje korisničko ime i lozinku.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo.", - "You are viewing an older version of %s": "Gledaš stariju verziju %s", - "You cannot add tracks to dynamic blocks.": "Ne možeš dodavati pjesme u dinamične blokove.", - "You don't have permission to delete selected %s(s).": "Nemaš dozvole za brisanje odabranih %s.", - "You can only add tracks to smart block.": "Možeš samo dodati pjesme u pametni blok.", - "Untitled Playlist": "Neimenovana playlista", - "Untitled Smart Block": "Neimenovan pametni blok", - "Unknown Playlist": "Nepoznata playlista", - "Preferences updated.": "Postavke su ažurirane.", - "Stream Setting Updated.": "Postavka prijenosa je ažurirana.", - "path should be specified": "put bi trebao biti specificiran", - "Problem with Liquidsoap...": "Problem s Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Ponovo emitiraj emisiju %s od %s na %s", - "Select cursor": "Odaberi pokazivač", - "Remove cursor": "Ukloni pokazivač", - "show does not exist": "emisija ne postoji", - "Track Type added successfully!": "Vrsta snimke uspješno dodana!", - "Track Type updated successfully!": "Vrsta snimke uspješno ažurirana!", - "User added successfully!": "Korisnik je uspješno dodan!", - "User updated successfully!": "Korisnik je uspješno ažuriran!", - "Settings updated successfully!": "Postavke su uspješno ažurirane!", - "Untitled Webstream": "Neimenovan internetski prijenos", - "Webstream saved.": "Internetski prijenos je spremljen.", - "Invalid form values.": "Nevažeće vrijednosti obrasca.", - "Invalid character entered": "Uneseni su nevažeći znakovi", - "Day must be specified": "Dan se mora navesti", - "Time must be specified": "Vrijeme mora biti navedeno", - "Must wait at least 1 hour to rebroadcast": "Moraš čekati najmanje 1 sat za re-emitiranje", - "Add Autoloading Playlist ?": "", - "Select Playlist": "Odaberi playlistu", - "Repeat Playlist Until Show is Full ?": "Ponavljati playlistu sve dok emisija nije potpuna?", - "Use %s Authentication:": "Koristi %s autentifikaciju:", - "Use Custom Authentication:": "Koristi prilagođenu autentifikaciju:", - "Custom Username": "Prilagođeno korisničko Ime", - "Custom Password": "Prilagođena lozinka", - "Host:": "Host:", - "Port:": "Priključak:", - "Mount:": "", - "Username field cannot be empty.": "Polje korisničkog imena ne smije biti prazno.", - "Password field cannot be empty.": "'Lozinka' polja ne smije ostati prazno.", - "Record from Line In?": "Snimanje sa Line In?", - "Rebroadcast?": "Ponovo emitirati?", - "days": "dani", - "Link:": "Link:", - "Repeat Type:": "Vrsta ponavljanja:", - "weekly": "tjedno", - "every 2 weeks": "svaka 2 tjedna", - "every 3 weeks": "svaka 3 tjedna", - "every 4 weeks": "svaka 4 tjedna", - "monthly": "mjesečno", - "Select Days:": "Odaberi dane:", - "Repeat By:": "Ponavljaj po:", - "day of the month": "dan u mjesecu", - "day of the week": "dan u tjednu", - "Date End:": "Datum završetka:", - "No End?": "Nema Kraja?", - "End date must be after start date": "Datum završetka mora biti nakon datuma početka", - "Please select a repeat day": "Odaberi dan ponavljanja", - "Background Colour:": "Boja pozadine:", - "Text Colour:": "Boja teksta:", - "Current Logo:": "Trenutačni logotip:", - "Show Logo:": "Prikaži logotip:", - "Logo Preview:": "", - "Name:": "Naziv:", - "Untitled Show": "Neimenovana emisija", - "URL:": "URL:", - "Genre:": "Žanr:", - "Description:": "Opis:", - "Instance Description:": "Opis instance:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'", - "Start Time:": "Vrijeme početka:", - "In the Future:": "Ubuduće:", - "End Time:": "Vrijeme završetka:", - "Duration:": "Trajanje:", - "Timezone:": "Vremenska zona:", - "Repeats?": "Ponavljanje?", - "Cannot create show in the past": "Ne može se stvoriti emisija u prošlosti", - "Cannot modify start date/time of the show that is already started": "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela", - "End date/time cannot be in the past": "Datum završetka i vrijeme ne može biti u prošlosti", - "Cannot have duration < 0m": "Ne može trajati kraće od 0 min", - "Cannot have duration 00h 00m": "Ne može trajati 00 h 00 min", - "Cannot have duration greater than 24h": "Ne može trajati duže od 24 h", - "Cannot schedule overlapping shows": "Nije moguće zakazati preklapajuće emisije", - "Search Users:": "Traži korisnike:", - "DJs:": "Disk-džokeji:", - "Type Name:": "Ime vrste:", - "Code:": "Kod:", - "Visibility:": "Vidljivost:", - "Analyze cue points:": "", - "Code is not unique.": "Kod nije jedinstven.", - "Username:": "Korisničko ime:", - "Password:": "Lozinka:", - "Verify Password:": "Potvrdi lozinku:", - "Firstname:": "Ime:", - "Lastname:": "Prezime:", - "Email:": "E-mail:", - "Mobile Phone:": "Mobitel:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Vrsta korisnika:", - "Login name is not unique.": "Ime prijave nije jedinstveno.", - "Delete All Tracks in Library": "Izbriši sve snimke u medijateci", - "Date Start:": "Datum početka:", - "Title:": "Naslov:", - "Creator:": "Tvorac:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "Odaberi jednu vrstu", - "Track Type:": "Vrsta snimke:", - "Year:": "Godina:", - "Label:": "Naljepnica:", - "Composer:": "Kompozitor:", - "Conductor:": "Dirigent:", - "Mood:": "Raspoloženje:", - "BPM:": "BPM:", - "Copyright:": "Autorsko pravo:", - "ISRC Number:": "ISRC Broj:", - "Website:": "Web stranica:", - "Language:": "Jezik:", - "Publish...": "Objavi …", - "Start Time": "Vrijeme početka", - "End Time": "Vrijeme završetka", - "Interface Timezone:": "Vremenska zona sučelja:", - "Station Name": "Ime stanice", - "Station Description": "Opis stanice", - "Station Logo:": "Logotip stanice:", - "Note: Anything larger than 600x600 will be resized.": "Napomena: Sve veća od 600x600 će se mijenjati.", - "Default Crossfade Duration (s):": "Standardno trajanje međuprijelaza (s):", - "Please enter a time in seconds (eg. 0.5)": "Upiši vrijeme u sekundama (npr. 0,5)", - "Default Fade In (s):": "Standardno postupno pojačavanje glasnoće (s):", - "Default Fade Out (s):": "Standardno postupno smanjivanje glasnoće (s):", - "Track Type Upload Default": "Standard za prijenos vrsta snimaka", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Javni LibreTime API", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "Standardni jezik", - "Station Timezone": "Vremenska zona stanice", - "Week Starts On": "Prvi dan tjedna", - "Display login button on your Radio Page?": "", - "Feature Previews": "Pregledi funkcija", - "Enable this to opt-in to test new features.": "Aktiviraj ovo za testiranje novih funkcija.", - "Auto Switch Off:": "Automatsko isključivanje:", - "Auto Switch On:": "Automatsko uključivanje:", - "Switch Transition Fade (s):": "Promijeni postupni prijelaz (s):", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "Prikaži host izvora:", - "Show Source Port:": "Prikaži priključak izvora:", - "Show Source Mount:": "Prikaži pogon izvora:", - "Login": "Prijava", - "Password": "Lozinka", - "Confirm new password": "Potvrdi novu lozinku", - "Password confirmation does not match your password.": "Lozinke koje ste unijeli ne podudaraju se.", - "Email": "E-mail", - "Username": "Korisničko ime", - "Reset password": "Resetuj lozinku", - "Back": "Natrag", - "Now Playing": "Trenutno Izvođena", - "Select Stream:": "Odaberi emisiju:", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "Odaberi jednu emisiju:", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "Ugradiv kod:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "Pregled:", - "Feed Privacy": "Privatnost feeda", - "Public": "Javni", - "Private": "Privatni", - "Station Language": "Jezik stanice", - "Filter by Show": "Filtriraj po emisijama", - "All My Shows:": "Sve moje emisije:", - "My Shows": "", - "Select criteria": "Odaberi kriterije", - "Bit Rate (Kbps)": "Brzina prijenosa (Kbps)", - "Track Type": "Vrsta snimke", - "Sample Rate (kHz)": "Frekvencija (kHz)", - "before": "prije", - "after": "nakon", - "between": "između", - "Select unit of time": "Odaberi vremensku jedinicu", - "minute(s)": "minute", - "hour(s)": "sati", - "day(s)": "dani", - "week(s)": "tjedni", - "month(s)": "mjeseci", - "year(s)": "godine", - "hours": "sati", - "minutes": "minute", - "items": "elementi", - "time remaining in show": "preostalo vrijeme u emisiji", - "Randomly": "Slučajno", - "Newest": "Najnovije", - "Oldest": "Najstarije", - "Most recently played": "Zadnje reproducirane", - "Least recently played": "Najstarije reproducirane", - "Select Track Type": "Odaberi vrstu snimke", - "Type:": "Vrsta:", - "Dynamic": "Dinamički", - "Static": "Statični", - "Select track type": "Odaberi vrstu snimke", - "Allow Repeated Tracks:": "Dozvoli ponavljanje snimaka:", - "Allow last track to exceed time limit:": "Dozvoli da zadnji zapis prekorači vremensko ograničenje:", - "Sort Tracks:": "Redoslijed snimaka:", - "Limit to:": "Ograniči na:", - "Generate playlist content and save criteria": "Generiraj sadržaj playliste i spremi kriterije", - "Shuffle playlist content": "Promiješaj sadržaj playliste", - "Shuffle": "Promiješaj", - "Limit cannot be empty or smaller than 0": "Ograničenje ne može biti prazan ili manji od 0", - "Limit cannot be more than 24 hrs": "Ograničenje ne može biti više od 24 sati", - "The value should be an integer": "Vrijednost bi trebala biti cijeli broj", - "500 is the max item limit value you can set": "500 je max stavku graničnu vrijednost moguće je podesiti", - "You must select Criteria and Modifier": "Moraš odabrati Kriteriju i Modifikaciju", - "'Length' should be in '00:00:00' format": "'Dužina' trebala biti u '00:00:00' obliku", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Vrijednost mora biti numerička", - "The value should be less then 2147483648": "Vrijednost bi trebala biti manja od 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Vrijednost bi trebala biti manja od %s znakova", - "Value cannot be empty": "Vrijednost ne može biti prazna", - "Stream Label:": "Oznaka prijenosa:", - "Artist - Title": "Izvođač – Naslov", - "Show - Artist - Title": "Emisija – Izvođač – Naslov", - "Station name - Show name": "Ime stanice – Ime emisije", - "Off Air Metadata": "Off Air metapodaci", - "Enable Replay Gain": "Aktiviraj pojačanje glasnoće", - "Replay Gain Modifier": "Modifikator pojačanje glasnoće", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktivirano:", - "Mobile:": "Mobitel:", - "Stream Type:": "Vrsta prijenosa:", - "Bit Rate:": "Brzina prijenosa:", - "Service Type:": "Vrsta usluge:", - "Channels:": "Kanali:", - "Server": "Poslužitelj", - "Port": "Priključak", - "Mount Point": "Točka Montiranja", - "Name": "Ime", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "ID stanice:", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Mapa uvoza:", - "Watched Folders:": "Mape praćenja:", - "Not a valid Directory": "Nije ispravan direktorij", - "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' ne odgovara po obliku datuma '%format%'", - "'%value%' is less than %min% characters long": "'%value%' je manji od %min% dugačko znakova", - "'%value%' is more than %max% characters long": "'%value%' je više od %max% dugačko znakova", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nije između '%min%' i '%max%', uključivo", - "Passwords do not match": "Lozinke se ne podudaraju", - "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "\n\nHvala,\nTim %s", - "%s Password Reset": "Resetiranje lozinke za %s", - "Cue in and cue out are null.": "Cue in i cue out su nule.", - "Can't set cue out to be greater than file length.": "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke.", - "Can't set cue in to be larger than cue out.": "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'.", - "Can't set cue out to be smaller than cue in.": "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'.", - "Upload Time": "Vrijeme prijenosa", - "None": "Ništa", - "Powered by %s": "", - "Select Country": "Odaberi zemlju", - "livestream": "prijenos uživo", - "Cannot move items out of linked shows": "Nije moguće premjestiti stavke iz povezanih emisija", - "The schedule you're viewing is out of date! (sched mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)", - "The schedule you're viewing is out of date! (instance mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost instance)", - "The schedule you're viewing is out of date!": "Raspored koji gledaš nije aktualan!", - "You are not allowed to schedule show %s.": "Ne smijes zakazati rasporednu emisiju %s.", - "You cannot add files to recording shows.": "Ne možeš dodavati datoteke za snimljene emisije.", - "The show %s is over and cannot be scheduled.": "Emisija %s je gotova i ne mogu biti zakazana.", - "The show %s has been previously updated!": "Emisija %s je već prije bila ažurirana!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke.", - "A selected File does not exist!": "Odabrana Datoteka ne postoji!", - "Shows can have a max length of 24 hours.": "Emisija može trajati maksimalno 24 sata.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nije moguće zakazati preklapajuće emisije.\nNapomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja.", - "Rebroadcast of %s from %s": "Ponovo emitiraj emisiju %s od %s", - "Length needs to be greater than 0 minutes": "Duljina mora biti veća od 0 minuta", - "Length should be of form \"00h 00m\"": "Duljina mora biti u obliku „00h 00m”", - "URL should be of form \"https://example.org\"": "URL mora biti u obliku „https://example.org”", - "URL should be 512 characters or less": "URL mora sadržati 512 znakova ili manje", - "No MIME type found for webstream.": "Ne postoji MIME tip za prijenos.", - "Webstream name cannot be empty": "Ime internetskog prijenosa ne može biti prazno", - "Could not parse XSPF playlist": "Nije bilo moguće analizirati XSPF playlistu", - "Could not parse PLS playlist": "Nije bilo moguće analizirati PLS playlistu", - "Could not parse M3U playlist": "Nije bilo moguće analizirati M3U playlistu", - "Invalid webstream - This appears to be a file download.": "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke.", - "Unrecognized stream type: %s": "Nepepoznata vrsta prijenosa: %s", - "Record file doesn't exist": "Datoteka snimke ne postoji", - "View Recorded File Metadata": "Prikaži metapodatke snimljene datoteke", - "Schedule Tracks": "Zakaži snimke", - "Clear Show": "Izbriši emisiju", - "Cancel Show": "Prekini emisiju", - "Edit Instance": "Uredi instancu", - "Edit Show": "Uredi emisiju", - "Delete Instance": "Izbriši instancu", - "Delete Instance and All Following": "Izbriši instancu i sva praćenja", - "Permission denied": "Dozvola odbijena", - "Can't drag and drop repeating shows": "Ne možeš povući i ispustiti ponavljajuće emisije", - "Can't move a past show": "Ne možeš premjestiti događane emisije", - "Can't move show into past": "Ne možeš premjestiti emisiju u prošlosti", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija.", - "Show was deleted because recorded show does not exist!": "Emisija je izbrisana jer snimljena emisija ne postoji!", - "Must wait 1 hour to rebroadcast.": "Moraš pričekati jedan sat za ponovno emitiranje.", - "Track": "Snimka", - "Played": "Reproducirano", - "Auto-generated smartblock for podcast": "", - "Webstreams": "Internetski prijenosi" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Godina %s mora biti u rasponu od 1753. – 9999.", + "%s-%s-%s is not a valid date": "%s-%s-%s nije ispravan datum", + "%s:%s:%s is not a valid time": "%s:%s:%s nije ispravno vrijeme", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "Koristi standardne podatke stanice", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Stranica radija", + "Calendar": "Kalendar", + "Widgets": "Programčići", + "Player": "Player", + "Weekly Schedule": "Tjedni raspored", + "Settings": "Postavke", + "General": "Opće", + "My Profile": "Moj profil", + "Users": "Korisnici", + "Track Types": "Vrste snimaka", + "Streams": "Prijenosi", + "Status": "Stanje", + "Analytics": "Analitike", + "Playout History": "Povijest reproduciranih pjesama", + "History Templates": "Predlošci za povijest", + "Listener Stats": "Statistika slušatelja", + "Show Listener Stats": "Prikaži statistiku slušatelja", + "Help": "Pomoć", + "Getting Started": "Prvi koraci", + "User Manual": "Korisnički priručnik", + "Get Help Online": "Pomoć na internetu", + "Contribute to LibreTime": "Doprinesi projektu LibreTime", + "What's New?": "Što je novo?", + "You are not allowed to access this resource.": "Ne smiješ pristupiti ovom izvoru.", + "You are not allowed to access this resource. ": "Ne smiješ pristupiti ovom izvoru. ", + "File does not exist in %s": "Datoteka ne postoji u %s", + "Bad request. no 'mode' parameter passed.": "Neispravan zahtjev. Prametar „mode” nije predan.", + "Bad request. 'mode' parameter is invalid": "Neispravan zahtjev. Prametar „mode” je neispravan", + "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", + "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", + "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Stranica nije pronađena.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nije pronađen", + "Something went wrong.": "Dogodila se greška.", + "Preview": "Pregled", + "Add to Playlist": "Dodaj na Popis Pjesama", + "Add to Smart Block": "Dodaj u pametni blok", + "Delete": "Izbriši", + "Edit...": "Uredi …", + "Download": "Preuzimanje", + "Duplicate Playlist": "Dupliciraj playlistu", + "Duplicate Smartblock": "Dupliciraj pametni blok", + "No action available": "Nema dostupnih akcija", + "You don't have permission to delete selected items.": "Nemaš dozvole za brisanje odabrane stavke.", + "Could not delete file because it is scheduled in the future.": "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti.", + "Could not delete file(s).": "Nije bilo moguće izbrisati datoteku(e).", + "Copy of %s": "Kopiranje od %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa.", + "Audio Player": "Audio player", + "Something went wrong!": "Dogodila se greška!", + "Recording:": "Snimanje:", + "Master Stream": "Prijenos mastera", + "Live Stream": "Prijenos uživo", + "Nothing Scheduled": "Ništa nije zakazano", + "Current Show:": "Trenutačna emisija:", + "Current": "Trenutačna", + "You are running the latest version": "Pokrećeš najnoviju verziju", + "New version available: ": "Dostupna je nova verzija: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj u trenutni popis pjesama", + "Add to current smart block": "Dodaj u trenutačni pametni blok", + "Adding 1 Item": "Dodavanje 1 stavke", + "Adding %s Items": "Dodavanje %s stavki", + "You can only add tracks to smart blocks.": "Možeš dodavati samo pjesme u pametne blokove.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste.", + "Please select a cursor position on timeline.": "Odaberi mjesto pokazivača na vremenskoj crti.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "Nova", + "Edit": "Uredi", + "Add to Schedule": "Dodaj rasporedu", + "Add to next show": "Dodaj sljedećoj emisiji", + "Add to current show": "Dodaj trenutačnoj emisiji", + "Add after selected items": "Dodaj nakon odabranih stavki", + "Publish": "Objavi", + "Remove": "Ukloni", + "Edit Metadata": "Uredi metapodatke", + "Add to selected show": "Dodaj odabranoj emisiji", + "Select": "Odaberi", + "Select this page": "Odaberi ovu stranicu", + "Deselect this page": "Odznači ovu stranicu", + "Deselect all": "Odznači sve", + "Are you sure you want to delete the selected item(s)?": "Stvarno želiš izbrisati odabranu(e) stavku(e)?", + "Scheduled": "Zakazano", + "Tracks": "Snimke", + "Playlist": "Playlista", + "Title": "Naslov", + "Creator": "Tvorac", + "Album": "Album", + "Bit Rate": "Brzina prijenosa", + "BPM": "BPM", + "Composer": "Kompozitor", + "Conductor": "Dirigent", + "Copyright": "Autorsko pravo", + "Encoded By": "Kodirano je po", + "Genre": "Žanr", + "ISRC": "ISRC", + "Label": "Etiketa", + "Language": "Jezik", + "Last Modified": "Zadnja promjena", + "Last Played": "Zadnji put svirano", + "Length": "Trajanje", + "Mime": "Vrsta", + "Mood": "Ugođaj", + "Owner": "Vlasnik", + "Replay Gain": "Pojačanje reprodukcije", + "Sample Rate": "Frekvencija", + "Track Number": "Broj snimke", + "Uploaded": "Preneseno", + "Website": "Web stranica", + "Year": "Godina", + "Loading...": "Učitavanje...", + "All": "Sve", + "Files": "Datoteke", + "Playlists": "Playliste", + "Smart Blocks": "Pametni blokovi", + "Web Streams": "Prijenosi", + "Unknown type: ": "Nepoznata vrsta: ", + "Are you sure you want to delete the selected item?": "Stvarno želiš izbrisati odabranu stavku?", + "Uploading in progress...": "Prijenos je u tijeku...", + "Retrieving data from the server...": "Preuzimanje podataka s poslužitelja …", + "Import": "Uvezi", + "Imported?": "Uvezeno?", + "View": "Prikaz", + "Error code: ": "Kod pogreške: ", + "Error msg: ": "Poruka pogreške: ", + "Input must be a positive number": "Unos mora biti pozitivan broj", + "Input must be a number": "Unos mora biti broj", + "Input must be in the format: yyyy-mm-dd": "Unos mora biti u obliku: gggg-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Unos mora biti u obliku: hh:mm:ss.t", + "My Podcast": "Moj Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?", + "Open Media Builder": "Otvori Media Builder", + "please put in a time '00:00:00 (.0)'": "upiši vrijeme „00:00:00 (.0)”", + "Please enter a valid time in seconds. Eg. 0.5": "Upiši ispravno vrijeme u sekundama. Npr. 0,5", + "Your browser does not support playing this file type: ": "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: ", + "Dynamic block is not previewable": "Dinamički blok se ne može pregledati", + "Limit to: ": "Ograniči na: ", + "Playlist saved": "Playlista je spremljena", + "Playlist shuffled": "Playlista je izmiješana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'.", + "Listener Count on %s: %s": "Broj slušatelja %s: %s", + "Remind me in 1 week": "Podsjeti me za 1 tjedan", + "Remind me never": "Nikada me nemoj podsjetiti", + "Yes, help Airtime": "Da, pomažem Airtime-u", + "Image must be one of jpg, jpeg, png, or gif": "Slika mora biti jpg, jpeg, png, ili gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Pametni blok je izmiješan", + "Smart block generated and criteria saved": "Pametni blok je generiran i kriteriji su spremljeni", + "Smart block saved": "Pametni blok je spremljen", + "Processing...": "Obrada...", + "Select modifier": "Odaberi modifikator", + "contains": "sadrži", + "does not contain": "ne sadrži", + "is": "je", + "is not": "nije", + "starts with": "počinje sa", + "ends with": "završava sa", + "is greater than": "je veći od", + "is less than": "je manji od", + "is in the range": "je u rasponu", + "Generate": "Generiraj", + "Choose Storage Folder": "Odaberi mapu za spremanje", + "Choose Folder to Watch": "Odaberi mapu za praćenje", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Stvarno želiš promijeniti mapu za spremanje?\nTo će ukloniti datoteke iz tvoje Airtime medijateke!", + "Manage Media Folders": "Upravljanje Medijske Mape", + "Are you sure you want to remove the watched folder?": "Stvarno želiš ukloniti nadzorsku mapu?", + "This path is currently not accessible.": "Ovaj put nije trenutno dostupan.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni.", + "Connected to the streaming server": "Priključen je na poslužitelju", + "The stream is disabled": "Prijenos je onemogućen", + "Getting information from the server...": "Preuzimanje informacija s poslužitelja …", + "Can not connect to the streaming server": "Ne može se povezati na poslužitelju", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku.", + "Warning: You cannot change this field while the show is currently playing": "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava", + "No result found": "Nema pronađenih rezultata", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju.", + "Specify custom authentication which will work only for this show.": "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju.", + "The show instance doesn't exist anymore!": "Emisija u ovom slučaju više ne postoji!", + "Warning: Shows cannot be re-linked": "Upozorenje: Emisije ne može ponovno se povezati", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima.", + "Show": "Emisija", + "Show is empty": "Emisija je prazna", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Preuzimanje podataka s poslužitelja …", + "This show has no scheduled content.": "Ova emisija nema zakazanog sadržaja.", + "This show is not completely filled with content.": "Ova emisija nije u potpunosti ispunjena sa sadržajem.", + "January": "Siječanj", + "February": "Veljača", + "March": "Ožujak", + "April": "Travanj", + "May": "Svibanj", + "June": "Lipanj", + "July": "Srpanj", + "August": "Kolovoz", + "September": "Rujan", + "October": "Listopad", + "November": "Studeni", + "December": "Prosinac", + "Jan": "Sij", + "Feb": "Vel", + "Mar": "Ožu", + "Apr": "Tra", + "Jun": "Lip", + "Jul": "Srp", + "Aug": "Kol", + "Sep": "Ruj", + "Oct": "Lis", + "Nov": "Stu", + "Dec": "Pro", + "Today": "Danas", + "Day": "Dan", + "Week": "Tjedan", + "Month": "", + "Sunday": "Nedjelja", + "Monday": "Ponedjeljak", + "Tuesday": "Utorak", + "Wednesday": "Srijeda", + "Thursday": "Četvrtak", + "Friday": "Petak", + "Saturday": "Subota", + "Sun": "Ned", + "Mon": "Pon", + "Tue": "Uto", + "Wed": "Sri", + "Thu": "Čet", + "Fri": "Pet", + "Sat": "Sub", + "Shows longer than their scheduled time will be cut off by a following show.": "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom.", + "Cancel Current Show?": "Prekinuti trenutačnu emisiju?", + "Stop recording current show?": "Zaustaviti snimanje emisije?", + "Ok": "U redu", + "Contents of Show": "Sadržaj emisije", + "Remove all content?": "Ukloniti sav sadržaj?", + "Delete selected item(s)?": "Izbrisati odabranu(e) stavku(e)?", + "Start": "Početak", + "End": "Završetak", + "Duration": "Trajanje", + "Filtering out ": "Izdvjanje ", + " of ": " od ", + " records": " snimaka", + "There are no shows scheduled during the specified time period.": "U navedenom vremenskom razdoblju nema zakazanih emisija.", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Postupno pojačavanje glasnoće", + "Fade Out": "Postupno smanjivanje glasnoće", + "Show Empty": "Prazna emisija", + "Recording From Line In": "Snimanje sa Line In", + "Track preview": "Pregled snimaka", + "Cannot schedule outside a show.": "Nije moguće zakazati izvan emisije.", + "Moving 1 Item": "Premještanje 1 stavke", + "Moving %s Items": "Premještanje %s stavki", + "Save": "Spremi", + "Cancel": "Odustani", + "Fade Editor": "Uređivač prijelaza", + "Cue Editor": "Cue Uređivač", + "Waveform features are available in a browser supporting the Web Audio API": "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku", + "Select all": "Odaberi sve", + "Select none": "Odaberi ništa", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ukloni odabrane zakazane stavke", + "Jump to the current playing track": "Skoči na trenutnu sviranu pjesmu", + "Jump to Current": "Skoči na trenutnu", + "Cancel current show": "Prekini trenutačnu emisiju", + "Open library to add or remove content": "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja", + "Add / Remove Content": "Dodaj / Ukloni Sadržaj", + "in use": "u upotrebi", + "Disk": "Disk", + "Look in": "Pogledaj unutra", + "Open": "Otvori", + "Admin": "Administrator", + "DJ": "Disk-džokej", + "Program Manager": "Voditelj programa", + "Guest": "Gost", + "Guests can do the following:": "Gosti mogu učiniti sljedeće:", + "View schedule": "Prikaži raspored", + "View show content": "Prikaži sadržaj emisije", + "DJs can do the following:": "Disk-džokeji mogu učiniti sljedeće:", + "Manage assigned show content": "Upravljanje dodijeljen sadržaj emisije", + "Import media files": "Uvezi medijske datoteke", + "Create playlists, smart blocks, and webstreams": "Izradi popise naslova, pametnih blokova, i prijenose", + "Manage their own library content": "Upravljanje svoje knjižničnog sadržaja", + "Program Managers can do the following:": "Voditelj programa može:", + "View and manage show content": "Prikaži i upravljaj sadržajem emisije", + "Schedule shows": "Zakaži emisije", + "Manage all library content": "Upravljanje sve sadržaje knjižnica", + "Admins can do the following:": "Administratori mogu učiniti sljedeće:", + "Manage preferences": "Upravljanje postavke", + "Manage users": "Upravljanje korisnike", + "Manage watched folders": "Upravljanje nadziranih datoteke", + "Send support feedback": "Pošalji povratne informacije", + "View system status": "Prikaži stanje sustava", + "Access playout history": "Pristup za povijest puštenih pjesama", + "View listener stats": "Prikaži statistiku slušatelja", + "Show / hide columns": "Prikaži/sakrij stupce", + "Columns": "Stupci", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "gggg-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Ut", + "We": "Sr", + "Th": "Če", + "Fr": "Pe", + "Sa": "Su", + "Close": "Zatvori", + "Hour": "Sat", + "Minute": "Minuta", + "Done": "Gotovo", + "Select files": "Odaberi datoteke", + "Add files to the upload queue and click the start button.": "Dodaj datoteke i klikni na 'Pokreni Upload' dugme.", + "Filename": "", + "Size": "", + "Add Files": "Dodaj Datoteke", + "Stop Upload": "Prekini prijenos", + "Start upload": "Započni prijenos", + "Start Upload": "", + "Add files": "Dodaj datoteke", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Preneseno %d/%d datoteka", + "N/A": "N/A", + "Drag files here.": "Povuci datoteke ovamo.", + "File extension error.": "Pogrešan datotečni nastavak.", + "File size error.": "Pogrešna veličina datoteke.", + "File count error.": "Pogrešan broj datoteka.", + "Init error.": "Init pogreška.", + "HTTP Error.": "HTTP pogreška.", + "Security error.": "Sigurnosna pogreška.", + "Generic error.": "Opća pogreška.", + "IO error.": "IO pogreška.", + "File: %s": "Datoteka: %s", + "%d files queued": "%d datoteka na čekanju", + "File: %f, size: %s, max file size: %m": "Datoteka: %f, veličina: %s, maks veličina datoteke: %m", + "Upload URL might be wrong or doesn't exist": "URL prijenosa možda nije ispravan ili ne postoji", + "Error: File too large: ": "Pogreška: Datoteka je prevelika: ", + "Error: Invalid file extension: ": "Pogreška: Nevažeći datotečni nastavak: ", + "Set Default": "Postavi standardne postavke", + "Create Entry": "Stvaranje Unosa", + "Edit History Record": "Uredi zapis povijesti", + "No Show": "Nema Programa", + "Copied %s row%s to the clipboard": "%s red%s je kopiran u međumemoriju", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "Prvo", + "Last": "", + "Next": "", + "Previous": "Prethodno", + "Search:": "Traži:", + "No matching records found": "", + "Drag tracks here from the library": "Povuci snimke ovamo iz medijateke", + "No tracks were played during the selected time period.": "", + "Unpublish": "Poništi objavu", + "No matching results found.": "", + "Author": "Autor", + "Description": "Opis", + "Link": "", + "Publication Date": "Datum objavljivanja", + "Import Status": "Uvezi stanje", + "Actions": "", + "Delete from Library": "Izbriši iz medijateke", + "Successfully imported": "Uspješno uvezeno", + "Show _MENU_": "Prikaži _MENU_", + "Show _MENU_ entries": "Prikaži unose za _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Prikaz _START_ do _END_ od _TOTAL_ unosa", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Prikaz _START_ do _END_ od _TOTAL_ snimaka", + "Showing _START_ to _END_ of _TOTAL_ track types": "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka", + "Showing _START_ to _END_ of _TOTAL_ users": "Prikaz _START_ do _END_ od _TOTAL_ korisnika", + "Showing 0 to 0 of 0 entries": "Prikaz 0 do 0 od 0 unosa", + "Showing 0 to 0 of 0 tracks": "Prikaz 0 do 0 od 0 snimaka", + "Showing 0 to 0 of 0 track types": "Prikaz 0 do 0 od 0 vrsta snimaka", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Stvarno želiš izbrisati ovu vrstu snimke?", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktivirano", + "Disabled": "Deaktivirano", + "Cancel upload": "Prekini prijenos", + "Type": "Vrsta", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Postavke podcasta su spremljene", + "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", + "Can't delete yourself!": "Ne možeš sebe izbrisati!", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "Pregled playliste", + "Smart Block": "Pametni blok", + "Webstream preview": "Pregled internetskog prijenosa", + "You don't have permission to view the library.": "Nemaš dozvole za prikaz medijateke.", + "Now": "Sada", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "URL feeda", + "Import Date": "Uvezi datum", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "Nije moguće zakazati izvan emisije.\nPokušaj najprije stvoriti emisiju.", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Upiši svoje korisničko ime i lozinku.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo.", + "You are viewing an older version of %s": "Gledaš stariju verziju %s", + "You cannot add tracks to dynamic blocks.": "Ne možeš dodavati pjesme u dinamične blokove.", + "You don't have permission to delete selected %s(s).": "Nemaš dozvole za brisanje odabranih %s.", + "You can only add tracks to smart block.": "Možeš samo dodati pjesme u pametni blok.", + "Untitled Playlist": "Neimenovana playlista", + "Untitled Smart Block": "Neimenovan pametni blok", + "Unknown Playlist": "Nepoznata playlista", + "Preferences updated.": "Postavke su ažurirane.", + "Stream Setting Updated.": "Postavka prijenosa je ažurirana.", + "path should be specified": "put bi trebao biti specificiran", + "Problem with Liquidsoap...": "Problem s Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ponovo emitiraj emisiju %s od %s na %s", + "Select cursor": "Odaberi pokazivač", + "Remove cursor": "Ukloni pokazivač", + "show does not exist": "emisija ne postoji", + "Track Type added successfully!": "Vrsta snimke uspješno dodana!", + "Track Type updated successfully!": "Vrsta snimke uspješno ažurirana!", + "User added successfully!": "Korisnik je uspješno dodan!", + "User updated successfully!": "Korisnik je uspješno ažuriran!", + "Settings updated successfully!": "Postavke su uspješno ažurirane!", + "Untitled Webstream": "Neimenovan internetski prijenos", + "Webstream saved.": "Internetski prijenos je spremljen.", + "Invalid form values.": "Nevažeće vrijednosti obrasca.", + "Invalid character entered": "Uneseni su nevažeći znakovi", + "Day must be specified": "Dan se mora navesti", + "Time must be specified": "Vrijeme mora biti navedeno", + "Must wait at least 1 hour to rebroadcast": "Moraš čekati najmanje 1 sat za re-emitiranje", + "Add Autoloading Playlist ?": "", + "Select Playlist": "Odaberi playlistu", + "Repeat Playlist Until Show is Full ?": "Ponavljati playlistu sve dok emisija nije potpuna?", + "Use %s Authentication:": "Koristi %s autentifikaciju:", + "Use Custom Authentication:": "Koristi prilagođenu autentifikaciju:", + "Custom Username": "Prilagođeno korisničko Ime", + "Custom Password": "Prilagođena lozinka", + "Host:": "Host:", + "Port:": "Priključak:", + "Mount:": "", + "Username field cannot be empty.": "Polje korisničkog imena ne smije biti prazno.", + "Password field cannot be empty.": "'Lozinka' polja ne smije ostati prazno.", + "Record from Line In?": "Snimanje sa Line In?", + "Rebroadcast?": "Ponovo emitirati?", + "days": "dani", + "Link:": "Link:", + "Repeat Type:": "Vrsta ponavljanja:", + "weekly": "tjedno", + "every 2 weeks": "svaka 2 tjedna", + "every 3 weeks": "svaka 3 tjedna", + "every 4 weeks": "svaka 4 tjedna", + "monthly": "mjesečno", + "Select Days:": "Odaberi dane:", + "Repeat By:": "Ponavljaj po:", + "day of the month": "dan u mjesecu", + "day of the week": "dan u tjednu", + "Date End:": "Datum završetka:", + "No End?": "Nema Kraja?", + "End date must be after start date": "Datum završetka mora biti nakon datuma početka", + "Please select a repeat day": "Odaberi dan ponavljanja", + "Background Colour:": "Boja pozadine:", + "Text Colour:": "Boja teksta:", + "Current Logo:": "Trenutačni logotip:", + "Show Logo:": "Prikaži logotip:", + "Logo Preview:": "", + "Name:": "Naziv:", + "Untitled Show": "Neimenovana emisija", + "URL:": "URL:", + "Genre:": "Žanr:", + "Description:": "Opis:", + "Instance Description:": "Opis instance:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'", + "Start Time:": "Vrijeme početka:", + "In the Future:": "Ubuduće:", + "End Time:": "Vrijeme završetka:", + "Duration:": "Trajanje:", + "Timezone:": "Vremenska zona:", + "Repeats?": "Ponavljanje?", + "Cannot create show in the past": "Ne može se stvoriti emisija u prošlosti", + "Cannot modify start date/time of the show that is already started": "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela", + "End date/time cannot be in the past": "Datum završetka i vrijeme ne može biti u prošlosti", + "Cannot have duration < 0m": "Ne može trajati kraće od 0 min", + "Cannot have duration 00h 00m": "Ne može trajati 00 h 00 min", + "Cannot have duration greater than 24h": "Ne može trajati duže od 24 h", + "Cannot schedule overlapping shows": "Nije moguće zakazati preklapajuće emisije", + "Search Users:": "Traži korisnike:", + "DJs:": "Disk-džokeji:", + "Type Name:": "Ime vrste:", + "Code:": "Kod:", + "Visibility:": "Vidljivost:", + "Analyze cue points:": "", + "Code is not unique.": "Kod nije jedinstven.", + "Username:": "Korisničko ime:", + "Password:": "Lozinka:", + "Verify Password:": "Potvrdi lozinku:", + "Firstname:": "Ime:", + "Lastname:": "Prezime:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobitel:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Vrsta korisnika:", + "Login name is not unique.": "Ime prijave nije jedinstveno.", + "Delete All Tracks in Library": "Izbriši sve snimke u medijateci", + "Date Start:": "Datum početka:", + "Title:": "Naslov:", + "Creator:": "Tvorac:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "Odaberi jednu vrstu", + "Track Type:": "Vrsta snimke:", + "Year:": "Godina:", + "Label:": "Naljepnica:", + "Composer:": "Kompozitor:", + "Conductor:": "Dirigent:", + "Mood:": "Raspoloženje:", + "BPM:": "BPM:", + "Copyright:": "Autorsko pravo:", + "ISRC Number:": "ISRC Broj:", + "Website:": "Web stranica:", + "Language:": "Jezik:", + "Publish...": "Objavi …", + "Start Time": "Vrijeme početka", + "End Time": "Vrijeme završetka", + "Interface Timezone:": "Vremenska zona sučelja:", + "Station Name": "Ime stanice", + "Station Description": "Opis stanice", + "Station Logo:": "Logotip stanice:", + "Note: Anything larger than 600x600 will be resized.": "Napomena: Sve veća od 600x600 će se mijenjati.", + "Default Crossfade Duration (s):": "Standardno trajanje međuprijelaza (s):", + "Please enter a time in seconds (eg. 0.5)": "Upiši vrijeme u sekundama (npr. 0,5)", + "Default Fade In (s):": "Standardno postupno pojačavanje glasnoće (s):", + "Default Fade Out (s):": "Standardno postupno smanjivanje glasnoće (s):", + "Track Type Upload Default": "Standard za prijenos vrsta snimaka", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Javni LibreTime API", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "Standardni jezik", + "Station Timezone": "Vremenska zona stanice", + "Week Starts On": "Prvi dan tjedna", + "Display login button on your Radio Page?": "", + "Feature Previews": "Pregledi funkcija", + "Enable this to opt-in to test new features.": "Aktiviraj ovo za testiranje novih funkcija.", + "Auto Switch Off:": "Automatsko isključivanje:", + "Auto Switch On:": "Automatsko uključivanje:", + "Switch Transition Fade (s):": "Promijeni postupni prijelaz (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "Prikaži host izvora:", + "Show Source Port:": "Prikaži priključak izvora:", + "Show Source Mount:": "Prikaži pogon izvora:", + "Login": "Prijava", + "Password": "Lozinka", + "Confirm new password": "Potvrdi novu lozinku", + "Password confirmation does not match your password.": "Lozinke koje ste unijeli ne podudaraju se.", + "Email": "E-mail", + "Username": "Korisničko ime", + "Reset password": "Resetuj lozinku", + "Back": "Natrag", + "Now Playing": "Trenutno Izvođena", + "Select Stream:": "Odaberi emisiju:", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "Odaberi jednu emisiju:", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "Ugradiv kod:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "Pregled:", + "Feed Privacy": "Privatnost feeda", + "Public": "Javni", + "Private": "Privatni", + "Station Language": "Jezik stanice", + "Filter by Show": "Filtriraj po emisijama", + "All My Shows:": "Sve moje emisije:", + "My Shows": "", + "Select criteria": "Odaberi kriterije", + "Bit Rate (Kbps)": "Brzina prijenosa (Kbps)", + "Track Type": "Vrsta snimke", + "Sample Rate (kHz)": "Frekvencija (kHz)", + "before": "prije", + "after": "nakon", + "between": "između", + "Select unit of time": "Odaberi vremensku jedinicu", + "minute(s)": "minute", + "hour(s)": "sati", + "day(s)": "dani", + "week(s)": "tjedni", + "month(s)": "mjeseci", + "year(s)": "godine", + "hours": "sati", + "minutes": "minute", + "items": "elementi", + "time remaining in show": "preostalo vrijeme u emisiji", + "Randomly": "Slučajno", + "Newest": "Najnovije", + "Oldest": "Najstarije", + "Most recently played": "Zadnje reproducirane", + "Least recently played": "Najstarije reproducirane", + "Select Track Type": "Odaberi vrstu snimke", + "Type:": "Vrsta:", + "Dynamic": "Dinamički", + "Static": "Statični", + "Select track type": "Odaberi vrstu snimke", + "Allow Repeated Tracks:": "Dozvoli ponavljanje snimaka:", + "Allow last track to exceed time limit:": "Dozvoli da zadnji zapis prekorači vremensko ograničenje:", + "Sort Tracks:": "Redoslijed snimaka:", + "Limit to:": "Ograniči na:", + "Generate playlist content and save criteria": "Generiraj sadržaj playliste i spremi kriterije", + "Shuffle playlist content": "Promiješaj sadržaj playliste", + "Shuffle": "Promiješaj", + "Limit cannot be empty or smaller than 0": "Ograničenje ne može biti prazan ili manji od 0", + "Limit cannot be more than 24 hrs": "Ograničenje ne može biti više od 24 sati", + "The value should be an integer": "Vrijednost bi trebala biti cijeli broj", + "500 is the max item limit value you can set": "500 je max stavku graničnu vrijednost moguće je podesiti", + "You must select Criteria and Modifier": "Moraš odabrati Kriteriju i Modifikaciju", + "'Length' should be in '00:00:00' format": "'Dužina' trebala biti u '00:00:00' obliku", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Vrijednost mora biti numerička", + "The value should be less then 2147483648": "Vrijednost bi trebala biti manja od 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Vrijednost bi trebala biti manja od %s znakova", + "Value cannot be empty": "Vrijednost ne može biti prazna", + "Stream Label:": "Oznaka prijenosa:", + "Artist - Title": "Izvođač – Naslov", + "Show - Artist - Title": "Emisija – Izvođač – Naslov", + "Station name - Show name": "Ime stanice – Ime emisije", + "Off Air Metadata": "Off Air metapodaci", + "Enable Replay Gain": "Aktiviraj pojačanje glasnoće", + "Replay Gain Modifier": "Modifikator pojačanje glasnoće", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktivirano:", + "Mobile:": "Mobitel:", + "Stream Type:": "Vrsta prijenosa:", + "Bit Rate:": "Brzina prijenosa:", + "Service Type:": "Vrsta usluge:", + "Channels:": "Kanali:", + "Server": "Poslužitelj", + "Port": "Priključak", + "Mount Point": "Točka Montiranja", + "Name": "Ime", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "ID stanice:", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Mapa uvoza:", + "Watched Folders:": "Mape praćenja:", + "Not a valid Directory": "Nije ispravan direktorij", + "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' ne odgovara po obliku datuma '%format%'", + "'%value%' is less than %min% characters long": "'%value%' je manji od %min% dugačko znakova", + "'%value%' is more than %max% characters long": "'%value%' je više od %max% dugačko znakova", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nije između '%min%' i '%max%', uključivo", + "Passwords do not match": "Lozinke se ne podudaraju", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "\n\nHvala,\nTim %s", + "%s Password Reset": "Resetiranje lozinke za %s", + "Cue in and cue out are null.": "Cue in i cue out su nule.", + "Can't set cue out to be greater than file length.": "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke.", + "Can't set cue in to be larger than cue out.": "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'.", + "Upload Time": "Vrijeme prijenosa", + "None": "Ništa", + "Powered by %s": "", + "Select Country": "Odaberi zemlju", + "livestream": "prijenos uživo", + "Cannot move items out of linked shows": "Nije moguće premjestiti stavke iz povezanih emisija", + "The schedule you're viewing is out of date! (sched mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)", + "The schedule you're viewing is out of date! (instance mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost instance)", + "The schedule you're viewing is out of date!": "Raspored koji gledaš nije aktualan!", + "You are not allowed to schedule show %s.": "Ne smijes zakazati rasporednu emisiju %s.", + "You cannot add files to recording shows.": "Ne možeš dodavati datoteke za snimljene emisije.", + "The show %s is over and cannot be scheduled.": "Emisija %s je gotova i ne mogu biti zakazana.", + "The show %s has been previously updated!": "Emisija %s je već prije bila ažurirana!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke.", + "A selected File does not exist!": "Odabrana Datoteka ne postoji!", + "Shows can have a max length of 24 hours.": "Emisija može trajati maksimalno 24 sata.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nije moguće zakazati preklapajuće emisije.\nNapomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja.", + "Rebroadcast of %s from %s": "Ponovo emitiraj emisiju %s od %s", + "Length needs to be greater than 0 minutes": "Duljina mora biti veća od 0 minuta", + "Length should be of form \"00h 00m\"": "Duljina mora biti u obliku „00h 00m”", + "URL should be of form \"https://example.org\"": "URL mora biti u obliku „https://example.org”", + "URL should be 512 characters or less": "URL mora sadržati 512 znakova ili manje", + "No MIME type found for webstream.": "Ne postoji MIME tip za prijenos.", + "Webstream name cannot be empty": "Ime internetskog prijenosa ne može biti prazno", + "Could not parse XSPF playlist": "Nije bilo moguće analizirati XSPF playlistu", + "Could not parse PLS playlist": "Nije bilo moguće analizirati PLS playlistu", + "Could not parse M3U playlist": "Nije bilo moguće analizirati M3U playlistu", + "Invalid webstream - This appears to be a file download.": "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke.", + "Unrecognized stream type: %s": "Nepepoznata vrsta prijenosa: %s", + "Record file doesn't exist": "Datoteka snimke ne postoji", + "View Recorded File Metadata": "Prikaži metapodatke snimljene datoteke", + "Schedule Tracks": "Zakaži snimke", + "Clear Show": "Izbriši emisiju", + "Cancel Show": "Prekini emisiju", + "Edit Instance": "Uredi instancu", + "Edit Show": "Uredi emisiju", + "Delete Instance": "Izbriši instancu", + "Delete Instance and All Following": "Izbriši instancu i sva praćenja", + "Permission denied": "Dozvola odbijena", + "Can't drag and drop repeating shows": "Ne možeš povući i ispustiti ponavljajuće emisije", + "Can't move a past show": "Ne možeš premjestiti događane emisije", + "Can't move show into past": "Ne možeš premjestiti emisiju u prošlosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija.", + "Show was deleted because recorded show does not exist!": "Emisija je izbrisana jer snimljena emisija ne postoji!", + "Must wait 1 hour to rebroadcast.": "Moraš pričekati jedan sat za ponovno emitiranje.", + "Track": "Snimka", + "Played": "Reproducirano", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Internetski prijenosi" +} diff --git a/webapp/src/locale/hu_HU.json b/webapp/src/locale/hu_HU.json index 9a9fd27d5f..4a39fe9429 100644 --- a/webapp/src/locale/hu_HU.json +++ b/webapp/src/locale/hu_HU.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Az évnek %s 1753 - 9999 közötti tartományban kell lennie", - "%s-%s-%s is not a valid date": "%s-%s-%s érvénytelen dátum", - "%s:%s:%s is not a valid time": "%s:%s:%s érvénytelen időpont", - "English": "English", - "Afar": "Afar", - "Abkhazian": "Abkhazian", - "Afrikaans": "Afrikaans", - "Amharic": "Amharic", - "Arabic": "Arabic", - "Assamese": "Assamese", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkir", - "Belarusian": "Belarusian", - "Bulgarian": "Bulgarian", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengali/Bangla", - "Tibetan": "Tibetan", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corsican", - "Czech": "Czech", - "Welsh": "Welsh", - "Danish": "Danish", - "German": "German", - "Bhutani": "Bhutani", - "Greek": "Greek", - "Esperanto": "Esperanto", - "Spanish": "Spanish", - "Estonian": "Estonian", - "Basque": "Basque", - "Persian": "Persian", - "Finnish": "Finnish", - "Fiji": "Fiji", - "Faeroese": "Faeroese", - "French": "French", - "Frisian": "Frisian", - "Irish": "Irish", - "Scots/Gaelic": "Scots/Gaelic", - "Galician": "Galician", - "Guarani": "Guarani", - "Gujarati": "Gujarati", - "Hausa": "Hausa", - "Hindi": "Hindi", - "Croatian": "Croatian", - "Hungarian": "magyar", - "Armenian": "Armenian", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesian", - "Icelandic": "Icelandic", - "Italian": "Italian", - "Hebrew": "Hebrew", - "Japanese": "Japanese", - "Yiddish": "Yiddish", - "Javanese": "Javanese", - "Georgian": "Georgian", - "Kazakh": "Kazakh", - "Greenlandic": "Greenlandic", - "Cambodian": "Cambodian", - "Kannada": "Kannada", - "Korean": "Korean", - "Kashmiri": "Kashmiri", - "Kurdish": "Kurdish", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Laothian", - "Lithuanian": "Lithuanian", - "Latvian/Lettish": "Latvian/Lettish", - "Malagasy": "Malagasy", - "Maori": "Maori", - "Macedonian": "Macedonian", - "Malayalam": "Malayalam", - "Mongolian": "Mongolian", - "Moldavian": "Moldavian", - "Marathi": "Marathi", - "Malay": "Malay", - "Maltese": "Maltese", - "Burmese": "Burmese", - "Nauru": "Nauru", - "Nepali": "Nepali", - "Dutch": "Dutch", - "Norwegian": "Norwegian", - "Occitan": "Occitan", - "(Afan)/Oromoor/Oriya": "(Afan)/Oromoor/Oriya", - "Punjabi": "Punjabi", - "Polish": "Polish", - "Pashto/Pushto": "Pashto/Pushto", - "Portuguese": "Portuguese", - "Quechua": "Quechua", - "Rhaeto-Romance": "Rhaeto-Romance", - "Kirundi": "Kirundi", - "Romanian": "Romanian", - "Russian": "Russian", - "Kinyarwanda": "Kinyarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sangro", - "Serbo-Croatian": "Serbo-Croatian", - "Singhalese": "Singhalese", - "Slovak": "Slovak", - "Slovenian": "Slovenian", - "Samoan": "Samoan", - "Shona": "Shona", - "Somali": "Somali", - "Albanian": "Albanian", - "Serbian": "Serbian", - "Siswati": "Siswati", - "Sesotho": "Sesotho", - "Sundanese": "Sundanese", - "Swedish": "Swedish", - "Swahili": "Swahili", - "Tamil": "Tamil", - "Tegulu": "Tegulu", - "Tajik": "Tajik", - "Thai": "Thai", - "Tigrinya": "Tigrinya", - "Turkmen": "Turkmen", - "Tagalog": "Tagalog", - "Setswana": "Setswana", - "Tonga": "Tonga", - "Turkish": "Turkish", - "Tsonga": "Tsonga", - "Tatar": "Tatar", - "Twi": "Twi", - "Ukrainian": "Ukrainian", - "Urdu": "Urdu", - "Uzbek": "Uzbek", - "Vietnamese": "Vietnamese", - "Volapuk": "Volapuk", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinese", - "Zulu": "Zulu", - "Use station default": "Állomás alapértelmezések használata", - "Upload some tracks below to add them to your library!": "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s.", - "Click the 'New Show' button and fill out the required fields.": "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n%sNem hivatkozott műsor létrehozása most%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Rádióoldal", - "Calendar": "Naptár", - "Widgets": "Felületi elemek", - "Player": "Lejátszó", - "Weekly Schedule": "Heti ütemterv", - "Settings": "Beállítások", - "General": "Általános", - "My Profile": "Profilom", - "Users": "Felhasználók", - "Track Types": "", - "Streams": "Adásfolyamok", - "Status": "Állapot", - "Analytics": "Elemzések", - "Playout History": "Lejátszási előzmények", - "History Templates": "Naplózási sablonok", - "Listener Stats": "Hallgatói statisztikák", - "Show Listener Stats": "", - "Help": "Segítség", - "Getting Started": "Első lépések", - "User Manual": "Felhasználói kézikönyv", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "Újdonságok", - "You are not allowed to access this resource.": "Az Ön számára nem érhető el az alábbi erőforrás.", - "You are not allowed to access this resource. ": "Az Ön számára nem érhető el az alábbi erőforrás.", - "File does not exist in %s": "A fájl nem elérhető itt: %s", - "Bad request. no 'mode' parameter passed.": "Helytelen kérés. nincs 'mód' paraméter lett átadva.", - "Bad request. 'mode' parameter is invalid": "Helytelen kérés. 'mód' paraméter érvénytelen.", - "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", - "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", - "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", - "Page not found.": "Oldal nem található.", - "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", - "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", - "An internal application error has occurred.": "Belső alkalmazáshiba történt.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Még nincsenek közzétett sávok.", - "%s not found": "%s nem található", - "Something went wrong.": "Valami hiba történt.", - "Preview": "Előnézet", - "Add to Playlist": "Hozzáadás lejátszási listához", - "Add to Smart Block": "Hozzáadás Okosblokkhoz", - "Delete": "Törlés", - "Edit...": "Szerkesztés...", - "Download": "Letöltés", - "Duplicate Playlist": "Lejátszási lista duplikálása", - "Duplicate Smartblock": "", - "No action available": "Nincs elérhető művelet", - "You don't have permission to delete selected items.": "Nincs engedélye, hogy törölje a kiválasztott elemeket.", - "Could not delete file because it is scheduled in the future.": "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra.", - "Could not delete file(s).": "Nem lehet törölni a fájlokat.", - "Copy of %s": "%s másolata", - "Please make sure admin user/password is correct on Settings->Streams page.": "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon.", - "Audio Player": "Audió lejátszó", - "Something went wrong!": "Valami hiba történt!", - "Recording:": "Felvétel:", - "Master Stream": "Mester-adásfolyam", - "Live Stream": "Élő adásfolyam", - "Nothing Scheduled": "Nincs semmi ütemezve", - "Current Show:": "Jelenlegi műsor:", - "Current": "Jelenleg", - "You are running the latest version": "Ön a legújabb verziót futtatja", - "New version available: ": "Új verzió érhető el:", - "You have a pre-release version of LibreTime intalled.": "A LibreTime egy kiadás-előtti verziója van telepítve.", - "A patch update for your LibreTime installation is available.": "Egy hibajavító frissítés érhető el a LibreTimehoz.", - "A feature update for your LibreTime installation is available.": "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz.", - "A major update for your LibreTime installation is available.": "Elérhető a LibreTime új verzióját tartalmazó frissítés.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni.", - "Add to current playlist": "Hozzáadás a jelenlegi lejátszási listához", - "Add to current smart block": "Hozzáadás a jelenlegi okosblokkhoz", - "Adding 1 Item": "1 elem hozzáadása", - "Adding %s Items": "%s elem hozzáadása", - "You can only add tracks to smart blocks.": "Csak sávokat lehet hozzáadni az okosblokkokhoz.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz.", - "Please select a cursor position on timeline.": "Válasszon kurzor pozíciót az idővonalon.", - "You haven't added any tracks": "Még nincsenek sávok hozzáadva", - "You haven't added any playlists": "Még nincsenek lejátszási listák hozzáadva", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "Még nincsenek okosblokkok hozzáadva", - "You haven't added any webstreams": "Még nincsenek web-adásfolyamok hozzáadva", - "Learn about tracks": "Sávok megismerése", - "Learn about playlists": "Lejátszási listák megismerése", - "Learn about podcasts": "Podcastok megismerése", - "Learn about smart blocks": "Okosblokkok megismerése", - "Learn about webstreams": "Web-adásfolyamok megismerése", - "Click 'New' to create one.": "Létrehozni az „Új” gombra kattintással lehet.", - "Add": "Hozzáadás", - "New": "", - "Edit": "Szerkeszt", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Közzététel", - "Remove": "Eltávolítás", - "Edit Metadata": "Metaadatok szerkesztése", - "Add to selected show": "Hozzáadás a kiválasztott műsorhoz", - "Select": "Kijelölés", - "Select this page": "Jelölje ki ezt az oldalt", - "Deselect this page": "Az oldal kijelölésének megszüntetése", - "Deselect all": "Minden kijelölés törlése", - "Are you sure you want to delete the selected item(s)?": "Biztos benne, hogy törli a kijelölt elemeket?", - "Scheduled": "Ütemezett", - "Tracks": "Sávok", - "Playlist": "Lejátszási lista", - "Title": "Cím", - "Creator": "Előadó/Szerző", - "Album": "Album", - "Bit Rate": "Bitráta", - "BPM": "BPM", - "Composer": "Zeneszerző", - "Conductor": "Karmester", - "Copyright": "Szerzői jog", - "Encoded By": "Kódolva", - "Genre": "Műfaj", - "ISRC": "ISRC", - "Label": "Címke", - "Language": "Nyelv", - "Last Modified": "Utoljára módosítva", - "Last Played": "Utoljára játszott", - "Length": "Hossz", - "Mime": "Mime típus", - "Mood": "Hangulat", - "Owner": "Tulajdonos", - "Replay Gain": "Replay Gain", - "Sample Rate": "Mintavétel", - "Track Number": "Sáv sorszáma", - "Uploaded": "Feltöltve", - "Website": "Honlap", - "Year": "Év", - "Loading...": "Betöltés...", - "All": "Összes", - "Files": "Fájlok", - "Playlists": "Lejátszási listák", - "Smart Blocks": "Okosblokkok", - "Web Streams": "Web-adásfolyamok", - "Unknown type: ": "Ismeretlen típus:", - "Are you sure you want to delete the selected item?": "Biztos benne, hogy törli a kijelölt elemet?", - "Uploading in progress...": "Feltöltés folyamatban...", - "Retrieving data from the server...": "Adatok lekérdezése a kiszolgálóról...", - "Import": "", - "Imported?": "", - "View": "Megtekintés", - "Error code: ": "Hibakód:", - "Error msg: ": "Hibaüzenet:", - "Input must be a positive number": "A bemenetnek pozitív számnak kell lennie", - "Input must be a number": "A bemenetnek számnak kell lennie", - "Input must be in the format: yyyy-mm-dd": "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn", - "Input must be in the format: hh:mm:ss.t": "A bemenetet ebben a formában kell megadni: óó:pp:mm.t", - "My Podcast": "Podcastom", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?", - "Open Media Builder": "Médiaépítő megnyitása", - "please put in a time '00:00:00 (.0)'": "kérjük, tegye időbe '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Érvényes időt kell megadni másodpercben. Pl.: 0.5", - "Your browser does not support playing this file type: ": "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:", - "Dynamic block is not previewable": "Dinamikus blokknak nincs előnézete", - "Limit to: ": "Korlátozva:", - "Playlist saved": "Lejátszási lista mentve", - "Playlist shuffled": "Lejátszási lista megkeverve", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”.", - "Listener Count on %s: %s": "%s hallgatóinak száma: %s", - "Remind me in 1 week": "Emlékeztessen 1 hét múlva", - "Remind me never": "Soha ne emlékeztessen", - "Yes, help Airtime": "Igen, segítek az Airtime-nak", - "Image must be one of jpg, jpeg, png, or gif": "A képek formátuma jpg, jpeg, png, vagy gif kell legyen", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Okosblokk megkeverve", - "Smart block generated and criteria saved": "Okosblokk létrehozva és a feltételek mentve", - "Smart block saved": "Okosblokk elmentve", - "Processing...": "Feldolgozás...", - "Select modifier": "Módosító választása", - "contains": "tartalmazza", - "does not contain": "nem tartalmazza", - "is": "pontosan", - "is not": "nem", - "starts with": "kezdődik", - "ends with": "végződik", - "is greater than": "nagyobb, mint", - "is less than": "kisebb, mint", - "is in the range": "tartománya", - "Generate": "Létrehozás", - "Choose Storage Folder": "Válasszon tárolómappát", - "Choose Folder to Watch": "Válasszon figyelt mappát", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Biztos benne, hogy meg akarja változtatni a tárolómappát?\nEzzel eltávolítja a fájlokat a saját Airtime könyvtárából!", - "Manage Media Folders": "Médiamappák kezelése", - "Are you sure you want to remove the watched folder?": "Biztos benne, hogy el akarja távolítani a figyelt mappát?", - "This path is currently not accessible.": "Ez az útvonal jelenleg nem elérhető.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban.", - "Connected to the streaming server": "Csatlakozva az adásfolyam kiszolgálóhoz", - "The stream is disabled": "Az adásfolyam ki van kapcsolva", - "Getting information from the server...": "Információk lekérdezése a kiszolgálóról...", - "Can not connect to the streaming server": "Nem lehet kapcsolódni az adásfolyam kiszolgálójához", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani .", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó.", - "Warning: You cannot change this field while the show is currently playing": "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart", - "No result found": "Nem volt találat", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak.", - "Specify custom authentication which will work only for this show.": "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik.", - "The show instance doesn't exist anymore!": "A műsor példány nem létezik többé!", - "Warning: Shows cannot be re-linked": "Figyelem: Műsorokat nem lehet újrahivatkozni", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve.", - "Show": "Műsor", - "Show is empty": "A műsor üres", - "1m": "1p", - "5m": "5p", - "10m": "10p", - "15m": "15p", - "30m": "30p", - "60m": "60p", - "Retreiving data from the server...": "Adatok lekérdezése a kiszolgálóról...", - "This show has no scheduled content.": "Ez a műsor nem tartalmaz ütemezett tartalmat.", - "This show is not completely filled with content.": "Ez a műsor nincs teljesen feltöltve tartalommal.", - "January": "Január", - "February": "Február", - "March": "Március", - "April": "Április", - "May": "Május", - "June": "Június", - "July": "Július", - "August": "Augusztus", - "September": "Szeptember", - "October": "Október", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Már", - "Apr": "Ápr", - "Jun": "Jún", - "Jul": "Júl", - "Aug": "Aug", - "Sep": "Sze", - "Oct": "Okt", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Ma", - "Day": "Nap", - "Week": "Hét", - "Month": "Hónap", - "Sunday": "Vasárnap", - "Monday": "Hétfő", - "Tuesday": "Kedd", - "Wednesday": "Szerda", - "Thursday": "Csütörtök", - "Friday": "Péntek", - "Saturday": "Szombat", - "Sun": "V", - "Mon": "H", - "Tue": "K", - "Wed": "Sze", - "Thu": "Cs", - "Fri": "P", - "Sat": "Szo", - "Shows longer than their scheduled time will be cut off by a following show.": "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét.", - "Cancel Current Show?": "A jelenlegi műsor megszakítása?", - "Stop recording current show?": "A jelenlegi műsor rögzítésének félbeszakítása?", - "Ok": "Ok", - "Contents of Show": "A műsor tartalmai", - "Remove all content?": "Az összes tartalom eltávolítása?", - "Delete selected item(s)?": "Törli a kiválasztott elemeket?", - "Start": "Kezdés", - "End": "Befejezés", - "Duration": "Időtartam", - "Filtering out ": "Kiszűrve", - " of ": "/", - " records": "felvétel", - "There are no shows scheduled during the specified time period.": "A megadott időszakban nincsenek ütemezett műsorok.", - "Cue In": "Felkeverés", - "Cue Out": "Lekeverés", - "Fade In": "Felúsztatás", - "Fade Out": "Leúsztatás", - "Show Empty": "Üres műsor", - "Recording From Line In": "Rögzítés a vonalbemenetről", - "Track preview": "Sáv előnézete", - "Cannot schedule outside a show.": "Nem lehet ütemezni a műsoron kívül.", - "Moving 1 Item": "1 elem áthelyezése", - "Moving %s Items": "%s elem áthelyezése", - "Save": "Mentés", - "Cancel": "Mégse", - "Fade Editor": "Úsztatási Szerkesztő", - "Cue Editor": "Keverési Szerkesztő", - "Waveform features are available in a browser supporting the Web Audio API": "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók", - "Select all": "Az összes kijelölése", - "Select none": "Kijelölés törlése", - "Trim overbooked shows": "Túlnyúló műsorok levágása", - "Remove selected scheduled items": "A kijelölt ütemezett elemek eltávolítása", - "Jump to the current playing track": "Ugrás a jelenleg játszott sávra", - "Jump to Current": "", - "Cancel current show": "A jelenlegi műsor megszakítása", - "Open library to add or remove content": "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához", - "Add / Remove Content": "Tartalom hozzáadása / eltávolítása", - "in use": "használatban van", - "Disk": "Lemez", - "Look in": "Nézze meg", - "Open": "Megnyitás", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programkezelő", - "Guest": "Vendég", - "Guests can do the following:": "A vendégek a következőket tehetik:", - "View schedule": "Az ütemezés megtekintése", - "View show content": "A műsor tartalmának megtekintése", - "DJs can do the following:": "A DJ-k a következőket tehetik:", - "Manage assigned show content": "Hozzárendelt műsor tartalmának kezelése", - "Import media files": "Médiafájlok hozzáadása", - "Create playlists, smart blocks, and webstreams": "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása", - "Manage their own library content": "Saját médiatár tartalmának kezelése", - "Program Managers can do the following:": "", - "View and manage show content": "Műsortartalom megtekintése és kezelése", - "Schedule shows": "A műsorok ütemzései", - "Manage all library content": "A teljes médiatár tartalmának kezelése", - "Admins can do the following:": "Az Adminisztrátorok a következőket tehetik:", - "Manage preferences": "Beállítások kezelései", - "Manage users": "A felhasználók kezelése", - "Manage watched folders": "A figyelt mappák kezelése", - "Send support feedback": "Támogatási visszajelzés küldése", - "View system status": "A rendszer állapot megtekitnése", - "Access playout history": "Hozzáférés lejátszási előzményekhez", - "View listener stats": "A hallgatói statisztikák megtekintése", - "Show / hide columns": "Az oszlopok megjelenítése/elrejtése", - "Columns": "", - "From {from} to {to}": "{from} és {to} között", - "kbps": "kbps", - "yyyy-mm-dd": "éééé-hh-nn", - "hh:mm:ss.t": "óó:pp:mm.t", - "kHz": "kHz", - "Su": "V", - "Mo": "H", - "Tu": "K", - "We": "Sze", - "Th": "Cs", - "Fr": "P", - "Sa": "Szo", - "Close": "Bezárás", - "Hour": "Óra", - "Minute": "Perc", - "Done": "Kész", - "Select files": "Fájlok kiválasztása", - "Add files to the upload queue and click the start button.": "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra.", - "Filename": "", - "Size": "", - "Add Files": "Fájlok hozzáadása", - "Stop Upload": "Feltöltés megszakítása", - "Start upload": "Feltöltés indítása", - "Start Upload": "", - "Add files": "Fájlok hozzáadása", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Feltöltve %d/%d fájl", - "N/A": "N/A", - "Drag files here.": "Húzza a fájlokat ide.", - "File extension error.": "Fájlkiterjesztési hiba.", - "File size error.": "Fájlméret hiba.", - "File count error.": "Fájl számi hiba.", - "Init error.": "Inicializálási hiba.", - "HTTP Error.": "HTTP Hiba.", - "Security error.": "Biztonsági hiba.", - "Generic error.": "Általános hiba.", - "IO error.": "IO hiba.", - "File: %s": "Fájl: %s", - "%d files queued": "%d várakozó fájl", - "File: %f, size: %s, max file size: %m": "Fájl: %f,méret: %s, legnagyobb fájlméret: %m", - "Upload URL might be wrong or doesn't exist": "A feltöltés URL-je rossz vagy nem létezik", - "Error: File too large: ": "Hiba: A fájl túl nagy:", - "Error: Invalid file extension: ": "Hiba: Érvénytelen fájl kiterjesztés:", - "Set Default": "Alapértelmezés beállítása", - "Create Entry": "Bejegyzés létrehozása", - "Edit History Record": "Előzmények szerkesztése", - "No Show": "Nincs műsor", - "Copied %s row%s to the clipboard": "%s sor%s másolva a vágólapra", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett.", - "New Show": "Új műsor", - "New Log Entry": "Új naplóbejegyzés", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "Következő", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "Közzététel megszüntetése", - "No matching results found.": "", - "Author": "Szerző", - "Description": "Leírás", - "Link": "Hivatkozás", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Engedélyezve", - "Disabled": "Letiltva", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "Okosblokk", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "Adásban", - "Off Air": "Adásszünet", - "Offline": "Kapcsolat nélkül", - "Nothing scheduled": "Nincs semmi ütemezve", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Kérjük adja meg felhasználónevét és jelszavát.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció.", - "That username or email address could not be found.": "A felhasználónév vagy email cím nem található.", - "There was a problem with the username or email address you entered.": "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel.", - "Wrong username or password provided. Please try again.": "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra.", - "You are viewing an older version of %s": "Ön %s egy régebbi verzióját tekinti meg", - "You cannot add tracks to dynamic blocks.": "Dinamikus blokkokhoz nem lehet sávokat hozzáadni", - "You don't have permission to delete selected %s(s).": "A kiválasztott %s törléséhez nincs engedélye.", - "You can only add tracks to smart block.": "Csak sávokat lehet hozzáadni az okosblokkhoz.", - "Untitled Playlist": "Névtelen lejátszási lista", - "Untitled Smart Block": "Névtelen okosblokk", - "Unknown Playlist": "Ismeretlen lejátszási lista", - "Preferences updated.": "Beállítások frissítve.", - "Stream Setting Updated.": "Adásfolyam beállítások frissítve.", - "path should be specified": "az útvonalat meg kell határozni", - "Problem with Liquidsoap...": "Probléma lépett fel a Liquidsoap-al...", - "Request method not accepted": "A kérés módja nem elfogadott", - "Rebroadcast of show %s from %s at %s": "A műsor újraközvetítése %s -tól/-től %s a %s", - "Select cursor": "Kurzor kiválasztása", - "Remove cursor": "Kurzor eltávolítása", - "show does not exist": "a műsor nem található", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Felhasználó sikeresen hozzáadva!", - "User updated successfully!": "Felhasználó sikeresen módosítva!", - "Settings updated successfully!": "Beállítások sikeresen módosítva!", - "Untitled Webstream": "Névtelen adásfolyam", - "Webstream saved.": "Web-adásfolyam mentve.", - "Invalid form values.": "Érvénytelen űrlap értékek.", - "Invalid character entered": "Érvénytelen bevitt karakterek", - "Day must be specified": "A napot meg kell határoznia", - "Time must be specified": "Az időt meg kell határoznia", - "Must wait at least 1 hour to rebroadcast": "Az újraközvetítésre legalább 1 órát kell várni", - "Add Autoloading Playlist ?": "Lejátszási lista automatikus ütemezése?", - "Select Playlist": "Lejátszási lista kiválasztása", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "%s hitelesítés használata:", - "Use Custom Authentication:": "Egyéni hitelesítés használata:", - "Custom Username": "Egyéni felhasználónév", - "Custom Password": "Egyéni jelszó", - "Host:": "Hoszt:", - "Port:": "Port:", - "Mount:": "Csatolási pont:", - "Username field cannot be empty.": "A felhasználónév mező nem lehet üres.", - "Password field cannot be empty.": "A jelszó mező nem lehet üres.", - "Record from Line In?": "Felvétel a vonalbemenetről?", - "Rebroadcast?": "Újraközvetítés?", - "days": "napok", - "Link:": "Hivatkozás:", - "Repeat Type:": "Ismétlés típusa:", - "weekly": "hetente", - "every 2 weeks": "minden második héten", - "every 3 weeks": "minden harmadik héten", - "every 4 weeks": "minden negyedik héten", - "monthly": "havonta", - "Select Days:": "Napok kiválasztása:", - "Repeat By:": "Által Ismételt:", - "day of the month": "a hónap napja", - "day of the week": "a hét napja", - "Date End:": "Befejezés dátuma:", - "No End?": "Nincs vége?", - "End date must be after start date": "A befejezés dátumának a kezdés dátuma után kell lennie", - "Please select a repeat day": "Kérjük válasszon egy ismétlési napot", - "Background Colour:": "Háttérszín:", - "Text Colour:": "Szövegszín:", - "Current Logo:": "Jelenlegi logó:", - "Show Logo:": "Logó mutatása:", - "Logo Preview:": "Logó előnézete:", - "Name:": "Név:", - "Untitled Show": "Cím nélküli műsor", - "URL:": "URL:", - "Genre:": "Műfaj:", - "Description:": "Leírás:", - "Instance Description:": "Példány leírása:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' nem illeszkedik „ÓÓ:pp” formátumra", - "Start Time:": "Kezdési Idő:", - "In the Future:": "A jövőben:", - "End Time:": "Befejezési idő:", - "Duration:": "Időtartam:", - "Timezone:": "Időzóna:", - "Repeats?": "Ismétlések?", - "Cannot create show in the past": "Műsort nem lehet a múltban létrehozni", - "Cannot modify start date/time of the show that is already started": "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött", - "End date/time cannot be in the past": "A befejezési dátum és időpont nem lehet a múltban", - "Cannot have duration < 0m": "Időtartam nem lehet <0p", - "Cannot have duration 00h 00m": "Időtartam nem lehet 0ó 0p", - "Cannot have duration greater than 24h": "Időtartam nem lehet nagyobb mint 24 óra", - "Cannot schedule overlapping shows": "Nem fedhetik egymást a műsorok", - "Search Users:": "Felhasználók keresése:", - "DJs:": "DJ-k:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Felhasználónév:", - "Password:": "Jelszó:", - "Verify Password:": "Jelszóellenőrzés:", - "Firstname:": "Vezetéknév:", - "Lastname:": "Keresztnév:", - "Email:": "Email:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Felhasználótípus:", - "Login name is not unique.": "A bejelentkezési név nem egyedi.", - "Delete All Tracks in Library": "Az összes sáv törlése a könyvtárból", - "Date Start:": "Kezdés Ideje:", - "Title:": "Cím:", - "Creator:": "Létrehozó:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Év:", - "Label:": "Címke:", - "Composer:": "Zeneszerző:", - "Conductor:": "Karmester:", - "Mood:": "Hangulat:", - "BPM:": "BPM:", - "Copyright:": "Szerzői jog:", - "ISRC Number:": "ISRC Szám:", - "Website:": "Honlap:", - "Language:": "Nyelv:", - "Publish...": "Közzététel...", - "Start Time": "Kezdési Idő", - "End Time": "Befejezési idő", - "Interface Timezone:": "Felület időzónája:", - "Station Name": "Állomásnév", - "Station Description": "Állomás leírás", - "Station Logo:": "Állomás logó:", - "Note: Anything larger than 600x600 will be resized.": "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül.", - "Default Crossfade Duration (s):": "Alapértelmezett Áttünési Időtartam (mp):", - "Please enter a time in seconds (eg. 0.5)": "Idő megadása másodpercben (pl.: 0.5)", - "Default Fade In (s):": "Alapértelmezett Felúsztatás (mp)", - "Default Fade Out (s):": "Alapértelmezett Leúsztatás (mp)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "Podcast album felülírása", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül.", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Kötelező a beágyazható ütemezés felületi elemhez.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára.", - "Default Language": "Alapértelmezett nyelv", - "Station Timezone": "Állomás időzóna", - "Week Starts On": "A hét kezdőnapja", - "Display login button on your Radio Page?": "Bejelentkezési gomb megjelenítése a Rádióoldalon?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Automatikus kikapcsolás:", - "Auto Switch On:": "Automatikus bekapcsolás:", - "Switch Transition Fade (s):": "", - "Master Source Host:": "Mester-forrás hoszt:", - "Master Source Port:": "Mester-forrás port:", - "Master Source Mount:": "Mester-forrás csatolási pont:", - "Show Source Host:": "Műsor-forrás hoszt:", - "Show Source Port:": "Műsor-forrás port:", - "Show Source Mount:": "Műsor-forrás csatolási pont:", - "Login": "Bejelentkezés", - "Password": "Jelszó", - "Confirm new password": "Új jelszó megerősítése", - "Password confirmation does not match your password.": "A megadott jelszavak nem egyeznek meg.", - "Email": "Email", - "Username": "Felhasználónév", - "Reset password": "A jelszó visszaállítása", - "Back": "Vissza", - "Now Playing": "Most játszott", - "Select Stream:": "Adásfolyam kiválasztása:", - "Auto detect the most appropriate stream to use.": "A legmegfelelőbb adásfolyam automatikus felismerése.", - "Select a stream:": "Egy adásfolyam kiválasztása:", - " - Mobile friendly": "- Mobilbarát", - " - The player does not support Opus streams.": "- A lejátszó nem támogatja az Opus adásfolyamokat.", - "Embeddable code:": "Beágyazható kód:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába.", - "Preview:": "Előnézet", - "Feed Privacy": "Hírfolyam adatvédelem", - "Public": "Nyilvános", - "Private": "Privát", - "Station Language": "Állomás nyelve", - "Filter by Show": "Szűrés műsor szerint", - "All My Shows:": "Összes műsorom:", - "My Shows": "Műsoraim", - "Select criteria": "A feltételek megadása", - "Bit Rate (Kbps)": "Bitráta (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Mintavételi ráta (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "óra", - "minutes": "perc", - "items": "elem", - "time remaining in show": "", - "Randomly": "Véletlenszerűen", - "Newest": "Legújabb", - "Oldest": "Legrégebbi", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "Típus:", - "Dynamic": "Dinamikus", - "Static": "Statikus", - "Select track type": "", - "Allow Repeated Tracks:": "Ismétlődő sávok engedélyezése:", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "Sávok rendezése:", - "Limit to:": "Korlátozva:", - "Generate playlist content and save criteria": "Lejátszási lista tartalmának létrehozása és a feltétel mentése", - "Shuffle playlist content": "Véletlenszerű lejátszási lista tartalom", - "Shuffle": "Véletlenszerű", - "Limit cannot be empty or smaller than 0": "A határérték nem lehet üres vagy kisebb, mint 0", - "Limit cannot be more than 24 hrs": "A határérték nem lehet hosszabb, mint 24 óra", - "The value should be an integer": "Az érték csak egész szám lehet", - "500 is the max item limit value you can set": "Maximum 500 elem állítható be", - "You must select Criteria and Modifier": "Feltételt és módosítót kell választani", - "'Length' should be in '00:00:00' format": "A „Hosszúság”-ot „00:00:00” formában kell megadni", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Az értéknek numerikusnak kell lennie", - "The value should be less then 2147483648": "Az értéknek kevesebbnek kell lennie, mint 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Az értéknek rövidebb kell lennie, mint %s karakter", - "Value cannot be empty": "Az érték nem lehet üres", - "Stream Label:": "Adásfolyam címke:", - "Artist - Title": "Előadó - Cím", - "Show - Artist - Title": "Műsor - Előadó - Cím", - "Station name - Show name": "Állomásnév - Műsornév", - "Off Air Metadata": "Adásszünet - Metaadat", - "Enable Replay Gain": "Replay Gain Engedélyezése", - "Replay Gain Modifier": "Replay Gain Módosító", - "Hardware Audio Output:": "Hardver audio kimenet:", - "Output Type": "Kimenet típusa", - "Enabled:": "Engedélyezett:", - "Mobile:": "Mobil:", - "Stream Type:": "Adásfolyam típusa:", - "Bit Rate:": "Bitráta:", - "Service Type:": "Szolgáltatás típusa:", - "Channels:": "Csatornák:", - "Server": "Kiszolgáló", - "Port": "Port", - "Mount Point": "Csatolási pont", - "Name": "Név", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Metadata beküldése saját TuneIn állomásba?", - "Station ID:": "Állomás azonosító:", - "Partner Key:": "Partnerkulcs:", - "Partner Id:": "Partnerazonosító:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni.", - "Import Folder:": "Import mappa:", - "Watched Folders:": "Figyelt Mappák:", - "Not a valid Directory": "Érvénytelen könyvtár", - "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)", - "'%value%' does not fit the date format '%format%'": "'%value%' nem illeszkedik '%format%' dátumformátumra", - "'%value%' is less than %min% characters long": "'%value%' rövidebb, mint %min% karakter", - "'%value%' is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' értéknek '%min%' és '%max%' között kell lennie", - "Passwords do not match": "A jelszavak nem egyeznek meg", - "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", - "\n\nThank you,\nThe %s Team": "\n\nKöszönettel,\n%s Csapat", - "%s Password Reset": "%s jelszó visszaállítása", - "Cue in and cue out are null.": "A fel- és a lekeverés értékei nullák.", - "Can't set cue out to be greater than file length.": "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál.", - "Can't set cue in to be larger than cue out.": "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés.", - "Can't set cue out to be smaller than cue in.": "Nem lehet a lekeverés rövidebb, mint a felkeverés.", - "Upload Time": "Feltöltési idő", - "None": "Nincs", - "Powered by %s": "Működteti a %s", - "Select Country": "Ország kiválasztása", - "livestream": "élő adásfolyam", - "Cannot move items out of linked shows": "Nem tud áthelyezni elemeket a kapcsolódó műsorokból", - "The schedule you're viewing is out of date! (sched mismatch)": "A megtekintett ütemterv elavult! (ütem eltérés)", - "The schedule you're viewing is out of date! (instance mismatch)": "A megtekintett ütemterv elavult! (példány eltérés)", - "The schedule you're viewing is out of date!": "A megtekintett ütemterv időpontja elavult!", - "You are not allowed to schedule show %s.": "Nincs jogosultsága %s műsor ütemezéséhez.", - "You cannot add files to recording shows.": "Nem adhat hozzá fájlokat a rögzített műsorokhoz.", - "The show %s is over and cannot be scheduled.": "A műsor %s véget ért és nem lehet ütemezni.", - "The show %s has been previously updated!": "%s műsor már korábban frissítve lett!", - "Content in linked shows cannot be changed while on air!": "A hivatkozott műsorok tartalma nem módosítható adás közben!", - "Cannot schedule a playlist that contains missing files.": "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz.", - "A selected File does not exist!": "Egy kiválasztott fájl nem létezik!", - "Shows can have a max length of 24 hours.": "A műsorok maximum 24 óra hosszúságúak lehetnek.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Átfedő műsorokat nem lehet ütemezni.\nMegjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére.", - "Rebroadcast of %s from %s": "Úrjaközvetítés %s -tól/-től %s", - "Length needs to be greater than 0 minutes": "A hosszúság értékének nagyobb kell lennie, mint 0 perc", - "Length should be of form \"00h 00m\"": "A hosszúság formája \"00ó 00p\"", - "URL should be of form \"https://example.org\"": "Az URL-t „https://example.org” formában kell megadni", - "URL should be 512 characters or less": "Az URL nem lehet 512 karakternél hosszabb", - "No MIME type found for webstream.": "Nem található MIME típus a web-adásfolyamhoz.", - "Webstream name cannot be empty": "A web-adásfolyam neve nem lehet üres", - "Could not parse XSPF playlist": "Nem sikerült feldolgozni az XSPF lejátszási listát", - "Could not parse PLS playlist": "Nem sikerült feldolgozni a PLS lejátszási listát", - "Could not parse M3U playlist": "Nem sikerült feldolgozni az M3U lejátszási listát", - "Invalid webstream - This appears to be a file download.": "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés.", - "Unrecognized stream type: %s": "Ismeretlen típusú adásfolyam: %s", - "Record file doesn't exist": "Rögzített fájl nem létezik", - "View Recorded File Metadata": "A rögzített fájl metaadatai", - "Schedule Tracks": "Sávok ütemezése", - "Clear Show": "Műsor törlése", - "Cancel Show": "Műsor megszakítása", - "Edit Instance": "Példány szerkesztése:", - "Edit Show": "Műsor szerkesztése", - "Delete Instance": "Példány törlése:", - "Delete Instance and All Following": "Ennek a példánynak és minden utána következő példánynak a törlése", - "Permission denied": "Engedély megtagadva", - "Can't drag and drop repeating shows": "Ismétlődő műsorokat nem lehet megfogni és áthúzni", - "Can't move a past show": "Az elhangzott műsort nem lehet áthelyezni", - "Can't move show into past": "A műsort nem lehet a múltba áthelyezni", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig.", - "Show was deleted because recorded show does not exist!": "A műsor törlésre került, mert a rögzített műsor nem létezik!", - "Must wait 1 hour to rebroadcast.": "Az adás újbóli közvetítésére 1 órát kell várni.", - "Track": "Sáv", - "Played": "Lejátszva", - "Auto-generated smartblock for podcast": "", - "Webstreams": "Web-adásfolyamok" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Az évnek %s 1753 - 9999 közötti tartományban kell lennie", + "%s-%s-%s is not a valid date": "%s-%s-%s érvénytelen dátum", + "%s:%s:%s is not a valid time": "%s:%s:%s érvénytelen időpont", + "English": "English", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Belarusian", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali/Bangla", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "magyar", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "Burmese", + "Nauru": "Nauru", + "Nepali": "Nepali", + "Dutch": "Dutch", + "Norwegian": "Norwegian", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan)/Oromoor/Oriya", + "Punjabi": "Punjabi", + "Polish": "Polish", + "Pashto/Pushto": "Pashto/Pushto", + "Portuguese": "Portuguese", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rhaeto-Romance", + "Kirundi": "Kirundi", + "Romanian": "Romanian", + "Russian": "Russian", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-Croatian", + "Singhalese": "Singhalese", + "Slovak": "Slovak", + "Slovenian": "Slovenian", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanian", + "Serbian": "Serbian", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Sundanese", + "Swedish": "Swedish", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Tegulu", + "Tajik": "Tajik", + "Thai": "Thai", + "Tigrinya": "Tigrinya", + "Turkmen": "Turkmen", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonga", + "Turkish": "Turkish", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainian", + "Urdu": "Urdu", + "Uzbek": "Uzbek", + "Vietnamese": "Vietnamese", + "Volapuk": "Volapuk", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinese", + "Zulu": "Zulu", + "Use station default": "Állomás alapértelmezések használata", + "Upload some tracks below to add them to your library!": "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s.", + "Click the 'New Show' button and fill out the required fields.": "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n%sNem hivatkozott műsor létrehozása most%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Rádióoldal", + "Calendar": "Naptár", + "Widgets": "Felületi elemek", + "Player": "Lejátszó", + "Weekly Schedule": "Heti ütemterv", + "Settings": "Beállítások", + "General": "Általános", + "My Profile": "Profilom", + "Users": "Felhasználók", + "Track Types": "", + "Streams": "Adásfolyamok", + "Status": "Állapot", + "Analytics": "Elemzések", + "Playout History": "Lejátszási előzmények", + "History Templates": "Naplózási sablonok", + "Listener Stats": "Hallgatói statisztikák", + "Show Listener Stats": "", + "Help": "Segítség", + "Getting Started": "Első lépések", + "User Manual": "Felhasználói kézikönyv", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "Újdonságok", + "You are not allowed to access this resource.": "Az Ön számára nem érhető el az alábbi erőforrás.", + "You are not allowed to access this resource. ": "Az Ön számára nem érhető el az alábbi erőforrás.", + "File does not exist in %s": "A fájl nem elérhető itt: %s", + "Bad request. no 'mode' parameter passed.": "Helytelen kérés. nincs 'mód' paraméter lett átadva.", + "Bad request. 'mode' parameter is invalid": "Helytelen kérés. 'mód' paraméter érvénytelen.", + "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", + "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", + "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "Page not found.": "Oldal nem található.", + "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", + "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", + "An internal application error has occurred.": "Belső alkalmazáshiba történt.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Még nincsenek közzétett sávok.", + "%s not found": "%s nem található", + "Something went wrong.": "Valami hiba történt.", + "Preview": "Előnézet", + "Add to Playlist": "Hozzáadás lejátszási listához", + "Add to Smart Block": "Hozzáadás Okosblokkhoz", + "Delete": "Törlés", + "Edit...": "Szerkesztés...", + "Download": "Letöltés", + "Duplicate Playlist": "Lejátszási lista duplikálása", + "Duplicate Smartblock": "", + "No action available": "Nincs elérhető művelet", + "You don't have permission to delete selected items.": "Nincs engedélye, hogy törölje a kiválasztott elemeket.", + "Could not delete file because it is scheduled in the future.": "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra.", + "Could not delete file(s).": "Nem lehet törölni a fájlokat.", + "Copy of %s": "%s másolata", + "Please make sure admin user/password is correct on Settings->Streams page.": "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon.", + "Audio Player": "Audió lejátszó", + "Something went wrong!": "Valami hiba történt!", + "Recording:": "Felvétel:", + "Master Stream": "Mester-adásfolyam", + "Live Stream": "Élő adásfolyam", + "Nothing Scheduled": "Nincs semmi ütemezve", + "Current Show:": "Jelenlegi műsor:", + "Current": "Jelenleg", + "You are running the latest version": "Ön a legújabb verziót futtatja", + "New version available: ": "Új verzió érhető el:", + "You have a pre-release version of LibreTime intalled.": "A LibreTime egy kiadás-előtti verziója van telepítve.", + "A patch update for your LibreTime installation is available.": "Egy hibajavító frissítés érhető el a LibreTimehoz.", + "A feature update for your LibreTime installation is available.": "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz.", + "A major update for your LibreTime installation is available.": "Elérhető a LibreTime új verzióját tartalmazó frissítés.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni.", + "Add to current playlist": "Hozzáadás a jelenlegi lejátszási listához", + "Add to current smart block": "Hozzáadás a jelenlegi okosblokkhoz", + "Adding 1 Item": "1 elem hozzáadása", + "Adding %s Items": "%s elem hozzáadása", + "You can only add tracks to smart blocks.": "Csak sávokat lehet hozzáadni az okosblokkokhoz.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz.", + "Please select a cursor position on timeline.": "Válasszon kurzor pozíciót az idővonalon.", + "You haven't added any tracks": "Még nincsenek sávok hozzáadva", + "You haven't added any playlists": "Még nincsenek lejátszási listák hozzáadva", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Még nincsenek okosblokkok hozzáadva", + "You haven't added any webstreams": "Még nincsenek web-adásfolyamok hozzáadva", + "Learn about tracks": "Sávok megismerése", + "Learn about playlists": "Lejátszási listák megismerése", + "Learn about podcasts": "Podcastok megismerése", + "Learn about smart blocks": "Okosblokkok megismerése", + "Learn about webstreams": "Web-adásfolyamok megismerése", + "Click 'New' to create one.": "Létrehozni az „Új” gombra kattintással lehet.", + "Add": "Hozzáadás", + "New": "", + "Edit": "Szerkeszt", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Közzététel", + "Remove": "Eltávolítás", + "Edit Metadata": "Metaadatok szerkesztése", + "Add to selected show": "Hozzáadás a kiválasztott műsorhoz", + "Select": "Kijelölés", + "Select this page": "Jelölje ki ezt az oldalt", + "Deselect this page": "Az oldal kijelölésének megszüntetése", + "Deselect all": "Minden kijelölés törlése", + "Are you sure you want to delete the selected item(s)?": "Biztos benne, hogy törli a kijelölt elemeket?", + "Scheduled": "Ütemezett", + "Tracks": "Sávok", + "Playlist": "Lejátszási lista", + "Title": "Cím", + "Creator": "Előadó/Szerző", + "Album": "Album", + "Bit Rate": "Bitráta", + "BPM": "BPM", + "Composer": "Zeneszerző", + "Conductor": "Karmester", + "Copyright": "Szerzői jog", + "Encoded By": "Kódolva", + "Genre": "Műfaj", + "ISRC": "ISRC", + "Label": "Címke", + "Language": "Nyelv", + "Last Modified": "Utoljára módosítva", + "Last Played": "Utoljára játszott", + "Length": "Hossz", + "Mime": "Mime típus", + "Mood": "Hangulat", + "Owner": "Tulajdonos", + "Replay Gain": "Replay Gain", + "Sample Rate": "Mintavétel", + "Track Number": "Sáv sorszáma", + "Uploaded": "Feltöltve", + "Website": "Honlap", + "Year": "Év", + "Loading...": "Betöltés...", + "All": "Összes", + "Files": "Fájlok", + "Playlists": "Lejátszási listák", + "Smart Blocks": "Okosblokkok", + "Web Streams": "Web-adásfolyamok", + "Unknown type: ": "Ismeretlen típus:", + "Are you sure you want to delete the selected item?": "Biztos benne, hogy törli a kijelölt elemet?", + "Uploading in progress...": "Feltöltés folyamatban...", + "Retrieving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "Import": "", + "Imported?": "", + "View": "Megtekintés", + "Error code: ": "Hibakód:", + "Error msg: ": "Hibaüzenet:", + "Input must be a positive number": "A bemenetnek pozitív számnak kell lennie", + "Input must be a number": "A bemenetnek számnak kell lennie", + "Input must be in the format: yyyy-mm-dd": "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn", + "Input must be in the format: hh:mm:ss.t": "A bemenetet ebben a formában kell megadni: óó:pp:mm.t", + "My Podcast": "Podcastom", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?", + "Open Media Builder": "Médiaépítő megnyitása", + "please put in a time '00:00:00 (.0)'": "kérjük, tegye időbe '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Érvényes időt kell megadni másodpercben. Pl.: 0.5", + "Your browser does not support playing this file type: ": "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:", + "Dynamic block is not previewable": "Dinamikus blokknak nincs előnézete", + "Limit to: ": "Korlátozva:", + "Playlist saved": "Lejátszási lista mentve", + "Playlist shuffled": "Lejátszási lista megkeverve", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”.", + "Listener Count on %s: %s": "%s hallgatóinak száma: %s", + "Remind me in 1 week": "Emlékeztessen 1 hét múlva", + "Remind me never": "Soha ne emlékeztessen", + "Yes, help Airtime": "Igen, segítek az Airtime-nak", + "Image must be one of jpg, jpeg, png, or gif": "A képek formátuma jpg, jpeg, png, vagy gif kell legyen", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Okosblokk megkeverve", + "Smart block generated and criteria saved": "Okosblokk létrehozva és a feltételek mentve", + "Smart block saved": "Okosblokk elmentve", + "Processing...": "Feldolgozás...", + "Select modifier": "Módosító választása", + "contains": "tartalmazza", + "does not contain": "nem tartalmazza", + "is": "pontosan", + "is not": "nem", + "starts with": "kezdődik", + "ends with": "végződik", + "is greater than": "nagyobb, mint", + "is less than": "kisebb, mint", + "is in the range": "tartománya", + "Generate": "Létrehozás", + "Choose Storage Folder": "Válasszon tárolómappát", + "Choose Folder to Watch": "Válasszon figyelt mappát", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Biztos benne, hogy meg akarja változtatni a tárolómappát?\nEzzel eltávolítja a fájlokat a saját Airtime könyvtárából!", + "Manage Media Folders": "Médiamappák kezelése", + "Are you sure you want to remove the watched folder?": "Biztos benne, hogy el akarja távolítani a figyelt mappát?", + "This path is currently not accessible.": "Ez az útvonal jelenleg nem elérhető.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban.", + "Connected to the streaming server": "Csatlakozva az adásfolyam kiszolgálóhoz", + "The stream is disabled": "Az adásfolyam ki van kapcsolva", + "Getting information from the server...": "Információk lekérdezése a kiszolgálóról...", + "Can not connect to the streaming server": "Nem lehet kapcsolódni az adásfolyam kiszolgálójához", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani .", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó.", + "Warning: You cannot change this field while the show is currently playing": "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart", + "No result found": "Nem volt találat", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak.", + "Specify custom authentication which will work only for this show.": "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik.", + "The show instance doesn't exist anymore!": "A műsor példány nem létezik többé!", + "Warning: Shows cannot be re-linked": "Figyelem: Műsorokat nem lehet újrahivatkozni", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve.", + "Show": "Műsor", + "Show is empty": "A műsor üres", + "1m": "1p", + "5m": "5p", + "10m": "10p", + "15m": "15p", + "30m": "30p", + "60m": "60p", + "Retreiving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "This show has no scheduled content.": "Ez a műsor nem tartalmaz ütemezett tartalmat.", + "This show is not completely filled with content.": "Ez a műsor nincs teljesen feltöltve tartalommal.", + "January": "Január", + "February": "Február", + "March": "Március", + "April": "Április", + "May": "Május", + "June": "Június", + "July": "Július", + "August": "Augusztus", + "September": "Szeptember", + "October": "Október", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Már", + "Apr": "Ápr", + "Jun": "Jún", + "Jul": "Júl", + "Aug": "Aug", + "Sep": "Sze", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Ma", + "Day": "Nap", + "Week": "Hét", + "Month": "Hónap", + "Sunday": "Vasárnap", + "Monday": "Hétfő", + "Tuesday": "Kedd", + "Wednesday": "Szerda", + "Thursday": "Csütörtök", + "Friday": "Péntek", + "Saturday": "Szombat", + "Sun": "V", + "Mon": "H", + "Tue": "K", + "Wed": "Sze", + "Thu": "Cs", + "Fri": "P", + "Sat": "Szo", + "Shows longer than their scheduled time will be cut off by a following show.": "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét.", + "Cancel Current Show?": "A jelenlegi műsor megszakítása?", + "Stop recording current show?": "A jelenlegi műsor rögzítésének félbeszakítása?", + "Ok": "Ok", + "Contents of Show": "A műsor tartalmai", + "Remove all content?": "Az összes tartalom eltávolítása?", + "Delete selected item(s)?": "Törli a kiválasztott elemeket?", + "Start": "Kezdés", + "End": "Befejezés", + "Duration": "Időtartam", + "Filtering out ": "Kiszűrve", + " of ": "/", + " records": "felvétel", + "There are no shows scheduled during the specified time period.": "A megadott időszakban nincsenek ütemezett műsorok.", + "Cue In": "Felkeverés", + "Cue Out": "Lekeverés", + "Fade In": "Felúsztatás", + "Fade Out": "Leúsztatás", + "Show Empty": "Üres műsor", + "Recording From Line In": "Rögzítés a vonalbemenetről", + "Track preview": "Sáv előnézete", + "Cannot schedule outside a show.": "Nem lehet ütemezni a műsoron kívül.", + "Moving 1 Item": "1 elem áthelyezése", + "Moving %s Items": "%s elem áthelyezése", + "Save": "Mentés", + "Cancel": "Mégse", + "Fade Editor": "Úsztatási Szerkesztő", + "Cue Editor": "Keverési Szerkesztő", + "Waveform features are available in a browser supporting the Web Audio API": "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók", + "Select all": "Az összes kijelölése", + "Select none": "Kijelölés törlése", + "Trim overbooked shows": "Túlnyúló műsorok levágása", + "Remove selected scheduled items": "A kijelölt ütemezett elemek eltávolítása", + "Jump to the current playing track": "Ugrás a jelenleg játszott sávra", + "Jump to Current": "", + "Cancel current show": "A jelenlegi műsor megszakítása", + "Open library to add or remove content": "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához", + "Add / Remove Content": "Tartalom hozzáadása / eltávolítása", + "in use": "használatban van", + "Disk": "Lemez", + "Look in": "Nézze meg", + "Open": "Megnyitás", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programkezelő", + "Guest": "Vendég", + "Guests can do the following:": "A vendégek a következőket tehetik:", + "View schedule": "Az ütemezés megtekintése", + "View show content": "A műsor tartalmának megtekintése", + "DJs can do the following:": "A DJ-k a következőket tehetik:", + "Manage assigned show content": "Hozzárendelt műsor tartalmának kezelése", + "Import media files": "Médiafájlok hozzáadása", + "Create playlists, smart blocks, and webstreams": "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása", + "Manage their own library content": "Saját médiatár tartalmának kezelése", + "Program Managers can do the following:": "", + "View and manage show content": "Műsortartalom megtekintése és kezelése", + "Schedule shows": "A műsorok ütemzései", + "Manage all library content": "A teljes médiatár tartalmának kezelése", + "Admins can do the following:": "Az Adminisztrátorok a következőket tehetik:", + "Manage preferences": "Beállítások kezelései", + "Manage users": "A felhasználók kezelése", + "Manage watched folders": "A figyelt mappák kezelése", + "Send support feedback": "Támogatási visszajelzés küldése", + "View system status": "A rendszer állapot megtekitnése", + "Access playout history": "Hozzáférés lejátszási előzményekhez", + "View listener stats": "A hallgatói statisztikák megtekintése", + "Show / hide columns": "Az oszlopok megjelenítése/elrejtése", + "Columns": "", + "From {from} to {to}": "{from} és {to} között", + "kbps": "kbps", + "yyyy-mm-dd": "éééé-hh-nn", + "hh:mm:ss.t": "óó:pp:mm.t", + "kHz": "kHz", + "Su": "V", + "Mo": "H", + "Tu": "K", + "We": "Sze", + "Th": "Cs", + "Fr": "P", + "Sa": "Szo", + "Close": "Bezárás", + "Hour": "Óra", + "Minute": "Perc", + "Done": "Kész", + "Select files": "Fájlok kiválasztása", + "Add files to the upload queue and click the start button.": "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra.", + "Filename": "", + "Size": "", + "Add Files": "Fájlok hozzáadása", + "Stop Upload": "Feltöltés megszakítása", + "Start upload": "Feltöltés indítása", + "Start Upload": "", + "Add files": "Fájlok hozzáadása", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Feltöltve %d/%d fájl", + "N/A": "N/A", + "Drag files here.": "Húzza a fájlokat ide.", + "File extension error.": "Fájlkiterjesztési hiba.", + "File size error.": "Fájlméret hiba.", + "File count error.": "Fájl számi hiba.", + "Init error.": "Inicializálási hiba.", + "HTTP Error.": "HTTP Hiba.", + "Security error.": "Biztonsági hiba.", + "Generic error.": "Általános hiba.", + "IO error.": "IO hiba.", + "File: %s": "Fájl: %s", + "%d files queued": "%d várakozó fájl", + "File: %f, size: %s, max file size: %m": "Fájl: %f,méret: %s, legnagyobb fájlméret: %m", + "Upload URL might be wrong or doesn't exist": "A feltöltés URL-je rossz vagy nem létezik", + "Error: File too large: ": "Hiba: A fájl túl nagy:", + "Error: Invalid file extension: ": "Hiba: Érvénytelen fájl kiterjesztés:", + "Set Default": "Alapértelmezés beállítása", + "Create Entry": "Bejegyzés létrehozása", + "Edit History Record": "Előzmények szerkesztése", + "No Show": "Nincs műsor", + "Copied %s row%s to the clipboard": "%s sor%s másolva a vágólapra", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett.", + "New Show": "Új műsor", + "New Log Entry": "Új naplóbejegyzés", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "Következő", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "Közzététel megszüntetése", + "No matching results found.": "", + "Author": "Szerző", + "Description": "Leírás", + "Link": "Hivatkozás", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Engedélyezve", + "Disabled": "Letiltva", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "Okosblokk", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "Adásban", + "Off Air": "Adásszünet", + "Offline": "Kapcsolat nélkül", + "Nothing scheduled": "Nincs semmi ütemezve", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Kérjük adja meg felhasználónevét és jelszavát.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció.", + "That username or email address could not be found.": "A felhasználónév vagy email cím nem található.", + "There was a problem with the username or email address you entered.": "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel.", + "Wrong username or password provided. Please try again.": "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra.", + "You are viewing an older version of %s": "Ön %s egy régebbi verzióját tekinti meg", + "You cannot add tracks to dynamic blocks.": "Dinamikus blokkokhoz nem lehet sávokat hozzáadni", + "You don't have permission to delete selected %s(s).": "A kiválasztott %s törléséhez nincs engedélye.", + "You can only add tracks to smart block.": "Csak sávokat lehet hozzáadni az okosblokkhoz.", + "Untitled Playlist": "Névtelen lejátszási lista", + "Untitled Smart Block": "Névtelen okosblokk", + "Unknown Playlist": "Ismeretlen lejátszási lista", + "Preferences updated.": "Beállítások frissítve.", + "Stream Setting Updated.": "Adásfolyam beállítások frissítve.", + "path should be specified": "az útvonalat meg kell határozni", + "Problem with Liquidsoap...": "Probléma lépett fel a Liquidsoap-al...", + "Request method not accepted": "A kérés módja nem elfogadott", + "Rebroadcast of show %s from %s at %s": "A műsor újraközvetítése %s -tól/-től %s a %s", + "Select cursor": "Kurzor kiválasztása", + "Remove cursor": "Kurzor eltávolítása", + "show does not exist": "a műsor nem található", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Felhasználó sikeresen hozzáadva!", + "User updated successfully!": "Felhasználó sikeresen módosítva!", + "Settings updated successfully!": "Beállítások sikeresen módosítva!", + "Untitled Webstream": "Névtelen adásfolyam", + "Webstream saved.": "Web-adásfolyam mentve.", + "Invalid form values.": "Érvénytelen űrlap értékek.", + "Invalid character entered": "Érvénytelen bevitt karakterek", + "Day must be specified": "A napot meg kell határoznia", + "Time must be specified": "Az időt meg kell határoznia", + "Must wait at least 1 hour to rebroadcast": "Az újraközvetítésre legalább 1 órát kell várni", + "Add Autoloading Playlist ?": "Lejátszási lista automatikus ütemezése?", + "Select Playlist": "Lejátszási lista kiválasztása", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s hitelesítés használata:", + "Use Custom Authentication:": "Egyéni hitelesítés használata:", + "Custom Username": "Egyéni felhasználónév", + "Custom Password": "Egyéni jelszó", + "Host:": "Hoszt:", + "Port:": "Port:", + "Mount:": "Csatolási pont:", + "Username field cannot be empty.": "A felhasználónév mező nem lehet üres.", + "Password field cannot be empty.": "A jelszó mező nem lehet üres.", + "Record from Line In?": "Felvétel a vonalbemenetről?", + "Rebroadcast?": "Újraközvetítés?", + "days": "napok", + "Link:": "Hivatkozás:", + "Repeat Type:": "Ismétlés típusa:", + "weekly": "hetente", + "every 2 weeks": "minden második héten", + "every 3 weeks": "minden harmadik héten", + "every 4 weeks": "minden negyedik héten", + "monthly": "havonta", + "Select Days:": "Napok kiválasztása:", + "Repeat By:": "Által Ismételt:", + "day of the month": "a hónap napja", + "day of the week": "a hét napja", + "Date End:": "Befejezés dátuma:", + "No End?": "Nincs vége?", + "End date must be after start date": "A befejezés dátumának a kezdés dátuma után kell lennie", + "Please select a repeat day": "Kérjük válasszon egy ismétlési napot", + "Background Colour:": "Háttérszín:", + "Text Colour:": "Szövegszín:", + "Current Logo:": "Jelenlegi logó:", + "Show Logo:": "Logó mutatása:", + "Logo Preview:": "Logó előnézete:", + "Name:": "Név:", + "Untitled Show": "Cím nélküli műsor", + "URL:": "URL:", + "Genre:": "Műfaj:", + "Description:": "Leírás:", + "Instance Description:": "Példány leírása:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' nem illeszkedik „ÓÓ:pp” formátumra", + "Start Time:": "Kezdési Idő:", + "In the Future:": "A jövőben:", + "End Time:": "Befejezési idő:", + "Duration:": "Időtartam:", + "Timezone:": "Időzóna:", + "Repeats?": "Ismétlések?", + "Cannot create show in the past": "Műsort nem lehet a múltban létrehozni", + "Cannot modify start date/time of the show that is already started": "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött", + "End date/time cannot be in the past": "A befejezési dátum és időpont nem lehet a múltban", + "Cannot have duration < 0m": "Időtartam nem lehet <0p", + "Cannot have duration 00h 00m": "Időtartam nem lehet 0ó 0p", + "Cannot have duration greater than 24h": "Időtartam nem lehet nagyobb mint 24 óra", + "Cannot schedule overlapping shows": "Nem fedhetik egymást a műsorok", + "Search Users:": "Felhasználók keresése:", + "DJs:": "DJ-k:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Felhasználónév:", + "Password:": "Jelszó:", + "Verify Password:": "Jelszóellenőrzés:", + "Firstname:": "Vezetéknév:", + "Lastname:": "Keresztnév:", + "Email:": "Email:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Felhasználótípus:", + "Login name is not unique.": "A bejelentkezési név nem egyedi.", + "Delete All Tracks in Library": "Az összes sáv törlése a könyvtárból", + "Date Start:": "Kezdés Ideje:", + "Title:": "Cím:", + "Creator:": "Létrehozó:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Év:", + "Label:": "Címke:", + "Composer:": "Zeneszerző:", + "Conductor:": "Karmester:", + "Mood:": "Hangulat:", + "BPM:": "BPM:", + "Copyright:": "Szerzői jog:", + "ISRC Number:": "ISRC Szám:", + "Website:": "Honlap:", + "Language:": "Nyelv:", + "Publish...": "Közzététel...", + "Start Time": "Kezdési Idő", + "End Time": "Befejezési idő", + "Interface Timezone:": "Felület időzónája:", + "Station Name": "Állomásnév", + "Station Description": "Állomás leírás", + "Station Logo:": "Állomás logó:", + "Note: Anything larger than 600x600 will be resized.": "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül.", + "Default Crossfade Duration (s):": "Alapértelmezett Áttünési Időtartam (mp):", + "Please enter a time in seconds (eg. 0.5)": "Idő megadása másodpercben (pl.: 0.5)", + "Default Fade In (s):": "Alapértelmezett Felúsztatás (mp)", + "Default Fade Out (s):": "Alapértelmezett Leúsztatás (mp)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "Podcast album felülírása", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül.", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Kötelező a beágyazható ütemezés felületi elemhez.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára.", + "Default Language": "Alapértelmezett nyelv", + "Station Timezone": "Állomás időzóna", + "Week Starts On": "A hét kezdőnapja", + "Display login button on your Radio Page?": "Bejelentkezési gomb megjelenítése a Rádióoldalon?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Automatikus kikapcsolás:", + "Auto Switch On:": "Automatikus bekapcsolás:", + "Switch Transition Fade (s):": "", + "Master Source Host:": "Mester-forrás hoszt:", + "Master Source Port:": "Mester-forrás port:", + "Master Source Mount:": "Mester-forrás csatolási pont:", + "Show Source Host:": "Műsor-forrás hoszt:", + "Show Source Port:": "Műsor-forrás port:", + "Show Source Mount:": "Műsor-forrás csatolási pont:", + "Login": "Bejelentkezés", + "Password": "Jelszó", + "Confirm new password": "Új jelszó megerősítése", + "Password confirmation does not match your password.": "A megadott jelszavak nem egyeznek meg.", + "Email": "Email", + "Username": "Felhasználónév", + "Reset password": "A jelszó visszaállítása", + "Back": "Vissza", + "Now Playing": "Most játszott", + "Select Stream:": "Adásfolyam kiválasztása:", + "Auto detect the most appropriate stream to use.": "A legmegfelelőbb adásfolyam automatikus felismerése.", + "Select a stream:": "Egy adásfolyam kiválasztása:", + " - Mobile friendly": "- Mobilbarát", + " - The player does not support Opus streams.": "- A lejátszó nem támogatja az Opus adásfolyamokat.", + "Embeddable code:": "Beágyazható kód:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába.", + "Preview:": "Előnézet", + "Feed Privacy": "Hírfolyam adatvédelem", + "Public": "Nyilvános", + "Private": "Privát", + "Station Language": "Állomás nyelve", + "Filter by Show": "Szűrés műsor szerint", + "All My Shows:": "Összes műsorom:", + "My Shows": "Műsoraim", + "Select criteria": "A feltételek megadása", + "Bit Rate (Kbps)": "Bitráta (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Mintavételi ráta (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "óra", + "minutes": "perc", + "items": "elem", + "time remaining in show": "", + "Randomly": "Véletlenszerűen", + "Newest": "Legújabb", + "Oldest": "Legrégebbi", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "Típus:", + "Dynamic": "Dinamikus", + "Static": "Statikus", + "Select track type": "", + "Allow Repeated Tracks:": "Ismétlődő sávok engedélyezése:", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "Sávok rendezése:", + "Limit to:": "Korlátozva:", + "Generate playlist content and save criteria": "Lejátszási lista tartalmának létrehozása és a feltétel mentése", + "Shuffle playlist content": "Véletlenszerű lejátszási lista tartalom", + "Shuffle": "Véletlenszerű", + "Limit cannot be empty or smaller than 0": "A határérték nem lehet üres vagy kisebb, mint 0", + "Limit cannot be more than 24 hrs": "A határérték nem lehet hosszabb, mint 24 óra", + "The value should be an integer": "Az érték csak egész szám lehet", + "500 is the max item limit value you can set": "Maximum 500 elem állítható be", + "You must select Criteria and Modifier": "Feltételt és módosítót kell választani", + "'Length' should be in '00:00:00' format": "A „Hosszúság”-ot „00:00:00” formában kell megadni", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Az értéknek numerikusnak kell lennie", + "The value should be less then 2147483648": "Az értéknek kevesebbnek kell lennie, mint 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Az értéknek rövidebb kell lennie, mint %s karakter", + "Value cannot be empty": "Az érték nem lehet üres", + "Stream Label:": "Adásfolyam címke:", + "Artist - Title": "Előadó - Cím", + "Show - Artist - Title": "Műsor - Előadó - Cím", + "Station name - Show name": "Állomásnév - Műsornév", + "Off Air Metadata": "Adásszünet - Metaadat", + "Enable Replay Gain": "Replay Gain Engedélyezése", + "Replay Gain Modifier": "Replay Gain Módosító", + "Hardware Audio Output:": "Hardver audio kimenet:", + "Output Type": "Kimenet típusa", + "Enabled:": "Engedélyezett:", + "Mobile:": "Mobil:", + "Stream Type:": "Adásfolyam típusa:", + "Bit Rate:": "Bitráta:", + "Service Type:": "Szolgáltatás típusa:", + "Channels:": "Csatornák:", + "Server": "Kiszolgáló", + "Port": "Port", + "Mount Point": "Csatolási pont", + "Name": "Név", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Metadata beküldése saját TuneIn állomásba?", + "Station ID:": "Állomás azonosító:", + "Partner Key:": "Partnerkulcs:", + "Partner Id:": "Partnerazonosító:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni.", + "Import Folder:": "Import mappa:", + "Watched Folders:": "Figyelt Mappák:", + "Not a valid Directory": "Érvénytelen könyvtár", + "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)", + "'%value%' does not fit the date format '%format%'": "'%value%' nem illeszkedik '%format%' dátumformátumra", + "'%value%' is less than %min% characters long": "'%value%' rövidebb, mint %min% karakter", + "'%value%' is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' értéknek '%min%' és '%max%' között kell lennie", + "Passwords do not match": "A jelszavak nem egyeznek meg", + "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", + "\n\nThank you,\nThe %s Team": "\n\nKöszönettel,\n%s Csapat", + "%s Password Reset": "%s jelszó visszaállítása", + "Cue in and cue out are null.": "A fel- és a lekeverés értékei nullák.", + "Can't set cue out to be greater than file length.": "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál.", + "Can't set cue in to be larger than cue out.": "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés.", + "Can't set cue out to be smaller than cue in.": "Nem lehet a lekeverés rövidebb, mint a felkeverés.", + "Upload Time": "Feltöltési idő", + "None": "Nincs", + "Powered by %s": "Működteti a %s", + "Select Country": "Ország kiválasztása", + "livestream": "élő adásfolyam", + "Cannot move items out of linked shows": "Nem tud áthelyezni elemeket a kapcsolódó műsorokból", + "The schedule you're viewing is out of date! (sched mismatch)": "A megtekintett ütemterv elavult! (ütem eltérés)", + "The schedule you're viewing is out of date! (instance mismatch)": "A megtekintett ütemterv elavult! (példány eltérés)", + "The schedule you're viewing is out of date!": "A megtekintett ütemterv időpontja elavult!", + "You are not allowed to schedule show %s.": "Nincs jogosultsága %s műsor ütemezéséhez.", + "You cannot add files to recording shows.": "Nem adhat hozzá fájlokat a rögzített műsorokhoz.", + "The show %s is over and cannot be scheduled.": "A műsor %s véget ért és nem lehet ütemezni.", + "The show %s has been previously updated!": "%s műsor már korábban frissítve lett!", + "Content in linked shows cannot be changed while on air!": "A hivatkozott műsorok tartalma nem módosítható adás közben!", + "Cannot schedule a playlist that contains missing files.": "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz.", + "A selected File does not exist!": "Egy kiválasztott fájl nem létezik!", + "Shows can have a max length of 24 hours.": "A műsorok maximum 24 óra hosszúságúak lehetnek.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Átfedő műsorokat nem lehet ütemezni.\nMegjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére.", + "Rebroadcast of %s from %s": "Úrjaközvetítés %s -tól/-től %s", + "Length needs to be greater than 0 minutes": "A hosszúság értékének nagyobb kell lennie, mint 0 perc", + "Length should be of form \"00h 00m\"": "A hosszúság formája \"00ó 00p\"", + "URL should be of form \"https://example.org\"": "Az URL-t „https://example.org” formában kell megadni", + "URL should be 512 characters or less": "Az URL nem lehet 512 karakternél hosszabb", + "No MIME type found for webstream.": "Nem található MIME típus a web-adásfolyamhoz.", + "Webstream name cannot be empty": "A web-adásfolyam neve nem lehet üres", + "Could not parse XSPF playlist": "Nem sikerült feldolgozni az XSPF lejátszási listát", + "Could not parse PLS playlist": "Nem sikerült feldolgozni a PLS lejátszási listát", + "Could not parse M3U playlist": "Nem sikerült feldolgozni az M3U lejátszási listát", + "Invalid webstream - This appears to be a file download.": "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés.", + "Unrecognized stream type: %s": "Ismeretlen típusú adásfolyam: %s", + "Record file doesn't exist": "Rögzített fájl nem létezik", + "View Recorded File Metadata": "A rögzített fájl metaadatai", + "Schedule Tracks": "Sávok ütemezése", + "Clear Show": "Műsor törlése", + "Cancel Show": "Műsor megszakítása", + "Edit Instance": "Példány szerkesztése:", + "Edit Show": "Műsor szerkesztése", + "Delete Instance": "Példány törlése:", + "Delete Instance and All Following": "Ennek a példánynak és minden utána következő példánynak a törlése", + "Permission denied": "Engedély megtagadva", + "Can't drag and drop repeating shows": "Ismétlődő műsorokat nem lehet megfogni és áthúzni", + "Can't move a past show": "Az elhangzott műsort nem lehet áthelyezni", + "Can't move show into past": "A műsort nem lehet a múltba áthelyezni", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig.", + "Show was deleted because recorded show does not exist!": "A műsor törlésre került, mert a rögzített műsor nem létezik!", + "Must wait 1 hour to rebroadcast.": "Az adás újbóli közvetítésére 1 órát kell várni.", + "Track": "Sáv", + "Played": "Lejátszva", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Web-adásfolyamok" +} diff --git a/webapp/src/locale/it_IT.json b/webapp/src/locale/it_IT.json index c1a6636313..b49b8c8e16 100644 --- a/webapp/src/locale/it_IT.json +++ b/webapp/src/locale/it_IT.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "L'anno %s deve essere compreso nella serie 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s non è una data valida", - "%s:%s:%s is not a valid time": "%s:%s:%s non è un ora valida", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendario", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Utenti", - "Track Types": "", - "Streams": "Streams", - "Status": "Stato", - "Analytics": "", - "Playout History": "Storico playlist", - "History Templates": "", - "Listener Stats": "Statistiche ascolto", - "Show Listener Stats": "", - "Help": "Aiuto", - "Getting Started": "Iniziare", - "User Manual": "Manuale utente", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Non è permesso l'accesso alla risorsa.", - "You are not allowed to access this resource. ": "Non è permesso l'accesso alla risorsa. ", - "File does not exist in %s": "Il file non esiste in %s", - "Bad request. no 'mode' parameter passed.": "Richiesta errata. «modalità» parametro non riuscito.", - "Bad request. 'mode' parameter is invalid": "Richiesta errata. «modalità» parametro non valido", - "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", - "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", - "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s non trovato", - "Something went wrong.": "Qualcosa è andato storto.", - "Preview": "Anteprima", - "Add to Playlist": "Aggiungi a playlist", - "Add to Smart Block": "Aggiungi al blocco intelligente", - "Delete": "Elimina", - "Edit...": "", - "Download": "Scarica", - "Duplicate Playlist": "", - "Duplicate Smartblock": "", - "No action available": "Nessuna azione disponibile", - "You don't have permission to delete selected items.": "Non ha il permesso per cancellare gli elementi selezionati.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "", - "Please make sure admin user/password is correct on Settings->Streams page.": "", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Registra:", - "Master Stream": "Stream Principale", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Niente programmato", - "Current Show:": "Show attuale:", - "Current": "Attuale", - "You are running the latest version": "Sta gestendo l'ultima versione", - "New version available: ": "Nuova versione disponibile:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Aggiungi all'attuale playlist", - "Add to current smart block": "Aggiungi all' attuale blocco intelligente", - "Adding 1 Item": "Sto aggiungendo un elemento", - "Adding %s Items": "Aggiunte %s voci", - "You can only add tracks to smart blocks.": "Puoi solo aggiungere tracce ai blocchi intelligenti.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist.", - "Please select a cursor position on timeline.": "", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Aggiungi ", - "New": "", - "Edit": "Edita", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Rimuovi", - "Edit Metadata": "Edita Metadata", - "Add to selected show": "Aggiungi agli show selezionati", - "Select": "Seleziona", - "Select this page": "Seleziona pagina", - "Deselect this page": "Deseleziona pagina", - "Deselect all": "Deseleziona tutto", - "Are you sure you want to delete the selected item(s)?": "E' sicuro di voler eliminare la/e voce/i selezionata/e?", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Titolo", - "Creator": "Creatore", - "Album": "Album", - "Bit Rate": "Velocità di trasmissione", - "BPM": "BPM", - "Composer": "Compositore", - "Conductor": "Conduttore", - "Copyright": "Copyright", - "Encoded By": "Codificato da", - "Genre": "Genere", - "ISRC": "ISRC", - "Label": "Etichetta", - "Language": "Lingua", - "Last Modified": "Ultima modifica", - "Last Played": "Ultima esecuzione", - "Length": "Lunghezza", - "Mime": "Formato (Mime)", - "Mood": "Genere (Mood)", - "Owner": "Proprietario", - "Replay Gain": "Ripeti", - "Sample Rate": "Velocità campione", - "Track Number": "Numero traccia", - "Uploaded": "Caricato", - "Website": "Sito web", - "Year": "Anno", - "Loading...": "Caricamento...", - "All": "Tutto", - "Files": "File", - "Playlists": "Playlist", - "Smart Blocks": "Blocchi intelligenti", - "Web Streams": "Web Streams", - "Unknown type: ": "Tipologia sconosciuta:", - "Are you sure you want to delete the selected item?": "Sei sicuro di voler eliminare gli elementi selezionati?", - "Uploading in progress...": "Caricamento in corso...", - "Retrieving data from the server...": "Dati recuperati dal server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Errore codice:", - "Error msg: ": "Errore messaggio:", - "Input must be a positive number": "L'ingresso deve essere un numero positivo", - "Input must be a number": "L'ingresso deve essere un numero", - "Input must be in the format: yyyy-mm-dd": "L'ingresso deve essere nel formato : yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "L'ingresso deve essere nel formato : hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "inserisca per favore il tempo '00:00:00(.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Il suo browser non sopporta la riproduzione di questa tipologia di file:", - "Dynamic block is not previewable": "Il blocco dinamico non c'è in anteprima", - "Limit to: ": "Limitato a:", - "Playlist saved": "Playlist salvata", - "Playlist shuffled": "", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato.", - "Listener Count on %s: %s": "Programma in ascolto su %s: %s", - "Remind me in 1 week": "Ricordamelo tra 1 settimana", - "Remind me never": "Non ricordarmelo", - "Yes, help Airtime": "Si, aiuta Airtime", - "Image must be one of jpg, jpeg, png, or gif": "L'immagine deve essere in formato jpg, jpeg, png, oppure gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Blocco intelligente casuale", - "Smart block generated and criteria saved": "Blocco Intelligente generato ed criteri salvati", - "Smart block saved": "Blocco intelligente salvato", - "Processing...": "Elaborazione in corso...", - "Select modifier": "Seleziona modificatore", - "contains": "contiene", - "does not contain": "non contiene", - "is": "è ", - "is not": "non è", - "starts with": "inizia con", - "ends with": "finisce con", - "is greater than": "è più di", - "is less than": "è meno di", - "is in the range": "nella seguenza", - "Generate": "Genere", - "Choose Storage Folder": "Scelga l'archivio delle cartelle", - "Choose Folder to Watch": "Scelga le cartelle da guardare", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "E' sicuro di voler cambiare l'archivio delle cartelle?\n Questo rimuoverà i file dal suo archivio Airtime!", - "Manage Media Folders": "Gestisci cartelle media", - "Are you sure you want to remove the watched folder?": "E' sicuro di voler rimuovere le cartelle guardate?", - "This path is currently not accessible.": "Questo percorso non è accessibile attualmente.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Connesso al server di streaming.", - "The stream is disabled": "Stream disattivato", - "Getting information from the server...": "Ottenere informazioni dal server...", - "Can not connect to the streaming server": "Non può connettersi al server di streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nessun risultato trovato", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi.", - "Specify custom authentication which will work only for this show.": "Imposta autenticazione personalizzata che funzionerà solo per questo show.", - "The show instance doesn't exist anymore!": "L'istanza dello show non esiste più!", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Show", - "Show is empty": "Lo show è vuoto", - "1m": "1min", - "5m": "5min", - "10m": "10min", - "15m": "15min", - "30m": "30min", - "60m": "60min", - "Retreiving data from the server...": "Recupera data dal server...", - "This show has no scheduled content.": "Lo show non ha un contenuto programmato.", - "This show is not completely filled with content.": "", - "January": "Gennaio", - "February": "Febbraio", - "March": "Marzo", - "April": "Aprile", - "May": "Maggio", - "June": "Giugno", - "July": "Luglio", - "August": "Agosto", - "September": "Settembre", - "October": "Ottobre", - "November": "Novembre", - "December": "Dicembre", - "Jan": "Gen", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Giu", - "Jul": "Lug", - "Aug": "Ago", - "Sep": "Set", - "Oct": "Ott", - "Nov": "Nov", - "Dec": "Dic", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Domenica", - "Monday": "Lunedì", - "Tuesday": "Martedì", - "Wednesday": "Mercoledì", - "Thursday": "Giovedì", - "Friday": "Venerdì", - "Saturday": "Sabato", - "Sun": "Dom", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mer", - "Thu": "Gio", - "Fri": "Ven", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo.", - "Cancel Current Show?": "Cancellare lo show attuale?", - "Stop recording current show?": "Fermare registrazione dello show attuale?", - "Ok": "OK", - "Contents of Show": "Contenuti dello Show", - "Remove all content?": "Rimuovere tutto il contenuto?", - "Delete selected item(s)?": "Cancellare la/e voce/i selezionata/e?", - "Start": "Start", - "End": "Fine", - "Duration": "Durata", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Dissolvenza in entrata", - "Fade Out": "Dissolvenza in uscita", - "Show Empty": "Show vuoto", - "Recording From Line In": "Registrando da Line In", - "Track preview": "Anteprima traccia", - "Cannot schedule outside a show.": "Non può programmare fuori show.", - "Moving 1 Item": "Spostamento di un elemento in corso", - "Moving %s Items": "Spostamento degli elementi %s in corso", - "Save": "Salva", - "Cancel": "Cancella", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Seleziona tutto", - "Select none": "Nessuna selezione", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Rimuovi la voce selezionata", - "Jump to the current playing track": "Salta alla traccia dell'attuale playlist", - "Jump to Current": "", - "Cancel current show": "Cancella show attuale", - "Open library to add or remove content": "Apri biblioteca per aggiungere o rimuovere contenuto", - "Add / Remove Content": "Aggiungi/Rimuovi contenuto", - "in use": "in uso", - "Disk": "Disco", - "Look in": "Cerca in", - "Open": "Apri", - "Admin": "Amministratore ", - "DJ": "DJ", - "Program Manager": "Programma direttore", - "Guest": "Ospite", - "Guests can do the following:": "", - "View schedule": "", - "View show content": "", - "DJs can do the following:": "", - "Manage assigned show content": "", - "Import media files": "", - "Create playlists, smart blocks, and webstreams": "", - "Manage their own library content": "", - "Program Managers can do the following:": "", - "View and manage show content": "", - "Schedule shows": "", - "Manage all library content": "", - "Admins can do the following:": "", - "Manage preferences": "", - "Manage users": "", - "Manage watched folders": "", - "Send support feedback": "Invia supporto feedback:", - "View system status": "", - "Access playout history": "", - "View listener stats": "", - "Show / hide columns": "Mostra/nascondi colonne", - "Columns": "", - "From {from} to {to}": "Da {da} a {a}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Dom", - "Mo": "Lun", - "Tu": "Mar", - "We": "Mer", - "Th": "Gio", - "Fr": "Ven", - "Sa": "Sab", - "Close": "Chiudi", - "Hour": "Ore", - "Minute": "Minuti", - "Done": "Completato", - "Select files": "", - "Add files to the upload queue and click the start button.": "", - "Filename": "", - "Size": "", - "Add Files": "", - "Stop Upload": "", - "Start upload": "", - "Start Upload": "", - "Add files": "", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "", - "N/A": "", - "Drag files here.": "", - "File extension error.": "", - "File size error.": "", - "File count error.": "", - "Init error.": "", - "HTTP Error.": "", - "Security error.": "", - "Generic error.": "", - "IO error.": "", - "File: %s": "", - "%d files queued": "", - "File: %f, size: %s, max file size: %m": "", - "Upload URL might be wrong or doesn't exist": "", - "Error: File too large: ": "", - "Error: Invalid file extension: ": "", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Descrizione", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Abilitato", - "Disabled": "Disattivato", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "Fuori onda", - "Offline": "Fuori linea", - "Nothing scheduled": "Niente di programmato", - "Click 'Add' to create one now.": "Clicca su «Aggiungi» per crearne uno ora.", - "Please enter your username and password.": "Inserisci il tuo nome utente e la tua password.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente.", - "That username or email address could not be found.": "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail.", - "There was a problem with the username or email address you entered.": "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito.", - "Wrong username or password provided. Please try again.": "Nome utente o password forniti errati. Per favore riprovi.", - "You are viewing an older version of %s": "Sta visualizzando una versione precedente di %s", - "You cannot add tracks to dynamic blocks.": "Non può aggiungere tracce al blocco dinamico.", - "You don't have permission to delete selected %s(s).": "Non ha i permessi per cancellare la selezione %s(s).", - "You can only add tracks to smart block.": "Puoi solo aggiungere tracce al blocco intelligente.", - "Untitled Playlist": "Playlist senza nome", - "Untitled Smart Block": "Blocco intelligente senza nome", - "Unknown Playlist": "Playlist sconosciuta", - "Preferences updated.": "Preferenze aggiornate.", - "Stream Setting Updated.": "Aggiornamento impostazioni Stream.", - "path should be specified": "il percorso deve essere specificato", - "Problem with Liquidsoap...": "Problemi con Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Ritrasmetti show %s da %s a %s", - "Select cursor": "Seleziona cursore", - "Remove cursor": "Rimuovere il cursore", - "show does not exist": "lo show non esiste", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User aggiunto con successo!", - "User updated successfully!": "User aggiornato con successo!", - "Settings updated successfully!": "", - "Untitled Webstream": "Webstream senza titolo", - "Webstream saved.": "Webstream salvate.", - "Invalid form values.": "Valori non validi.", - "Invalid character entered": "Carattere inserito non valido", - "Day must be specified": "Il giorno deve essere specificato", - "Time must be specified": "L'ora dev'essere specificata", - "Must wait at least 1 hour to rebroadcast": "Aspettare almeno un'ora prima di ritrasmettere", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Usa autenticazione clienti:", - "Custom Username": "Personalizza nome utente ", - "Custom Password": "Personalizza Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Il campo nome utente non può rimanere vuoto.", - "Password field cannot be empty.": "Il campo della password non può rimanere vuoto.", - "Record from Line In?": "Registra da Line In?", - "Rebroadcast?": "Ritrasmetti?", - "days": "giorni", - "Link:": "", - "Repeat Type:": "Ripeti tipo:", - "weekly": "settimanalmente", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "mensilmente", - "Select Days:": "Seleziona giorni:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data fine:", - "No End?": "Ripeti all'infinito?", - "End date must be after start date": "La data di fine deve essere posteriore a quella di inizio", - "Please select a repeat day": "", - "Background Colour:": "Colore sfondo:", - "Text Colour:": "Colore testo:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nome:", - "Untitled Show": "Show senza nome", - "URL:": "URL:", - "Genre:": "Genere:", - "Description:": "Descrizione:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' non si adatta al formato dell'ora 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Durata:", - "Timezone:": "", - "Repeats?": "Ripetizioni?", - "Cannot create show in the past": "Non creare show al passato", - "Cannot modify start date/time of the show that is already started": "Non modificare data e ora di inizio degli slot in eseguzione", - "End date/time cannot be in the past": "L'ora e la data finale non possono precedere quelle iniziali", - "Cannot have duration < 0m": "Non ci può essere una durata <0m", - "Cannot have duration 00h 00m": "Non ci può essere una durata 00h 00m", - "Cannot have duration greater than 24h": "Non ci può essere una durata superiore a 24h", - "Cannot schedule overlapping shows": "Non puoi sovrascrivere gli show", - "Search Users:": "Cerca utenti:", - "DJs:": "Dj:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "", - "Firstname:": "Nome:", - "Lastname:": "Cognome:", - "Email:": "E-mail:", - "Mobile Phone:": "Cellulare:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "tipo di utente:", - "Login name is not unique.": "Il nome utente esiste già .", - "Delete All Tracks in Library": "", - "Date Start:": "Data inizio:", - "Title:": "Titolo:", - "Creator:": "Creatore:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Anno:", - "Label:": "Etichetta:", - "Composer:": "Compositore:", - "Conductor:": "Conduttore:", - "Mood:": "Umore:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Numero ISRC :", - "Website:": "Sito web:", - "Language:": "Lingua:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nome stazione", - "Station Description": "", - "Station Logo:": "Logo stazione: ", - "Note: Anything larger than 600x600 will be resized.": "Note: La lunghezze superiori a 600x600 saranno ridimensionate.", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "La settimana inizia il", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Accedi", - "Password": "Password", - "Confirm new password": "Conferma nuova password", - "Password confirmation does not match your password.": "La password di conferma non corrisponde con la sua password.", - "Email": "", - "Username": "Nome utente", - "Reset password": "Reimposta password", - "Back": "", - "Now Playing": "In esecuzione", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Tutti i miei show:", - "My Shows": "", - "Select criteria": "Seleziona criteri", - "Bit Rate (Kbps)": "Bit Rate (kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Velocità campione (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "ore", - "minutes": "minuti", - "items": "elementi", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinamico", - "Static": "Statico", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Genera contenuto playlist e salva criteri", - "Shuffle playlist content": "Eseguzione casuale playlist", - "Shuffle": "Casuale", - "Limit cannot be empty or smaller than 0": "Il margine non può essere vuoto o più piccolo di 0", - "Limit cannot be more than 24 hrs": "Il margine non può superare le 24ore", - "The value should be an integer": "Il valore deve essere un numero intero", - "500 is the max item limit value you can set": "500 è il limite massimo di elementi che può inserire", - "You must select Criteria and Modifier": "Devi selezionare da Criteri e Modifica", - "'Length' should be in '00:00:00' format": "La lunghezza deve essere nel formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Il valore deve essere numerico", - "The value should be less then 2147483648": "Il valore deve essere inferiore a 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Il valore deve essere inferiore a %s caratteri", - "Value cannot be empty": "Il valore non deve essere vuoto", - "Stream Label:": "Etichetta Stream:", - "Artist - Title": "Artista - Titolo", - "Show - Artist - Title": "Show - Artista - Titolo", - "Station name - Show name": "Nome stazione - Nome show", - "Off Air Metadata": "", - "Enable Replay Gain": "", - "Replay Gain Modifier": "", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Attiva:", - "Mobile:": "", - "Stream Type:": "Tipo di stream:", - "Bit Rate:": "Velocità di trasmissione: ", - "Service Type:": "Tipo di servizio:", - "Channels:": "Canali:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Nome", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Importa Folder:", - "Watched Folders:": "Folder visionati:", - "Not a valid Directory": "Catalogo non valido", - "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' non va bene con il formato data '%formato%'", - "'%value%' is less than %min% characters long": "'%value%' è più corto di %min% caratteri", - "'%value%' is more than %max% characters long": "'%value%' è più lungo di %max% caratteri", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' non è tra '%min%' e '%max%' compresi", - "Passwords do not match": "", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in e cue out sono nulli.", - "Can't set cue out to be greater than file length.": "Il cue out non può essere più grande della lunghezza del file.", - "Can't set cue in to be larger than cue out.": "Il cue in non può essere più grande del cue out.", - "Can't set cue out to be smaller than cue in.": "Il cue out non può essere più piccolo del cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Seleziona paese", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'orario)", - "The schedule you're viewing is out of date! (instance mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)", - "The schedule you're viewing is out of date!": "Il programma che sta visionando è fuori data!", - "You are not allowed to schedule show %s.": "Non è abilitato all'elenco degli show%s", - "You cannot add files to recording shows.": "Non può aggiungere file a show registrati.", - "The show %s is over and cannot be scheduled.": "Lo show % supera la lunghezza massima e non può essere programmato.", - "The show %s has been previously updated!": "Il programma %s è già stato aggiornato!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Il File selezionato non esiste!", - "Shows can have a max length of 24 hours.": "Gli show possono avere una lunghezza massima di 24 ore.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Non si possono programmare show sovrapposti.\n Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni.", - "Rebroadcast of %s from %s": "Ritrasmetti da %s a %s", - "Length needs to be greater than 0 minutes": "La lunghezza deve superare 0 minuti", - "Length should be of form \"00h 00m\"": "La lunghezza deve essere nella forma \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL deve essere nella forma \"https://example.org\"", - "URL should be 512 characters or less": "URL dove essere di 512 caratteri o meno", - "No MIME type found for webstream.": "Nessun MIME type trovato per le webstream.", - "Webstream name cannot be empty": "Webstream non può essere vuoto", - "Could not parse XSPF playlist": "Non è possibile analizzare le playlist XSPF ", - "Could not parse PLS playlist": "Non è possibile analizzare le playlist PLS", - "Could not parse M3U playlist": "Non è possibile analizzare le playlist M3U", - "Invalid webstream - This appears to be a file download.": "Webstream non valido - Questo potrebbe essere un file scaricato.", - "Unrecognized stream type: %s": "Tipo di stream sconosciuto: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Vedi file registrati Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Modifica il programma", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Non puoi spostare show ripetuti", - "Can't move a past show": "Non puoi spostare uno show passato", - "Can't move show into past": "Non puoi spostare uno show nel passato", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso.", - "Show was deleted because recorded show does not exist!": "Lo show è stato cancellato perché lo show registrato non esiste!", - "Must wait 1 hour to rebroadcast.": "Devi aspettare un'ora prima di ritrasmettere.", - "Track": "", - "Played": "Riprodotti", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "L'anno %s deve essere compreso nella serie 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s non è una data valida", + "%s:%s:%s is not a valid time": "%s:%s:%s non è un ora valida", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendario", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Utenti", + "Track Types": "", + "Streams": "Streams", + "Status": "Stato", + "Analytics": "", + "Playout History": "Storico playlist", + "History Templates": "", + "Listener Stats": "Statistiche ascolto", + "Show Listener Stats": "", + "Help": "Aiuto", + "Getting Started": "Iniziare", + "User Manual": "Manuale utente", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Non è permesso l'accesso alla risorsa.", + "You are not allowed to access this resource. ": "Non è permesso l'accesso alla risorsa. ", + "File does not exist in %s": "Il file non esiste in %s", + "Bad request. no 'mode' parameter passed.": "Richiesta errata. «modalità» parametro non riuscito.", + "Bad request. 'mode' parameter is invalid": "Richiesta errata. «modalità» parametro non valido", + "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", + "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", + "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s non trovato", + "Something went wrong.": "Qualcosa è andato storto.", + "Preview": "Anteprima", + "Add to Playlist": "Aggiungi a playlist", + "Add to Smart Block": "Aggiungi al blocco intelligente", + "Delete": "Elimina", + "Edit...": "", + "Download": "Scarica", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "Nessuna azione disponibile", + "You don't have permission to delete selected items.": "Non ha il permesso per cancellare gli elementi selezionati.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Registra:", + "Master Stream": "Stream Principale", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Niente programmato", + "Current Show:": "Show attuale:", + "Current": "Attuale", + "You are running the latest version": "Sta gestendo l'ultima versione", + "New version available: ": "Nuova versione disponibile:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Aggiungi all'attuale playlist", + "Add to current smart block": "Aggiungi all' attuale blocco intelligente", + "Adding 1 Item": "Sto aggiungendo un elemento", + "Adding %s Items": "Aggiunte %s voci", + "You can only add tracks to smart blocks.": "Puoi solo aggiungere tracce ai blocchi intelligenti.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist.", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Aggiungi ", + "New": "", + "Edit": "Edita", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Rimuovi", + "Edit Metadata": "Edita Metadata", + "Add to selected show": "Aggiungi agli show selezionati", + "Select": "Seleziona", + "Select this page": "Seleziona pagina", + "Deselect this page": "Deseleziona pagina", + "Deselect all": "Deseleziona tutto", + "Are you sure you want to delete the selected item(s)?": "E' sicuro di voler eliminare la/e voce/i selezionata/e?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Titolo", + "Creator": "Creatore", + "Album": "Album", + "Bit Rate": "Velocità di trasmissione", + "BPM": "BPM", + "Composer": "Compositore", + "Conductor": "Conduttore", + "Copyright": "Copyright", + "Encoded By": "Codificato da", + "Genre": "Genere", + "ISRC": "ISRC", + "Label": "Etichetta", + "Language": "Lingua", + "Last Modified": "Ultima modifica", + "Last Played": "Ultima esecuzione", + "Length": "Lunghezza", + "Mime": "Formato (Mime)", + "Mood": "Genere (Mood)", + "Owner": "Proprietario", + "Replay Gain": "Ripeti", + "Sample Rate": "Velocità campione", + "Track Number": "Numero traccia", + "Uploaded": "Caricato", + "Website": "Sito web", + "Year": "Anno", + "Loading...": "Caricamento...", + "All": "Tutto", + "Files": "File", + "Playlists": "Playlist", + "Smart Blocks": "Blocchi intelligenti", + "Web Streams": "Web Streams", + "Unknown type: ": "Tipologia sconosciuta:", + "Are you sure you want to delete the selected item?": "Sei sicuro di voler eliminare gli elementi selezionati?", + "Uploading in progress...": "Caricamento in corso...", + "Retrieving data from the server...": "Dati recuperati dal server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Errore codice:", + "Error msg: ": "Errore messaggio:", + "Input must be a positive number": "L'ingresso deve essere un numero positivo", + "Input must be a number": "L'ingresso deve essere un numero", + "Input must be in the format: yyyy-mm-dd": "L'ingresso deve essere nel formato : yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "L'ingresso deve essere nel formato : hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "inserisca per favore il tempo '00:00:00(.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Il suo browser non sopporta la riproduzione di questa tipologia di file:", + "Dynamic block is not previewable": "Il blocco dinamico non c'è in anteprima", + "Limit to: ": "Limitato a:", + "Playlist saved": "Playlist salvata", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato.", + "Listener Count on %s: %s": "Programma in ascolto su %s: %s", + "Remind me in 1 week": "Ricordamelo tra 1 settimana", + "Remind me never": "Non ricordarmelo", + "Yes, help Airtime": "Si, aiuta Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'immagine deve essere in formato jpg, jpeg, png, oppure gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Blocco intelligente casuale", + "Smart block generated and criteria saved": "Blocco Intelligente generato ed criteri salvati", + "Smart block saved": "Blocco intelligente salvato", + "Processing...": "Elaborazione in corso...", + "Select modifier": "Seleziona modificatore", + "contains": "contiene", + "does not contain": "non contiene", + "is": "è ", + "is not": "non è", + "starts with": "inizia con", + "ends with": "finisce con", + "is greater than": "è più di", + "is less than": "è meno di", + "is in the range": "nella seguenza", + "Generate": "Genere", + "Choose Storage Folder": "Scelga l'archivio delle cartelle", + "Choose Folder to Watch": "Scelga le cartelle da guardare", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "E' sicuro di voler cambiare l'archivio delle cartelle?\n Questo rimuoverà i file dal suo archivio Airtime!", + "Manage Media Folders": "Gestisci cartelle media", + "Are you sure you want to remove the watched folder?": "E' sicuro di voler rimuovere le cartelle guardate?", + "This path is currently not accessible.": "Questo percorso non è accessibile attualmente.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Connesso al server di streaming.", + "The stream is disabled": "Stream disattivato", + "Getting information from the server...": "Ottenere informazioni dal server...", + "Can not connect to the streaming server": "Non può connettersi al server di streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nessun risultato trovato", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi.", + "Specify custom authentication which will work only for this show.": "Imposta autenticazione personalizzata che funzionerà solo per questo show.", + "The show instance doesn't exist anymore!": "L'istanza dello show non esiste più!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Show", + "Show is empty": "Lo show è vuoto", + "1m": "1min", + "5m": "5min", + "10m": "10min", + "15m": "15min", + "30m": "30min", + "60m": "60min", + "Retreiving data from the server...": "Recupera data dal server...", + "This show has no scheduled content.": "Lo show non ha un contenuto programmato.", + "This show is not completely filled with content.": "", + "January": "Gennaio", + "February": "Febbraio", + "March": "Marzo", + "April": "Aprile", + "May": "Maggio", + "June": "Giugno", + "July": "Luglio", + "August": "Agosto", + "September": "Settembre", + "October": "Ottobre", + "November": "Novembre", + "December": "Dicembre", + "Jan": "Gen", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Giu", + "Jul": "Lug", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Ott", + "Nov": "Nov", + "Dec": "Dic", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domenica", + "Monday": "Lunedì", + "Tuesday": "Martedì", + "Wednesday": "Mercoledì", + "Thursday": "Giovedì", + "Friday": "Venerdì", + "Saturday": "Sabato", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Gio", + "Fri": "Ven", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo.", + "Cancel Current Show?": "Cancellare lo show attuale?", + "Stop recording current show?": "Fermare registrazione dello show attuale?", + "Ok": "OK", + "Contents of Show": "Contenuti dello Show", + "Remove all content?": "Rimuovere tutto il contenuto?", + "Delete selected item(s)?": "Cancellare la/e voce/i selezionata/e?", + "Start": "Start", + "End": "Fine", + "Duration": "Durata", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Dissolvenza in entrata", + "Fade Out": "Dissolvenza in uscita", + "Show Empty": "Show vuoto", + "Recording From Line In": "Registrando da Line In", + "Track preview": "Anteprima traccia", + "Cannot schedule outside a show.": "Non può programmare fuori show.", + "Moving 1 Item": "Spostamento di un elemento in corso", + "Moving %s Items": "Spostamento degli elementi %s in corso", + "Save": "Salva", + "Cancel": "Cancella", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Seleziona tutto", + "Select none": "Nessuna selezione", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Rimuovi la voce selezionata", + "Jump to the current playing track": "Salta alla traccia dell'attuale playlist", + "Jump to Current": "", + "Cancel current show": "Cancella show attuale", + "Open library to add or remove content": "Apri biblioteca per aggiungere o rimuovere contenuto", + "Add / Remove Content": "Aggiungi/Rimuovi contenuto", + "in use": "in uso", + "Disk": "Disco", + "Look in": "Cerca in", + "Open": "Apri", + "Admin": "Amministratore ", + "DJ": "DJ", + "Program Manager": "Programma direttore", + "Guest": "Ospite", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Invia supporto feedback:", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "Mostra/nascondi colonne", + "Columns": "", + "From {from} to {to}": "Da {da} a {a}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Dom", + "Mo": "Lun", + "Tu": "Mar", + "We": "Mer", + "Th": "Gio", + "Fr": "Ven", + "Sa": "Sab", + "Close": "Chiudi", + "Hour": "Ore", + "Minute": "Minuti", + "Done": "Completato", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "", + "File size error.": "", + "File count error.": "", + "Init error.": "", + "HTTP Error.": "", + "Security error.": "", + "Generic error.": "", + "IO error.": "", + "File: %s": "", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "", + "Error: Invalid file extension: ": "", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrizione", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Abilitato", + "Disabled": "Disattivato", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "Fuori onda", + "Offline": "Fuori linea", + "Nothing scheduled": "Niente di programmato", + "Click 'Add' to create one now.": "Clicca su «Aggiungi» per crearne uno ora.", + "Please enter your username and password.": "Inserisci il tuo nome utente e la tua password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente.", + "That username or email address could not be found.": "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail.", + "There was a problem with the username or email address you entered.": "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito.", + "Wrong username or password provided. Please try again.": "Nome utente o password forniti errati. Per favore riprovi.", + "You are viewing an older version of %s": "Sta visualizzando una versione precedente di %s", + "You cannot add tracks to dynamic blocks.": "Non può aggiungere tracce al blocco dinamico.", + "You don't have permission to delete selected %s(s).": "Non ha i permessi per cancellare la selezione %s(s).", + "You can only add tracks to smart block.": "Puoi solo aggiungere tracce al blocco intelligente.", + "Untitled Playlist": "Playlist senza nome", + "Untitled Smart Block": "Blocco intelligente senza nome", + "Unknown Playlist": "Playlist sconosciuta", + "Preferences updated.": "Preferenze aggiornate.", + "Stream Setting Updated.": "Aggiornamento impostazioni Stream.", + "path should be specified": "il percorso deve essere specificato", + "Problem with Liquidsoap...": "Problemi con Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ritrasmetti show %s da %s a %s", + "Select cursor": "Seleziona cursore", + "Remove cursor": "Rimuovere il cursore", + "show does not exist": "lo show non esiste", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User aggiunto con successo!", + "User updated successfully!": "User aggiornato con successo!", + "Settings updated successfully!": "", + "Untitled Webstream": "Webstream senza titolo", + "Webstream saved.": "Webstream salvate.", + "Invalid form values.": "Valori non validi.", + "Invalid character entered": "Carattere inserito non valido", + "Day must be specified": "Il giorno deve essere specificato", + "Time must be specified": "L'ora dev'essere specificata", + "Must wait at least 1 hour to rebroadcast": "Aspettare almeno un'ora prima di ritrasmettere", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usa autenticazione clienti:", + "Custom Username": "Personalizza nome utente ", + "Custom Password": "Personalizza Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Il campo nome utente non può rimanere vuoto.", + "Password field cannot be empty.": "Il campo della password non può rimanere vuoto.", + "Record from Line In?": "Registra da Line In?", + "Rebroadcast?": "Ritrasmetti?", + "days": "giorni", + "Link:": "", + "Repeat Type:": "Ripeti tipo:", + "weekly": "settimanalmente", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensilmente", + "Select Days:": "Seleziona giorni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data fine:", + "No End?": "Ripeti all'infinito?", + "End date must be after start date": "La data di fine deve essere posteriore a quella di inizio", + "Please select a repeat day": "", + "Background Colour:": "Colore sfondo:", + "Text Colour:": "Colore testo:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Show senza nome", + "URL:": "URL:", + "Genre:": "Genere:", + "Description:": "Descrizione:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' non si adatta al formato dell'ora 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Durata:", + "Timezone:": "", + "Repeats?": "Ripetizioni?", + "Cannot create show in the past": "Non creare show al passato", + "Cannot modify start date/time of the show that is already started": "Non modificare data e ora di inizio degli slot in eseguzione", + "End date/time cannot be in the past": "L'ora e la data finale non possono precedere quelle iniziali", + "Cannot have duration < 0m": "Non ci può essere una durata <0m", + "Cannot have duration 00h 00m": "Non ci può essere una durata 00h 00m", + "Cannot have duration greater than 24h": "Non ci può essere una durata superiore a 24h", + "Cannot schedule overlapping shows": "Non puoi sovrascrivere gli show", + "Search Users:": "Cerca utenti:", + "DJs:": "Dj:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "", + "Firstname:": "Nome:", + "Lastname:": "Cognome:", + "Email:": "E-mail:", + "Mobile Phone:": "Cellulare:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "tipo di utente:", + "Login name is not unique.": "Il nome utente esiste già .", + "Delete All Tracks in Library": "", + "Date Start:": "Data inizio:", + "Title:": "Titolo:", + "Creator:": "Creatore:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Anno:", + "Label:": "Etichetta:", + "Composer:": "Compositore:", + "Conductor:": "Conduttore:", + "Mood:": "Umore:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Numero ISRC :", + "Website:": "Sito web:", + "Language:": "Lingua:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome stazione", + "Station Description": "", + "Station Logo:": "Logo stazione: ", + "Note: Anything larger than 600x600 will be resized.": "Note: La lunghezze superiori a 600x600 saranno ridimensionate.", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "La settimana inizia il", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Accedi", + "Password": "Password", + "Confirm new password": "Conferma nuova password", + "Password confirmation does not match your password.": "La password di conferma non corrisponde con la sua password.", + "Email": "", + "Username": "Nome utente", + "Reset password": "Reimposta password", + "Back": "", + "Now Playing": "In esecuzione", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tutti i miei show:", + "My Shows": "", + "Select criteria": "Seleziona criteri", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Velocità campione (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ore", + "minutes": "minuti", + "items": "elementi", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamico", + "Static": "Statico", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genera contenuto playlist e salva criteri", + "Shuffle playlist content": "Eseguzione casuale playlist", + "Shuffle": "Casuale", + "Limit cannot be empty or smaller than 0": "Il margine non può essere vuoto o più piccolo di 0", + "Limit cannot be more than 24 hrs": "Il margine non può superare le 24ore", + "The value should be an integer": "Il valore deve essere un numero intero", + "500 is the max item limit value you can set": "500 è il limite massimo di elementi che può inserire", + "You must select Criteria and Modifier": "Devi selezionare da Criteri e Modifica", + "'Length' should be in '00:00:00' format": "La lunghezza deve essere nel formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Il valore deve essere numerico", + "The value should be less then 2147483648": "Il valore deve essere inferiore a 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Il valore deve essere inferiore a %s caratteri", + "Value cannot be empty": "Il valore non deve essere vuoto", + "Stream Label:": "Etichetta Stream:", + "Artist - Title": "Artista - Titolo", + "Show - Artist - Title": "Show - Artista - Titolo", + "Station name - Show name": "Nome stazione - Nome show", + "Off Air Metadata": "", + "Enable Replay Gain": "", + "Replay Gain Modifier": "", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Attiva:", + "Mobile:": "", + "Stream Type:": "Tipo di stream:", + "Bit Rate:": "Velocità di trasmissione: ", + "Service Type:": "Tipo di servizio:", + "Channels:": "Canali:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importa Folder:", + "Watched Folders:": "Folder visionati:", + "Not a valid Directory": "Catalogo non valido", + "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' non va bene con il formato data '%formato%'", + "'%value%' is less than %min% characters long": "'%value%' è più corto di %min% caratteri", + "'%value%' is more than %max% characters long": "'%value%' è più lungo di %max% caratteri", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' non è tra '%min%' e '%max%' compresi", + "Passwords do not match": "", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in e cue out sono nulli.", + "Can't set cue out to be greater than file length.": "Il cue out non può essere più grande della lunghezza del file.", + "Can't set cue in to be larger than cue out.": "Il cue in non può essere più grande del cue out.", + "Can't set cue out to be smaller than cue in.": "Il cue out non può essere più piccolo del cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Seleziona paese", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'orario)", + "The schedule you're viewing is out of date! (instance mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)", + "The schedule you're viewing is out of date!": "Il programma che sta visionando è fuori data!", + "You are not allowed to schedule show %s.": "Non è abilitato all'elenco degli show%s", + "You cannot add files to recording shows.": "Non può aggiungere file a show registrati.", + "The show %s is over and cannot be scheduled.": "Lo show % supera la lunghezza massima e non può essere programmato.", + "The show %s has been previously updated!": "Il programma %s è già stato aggiornato!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Il File selezionato non esiste!", + "Shows can have a max length of 24 hours.": "Gli show possono avere una lunghezza massima di 24 ore.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Non si possono programmare show sovrapposti.\n Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni.", + "Rebroadcast of %s from %s": "Ritrasmetti da %s a %s", + "Length needs to be greater than 0 minutes": "La lunghezza deve superare 0 minuti", + "Length should be of form \"00h 00m\"": "La lunghezza deve essere nella forma \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL deve essere nella forma \"https://example.org\"", + "URL should be 512 characters or less": "URL dove essere di 512 caratteri o meno", + "No MIME type found for webstream.": "Nessun MIME type trovato per le webstream.", + "Webstream name cannot be empty": "Webstream non può essere vuoto", + "Could not parse XSPF playlist": "Non è possibile analizzare le playlist XSPF ", + "Could not parse PLS playlist": "Non è possibile analizzare le playlist PLS", + "Could not parse M3U playlist": "Non è possibile analizzare le playlist M3U", + "Invalid webstream - This appears to be a file download.": "Webstream non valido - Questo potrebbe essere un file scaricato.", + "Unrecognized stream type: %s": "Tipo di stream sconosciuto: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Vedi file registrati Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Modifica il programma", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Non puoi spostare show ripetuti", + "Can't move a past show": "Non puoi spostare uno show passato", + "Can't move show into past": "Non puoi spostare uno show nel passato", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso.", + "Show was deleted because recorded show does not exist!": "Lo show è stato cancellato perché lo show registrato non esiste!", + "Must wait 1 hour to rebroadcast.": "Devi aspettare un'ora prima di ritrasmettere.", + "Track": "", + "Played": "Riprodotti", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/ja_JP.json b/webapp/src/locale/ja_JP.json index fb53c1dffe..06b2ae8a2d 100644 --- a/webapp/src/locale/ja_JP.json +++ b/webapp/src/locale/ja_JP.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s年は、1753 - 9999の範囲内である必要があります", - "%s-%s-%s is not a valid date": "%s-%s-%sは正しい日付ではありません", - "%s:%s:%s is not a valid time": "%s:%s:%sは正しい時間ではありません", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "カレンダー", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "ユーザー", - "Track Types": "", - "Streams": "配信設定", - "Status": "ステータス", - "Analytics": "", - "Playout History": "配信履歴", - "History Templates": "配信履歴のテンプレート", - "Listener Stats": "リスナー統計", - "Show Listener Stats": "", - "Help": "ヘルプ", - "Getting Started": "はじめに", - "User Manual": "ユーザーマニュアル", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "このリソースへのアクセスは許可されていません。", - "You are not allowed to access this resource. ": "このリソースへのアクセスは許可されていません。", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad Request:パスした「mode」パラメータはありません。", - "Bad request. 'mode' parameter is invalid": "Bad Request:'mode' パラメータが無効です。", - "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", - "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", - "You don't have permission to switch source.": "ソースを切り替える権限がありません。", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s は見つかりませんでした。", - "Something went wrong.": "問題が生じました。", - "Preview": "プレビュー", - "Add to Playlist": "プレイリストに追加", - "Add to Smart Block": "スマートブロックに追加", - "Delete": "削除", - "Edit...": "", - "Download": "ダウンロード", - "Duplicate Playlist": "プレイリストのコピー", - "Duplicate Smartblock": "", - "No action available": "実行可能な操作はありません。", - "You don't have permission to delete selected items.": "選択した項目を削除する権限がありません。", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%sのコピー", - "Please make sure admin user/password is correct on Settings->Streams page.": "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。", - "Audio Player": "オーディオプレイヤー", - "Something went wrong!": "", - "Recording:": "録音中:", - "Master Stream": "マスターストリーム", - "Live Stream": "ライブ配信", - "Nothing Scheduled": "何も予約されていません。", - "Current Show:": "現在の番組:", - "Current": "Now Playing", - "You are running the latest version": "最新バージョンを使用しています。", - "New version available: ": "新しいバージョンがあります:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "現在のプレイリストに追加", - "Add to current smart block": "現在のスマートブロックに追加", - "Adding 1 Item": "1個の項目を追加", - "Adding %s Items": " %s個の項目を追加", - "You can only add tracks to smart blocks.": "スマートブロックに追加できるのはトラックのみです。", - "You can only add tracks, smart blocks, and webstreams to playlists.": "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。", - "Please select a cursor position on timeline.": "タイムライン上のカーソル位置を選択して下さい。", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "追加", - "New": "", - "Edit": "編集", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "削除", - "Edit Metadata": "メタデータの編集", - "Add to selected show": "選択した番組へ追加", - "Select": "選択", - "Select this page": "このページを選択", - "Deselect this page": "このページを選択解除", - "Deselect all": "全てを選択解除", - "Are you sure you want to delete the selected item(s)?": "選択した項目を削除してもよろしいですか?", - "Scheduled": "配信予約済み", - "Tracks": "", - "Playlist": "", - "Title": "タイトル", - "Creator": "アーティスト", - "Album": "アルバム", - "Bit Rate": "ビットレート", - "BPM": "BPM ", - "Composer": "作曲者", - "Conductor": "コンダクター", - "Copyright": "著作権", - "Encoded By": "エンコード", - "Genre": "ジャンル", - "ISRC": "ISRC", - "Label": "レーベル", - "Language": "言語", - "Last Modified": "最終修正", - "Last Played": "最終配信日", - "Length": "時間", - "Mime": "MIMEタイプ", - "Mood": "ムード", - "Owner": "所有者", - "Replay Gain": "リプレイゲイン", - "Sample Rate": "サンプルレート", - "Track Number": "トラック番号", - "Uploaded": "アップロード完了", - "Website": "ウェブサイト", - "Year": "年", - "Loading...": "ロード中…", - "All": "全て", - "Files": "ファイル", - "Playlists": "プレイリスト", - "Smart Blocks": "スマートブロック", - "Web Streams": "ウェブ配信", - "Unknown type: ": "種類不明:", - "Are you sure you want to delete the selected item?": "選択した項目を削除してもよろしいですか?", - "Uploading in progress...": "アップロード中…", - "Retrieving data from the server...": "サーバーからデータを取得しています…", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "エラーコード:", - "Error msg: ": "エラーメッセージ:", - "Input must be a positive number": "0より大きい半角数字で入力して下さい。", - "Input must be a number": "半角数字で入力して下さい。", - "Input must be in the format: yyyy-mm-dd": "yyyy-mm-ddの形で入力して下さい。", - "Input must be in the format: hh:mm:ss.t": "01:22:33.4の形式で入力して下さい。", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?", - "Open Media Builder": "メディアビルダーを開く", - "please put in a time '00:00:00 (.0)'": "時間は01:22:33(.4)の形式で入力して下さい。", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "お使いのブラウザはこのファイル形式の再生に対応していません:", - "Dynamic block is not previewable": "自動生成スマート・ブロックはプレビューできません", - "Limit to: ": "次の値に制限:", - "Playlist saved": "プレイリストが保存されました。", - "Playlist shuffled": "プレイリストがシャッフルされました。", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。", - "Listener Count on %s: %s": "%sのリスナー視聴数:%s", - "Remind me in 1 week": "1週間前に通知", - "Remind me never": "通知しない", - "Yes, help Airtime": "Rakuten.FMを支援します", - "Image must be one of jpg, jpeg, png, or gif": "画像は、jpg, jpeg, png, または gif の形式にしてください。", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "スマートブロックがシャッフルされました。", - "Smart block generated and criteria saved": "スマートブロックが生成されて基準が保存されました。", - "Smart block saved": "スマートブロックを保存しました。", - "Processing...": "処理中…", - "Select modifier": "条件を選択してください", - "contains": "以下を含む", - "does not contain": "以下を含まない", - "is": "以下と一致する", - "is not": "以下と一致しない", - "starts with": "以下で始まる", - "ends with": "以下で終わる", - "is greater than": "次の値より大きい", - "is less than": "次の値より小さい", - "is in the range": "次の範囲内", - "Generate": "生成", - "Choose Storage Folder": "フォルダを選択してください。", - "Choose Folder to Watch": "同期するフォルダを選択", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!", - "Manage Media Folders": "メディアフォルダの管理", - "Are you sure you want to remove the watched folder?": "同期されているフォルダを削除してもよろしいですか?", - "This path is currently not accessible.": "このパスは現在アクセス不可能です。", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。", - "Connected to the streaming server": "ストリーミングサーバーに接続しています。", - "The stream is disabled": "配信が切断されています。", - "Getting information from the server...": "サーバーから情報を取得しています…", - "Can not connect to the streaming server": "ストリーミングサーバーに接続できません。", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。", - "Check this box to automatically switch on Master/Show source upon source connection.": "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。", - "If your Icecast server expects a username of 'source', this field can be left blank.": " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。", - "If your live streaming client does not ask for a username, this field should be 'source'.": "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。", - "Warning: You cannot change this field while the show is currently playing": "注意:番組の配信中にこの項目は変更できません。", - "No result found": "結果は見つかりませんでした。", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。", - "Specify custom authentication which will work only for this show.": "この番組に対してのみ有効なカスタム認証を指定してください。", - "The show instance doesn't exist anymore!": "この番組の配信回が存在しません。", - "Warning: Shows cannot be re-linked": "注意:番組は再度リンクできません。", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。", - "Show": "番組", - "Show is empty": "番組内容がありません。", - "1m": "1分", - "5m": "5分", - "10m": "10分", - "15m": "15分", - "30m": "30分", - "60m": "60分", - "Retreiving data from the server...": "サーバーからデータを取得しています…", - "This show has no scheduled content.": "この番組には予約されているコンテンツがありません。", - "This show is not completely filled with content.": "この番組はコンテンツが足りていません。", - "January": "1月", - "February": "2月", - "March": "3月", - "April": "4月", - "May": "5月", - "June": "6月", - "July": "7月", - "August": "8月", - "September": "9月", - "October": "10月", - "November": "11月", - "December": "12月", - "Jan": "1月", - "Feb": "2月", - "Mar": "3月", - "Apr": "4月", - "Jun": "6月", - "Jul": "7月", - "Aug": "8月", - "Sep": "9月", - "Oct": "10月", - "Nov": "11月", - "Dec": "12月", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "日曜日", - "Monday": "月曜日", - "Tuesday": "火曜日", - "Wednesday": "水曜日", - "Thursday": "木曜日", - "Friday": "金曜日", - "Saturday": "土曜日", - "Sun": "日", - "Mon": "月", - "Tue": "火", - "Wed": "水", - "Thu": "木", - "Fri": "金", - "Sat": "土", - "Shows longer than their scheduled time will be cut off by a following show.": "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。", - "Cancel Current Show?": "現在の番組をキャンセルしますか?", - "Stop recording current show?": "配信中の番組の録音を中止しますか?", - "Ok": "Ok", - "Contents of Show": "番組内容", - "Remove all content?": "全てのコンテンツを削除しますか?", - "Delete selected item(s)?": "選択した項目を削除しますか?", - "Start": "開始", - "End": "終了", - "Duration": "長さ", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "キューイン", - "Cue Out": "キューアウト", - "Fade In": "フェードイン", - "Fade Out": "フェードアウト", - "Show Empty": "番組内容がありません。", - "Recording From Line In": "ライン入力から録音", - "Track preview": "試聴する", - "Cannot schedule outside a show.": "番組外に予約することは出来ません。", - "Moving 1 Item": "1個の項目を移動", - "Moving %s Items": "%s 個の項目を移動", - "Save": "保存", - "Cancel": "キャンセル", - "Fade Editor": "フェードの編集", - "Cue Editor": "キューの編集", - "Waveform features are available in a browser supporting the Web Audio API": "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。", - "Select all": "全て選択", - "Select none": "全て解除", - "Trim overbooked shows": "", - "Remove selected scheduled items": "選択した項目を削除", - "Jump to the current playing track": "現在再生中のトラックに移動", - "Jump to Current": "", - "Cancel current show": "配信中の番組をキャンセル", - "Open library to add or remove content": "ライブラリを開いてコンテンツを追加・削除する", - "Add / Remove Content": "コンテンツの追加・削除", - "in use": "使用中", - "Disk": "ディスク", - "Look in": "閲覧", - "Open": "開く", - "Admin": "管理者", - "DJ": "DJ", - "Program Manager": "プログラムマネージャー", - "Guest": "ゲスト", - "Guests can do the following:": "ゲストは以下の操作ができます:", - "View schedule": "スケジュールを見る", - "View show content": "番組内容を見る", - "DJs can do the following:": "DJは以下の操作ができます:", - "Manage assigned show content": "割り当てられた番組内容を管理", - "Import media files": "メディアファイルをインポートする", - "Create playlists, smart blocks, and webstreams": "プレイリスト・スマートブロック・ウェブストリームを作成", - "Manage their own library content": "ライブラリのコンテンツを管理", - "Program Managers can do the following:": "", - "View and manage show content": "番組内容の表示と管理", - "Schedule shows": "番組を予約する", - "Manage all library content": "ライブラリの全てのコンテンツを管理", - "Admins can do the following:": "管理者は次の操作が可能です:", - "Manage preferences": "設定を管理", - "Manage users": "ユーザー管理", - "Manage watched folders": "同期されているフォルダを管理", - "Send support feedback": "サポートにフィードバックを送る", - "View system status": "システムステータスを見る", - "Access playout history": "配信レポートへ", - "View listener stats": "リスナー統計を確認", - "Show / hide columns": "表示設定", - "Columns": "", - "From {from} to {to}": "{from}から{to}へ", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "日", - "Mo": "月", - "Tu": "火", - "We": "水", - "Th": "木", - "Fr": "金", - "Sa": "土", - "Close": "閉じる", - "Hour": "時", - "Minute": "分", - "Done": "完了", - "Select files": "ファイルを選択", - "Add files to the upload queue and click the start button.": "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。", - "Filename": "", - "Size": "", - "Add Files": "ファイルを追加", - "Stop Upload": "アップロード中止", - "Start upload": "アップロード開始", - "Start Upload": "", - "Add files": "ファイルを追加", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d ファイルをアップロードしました。", - "N/A": "N/A", - "Drag files here.": "こちらにファイルをドラッグしてください。", - "File extension error.": "ファイル拡張子エラーです。", - "File size error.": "ファイルサイズエラーです。", - "File count error.": "ファイルカウントのエラーです。", - "Init error.": "Initエラーです。", - "HTTP Error.": "HTTPエラーです。", - "Security error.": "セキュリティエラーです。", - "Generic error.": "エラーです。", - "IO error.": "入出力エラーです。", - "File: %s": "ファイル: %s", - "%d files queued": "%d のファイルが待機中", - "File: %f, size: %s, max file size: %m": "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m", - "Upload URL might be wrong or doesn't exist": "アップロードURLに誤りがあるか存在しません。", - "Error: File too large: ": "エラー:ファイルサイズが大きすぎます。", - "Error: Invalid file extension: ": "エラー:ファイル拡張子が無効です。", - "Set Default": "初期設定として保存", - "Create Entry": "エントリーを作成", - "Edit History Record": "配信履歴を編集", - "No Show": "番組はありません。", - "Copied %s row%s to the clipboard": "%s 列の%s をクリップボードにコピー しました。", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "説明", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "有効", - "Disabled": "無効", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "メールが送信できませんでした。メールサーバーの設定を確認してください。", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "入力されたユーザー名またはパスワードが誤っています。", - "You are viewing an older version of %s": "%sの古いバージョンを閲覧しています。", - "You cannot add tracks to dynamic blocks.": "自動生成スマート・ブロックにトラックを追加することはできません。", - "You don't have permission to delete selected %s(s).": "選択された%sを削除する権限がありません。", - "You can only add tracks to smart block.": "スマートブロックに追加できるのはトラックのみです。", - "Untitled Playlist": "無題のプレイリスト", - "Untitled Smart Block": "無題のスマートブロック", - "Unknown Playlist": "不明なプレイリスト", - "Preferences updated.": "設定が更新されました。", - "Stream Setting Updated.": "配信設定が更新されました。", - "path should be specified": "パスを指定する必要があります", - "Problem with Liquidsoap...": "Liquidsoapに問題があります。", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "%sの再配信:%s %s時", - "Select cursor": "カーソルを選択", - "Remove cursor": "カーソルを削除", - "show does not exist": "番組が存在しません。", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "ユーザーの追加に成功しました。", - "User updated successfully!": "ユーザーの更新に成功しました。", - "Settings updated successfully!": "設定の更新に成功しました。", - "Untitled Webstream": "無題のウェブ配信", - "Webstream saved.": "ウェブ配信が保存されました。", - "Invalid form values.": "入力欄に無効な値があります。", - "Invalid character entered": "使用できない文字が入力されました。", - "Day must be specified": "日付を指定する必要があります。", - "Time must be specified": "時間を指定する必要があります。", - "Must wait at least 1 hour to rebroadcast": "再配信するには、1時間以上待たなければなりません", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "カスタム認証を使用:", - "Custom Username": "カスタムユーザー名", - "Custom Password": "カスタムパスワード", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "ユーザー名を入力してください。", - "Password field cannot be empty.": "パスワードを入力してください。", - "Record from Line In?": "ライン入力から録音", - "Rebroadcast?": "再配信", - "days": "日", - "Link:": "配信内容を同期する:", - "Repeat Type:": "リピート形式:", - "weekly": "毎週", - "every 2 weeks": "2週間ごと", - "every 3 weeks": "3週間ごと", - "every 4 weeks": "4週間ごと", - "monthly": "毎月", - "Select Days:": "曜日を選択:", - "Repeat By:": "リピート間隔:", - "day of the month": "毎月特定日", - "day of the week": "毎月特定曜日", - "Date End:": "終了日:", - "No End?": "無期限", - "End date must be after start date": "終了日は開始日より後に設定してください。", - "Please select a repeat day": "繰り返す日を選択してください", - "Background Colour:": "背景色:", - "Text Colour:": "文字色:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "名前:", - "Untitled Show": "無題の番組", - "URL:": "URL:", - "Genre:": "ジャンル:", - "Description:": "説明:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%'は、'01:22'の形式に適合していません", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "長さ:", - "Timezone:": "タイムゾーン:", - "Repeats?": "定期番組に設定", - "Cannot create show in the past": "過去の日付に番組は作成できません。", - "Cannot modify start date/time of the show that is already started": "すでに開始されている番組の開始日、開始時間を変更することはできません。", - "End date/time cannot be in the past": "終了日時は過去に設定できません。", - "Cannot have duration < 0m": "0分以下の長さに設定することはできません。", - "Cannot have duration 00h 00m": "00h 00mの長さに設定することはできません。", - "Cannot have duration greater than 24h": "24時間を越える長さに設定することはできません。", - "Cannot schedule overlapping shows": "番組を重複して予約することはできません。", - "Search Users:": "ユーザーを検索:", - "DJs:": "DJ:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "ユーザー名:", - "Password:": "パスワード:", - "Verify Password:": "確認用パスワード:", - "Firstname:": "名:", - "Lastname:": "姓:", - "Email:": "メール:", - "Mobile Phone:": "携帯電話:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "ユーザー種別:", - "Login name is not unique.": "ログイン名はすでに使用されています。", - "Delete All Tracks in Library": "", - "Date Start:": "開始日:", - "Title:": "タイトル:", - "Creator:": "アーティスト:", - "Album:": "アルバム:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "年:", - "Label:": "ラベル:", - "Composer:": "作曲者", - "Conductor:": "コンダクター:", - "Mood:": "ムード:", - "BPM:": "BPM:", - "Copyright:": "著作権:", - "ISRC Number:": "ISRC番号:", - "Website:": "ウェブサイト:", - "Language:": "言語:", - "Publish...": "", - "Start Time": "開始時間", - "End Time": "終了時間", - "Interface Timezone:": "インターフェイスのタイムゾーン:", - "Station Name": "ステーション名", - "Station Description": "", - "Station Logo:": "ステーションロゴ:", - "Note: Anything larger than 600x600 will be resized.": "注意:大きさが600x600以上の場合はサイズが変更されます。", - "Default Crossfade Duration (s):": "クロスフェードの時間(初期値):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "デフォルトフェードイン(初期値):", - "Default Fade Out (s):": "デフォルトフェードアウト(初期値):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "ステーションのタイムゾーン", - "Week Starts On": "週の開始曜日", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "ログイン", - "Password": "パスワード", - "Confirm new password": "新しいパスワードを確認してください。", - "Password confirmation does not match your password.": "パスワード確認がパスワードと一致しません。", - "Email": "", - "Username": "ユーザー名", - "Reset password": "パスワードをリセット", - "Back": "", - "Now Playing": "", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "全ての番組:", - "My Shows": "", - "Select criteria": "基準を選択してください", - "Bit Rate (Kbps)": "ビットレート (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "サンプリング周波数 (kHz) ", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "時間", - "minutes": "分", - "items": "項目", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "自動生成スマート・ブロック", - "Static": "スマート・ブロック", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "プレイリストコンテンツを生成し、基準を保存", - "Shuffle playlist content": "プレイリストの内容をシャッフル", - "Shuffle": "シャッフル", - "Limit cannot be empty or smaller than 0": "制限は空欄または0以下には設定できません。", - "Limit cannot be more than 24 hrs": "制限は24時間以内に設定してください。", - "The value should be an integer": "値は整数である必要があります。", - "500 is the max item limit value you can set": "設定できるアイテムの最大数は500です。", - "You must select Criteria and Modifier": "「基準」と「条件」を選択してください。", - "'Length' should be in '00:00:00' format": "「長さ」は、'00:00:00'の形式で入力してください。", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "値は数字である必要があります。", - "The value should be less then 2147483648": "値は2147483648未満にする必要があります。", - "The value cannot be empty": "", - "The value should be less than %s characters": "値は%s未満にする必要があります。", - "Value cannot be empty": "値を入力してください。", - "Stream Label:": "配信表示設定:", - "Artist - Title": "アーティスト - タイトル", - "Show - Artist - Title": "番組 - アーティスト - タイトル", - "Station name - Show name": "ステーション名 - 番組名", - "Off Air Metadata": "オフエアーメタデータ", - "Enable Replay Gain": "リプレイゲインを有効化", - "Replay Gain Modifier": "リプレイゲイン調整", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "有効:", - "Mobile:": "", - "Stream Type:": "配信種別:", - "Bit Rate:": "ビットレート:", - "Service Type:": "サービスタイプ:", - "Channels:": "再生方式", - "Server": "サーバー", - "Port": "ポート", - "Mount Point": "マウントポイント", - "Name": "名前", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "インポートフォルダ:", - "Watched Folders:": "同期フォルダ:", - "Not a valid Directory": "正しいディレクトリではありません。", - "Value is required and can't be empty": "値を入力してください", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。", - "'%value%' does not fit the date format '%format%'": "'%value%'は、'%format%'の日付形式に一致しません。", - "'%value%' is less than %min% characters long": "'%value%'は、%min%文字より短くなっています。", - "'%value%' is more than %max% characters long": "'%value%'は、%max%文字を越えています。", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。", - "Passwords do not match": "パスワードが一致しません。", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "キューインとキューアウトが設定されていません。", - "Can't set cue out to be greater than file length.": "キューアウトはファイルの長さより長く設定できません。", - "Can't set cue in to be larger than cue out.": "キューインをキューアウトより大きく設定することはできません。", - "Can't set cue out to be smaller than cue in.": "キューアウトをキューインより小さく設定することはできません。", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "国の選択", - "livestream": "", - "Cannot move items out of linked shows": "リンクした番組の外に項目を移動することはできません。", - "The schedule you're viewing is out of date! (sched mismatch)": "参照中のスケジュールはの有効ではありません。", - "The schedule you're viewing is out of date! (instance mismatch)": "参照中のスケジュールは有効ではありません。", - "The schedule you're viewing is out of date!": "参照中のスケジュールは有効ではありません。", - "You are not allowed to schedule show %s.": "番組を%sに予約することはできません。", - "You cannot add files to recording shows.": "録音中の番組にファイルを追加することはできません。", - "The show %s is over and cannot be scheduled.": "番組 %s は終了しておりスケジュールに入れることができません。", - "The show %s has been previously updated!": "番組 %s は以前に更新されています。", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "選択したファイルは存在しません。", - "Shows can have a max length of 24 hours.": "番組は最大24時間まで設定可能です。", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "番組を重複して予約することはできません。\n注意:再配信番組のサイズ変更は全ての再配信に反映されます。", - "Rebroadcast of %s from %s": "%sの再配信%sから", - "Length needs to be greater than 0 minutes": "再生時間は0分以上である必要があります。", - "Length should be of form \"00h 00m\"": "時間は \"00h 00m\"の形式にしてください。", - "URL should be of form \"https://example.org\"": "URL は\"https://example.org\"の形式で入力してください。", - "URL should be 512 characters or less": "URLは512文字以下にしてください。", - "No MIME type found for webstream.": "ウェブ配信用のMIMEタイプは見つかりませんでした。", - "Webstream name cannot be empty": "ウェブ配信名を入力して下さい。", - "Could not parse XSPF playlist": "XSPFプレイリストを解析できませんでした。", - "Could not parse PLS playlist": "PLSプレイリストを解析できませんでした。", - "Could not parse M3U playlist": "M3Uプレイリストを解析できませんでした。", - "Invalid webstream - This appears to be a file download.": "無効なウェブ配信です。", - "Unrecognized stream type: %s": "不明な配信種別です: %s", - "Record file doesn't exist": "録音ファイルは存在しません。", - "View Recorded File Metadata": "録音ファイルのメタデータを確認", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "番組の編集", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "許可されていない操作です。", - "Can't drag and drop repeating shows": "定期配信している番組を移動することはできません。", - "Can't move a past show": "過去の番組を移動することはできません。", - "Can't move show into past": "番組を過去の日付に移動することはできません。", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "録音された番組を再配信時間の直前1時間の枠に移動することはできません。", - "Show was deleted because recorded show does not exist!": "録音された番組が存在しないので番組は削除されました。", - "Must wait 1 hour to rebroadcast.": "再配信には1時間待たなければなりません。", - "Track": "トラック", - "Played": "再生済み", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "%s年は、1753 - 9999の範囲内である必要があります", + "%s-%s-%s is not a valid date": "%s-%s-%sは正しい日付ではありません", + "%s:%s:%s is not a valid time": "%s:%s:%sは正しい時間ではありません", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "カレンダー", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "ユーザー", + "Track Types": "", + "Streams": "配信設定", + "Status": "ステータス", + "Analytics": "", + "Playout History": "配信履歴", + "History Templates": "配信履歴のテンプレート", + "Listener Stats": "リスナー統計", + "Show Listener Stats": "", + "Help": "ヘルプ", + "Getting Started": "はじめに", + "User Manual": "ユーザーマニュアル", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "このリソースへのアクセスは許可されていません。", + "You are not allowed to access this resource. ": "このリソースへのアクセスは許可されていません。", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad Request:パスした「mode」パラメータはありません。", + "Bad request. 'mode' parameter is invalid": "Bad Request:'mode' パラメータが無効です。", + "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", + "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", + "You don't have permission to switch source.": "ソースを切り替える権限がありません。", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s は見つかりませんでした。", + "Something went wrong.": "問題が生じました。", + "Preview": "プレビュー", + "Add to Playlist": "プレイリストに追加", + "Add to Smart Block": "スマートブロックに追加", + "Delete": "削除", + "Edit...": "", + "Download": "ダウンロード", + "Duplicate Playlist": "プレイリストのコピー", + "Duplicate Smartblock": "", + "No action available": "実行可能な操作はありません。", + "You don't have permission to delete selected items.": "選択した項目を削除する権限がありません。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%sのコピー", + "Please make sure admin user/password is correct on Settings->Streams page.": "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。", + "Audio Player": "オーディオプレイヤー", + "Something went wrong!": "", + "Recording:": "録音中:", + "Master Stream": "マスターストリーム", + "Live Stream": "ライブ配信", + "Nothing Scheduled": "何も予約されていません。", + "Current Show:": "現在の番組:", + "Current": "Now Playing", + "You are running the latest version": "最新バージョンを使用しています。", + "New version available: ": "新しいバージョンがあります:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "現在のプレイリストに追加", + "Add to current smart block": "現在のスマートブロックに追加", + "Adding 1 Item": "1個の項目を追加", + "Adding %s Items": " %s個の項目を追加", + "You can only add tracks to smart blocks.": "スマートブロックに追加できるのはトラックのみです。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。", + "Please select a cursor position on timeline.": "タイムライン上のカーソル位置を選択して下さい。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "追加", + "New": "", + "Edit": "編集", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "削除", + "Edit Metadata": "メタデータの編集", + "Add to selected show": "選択した番組へ追加", + "Select": "選択", + "Select this page": "このページを選択", + "Deselect this page": "このページを選択解除", + "Deselect all": "全てを選択解除", + "Are you sure you want to delete the selected item(s)?": "選択した項目を削除してもよろしいですか?", + "Scheduled": "配信予約済み", + "Tracks": "", + "Playlist": "", + "Title": "タイトル", + "Creator": "アーティスト", + "Album": "アルバム", + "Bit Rate": "ビットレート", + "BPM": "BPM ", + "Composer": "作曲者", + "Conductor": "コンダクター", + "Copyright": "著作権", + "Encoded By": "エンコード", + "Genre": "ジャンル", + "ISRC": "ISRC", + "Label": "レーベル", + "Language": "言語", + "Last Modified": "最終修正", + "Last Played": "最終配信日", + "Length": "時間", + "Mime": "MIMEタイプ", + "Mood": "ムード", + "Owner": "所有者", + "Replay Gain": "リプレイゲイン", + "Sample Rate": "サンプルレート", + "Track Number": "トラック番号", + "Uploaded": "アップロード完了", + "Website": "ウェブサイト", + "Year": "年", + "Loading...": "ロード中…", + "All": "全て", + "Files": "ファイル", + "Playlists": "プレイリスト", + "Smart Blocks": "スマートブロック", + "Web Streams": "ウェブ配信", + "Unknown type: ": "種類不明:", + "Are you sure you want to delete the selected item?": "選択した項目を削除してもよろしいですか?", + "Uploading in progress...": "アップロード中…", + "Retrieving data from the server...": "サーバーからデータを取得しています…", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "エラーコード:", + "Error msg: ": "エラーメッセージ:", + "Input must be a positive number": "0より大きい半角数字で入力して下さい。", + "Input must be a number": "半角数字で入力して下さい。", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-ddの形で入力して下さい。", + "Input must be in the format: hh:mm:ss.t": "01:22:33.4の形式で入力して下さい。", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?", + "Open Media Builder": "メディアビルダーを開く", + "please put in a time '00:00:00 (.0)'": "時間は01:22:33(.4)の形式で入力して下さい。", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "お使いのブラウザはこのファイル形式の再生に対応していません:", + "Dynamic block is not previewable": "自動生成スマート・ブロックはプレビューできません", + "Limit to: ": "次の値に制限:", + "Playlist saved": "プレイリストが保存されました。", + "Playlist shuffled": "プレイリストがシャッフルされました。", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。", + "Listener Count on %s: %s": "%sのリスナー視聴数:%s", + "Remind me in 1 week": "1週間前に通知", + "Remind me never": "通知しない", + "Yes, help Airtime": "Rakuten.FMを支援します", + "Image must be one of jpg, jpeg, png, or gif": "画像は、jpg, jpeg, png, または gif の形式にしてください。", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "スマートブロックがシャッフルされました。", + "Smart block generated and criteria saved": "スマートブロックが生成されて基準が保存されました。", + "Smart block saved": "スマートブロックを保存しました。", + "Processing...": "処理中…", + "Select modifier": "条件を選択してください", + "contains": "以下を含む", + "does not contain": "以下を含まない", + "is": "以下と一致する", + "is not": "以下と一致しない", + "starts with": "以下で始まる", + "ends with": "以下で終わる", + "is greater than": "次の値より大きい", + "is less than": "次の値より小さい", + "is in the range": "次の範囲内", + "Generate": "生成", + "Choose Storage Folder": "フォルダを選択してください。", + "Choose Folder to Watch": "同期するフォルダを選択", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!", + "Manage Media Folders": "メディアフォルダの管理", + "Are you sure you want to remove the watched folder?": "同期されているフォルダを削除してもよろしいですか?", + "This path is currently not accessible.": "このパスは現在アクセス不可能です。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。", + "Connected to the streaming server": "ストリーミングサーバーに接続しています。", + "The stream is disabled": "配信が切断されています。", + "Getting information from the server...": "サーバーから情報を取得しています…", + "Can not connect to the streaming server": "ストリーミングサーバーに接続できません。", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。", + "Check this box to automatically switch on Master/Show source upon source connection.": "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。", + "If your Icecast server expects a username of 'source', this field can be left blank.": " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。", + "Warning: You cannot change this field while the show is currently playing": "注意:番組の配信中にこの項目は変更できません。", + "No result found": "結果は見つかりませんでした。", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。", + "Specify custom authentication which will work only for this show.": "この番組に対してのみ有効なカスタム認証を指定してください。", + "The show instance doesn't exist anymore!": "この番組の配信回が存在しません。", + "Warning: Shows cannot be re-linked": "注意:番組は再度リンクできません。", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。", + "Show": "番組", + "Show is empty": "番組内容がありません。", + "1m": "1分", + "5m": "5分", + "10m": "10分", + "15m": "15分", + "30m": "30分", + "60m": "60分", + "Retreiving data from the server...": "サーバーからデータを取得しています…", + "This show has no scheduled content.": "この番組には予約されているコンテンツがありません。", + "This show is not completely filled with content.": "この番組はコンテンツが足りていません。", + "January": "1月", + "February": "2月", + "March": "3月", + "April": "4月", + "May": "5月", + "June": "6月", + "July": "7月", + "August": "8月", + "September": "9月", + "October": "10月", + "November": "11月", + "December": "12月", + "Jan": "1月", + "Feb": "2月", + "Mar": "3月", + "Apr": "4月", + "Jun": "6月", + "Jul": "7月", + "Aug": "8月", + "Sep": "9月", + "Oct": "10月", + "Nov": "11月", + "Dec": "12月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "日曜日", + "Monday": "月曜日", + "Tuesday": "火曜日", + "Wednesday": "水曜日", + "Thursday": "木曜日", + "Friday": "金曜日", + "Saturday": "土曜日", + "Sun": "日", + "Mon": "月", + "Tue": "火", + "Wed": "水", + "Thu": "木", + "Fri": "金", + "Sat": "土", + "Shows longer than their scheduled time will be cut off by a following show.": "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。", + "Cancel Current Show?": "現在の番組をキャンセルしますか?", + "Stop recording current show?": "配信中の番組の録音を中止しますか?", + "Ok": "Ok", + "Contents of Show": "番組内容", + "Remove all content?": "全てのコンテンツを削除しますか?", + "Delete selected item(s)?": "選択した項目を削除しますか?", + "Start": "開始", + "End": "終了", + "Duration": "長さ", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "キューイン", + "Cue Out": "キューアウト", + "Fade In": "フェードイン", + "Fade Out": "フェードアウト", + "Show Empty": "番組内容がありません。", + "Recording From Line In": "ライン入力から録音", + "Track preview": "試聴する", + "Cannot schedule outside a show.": "番組外に予約することは出来ません。", + "Moving 1 Item": "1個の項目を移動", + "Moving %s Items": "%s 個の項目を移動", + "Save": "保存", + "Cancel": "キャンセル", + "Fade Editor": "フェードの編集", + "Cue Editor": "キューの編集", + "Waveform features are available in a browser supporting the Web Audio API": "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。", + "Select all": "全て選択", + "Select none": "全て解除", + "Trim overbooked shows": "", + "Remove selected scheduled items": "選択した項目を削除", + "Jump to the current playing track": "現在再生中のトラックに移動", + "Jump to Current": "", + "Cancel current show": "配信中の番組をキャンセル", + "Open library to add or remove content": "ライブラリを開いてコンテンツを追加・削除する", + "Add / Remove Content": "コンテンツの追加・削除", + "in use": "使用中", + "Disk": "ディスク", + "Look in": "閲覧", + "Open": "開く", + "Admin": "管理者", + "DJ": "DJ", + "Program Manager": "プログラムマネージャー", + "Guest": "ゲスト", + "Guests can do the following:": "ゲストは以下の操作ができます:", + "View schedule": "スケジュールを見る", + "View show content": "番組内容を見る", + "DJs can do the following:": "DJは以下の操作ができます:", + "Manage assigned show content": "割り当てられた番組内容を管理", + "Import media files": "メディアファイルをインポートする", + "Create playlists, smart blocks, and webstreams": "プレイリスト・スマートブロック・ウェブストリームを作成", + "Manage their own library content": "ライブラリのコンテンツを管理", + "Program Managers can do the following:": "", + "View and manage show content": "番組内容の表示と管理", + "Schedule shows": "番組を予約する", + "Manage all library content": "ライブラリの全てのコンテンツを管理", + "Admins can do the following:": "管理者は次の操作が可能です:", + "Manage preferences": "設定を管理", + "Manage users": "ユーザー管理", + "Manage watched folders": "同期されているフォルダを管理", + "Send support feedback": "サポートにフィードバックを送る", + "View system status": "システムステータスを見る", + "Access playout history": "配信レポートへ", + "View listener stats": "リスナー統計を確認", + "Show / hide columns": "表示設定", + "Columns": "", + "From {from} to {to}": "{from}から{to}へ", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "日", + "Mo": "月", + "Tu": "火", + "We": "水", + "Th": "木", + "Fr": "金", + "Sa": "土", + "Close": "閉じる", + "Hour": "時", + "Minute": "分", + "Done": "完了", + "Select files": "ファイルを選択", + "Add files to the upload queue and click the start button.": "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。", + "Filename": "", + "Size": "", + "Add Files": "ファイルを追加", + "Stop Upload": "アップロード中止", + "Start upload": "アップロード開始", + "Start Upload": "", + "Add files": "ファイルを追加", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d ファイルをアップロードしました。", + "N/A": "N/A", + "Drag files here.": "こちらにファイルをドラッグしてください。", + "File extension error.": "ファイル拡張子エラーです。", + "File size error.": "ファイルサイズエラーです。", + "File count error.": "ファイルカウントのエラーです。", + "Init error.": "Initエラーです。", + "HTTP Error.": "HTTPエラーです。", + "Security error.": "セキュリティエラーです。", + "Generic error.": "エラーです。", + "IO error.": "入出力エラーです。", + "File: %s": "ファイル: %s", + "%d files queued": "%d のファイルが待機中", + "File: %f, size: %s, max file size: %m": "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m", + "Upload URL might be wrong or doesn't exist": "アップロードURLに誤りがあるか存在しません。", + "Error: File too large: ": "エラー:ファイルサイズが大きすぎます。", + "Error: Invalid file extension: ": "エラー:ファイル拡張子が無効です。", + "Set Default": "初期設定として保存", + "Create Entry": "エントリーを作成", + "Edit History Record": "配信履歴を編集", + "No Show": "番組はありません。", + "Copied %s row%s to the clipboard": "%s 列の%s をクリップボードにコピー しました。", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "説明", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "有効", + "Disabled": "無効", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "メールが送信できませんでした。メールサーバーの設定を確認してください。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "入力されたユーザー名またはパスワードが誤っています。", + "You are viewing an older version of %s": "%sの古いバージョンを閲覧しています。", + "You cannot add tracks to dynamic blocks.": "自動生成スマート・ブロックにトラックを追加することはできません。", + "You don't have permission to delete selected %s(s).": "選択された%sを削除する権限がありません。", + "You can only add tracks to smart block.": "スマートブロックに追加できるのはトラックのみです。", + "Untitled Playlist": "無題のプレイリスト", + "Untitled Smart Block": "無題のスマートブロック", + "Unknown Playlist": "不明なプレイリスト", + "Preferences updated.": "設定が更新されました。", + "Stream Setting Updated.": "配信設定が更新されました。", + "path should be specified": "パスを指定する必要があります", + "Problem with Liquidsoap...": "Liquidsoapに問題があります。", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%sの再配信:%s %s時", + "Select cursor": "カーソルを選択", + "Remove cursor": "カーソルを削除", + "show does not exist": "番組が存在しません。", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "ユーザーの追加に成功しました。", + "User updated successfully!": "ユーザーの更新に成功しました。", + "Settings updated successfully!": "設定の更新に成功しました。", + "Untitled Webstream": "無題のウェブ配信", + "Webstream saved.": "ウェブ配信が保存されました。", + "Invalid form values.": "入力欄に無効な値があります。", + "Invalid character entered": "使用できない文字が入力されました。", + "Day must be specified": "日付を指定する必要があります。", + "Time must be specified": "時間を指定する必要があります。", + "Must wait at least 1 hour to rebroadcast": "再配信するには、1時間以上待たなければなりません", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "カスタム認証を使用:", + "Custom Username": "カスタムユーザー名", + "Custom Password": "カスタムパスワード", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "ユーザー名を入力してください。", + "Password field cannot be empty.": "パスワードを入力してください。", + "Record from Line In?": "ライン入力から録音", + "Rebroadcast?": "再配信", + "days": "日", + "Link:": "配信内容を同期する:", + "Repeat Type:": "リピート形式:", + "weekly": "毎週", + "every 2 weeks": "2週間ごと", + "every 3 weeks": "3週間ごと", + "every 4 weeks": "4週間ごと", + "monthly": "毎月", + "Select Days:": "曜日を選択:", + "Repeat By:": "リピート間隔:", + "day of the month": "毎月特定日", + "day of the week": "毎月特定曜日", + "Date End:": "終了日:", + "No End?": "無期限", + "End date must be after start date": "終了日は開始日より後に設定してください。", + "Please select a repeat day": "繰り返す日を選択してください", + "Background Colour:": "背景色:", + "Text Colour:": "文字色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名前:", + "Untitled Show": "無題の番組", + "URL:": "URL:", + "Genre:": "ジャンル:", + "Description:": "説明:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%'は、'01:22'の形式に適合していません", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "長さ:", + "Timezone:": "タイムゾーン:", + "Repeats?": "定期番組に設定", + "Cannot create show in the past": "過去の日付に番組は作成できません。", + "Cannot modify start date/time of the show that is already started": "すでに開始されている番組の開始日、開始時間を変更することはできません。", + "End date/time cannot be in the past": "終了日時は過去に設定できません。", + "Cannot have duration < 0m": "0分以下の長さに設定することはできません。", + "Cannot have duration 00h 00m": "00h 00mの長さに設定することはできません。", + "Cannot have duration greater than 24h": "24時間を越える長さに設定することはできません。", + "Cannot schedule overlapping shows": "番組を重複して予約することはできません。", + "Search Users:": "ユーザーを検索:", + "DJs:": "DJ:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "ユーザー名:", + "Password:": "パスワード:", + "Verify Password:": "確認用パスワード:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "メール:", + "Mobile Phone:": "携帯電話:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "ユーザー種別:", + "Login name is not unique.": "ログイン名はすでに使用されています。", + "Delete All Tracks in Library": "", + "Date Start:": "開始日:", + "Title:": "タイトル:", + "Creator:": "アーティスト:", + "Album:": "アルバム:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年:", + "Label:": "ラベル:", + "Composer:": "作曲者", + "Conductor:": "コンダクター:", + "Mood:": "ムード:", + "BPM:": "BPM:", + "Copyright:": "著作権:", + "ISRC Number:": "ISRC番号:", + "Website:": "ウェブサイト:", + "Language:": "言語:", + "Publish...": "", + "Start Time": "開始時間", + "End Time": "終了時間", + "Interface Timezone:": "インターフェイスのタイムゾーン:", + "Station Name": "ステーション名", + "Station Description": "", + "Station Logo:": "ステーションロゴ:", + "Note: Anything larger than 600x600 will be resized.": "注意:大きさが600x600以上の場合はサイズが変更されます。", + "Default Crossfade Duration (s):": "クロスフェードの時間(初期値):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "デフォルトフェードイン(初期値):", + "Default Fade Out (s):": "デフォルトフェードアウト(初期値):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "ステーションのタイムゾーン", + "Week Starts On": "週の開始曜日", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "ログイン", + "Password": "パスワード", + "Confirm new password": "新しいパスワードを確認してください。", + "Password confirmation does not match your password.": "パスワード確認がパスワードと一致しません。", + "Email": "", + "Username": "ユーザー名", + "Reset password": "パスワードをリセット", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "全ての番組:", + "My Shows": "", + "Select criteria": "基準を選択してください", + "Bit Rate (Kbps)": "ビットレート (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "サンプリング周波数 (kHz) ", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "時間", + "minutes": "分", + "items": "項目", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "自動生成スマート・ブロック", + "Static": "スマート・ブロック", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "プレイリストコンテンツを生成し、基準を保存", + "Shuffle playlist content": "プレイリストの内容をシャッフル", + "Shuffle": "シャッフル", + "Limit cannot be empty or smaller than 0": "制限は空欄または0以下には設定できません。", + "Limit cannot be more than 24 hrs": "制限は24時間以内に設定してください。", + "The value should be an integer": "値は整数である必要があります。", + "500 is the max item limit value you can set": "設定できるアイテムの最大数は500です。", + "You must select Criteria and Modifier": "「基準」と「条件」を選択してください。", + "'Length' should be in '00:00:00' format": "「長さ」は、'00:00:00'の形式で入力してください。", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "値は数字である必要があります。", + "The value should be less then 2147483648": "値は2147483648未満にする必要があります。", + "The value cannot be empty": "", + "The value should be less than %s characters": "値は%s未満にする必要があります。", + "Value cannot be empty": "値を入力してください。", + "Stream Label:": "配信表示設定:", + "Artist - Title": "アーティスト - タイトル", + "Show - Artist - Title": "番組 - アーティスト - タイトル", + "Station name - Show name": "ステーション名 - 番組名", + "Off Air Metadata": "オフエアーメタデータ", + "Enable Replay Gain": "リプレイゲインを有効化", + "Replay Gain Modifier": "リプレイゲイン調整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "有効:", + "Mobile:": "", + "Stream Type:": "配信種別:", + "Bit Rate:": "ビットレート:", + "Service Type:": "サービスタイプ:", + "Channels:": "再生方式", + "Server": "サーバー", + "Port": "ポート", + "Mount Point": "マウントポイント", + "Name": "名前", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "インポートフォルダ:", + "Watched Folders:": "同期フォルダ:", + "Not a valid Directory": "正しいディレクトリではありません。", + "Value is required and can't be empty": "値を入力してください", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。", + "'%value%' does not fit the date format '%format%'": "'%value%'は、'%format%'の日付形式に一致しません。", + "'%value%' is less than %min% characters long": "'%value%'は、%min%文字より短くなっています。", + "'%value%' is more than %max% characters long": "'%value%'は、%max%文字を越えています。", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。", + "Passwords do not match": "パスワードが一致しません。", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "キューインとキューアウトが設定されていません。", + "Can't set cue out to be greater than file length.": "キューアウトはファイルの長さより長く設定できません。", + "Can't set cue in to be larger than cue out.": "キューインをキューアウトより大きく設定することはできません。", + "Can't set cue out to be smaller than cue in.": "キューアウトをキューインより小さく設定することはできません。", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "国の選択", + "livestream": "", + "Cannot move items out of linked shows": "リンクした番組の外に項目を移動することはできません。", + "The schedule you're viewing is out of date! (sched mismatch)": "参照中のスケジュールはの有効ではありません。", + "The schedule you're viewing is out of date! (instance mismatch)": "参照中のスケジュールは有効ではありません。", + "The schedule you're viewing is out of date!": "参照中のスケジュールは有効ではありません。", + "You are not allowed to schedule show %s.": "番組を%sに予約することはできません。", + "You cannot add files to recording shows.": "録音中の番組にファイルを追加することはできません。", + "The show %s is over and cannot be scheduled.": "番組 %s は終了しておりスケジュールに入れることができません。", + "The show %s has been previously updated!": "番組 %s は以前に更新されています。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "選択したファイルは存在しません。", + "Shows can have a max length of 24 hours.": "番組は最大24時間まで設定可能です。", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "番組を重複して予約することはできません。\n注意:再配信番組のサイズ変更は全ての再配信に反映されます。", + "Rebroadcast of %s from %s": "%sの再配信%sから", + "Length needs to be greater than 0 minutes": "再生時間は0分以上である必要があります。", + "Length should be of form \"00h 00m\"": "時間は \"00h 00m\"の形式にしてください。", + "URL should be of form \"https://example.org\"": "URL は\"https://example.org\"の形式で入力してください。", + "URL should be 512 characters or less": "URLは512文字以下にしてください。", + "No MIME type found for webstream.": "ウェブ配信用のMIMEタイプは見つかりませんでした。", + "Webstream name cannot be empty": "ウェブ配信名を入力して下さい。", + "Could not parse XSPF playlist": "XSPFプレイリストを解析できませんでした。", + "Could not parse PLS playlist": "PLSプレイリストを解析できませんでした。", + "Could not parse M3U playlist": "M3Uプレイリストを解析できませんでした。", + "Invalid webstream - This appears to be a file download.": "無効なウェブ配信です。", + "Unrecognized stream type: %s": "不明な配信種別です: %s", + "Record file doesn't exist": "録音ファイルは存在しません。", + "View Recorded File Metadata": "録音ファイルのメタデータを確認", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "番組の編集", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "許可されていない操作です。", + "Can't drag and drop repeating shows": "定期配信している番組を移動することはできません。", + "Can't move a past show": "過去の番組を移動することはできません。", + "Can't move show into past": "番組を過去の日付に移動することはできません。", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "録音された番組を再配信時間の直前1時間の枠に移動することはできません。", + "Show was deleted because recorded show does not exist!": "録音された番組が存在しないので番組は削除されました。", + "Must wait 1 hour to rebroadcast.": "再配信には1時間待たなければなりません。", + "Track": "トラック", + "Played": "再生済み", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/ko_KR.json b/webapp/src/locale/ko_KR.json index d638d5d3a4..d9bf741f60 100644 --- a/webapp/src/locale/ko_KR.json +++ b/webapp/src/locale/ko_KR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "년도 값은 %s 1753 - 9999 입니다", - "%s-%s-%s is not a valid date": "%s-%s-%s는 맞지 않는 날짜 입니다", - "%s:%s:%s is not a valid time": "%s:%s:%s는 맞지 않는 시간 입니다", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "스케쥴", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "계정", - "Track Types": "", - "Streams": "스트림", - "Status": "상태", - "Analytics": "", - "Playout History": "방송 기록", - "History Templates": "", - "Listener Stats": "청취자 통계", - "Show Listener Stats": "", - "Help": "도움", - "Getting Started": "초보자 가이드", - "User Manual": "사용자 메뉴얼", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "권한이 부족합니다", - "You are not allowed to access this resource. ": "권한이 부족합니다", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "", - "Bad request. 'mode' parameter is invalid": "", - "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", - "There is no source connected to this input.": "연결된 소스가 없습니다", - "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s를 찾을수 없습니다", - "Something went wrong.": "알수없는 에러.", - "Preview": "프리뷰", - "Add to Playlist": "재생 목록에 추가", - "Add to Smart Block": "스마트 블록에 추가", - "Delete": "삭제", - "Edit...": "", - "Download": "다운로드", - "Duplicate Playlist": "중복된 플레이 리스트", - "Duplicate Smartblock": "", - "No action available": "액션 없음", - "You don't have permission to delete selected items.": "선택된 아이템을 지울수 있는 권한이 부족합니다.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%s의 사본", - "Please make sure admin user/password is correct on Settings->Streams page.": "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요.", - "Audio Player": "오디오 플레이어", - "Something went wrong!": "", - "Recording:": "녹음:", - "Master Stream": "마스터 스트림", - "Live Stream": "라이브 스트림", - "Nothing Scheduled": "스케쥴 없음", - "Current Show:": "현재 쇼:", - "Current": "현재", - "You are running the latest version": "최신 버전입니다.", - "New version available: ": "새 버젼이 있습니다", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "현제 플레이리스트에 추가", - "Add to current smart block": "현제 스마트 블록에 추가", - "Adding 1 Item": "아이템 1개 추가", - "Adding %s Items": "아이템 %s개 추가", - "You can only add tracks to smart blocks.": "스마트 블록에는 파일만 추가 가능합니다", - "You can only add tracks, smart blocks, and webstreams to playlists.": "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다", - "Please select a cursor position on timeline.": "타임 라인에서 커서를 먼져 선택 하여 주세요.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "추가", - "New": "", - "Edit": "수정", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "제거", - "Edit Metadata": "메타데이타 수정", - "Add to selected show": "선택된 쇼에 추가", - "Select": "선택", - "Select this page": "현재 페이지 선택", - "Deselect this page": "현재 페이지 선택 취소 ", - "Deselect all": "모두 선택 취소", - "Are you sure you want to delete the selected item(s)?": "선택된 아이템들을 모두 지우시겠습니다?", - "Scheduled": "스케쥴됨", - "Tracks": "", - "Playlist": "", - "Title": "제목", - "Creator": "제작자", - "Album": "앨범", - "Bit Rate": "비트 레이트", - "BPM": "", - "Composer": "작곡가", - "Conductor": "지휘자", - "Copyright": "저작권", - "Encoded By": "", - "Genre": "장르", - "ISRC": "", - "Label": "레이블", - "Language": "언어", - "Last Modified": "마지막 수정일", - "Last Played": "마지막 방송일", - "Length": "길이", - "Mime": "", - "Mood": "무드", - "Owner": "소유자", - "Replay Gain": "리플레이 게인", - "Sample Rate": "샘플 레이트", - "Track Number": "트랙 번호", - "Uploaded": "업로드 날짜", - "Website": "웹싸이트", - "Year": "년도", - "Loading...": "로딩...", - "All": "전체", - "Files": "파일", - "Playlists": "재생 목록", - "Smart Blocks": "스마트 블록", - "Web Streams": "웹스트림", - "Unknown type: ": "알수 없는 유형:", - "Are you sure you want to delete the selected item?": "선택된 아이템을 모두 삭제 하시겠습니까?", - "Uploading in progress...": "업로딩중...", - "Retrieving data from the server...": "서버에서 정보를 가져오는중...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "에러 코드: ", - "Error msg: ": "에러 메세지: ", - "Input must be a positive number": "이 값은 0보다 큰 숫자만 허용 됩니다", - "Input must be a number": "이 값은 숫자만 허용합니다", - "Input must be in the format: yyyy-mm-dd": "yyyy-mm-dd의 형태로 입력해주세요", - "Input must be in the format: hh:mm:ss.t": "hh:mm:ss.t의 형태로 입력해주세요", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?", - "Open Media Builder": "미디아 빌더 열기", - "please put in a time '00:00:00 (.0)'": "'00:00:00 (.0)' 형태로 입력해주세요", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: ", - "Dynamic block is not previewable": "동적인 스마트 블록은 프리뷰 할수 없습니다", - "Limit to: ": "길이 제한: ", - "Playlist saved": "재생 목록이 저장 되었습니다", - "Playlist shuffled": "플레이 리스트가 셔플 되었습니다", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다.", - "Listener Count on %s: %s": "%s의청취자 숫자 : %s", - "Remind me in 1 week": "1주후에 다시 알림", - "Remind me never": "이 창을 다시 표시 하지 않음", - "Yes, help Airtime": "Airtime 도와주기", - "Image must be one of jpg, jpeg, png, or gif": "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 ", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "스마트 블록이 셔플 되었습니다", - "Smart block generated and criteria saved": "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다", - "Smart block saved": "스마트 블록이 저장 되었습니다", - "Processing...": "진행중...", - "Select modifier": "모디파이어 선택", - "contains": "다음을 포합", - "does not contain": "다음을 포함하지 않는", - "is": "다음과 같음", - "is not": "다음과 같지 않음", - "starts with": "다음으로 시작", - "ends with": "다음으로 끝남", - "is greater than": "다음 보다 큰", - "is less than": "다음 보타 작은", - "is in the range": "다음 범위 안에 있는 ", - "Generate": "생성", - "Choose Storage Folder": "저장 폴더 선택", - "Choose Folder to Watch": "모니터 폴더 선택", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다.", - "Manage Media Folders": "미디어 폴더 관리", - "Are you sure you want to remove the watched folder?": "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?", - "This path is currently not accessible.": "경로에 접근할수 없습니다", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명", - "Connected to the streaming server": "스트리밍 서버에 접속됨", - "The stream is disabled": "스트림이 사용되지 않음", - "Getting information from the server...": "서버에서 정보를 받는중...", - "Can not connect to the streaming server": "스트리밍 서버에 접속 할수 없음", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔.", - "Check this box to automatically switch on Master/Show source upon source connection.": "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "결과 없음", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "쇼에 지정된 사람들만 접속 할수 있습니다", - "Specify custom authentication which will work only for this show.": "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다", - "The show instance doesn't exist anymore!": "쇼 인스턴스가 존재 하지 않습니다", - "Warning: Shows cannot be re-linked": "주의: 쇼는 다시 링크 될수 없습니다", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "쇼", - "Show is empty": "쇼가 비어 있습니다", - "1m": "1분", - "5m": "5분", - "10m": "10분", - "15m": "15분", - "30m": "30분", - "60m": "60분", - "Retreiving data from the server...": "서버로부터 데이타를 불러오는중...", - "This show has no scheduled content.": "내용이 없는 쇼입니다", - "This show is not completely filled with content.": "쇼가 완전히 채워지지 않았습니다", - "January": "1월", - "February": "2월", - "March": "3월", - "April": "4월", - "May": "5월", - "June": "6월", - "July": "7월", - "August": "8월", - "September": "9월", - "October": "10월", - "November": "11월", - "December": "12월", - "Jan": "1월", - "Feb": "2월", - "Mar": "3월", - "Apr": "4월", - "Jun": "6월", - "Jul": "7월", - "Aug": "8월", - "Sep": "9월", - "Oct": "10월", - "Nov": "11월", - "Dec": "12월", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "일요일", - "Monday": "월요일", - "Tuesday": "화요일", - "Wednesday": "수요일", - "Thursday": "목요일", - "Friday": "금요일", - "Saturday": "토요일", - "Sun": "일", - "Mon": "월", - "Tue": "화", - "Wed": "수", - "Thu": "목", - "Fri": "금", - "Sat": "토", - "Shows longer than their scheduled time will be cut off by a following show.": "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다", - "Cancel Current Show?": "현재 방송중인 쇼를 중단 하시겠습니까?", - "Stop recording current show?": "현재 녹음 중인 쇼를 중단 하시겠습니까?", - "Ok": "확인", - "Contents of Show": "쇼 내용", - "Remove all content?": "모든 내용물 삭제하시겠습까?", - "Delete selected item(s)?": "선택한 아이템을 삭제 하시겠습니까?", - "Start": "시작", - "End": "종료", - "Duration": "길이", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "큐 인", - "Cue Out": "큐 아웃", - "Fade In": "페이드 인", - "Fade Out": "패이드 아웃", - "Show Empty": "내용 없음", - "Recording From Line In": "라인 인으로 부터 녹음", - "Track preview": "트랙 프리뷰", - "Cannot schedule outside a show.": "쇼 범위 밖에 스케쥴 할수 없습니다", - "Moving 1 Item": "아이템 1개 이동", - "Moving %s Items": "아이템 %s개 이동", - "Save": "저장", - "Cancel": "취소", - "Fade Editor": "페이드 에디터", - "Cue Editor": "큐 에디터", - "Waveform features are available in a browser supporting the Web Audio API": "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다", - "Select all": "전체 선택", - "Select none": "전체 선택 취소", - "Trim overbooked shows": "", - "Remove selected scheduled items": "선택된 아이템 제거", - "Jump to the current playing track": "현재 방송중인 트랙으로 가기", - "Jump to Current": "", - "Cancel current show": "현재 쇼 취소", - "Open library to add or remove content": "라이브러리 열기", - "Add / Remove Content": "내용 추가/제거", - "in use": "사용중", - "Disk": "디스크", - "Look in": "경로", - "Open": "열기", - "Admin": "관리자", - "DJ": "", - "Program Manager": "프로그램 매니저", - "Guest": "손님", - "Guests can do the following:": "손님의 권한:", - "View schedule": "스케쥴 보기", - "View show content": "쇼 내용 보기", - "DJs can do the following:": "DJ의 권한:", - "Manage assigned show content": "할당된 쇼의 내용 관리", - "Import media files": "미디아 파일 추가", - "Create playlists, smart blocks, and webstreams": "플레이 리스트, 스마트 블록, 웹스트림 생성", - "Manage their own library content": "자신의 라이브러리 내용 관리", - "Program Managers can do the following:": "", - "View and manage show content": "쇼 내용 보기및 관리", - "Schedule shows": "쇼 스케쥴 하기", - "Manage all library content": "모든 라이브러리 내용 관리", - "Admins can do the following:": "관리자의 권한:", - "Manage preferences": "설정 관리", - "Manage users": "사용자 관리", - "Manage watched folders": "모니터 폴터 관리", - "Send support feedback": "사용자 피드백을 보냄", - "View system status": "이시스템 상황 보기", - "Access playout history": "방송 기록 접근 권한", - "View listener stats": "청취자 통계 보기", - "Show / hide columns": "컬럼 보이기/숨기기", - "Columns": "", - "From {from} to {to}": " {from}부터 {to}까지", - "kbps": "", - "yyyy-mm-dd": "", - "hh:mm:ss.t": "", - "kHz": "", - "Su": "일", - "Mo": "월", - "Tu": "화", - "We": "수", - "Th": "목", - "Fr": "금", - "Sa": "토", - "Close": "닫기", - "Hour": "시", - "Minute": "분", - "Done": "확인", - "Select files": "파일 선택", - "Add files to the upload queue and click the start button.": "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요.", - "Filename": "", - "Size": "", - "Add Files": "파일 추가", - "Stop Upload": "업로드 중지", - "Start upload": "업로드 시작", - "Start Upload": "", - "Add files": "파일 추가", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d 파일이 업로드됨", - "N/A": "", - "Drag files here.": "파일을 여기로 드래그 앤 드랍 하세요", - "File extension error.": "파일 확장자 에러.", - "File size error.": "파일 크기 에러.", - "File count error.": "파일 갯수 에러.", - "Init error.": "초기화 에러.", - "HTTP Error.": "HTTP 에러.", - "Security error.": "보안 에러.", - "Generic error.": "일반적인 에러.", - "IO error.": "IO 에러.", - "File: %s": "파일: %s", - "%d files queued": "%d개의 파일이 대기중", - "File: %f, size: %s, max file size: %m": "파일: %f, 크기: %s, 최대 파일 크기: %m", - "Upload URL might be wrong or doesn't exist": "업로드 URL이 맞지 않거나 존재 하지 않습니다", - "Error: File too large: ": "에러: 파일이 너무 큽니다:", - "Error: Invalid file extension: ": "에러: 지원하지 않는 확장자:", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "%s row %s를 클립보드로 복사 하였습니다", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "설명", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "사용", - "Disabled": "미사용", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "아이디와 암호가 맞지 않습니다. 다시 시도해주세요", - "You are viewing an older version of %s": "오래된 %s를 보고 있습니다", - "You cannot add tracks to dynamic blocks.": "동적인 스마트 블록에는 트랙을 추가 할수 없습니다", - "You don't have permission to delete selected %s(s).": "선택하신 %s를 삭제 할수 있는 권한이 부족합니다.", - "You can only add tracks to smart block.": "스마트 블록에는 트랙만 추가 가능합니다", - "Untitled Playlist": "제목없는 재생목록", - "Untitled Smart Block": "제목없는 스마트 블록", - "Unknown Playlist": "모르는 재생목록", - "Preferences updated.": "설정이 업데이트 되었습니다", - "Stream Setting Updated.": "스트림 설정이 업데이트 되었습니다", - "path should be specified": "경로를 입력해주세요", - "Problem with Liquidsoap...": "Liquidsoap 문제...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "%s의 재방송 %s부터 %s까지", - "Select cursor": "커서 선택", - "Remove cursor": "커서 제거", - "show does not exist": "쇼가 존재 하지 않음", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "사용자가 추가 되었습니다!", - "User updated successfully!": "사용자 정보가 업데이트 되었습니다!", - "Settings updated successfully!": "세팅이 성공적으로 업데이트 되었습니다!", - "Untitled Webstream": "제목없는 웹스트림", - "Webstream saved.": "웹스트림이 저장 되었습니다", - "Invalid form values.": "잘못된 값입니다", - "Invalid character entered": "허용되지 않는 문자입니다", - "Day must be specified": "날짜를 설정하세요", - "Time must be specified": "시간을 설정하세요", - "Must wait at least 1 hour to rebroadcast": "재방송 설정까지 1시간 기간이 필요합니다", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Custom 인증 사용", - "Custom Username": "Custom 아이디", - "Custom Password": "Custom 암호", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "아이디를 입력해주세요", - "Password field cannot be empty.": "암호를 입력해주세요", - "Record from Line In?": "Line In으로 녹음", - "Rebroadcast?": "재방송?", - "days": "일", - "Link:": "링크:", - "Repeat Type:": "반복 유형:", - "weekly": "주간", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "월간", - "Select Days:": "날짜 선택", - "Repeat By:": "", - "day of the month": "월중 날짜", - "day of the week": "주중 날짜", - "Date End:": "종료", - "No End?": "무한 반복?", - "End date must be after start date": "종료 일이 시작일 보다 먼져 입니다.", - "Please select a repeat day": "", - "Background Colour:": "배경 색:", - "Text Colour:": "글자 색:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "이름:", - "Untitled Show": "이름없는 쇼", - "URL:": "", - "Genre:": "장르:", - "Description:": "설명:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다.", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "길이:", - "Timezone:": "시간대:", - "Repeats?": "반복?", - "Cannot create show in the past": "쇼를 과거에 생성 할수 없습니다", - "Cannot modify start date/time of the show that is already started": "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다", - "End date/time cannot be in the past": "종료 날짜/시간을 과거로 설정할수 없습니다", - "Cannot have duration < 0m": "길이가 0m 보다 작을수 없습니다", - "Cannot have duration 00h 00m": "길이가 00h 00m인 쇼를 생성 할수 없습니다", - "Cannot have duration greater than 24h": "쇼의 길이가 24h를 넘을수 없습니다", - "Cannot schedule overlapping shows": "쇼를 중복되게 스케쥴할수 없습니다", - "Search Users:": "사용자 검색:", - "DJs:": "DJ들:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "아이디: ", - "Password:": "암호: ", - "Verify Password:": "암호 확인:", - "Firstname:": "이름:", - "Lastname:": "성:", - "Email:": "이메일", - "Mobile Phone:": "휴대전화:", - "Skype:": "스카입:", - "Jabber:": "", - "User Type:": "유저 타입", - "Login name is not unique.": "사용할수 없는 아이디 입니다", - "Delete All Tracks in Library": "", - "Date Start:": "시작", - "Title:": "제목:", - "Creator:": "제작자:", - "Album:": "앨범:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "년도:", - "Label:": "상표:", - "Composer:": "작곡가:", - "Conductor:": "지휘자", - "Mood:": "무드", - "BPM:": "", - "Copyright:": "저작권:", - "ISRC Number:": "ISRC 넘버", - "Website:": "웹사이트", - "Language:": "언어", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "방송국 이름", - "Station Description": "", - "Station Logo:": "방송국 로고", - "Note: Anything larger than 600x600 will be resized.": "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다", - "Default Crossfade Duration (s):": "기본 크로스페이드 길이(s)", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "기본 페이드 인(s)", - "Default Fade Out (s):": "기본 페이드 아웃(s)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "주 시작일", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "로그인", - "Password": "암호", - "Confirm new password": "새 암호 확인", - "Password confirmation does not match your password.": "암호와 암호 확인 값이 일치 하지 않습니다.", - "Email": "", - "Username": "아이디", - "Reset password": "암호 초기화", - "Back": "", - "Now Playing": "방송중", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "내 쇼:", - "My Shows": "", - "Select criteria": "기준 선택", - "Bit Rate (Kbps)": "비트 레이트(Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "샘플 레이트", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "시간", - "minutes": "분", - "items": "아이템", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "동적(Dynamic)", - "Static": "정적(Static)", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "재생 목록 내용 생성후 설정 저장", - "Shuffle playlist content": "재생 목록 내용 셔플하기", - "Shuffle": "셔플", - "Limit cannot be empty or smaller than 0": "길이 제한은 비어두거나 0으로 설정할수 없습니다", - "Limit cannot be more than 24 hrs": "길이 제한은 24h 보다 클수 없습니다", - "The value should be an integer": "이 값은 정수(integer) 입니다", - "500 is the max item limit value you can set": "아이템 곗수의 최대값은 500 입니다", - "You must select Criteria and Modifier": "기준과 모디파이어를 골라주세요", - "'Length' should be in '00:00:00' format": "길이는 00:00:00 형태로 입력하세요", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "이 값은 숫자만 허용 됩니다", - "The value should be less then 2147483648": "이 값은 2147483648보다 작은 수만 허용 됩니다", - "The value cannot be empty": "", - "The value should be less than %s characters": "이 값은 %s 문자보다 작은 길이만 허용 됩니다", - "Value cannot be empty": "이 값은 비어둘수 없습니다", - "Stream Label:": "스트림 레이블", - "Artist - Title": "아티스트 - 제목", - "Show - Artist - Title": "쇼 - 아티스트 - 제목", - "Station name - Show name": "방송국 이름 - 쇼 이름", - "Off Air Metadata": "오프 에어 메타데이타", - "Enable Replay Gain": "리플레이 게인 활성화", - "Replay Gain Modifier": "리플레이 게인 설정", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "사용:", - "Mobile:": "", - "Stream Type:": "스트림 타입:", - "Bit Rate:": "비트 레이트:", - "Service Type:": "서비스 타입:", - "Channels:": "채널:", - "Server": "서버", - "Port": "포트", - "Mount Point": "마운트 지점", - "Name": "이름", - "URL": "", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "폴더 가져오기", - "Watched Folders:": "모니터중인 폴더", - "Not a valid Directory": "옳치 않은 폴더 입니다", - "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'은 맞지 않는 이메일 형식 입니다.", - "'%value%' does not fit the date format '%format%'": "'%value%'은 날짜 형식('%format%')에 맞지 않습니다.", - "'%value%' is less than %min% characters long": "'%value%'는 %min%글자 보다 짧을수 없습니다", - "'%value%' is more than %max% characters long": "'%value%'는 %max%글자 보다 길수 없습니다", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다.", - "Passwords do not match": "암호가 맞지 않습니다", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "큐-인 과 큐 -아웃 이 null 입니다", - "Can't set cue out to be greater than file length.": "큐-아웃 값은 파일 길이보다 클수 없습니다", - "Can't set cue in to be larger than cue out.": "큐-인 값은 큐-아웃 값보다 클수 없습니다.", - "Can't set cue out to be smaller than cue in.": "큐-아웃 값은 큐-인 값보다 작을수 없습니다.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "국가 선택", - "livestream": "", - "Cannot move items out of linked shows": "링크 쇼에서 아이템을 분리 할수 없습니다", - "The schedule you're viewing is out of date! (sched mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)", - "The schedule you're viewing is out of date!": "현재 보고 계신 스케쥴이 맞지 않습니다", - "You are not allowed to schedule show %s.": "쇼를 스케쥴 할수 있는 권한이 없습니다 %s.", - "You cannot add files to recording shows.": "녹화 쇼에는 파일을 추가 할수 없습니다", - "The show %s is over and cannot be scheduled.": "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다", - "The show %s has been previously updated!": "쇼 %s 업데이트 되었습니다!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "선택하신 파일이 존재 하지 않습니다", - "Shows can have a max length of 24 hours.": "쇼 길이는 24시간을 넘을수 없습니다.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "쇼를 중복되게 스케줄 할수 없습니다.\n주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다.", - "Rebroadcast of %s from %s": "%s 재방송( %s에 시작) ", - "Length needs to be greater than 0 minutes": "길이가 0분 보다 길어야 합니다", - "Length should be of form \"00h 00m\"": "길이는 \"00h 00m\"의 형태 여야 합니다 ", - "URL should be of form \"https://example.org\"": "URL은 \"https://example.org\" 형태여야 합니다", - "URL should be 512 characters or less": "URL은 512캐릭터 까지 허용합니다", - "No MIME type found for webstream.": "웹 스트림의 MIME 타입을 찾을수 없습니다", - "Webstream name cannot be empty": "웹스트림의 이름을 지정하십시오", - "Could not parse XSPF playlist": "XSPF 재생목록을 분석 할수 없습니다", - "Could not parse PLS playlist": "PLS 재생목록을 분석 할수 없습니다", - "Could not parse M3U playlist": "M3U 재생목록을 분석할수 없습니다", - "Invalid webstream - This appears to be a file download.": "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다", - "Unrecognized stream type: %s": "알수 없는 스트림 타입: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "녹음된 파일의 메타데이타 보기", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "쇼 수정", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "권한이 부족합니다", - "Can't drag and drop repeating shows": "반복쇼는 드래그 앤 드롭 할수 없습니다", - "Can't move a past show": "지난 쇼는 이동할수 없습니다", - "Can't move show into past": "과거로 쇼를 이동할수 없습니다", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다", - "Show was deleted because recorded show does not exist!": "녹화 쇼가 없으로 쇼가 삭제 되었습니다", - "Must wait 1 hour to rebroadcast.": "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 ", - "Track": "", - "Played": "방송됨", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "년도 값은 %s 1753 - 9999 입니다", + "%s-%s-%s is not a valid date": "%s-%s-%s는 맞지 않는 날짜 입니다", + "%s:%s:%s is not a valid time": "%s:%s:%s는 맞지 않는 시간 입니다", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "스케쥴", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "계정", + "Track Types": "", + "Streams": "스트림", + "Status": "상태", + "Analytics": "", + "Playout History": "방송 기록", + "History Templates": "", + "Listener Stats": "청취자 통계", + "Show Listener Stats": "", + "Help": "도움", + "Getting Started": "초보자 가이드", + "User Manual": "사용자 메뉴얼", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "권한이 부족합니다", + "You are not allowed to access this resource. ": "권한이 부족합니다", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", + "There is no source connected to this input.": "연결된 소스가 없습니다", + "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s를 찾을수 없습니다", + "Something went wrong.": "알수없는 에러.", + "Preview": "프리뷰", + "Add to Playlist": "재생 목록에 추가", + "Add to Smart Block": "스마트 블록에 추가", + "Delete": "삭제", + "Edit...": "", + "Download": "다운로드", + "Duplicate Playlist": "중복된 플레이 리스트", + "Duplicate Smartblock": "", + "No action available": "액션 없음", + "You don't have permission to delete selected items.": "선택된 아이템을 지울수 있는 권한이 부족합니다.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s의 사본", + "Please make sure admin user/password is correct on Settings->Streams page.": "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요.", + "Audio Player": "오디오 플레이어", + "Something went wrong!": "", + "Recording:": "녹음:", + "Master Stream": "마스터 스트림", + "Live Stream": "라이브 스트림", + "Nothing Scheduled": "스케쥴 없음", + "Current Show:": "현재 쇼:", + "Current": "현재", + "You are running the latest version": "최신 버전입니다.", + "New version available: ": "새 버젼이 있습니다", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "현제 플레이리스트에 추가", + "Add to current smart block": "현제 스마트 블록에 추가", + "Adding 1 Item": "아이템 1개 추가", + "Adding %s Items": "아이템 %s개 추가", + "You can only add tracks to smart blocks.": "스마트 블록에는 파일만 추가 가능합니다", + "You can only add tracks, smart blocks, and webstreams to playlists.": "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다", + "Please select a cursor position on timeline.": "타임 라인에서 커서를 먼져 선택 하여 주세요.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "추가", + "New": "", + "Edit": "수정", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "제거", + "Edit Metadata": "메타데이타 수정", + "Add to selected show": "선택된 쇼에 추가", + "Select": "선택", + "Select this page": "현재 페이지 선택", + "Deselect this page": "현재 페이지 선택 취소 ", + "Deselect all": "모두 선택 취소", + "Are you sure you want to delete the selected item(s)?": "선택된 아이템들을 모두 지우시겠습니다?", + "Scheduled": "스케쥴됨", + "Tracks": "", + "Playlist": "", + "Title": "제목", + "Creator": "제작자", + "Album": "앨범", + "Bit Rate": "비트 레이트", + "BPM": "", + "Composer": "작곡가", + "Conductor": "지휘자", + "Copyright": "저작권", + "Encoded By": "", + "Genre": "장르", + "ISRC": "", + "Label": "레이블", + "Language": "언어", + "Last Modified": "마지막 수정일", + "Last Played": "마지막 방송일", + "Length": "길이", + "Mime": "", + "Mood": "무드", + "Owner": "소유자", + "Replay Gain": "리플레이 게인", + "Sample Rate": "샘플 레이트", + "Track Number": "트랙 번호", + "Uploaded": "업로드 날짜", + "Website": "웹싸이트", + "Year": "년도", + "Loading...": "로딩...", + "All": "전체", + "Files": "파일", + "Playlists": "재생 목록", + "Smart Blocks": "스마트 블록", + "Web Streams": "웹스트림", + "Unknown type: ": "알수 없는 유형:", + "Are you sure you want to delete the selected item?": "선택된 아이템을 모두 삭제 하시겠습니까?", + "Uploading in progress...": "업로딩중...", + "Retrieving data from the server...": "서버에서 정보를 가져오는중...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "에러 코드: ", + "Error msg: ": "에러 메세지: ", + "Input must be a positive number": "이 값은 0보다 큰 숫자만 허용 됩니다", + "Input must be a number": "이 값은 숫자만 허용합니다", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-dd의 형태로 입력해주세요", + "Input must be in the format: hh:mm:ss.t": "hh:mm:ss.t의 형태로 입력해주세요", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?", + "Open Media Builder": "미디아 빌더 열기", + "please put in a time '00:00:00 (.0)'": "'00:00:00 (.0)' 형태로 입력해주세요", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: ", + "Dynamic block is not previewable": "동적인 스마트 블록은 프리뷰 할수 없습니다", + "Limit to: ": "길이 제한: ", + "Playlist saved": "재생 목록이 저장 되었습니다", + "Playlist shuffled": "플레이 리스트가 셔플 되었습니다", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다.", + "Listener Count on %s: %s": "%s의청취자 숫자 : %s", + "Remind me in 1 week": "1주후에 다시 알림", + "Remind me never": "이 창을 다시 표시 하지 않음", + "Yes, help Airtime": "Airtime 도와주기", + "Image must be one of jpg, jpeg, png, or gif": "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 ", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "스마트 블록이 셔플 되었습니다", + "Smart block generated and criteria saved": "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다", + "Smart block saved": "스마트 블록이 저장 되었습니다", + "Processing...": "진행중...", + "Select modifier": "모디파이어 선택", + "contains": "다음을 포합", + "does not contain": "다음을 포함하지 않는", + "is": "다음과 같음", + "is not": "다음과 같지 않음", + "starts with": "다음으로 시작", + "ends with": "다음으로 끝남", + "is greater than": "다음 보다 큰", + "is less than": "다음 보타 작은", + "is in the range": "다음 범위 안에 있는 ", + "Generate": "생성", + "Choose Storage Folder": "저장 폴더 선택", + "Choose Folder to Watch": "모니터 폴더 선택", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다.", + "Manage Media Folders": "미디어 폴더 관리", + "Are you sure you want to remove the watched folder?": "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?", + "This path is currently not accessible.": "경로에 접근할수 없습니다", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명", + "Connected to the streaming server": "스트리밍 서버에 접속됨", + "The stream is disabled": "스트림이 사용되지 않음", + "Getting information from the server...": "서버에서 정보를 받는중...", + "Can not connect to the streaming server": "스트리밍 서버에 접속 할수 없음", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔.", + "Check this box to automatically switch on Master/Show source upon source connection.": "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "결과 없음", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "쇼에 지정된 사람들만 접속 할수 있습니다", + "Specify custom authentication which will work only for this show.": "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다", + "The show instance doesn't exist anymore!": "쇼 인스턴스가 존재 하지 않습니다", + "Warning: Shows cannot be re-linked": "주의: 쇼는 다시 링크 될수 없습니다", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "쇼", + "Show is empty": "쇼가 비어 있습니다", + "1m": "1분", + "5m": "5분", + "10m": "10분", + "15m": "15분", + "30m": "30분", + "60m": "60분", + "Retreiving data from the server...": "서버로부터 데이타를 불러오는중...", + "This show has no scheduled content.": "내용이 없는 쇼입니다", + "This show is not completely filled with content.": "쇼가 완전히 채워지지 않았습니다", + "January": "1월", + "February": "2월", + "March": "3월", + "April": "4월", + "May": "5월", + "June": "6월", + "July": "7월", + "August": "8월", + "September": "9월", + "October": "10월", + "November": "11월", + "December": "12월", + "Jan": "1월", + "Feb": "2월", + "Mar": "3월", + "Apr": "4월", + "Jun": "6월", + "Jul": "7월", + "Aug": "8월", + "Sep": "9월", + "Oct": "10월", + "Nov": "11월", + "Dec": "12월", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "일요일", + "Monday": "월요일", + "Tuesday": "화요일", + "Wednesday": "수요일", + "Thursday": "목요일", + "Friday": "금요일", + "Saturday": "토요일", + "Sun": "일", + "Mon": "월", + "Tue": "화", + "Wed": "수", + "Thu": "목", + "Fri": "금", + "Sat": "토", + "Shows longer than their scheduled time will be cut off by a following show.": "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다", + "Cancel Current Show?": "현재 방송중인 쇼를 중단 하시겠습니까?", + "Stop recording current show?": "현재 녹음 중인 쇼를 중단 하시겠습니까?", + "Ok": "확인", + "Contents of Show": "쇼 내용", + "Remove all content?": "모든 내용물 삭제하시겠습까?", + "Delete selected item(s)?": "선택한 아이템을 삭제 하시겠습니까?", + "Start": "시작", + "End": "종료", + "Duration": "길이", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "큐 인", + "Cue Out": "큐 아웃", + "Fade In": "페이드 인", + "Fade Out": "패이드 아웃", + "Show Empty": "내용 없음", + "Recording From Line In": "라인 인으로 부터 녹음", + "Track preview": "트랙 프리뷰", + "Cannot schedule outside a show.": "쇼 범위 밖에 스케쥴 할수 없습니다", + "Moving 1 Item": "아이템 1개 이동", + "Moving %s Items": "아이템 %s개 이동", + "Save": "저장", + "Cancel": "취소", + "Fade Editor": "페이드 에디터", + "Cue Editor": "큐 에디터", + "Waveform features are available in a browser supporting the Web Audio API": "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다", + "Select all": "전체 선택", + "Select none": "전체 선택 취소", + "Trim overbooked shows": "", + "Remove selected scheduled items": "선택된 아이템 제거", + "Jump to the current playing track": "현재 방송중인 트랙으로 가기", + "Jump to Current": "", + "Cancel current show": "현재 쇼 취소", + "Open library to add or remove content": "라이브러리 열기", + "Add / Remove Content": "내용 추가/제거", + "in use": "사용중", + "Disk": "디스크", + "Look in": "경로", + "Open": "열기", + "Admin": "관리자", + "DJ": "", + "Program Manager": "프로그램 매니저", + "Guest": "손님", + "Guests can do the following:": "손님의 권한:", + "View schedule": "스케쥴 보기", + "View show content": "쇼 내용 보기", + "DJs can do the following:": "DJ의 권한:", + "Manage assigned show content": "할당된 쇼의 내용 관리", + "Import media files": "미디아 파일 추가", + "Create playlists, smart blocks, and webstreams": "플레이 리스트, 스마트 블록, 웹스트림 생성", + "Manage their own library content": "자신의 라이브러리 내용 관리", + "Program Managers can do the following:": "", + "View and manage show content": "쇼 내용 보기및 관리", + "Schedule shows": "쇼 스케쥴 하기", + "Manage all library content": "모든 라이브러리 내용 관리", + "Admins can do the following:": "관리자의 권한:", + "Manage preferences": "설정 관리", + "Manage users": "사용자 관리", + "Manage watched folders": "모니터 폴터 관리", + "Send support feedback": "사용자 피드백을 보냄", + "View system status": "이시스템 상황 보기", + "Access playout history": "방송 기록 접근 권한", + "View listener stats": "청취자 통계 보기", + "Show / hide columns": "컬럼 보이기/숨기기", + "Columns": "", + "From {from} to {to}": " {from}부터 {to}까지", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "", + "Su": "일", + "Mo": "월", + "Tu": "화", + "We": "수", + "Th": "목", + "Fr": "금", + "Sa": "토", + "Close": "닫기", + "Hour": "시", + "Minute": "분", + "Done": "확인", + "Select files": "파일 선택", + "Add files to the upload queue and click the start button.": "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요.", + "Filename": "", + "Size": "", + "Add Files": "파일 추가", + "Stop Upload": "업로드 중지", + "Start upload": "업로드 시작", + "Start Upload": "", + "Add files": "파일 추가", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d 파일이 업로드됨", + "N/A": "", + "Drag files here.": "파일을 여기로 드래그 앤 드랍 하세요", + "File extension error.": "파일 확장자 에러.", + "File size error.": "파일 크기 에러.", + "File count error.": "파일 갯수 에러.", + "Init error.": "초기화 에러.", + "HTTP Error.": "HTTP 에러.", + "Security error.": "보안 에러.", + "Generic error.": "일반적인 에러.", + "IO error.": "IO 에러.", + "File: %s": "파일: %s", + "%d files queued": "%d개의 파일이 대기중", + "File: %f, size: %s, max file size: %m": "파일: %f, 크기: %s, 최대 파일 크기: %m", + "Upload URL might be wrong or doesn't exist": "업로드 URL이 맞지 않거나 존재 하지 않습니다", + "Error: File too large: ": "에러: 파일이 너무 큽니다:", + "Error: Invalid file extension: ": "에러: 지원하지 않는 확장자:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s row %s를 클립보드로 복사 하였습니다", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "설명", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "사용", + "Disabled": "미사용", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "아이디와 암호가 맞지 않습니다. 다시 시도해주세요", + "You are viewing an older version of %s": "오래된 %s를 보고 있습니다", + "You cannot add tracks to dynamic blocks.": "동적인 스마트 블록에는 트랙을 추가 할수 없습니다", + "You don't have permission to delete selected %s(s).": "선택하신 %s를 삭제 할수 있는 권한이 부족합니다.", + "You can only add tracks to smart block.": "스마트 블록에는 트랙만 추가 가능합니다", + "Untitled Playlist": "제목없는 재생목록", + "Untitled Smart Block": "제목없는 스마트 블록", + "Unknown Playlist": "모르는 재생목록", + "Preferences updated.": "설정이 업데이트 되었습니다", + "Stream Setting Updated.": "스트림 설정이 업데이트 되었습니다", + "path should be specified": "경로를 입력해주세요", + "Problem with Liquidsoap...": "Liquidsoap 문제...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%s의 재방송 %s부터 %s까지", + "Select cursor": "커서 선택", + "Remove cursor": "커서 제거", + "show does not exist": "쇼가 존재 하지 않음", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "사용자가 추가 되었습니다!", + "User updated successfully!": "사용자 정보가 업데이트 되었습니다!", + "Settings updated successfully!": "세팅이 성공적으로 업데이트 되었습니다!", + "Untitled Webstream": "제목없는 웹스트림", + "Webstream saved.": "웹스트림이 저장 되었습니다", + "Invalid form values.": "잘못된 값입니다", + "Invalid character entered": "허용되지 않는 문자입니다", + "Day must be specified": "날짜를 설정하세요", + "Time must be specified": "시간을 설정하세요", + "Must wait at least 1 hour to rebroadcast": "재방송 설정까지 1시간 기간이 필요합니다", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Custom 인증 사용", + "Custom Username": "Custom 아이디", + "Custom Password": "Custom 암호", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "아이디를 입력해주세요", + "Password field cannot be empty.": "암호를 입력해주세요", + "Record from Line In?": "Line In으로 녹음", + "Rebroadcast?": "재방송?", + "days": "일", + "Link:": "링크:", + "Repeat Type:": "반복 유형:", + "weekly": "주간", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "월간", + "Select Days:": "날짜 선택", + "Repeat By:": "", + "day of the month": "월중 날짜", + "day of the week": "주중 날짜", + "Date End:": "종료", + "No End?": "무한 반복?", + "End date must be after start date": "종료 일이 시작일 보다 먼져 입니다.", + "Please select a repeat day": "", + "Background Colour:": "배경 색:", + "Text Colour:": "글자 색:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "이름:", + "Untitled Show": "이름없는 쇼", + "URL:": "", + "Genre:": "장르:", + "Description:": "설명:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다.", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "길이:", + "Timezone:": "시간대:", + "Repeats?": "반복?", + "Cannot create show in the past": "쇼를 과거에 생성 할수 없습니다", + "Cannot modify start date/time of the show that is already started": "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다", + "End date/time cannot be in the past": "종료 날짜/시간을 과거로 설정할수 없습니다", + "Cannot have duration < 0m": "길이가 0m 보다 작을수 없습니다", + "Cannot have duration 00h 00m": "길이가 00h 00m인 쇼를 생성 할수 없습니다", + "Cannot have duration greater than 24h": "쇼의 길이가 24h를 넘을수 없습니다", + "Cannot schedule overlapping shows": "쇼를 중복되게 스케쥴할수 없습니다", + "Search Users:": "사용자 검색:", + "DJs:": "DJ들:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "아이디: ", + "Password:": "암호: ", + "Verify Password:": "암호 확인:", + "Firstname:": "이름:", + "Lastname:": "성:", + "Email:": "이메일", + "Mobile Phone:": "휴대전화:", + "Skype:": "스카입:", + "Jabber:": "", + "User Type:": "유저 타입", + "Login name is not unique.": "사용할수 없는 아이디 입니다", + "Delete All Tracks in Library": "", + "Date Start:": "시작", + "Title:": "제목:", + "Creator:": "제작자:", + "Album:": "앨범:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "년도:", + "Label:": "상표:", + "Composer:": "작곡가:", + "Conductor:": "지휘자", + "Mood:": "무드", + "BPM:": "", + "Copyright:": "저작권:", + "ISRC Number:": "ISRC 넘버", + "Website:": "웹사이트", + "Language:": "언어", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "방송국 이름", + "Station Description": "", + "Station Logo:": "방송국 로고", + "Note: Anything larger than 600x600 will be resized.": "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다", + "Default Crossfade Duration (s):": "기본 크로스페이드 길이(s)", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "기본 페이드 인(s)", + "Default Fade Out (s):": "기본 페이드 아웃(s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "주 시작일", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "로그인", + "Password": "암호", + "Confirm new password": "새 암호 확인", + "Password confirmation does not match your password.": "암호와 암호 확인 값이 일치 하지 않습니다.", + "Email": "", + "Username": "아이디", + "Reset password": "암호 초기화", + "Back": "", + "Now Playing": "방송중", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "내 쇼:", + "My Shows": "", + "Select criteria": "기준 선택", + "Bit Rate (Kbps)": "비트 레이트(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "샘플 레이트", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "시간", + "minutes": "분", + "items": "아이템", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "동적(Dynamic)", + "Static": "정적(Static)", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "재생 목록 내용 생성후 설정 저장", + "Shuffle playlist content": "재생 목록 내용 셔플하기", + "Shuffle": "셔플", + "Limit cannot be empty or smaller than 0": "길이 제한은 비어두거나 0으로 설정할수 없습니다", + "Limit cannot be more than 24 hrs": "길이 제한은 24h 보다 클수 없습니다", + "The value should be an integer": "이 값은 정수(integer) 입니다", + "500 is the max item limit value you can set": "아이템 곗수의 최대값은 500 입니다", + "You must select Criteria and Modifier": "기준과 모디파이어를 골라주세요", + "'Length' should be in '00:00:00' format": "길이는 00:00:00 형태로 입력하세요", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "이 값은 숫자만 허용 됩니다", + "The value should be less then 2147483648": "이 값은 2147483648보다 작은 수만 허용 됩니다", + "The value cannot be empty": "", + "The value should be less than %s characters": "이 값은 %s 문자보다 작은 길이만 허용 됩니다", + "Value cannot be empty": "이 값은 비어둘수 없습니다", + "Stream Label:": "스트림 레이블", + "Artist - Title": "아티스트 - 제목", + "Show - Artist - Title": "쇼 - 아티스트 - 제목", + "Station name - Show name": "방송국 이름 - 쇼 이름", + "Off Air Metadata": "오프 에어 메타데이타", + "Enable Replay Gain": "리플레이 게인 활성화", + "Replay Gain Modifier": "리플레이 게인 설정", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "사용:", + "Mobile:": "", + "Stream Type:": "스트림 타입:", + "Bit Rate:": "비트 레이트:", + "Service Type:": "서비스 타입:", + "Channels:": "채널:", + "Server": "서버", + "Port": "포트", + "Mount Point": "마운트 지점", + "Name": "이름", + "URL": "", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "폴더 가져오기", + "Watched Folders:": "모니터중인 폴더", + "Not a valid Directory": "옳치 않은 폴더 입니다", + "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'은 맞지 않는 이메일 형식 입니다.", + "'%value%' does not fit the date format '%format%'": "'%value%'은 날짜 형식('%format%')에 맞지 않습니다.", + "'%value%' is less than %min% characters long": "'%value%'는 %min%글자 보다 짧을수 없습니다", + "'%value%' is more than %max% characters long": "'%value%'는 %max%글자 보다 길수 없습니다", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다.", + "Passwords do not match": "암호가 맞지 않습니다", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "큐-인 과 큐 -아웃 이 null 입니다", + "Can't set cue out to be greater than file length.": "큐-아웃 값은 파일 길이보다 클수 없습니다", + "Can't set cue in to be larger than cue out.": "큐-인 값은 큐-아웃 값보다 클수 없습니다.", + "Can't set cue out to be smaller than cue in.": "큐-아웃 값은 큐-인 값보다 작을수 없습니다.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "국가 선택", + "livestream": "", + "Cannot move items out of linked shows": "링크 쇼에서 아이템을 분리 할수 없습니다", + "The schedule you're viewing is out of date! (sched mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)", + "The schedule you're viewing is out of date!": "현재 보고 계신 스케쥴이 맞지 않습니다", + "You are not allowed to schedule show %s.": "쇼를 스케쥴 할수 있는 권한이 없습니다 %s.", + "You cannot add files to recording shows.": "녹화 쇼에는 파일을 추가 할수 없습니다", + "The show %s is over and cannot be scheduled.": "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다", + "The show %s has been previously updated!": "쇼 %s 업데이트 되었습니다!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "선택하신 파일이 존재 하지 않습니다", + "Shows can have a max length of 24 hours.": "쇼 길이는 24시간을 넘을수 없습니다.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "쇼를 중복되게 스케줄 할수 없습니다.\n주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다.", + "Rebroadcast of %s from %s": "%s 재방송( %s에 시작) ", + "Length needs to be greater than 0 minutes": "길이가 0분 보다 길어야 합니다", + "Length should be of form \"00h 00m\"": "길이는 \"00h 00m\"의 형태 여야 합니다 ", + "URL should be of form \"https://example.org\"": "URL은 \"https://example.org\" 형태여야 합니다", + "URL should be 512 characters or less": "URL은 512캐릭터 까지 허용합니다", + "No MIME type found for webstream.": "웹 스트림의 MIME 타입을 찾을수 없습니다", + "Webstream name cannot be empty": "웹스트림의 이름을 지정하십시오", + "Could not parse XSPF playlist": "XSPF 재생목록을 분석 할수 없습니다", + "Could not parse PLS playlist": "PLS 재생목록을 분석 할수 없습니다", + "Could not parse M3U playlist": "M3U 재생목록을 분석할수 없습니다", + "Invalid webstream - This appears to be a file download.": "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다", + "Unrecognized stream type: %s": "알수 없는 스트림 타입: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "녹음된 파일의 메타데이타 보기", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "쇼 수정", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "권한이 부족합니다", + "Can't drag and drop repeating shows": "반복쇼는 드래그 앤 드롭 할수 없습니다", + "Can't move a past show": "지난 쇼는 이동할수 없습니다", + "Can't move show into past": "과거로 쇼를 이동할수 없습니다", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다", + "Show was deleted because recorded show does not exist!": "녹화 쇼가 없으로 쇼가 삭제 되었습니다", + "Must wait 1 hour to rebroadcast.": "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 ", + "Track": "", + "Played": "방송됨", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/nl_NL.json b/webapp/src/locale/nl_NL.json index 67b4e8e406..2d6766c4e7 100644 --- a/webapp/src/locale/nl_NL.json +++ b/webapp/src/locale/nl_NL.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Het jaar %s moet binnen het bereik van 1753-9999", - "%s-%s-%s is not a valid date": "%s-%s-%s dit is geen geldige datum", - "%s:%s:%s is not a valid time": "%s:%s:%s Dit is geen geldige tijd", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s.", - "Click the 'New Show' button and fill out the required fields.": "Klik op de knop 'Nieuwe Show' en vul de vereiste velden.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n%sCreate een niet-gekoppelde Toon nu%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calender", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "gebruikers", - "Track Types": "", - "Streams": "streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout geschiedenis", - "History Templates": "Geschiedenis sjablonen", - "Listener Stats": "luister status", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Aan de slag", - "User Manual": "Gebruikershandleiding", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "U bent niet toegestaan voor toegang tot deze bron.", - "You are not allowed to access this resource. ": "U bent niet toegestaan voor toegang tot deze bron.", - "File does not exist in %s": "Bestand bestaat niet in %s", - "Bad request. no 'mode' parameter passed.": "Slecht verzoek. geen 'mode' parameter doorgegeven.", - "Bad request. 'mode' parameter is invalid": "Slecht verzoek. 'mode' parameter is ongeldig", - "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", - "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", - "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Pagina niet gevonden", - "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", - "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", - "An internal application error has occurred.": "Een interne toepassingsfout opgetreden.", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s niet gevonden", - "Something went wrong.": "Er ging iets mis.", - "Preview": "Voorbeeld", - "Add to Playlist": "Toevoegen aan afspeellijst", - "Add to Smart Block": "Toevoegen aan slimme blok", - "Delete": "Verwijderen", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Dubbele afspeellijst", - "Duplicate Smartblock": "", - "No action available": "Geen actie beschikbaar", - "You don't have permission to delete selected items.": "Je hebt geen toestemming om geselecteerde items te verwijderen", - "Could not delete file because it is scheduled in the future.": "Kan bestand niet verwijderen omdat het in de toekomst is gepland.", - "Could not delete file(s).": "Bestand(en) kan geen gegevens verwijderen.", - "Copy of %s": "Kopie van %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Opname", - "Master Stream": "Master Stream", - "Live Stream": "Live stream", - "Nothing Scheduled": "Niets gepland", - "Current Show:": "Huidige Show:", - "Current": "Huidige", - "You are running the latest version": "U werkt de meest recente versie", - "New version available: ": "Nieuwe versie beschikbaar:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Toevoegen aan huidige afspeellijst", - "Add to current smart block": "Toevoegen aan huidigeslimme block", - "Adding 1 Item": "1 Item toevoegen", - "Adding %s Items": "%s Items toe te voegen", - "You can only add tracks to smart blocks.": "U kunt alleen nummers naar slimme blokken toevoegen.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten.", - "Please select a cursor position on timeline.": "Selecteer een cursorpositie op de tijdlijn.", - "You haven't added any tracks": "U hebt de nummers nog niet toegevoegd", - "You haven't added any playlists": "U heb niet alle afspeellijsten toegevoegd", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "U nog niet toegevoegd een slimme blokken", - "You haven't added any webstreams": "U hebt webstreams nog niet toegevoegd", - "Learn about tracks": "Informatie over nummers", - "Learn about playlists": "Meer informatie over afspeellijsten", - "Learn about podcasts": "", - "Learn about smart blocks": "Informatie over slimme blokken", - "Learn about webstreams": "Meer informatie over webstreams", - "Click 'New' to create one.": "Klik op 'Nieuw' te maken.", - "Add": "toevoegen", - "New": "", - "Edit": "Bewerken", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "verwijderen", - "Edit Metadata": "Metagegevens bewerken", - "Add to selected show": "Toevoegen aan geselecteerde Toon", - "Select": "Selecteer", - "Select this page": "Selecteer deze pagina", - "Deselect this page": "Hef de selectie van deze pagina", - "Deselect all": "Alle selecties opheffen", - "Are you sure you want to delete the selected item(s)?": "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?", - "Scheduled": "Gepland", - "Tracks": "track", - "Playlist": "Afspeellijsten", - "Title": "Titel", - "Creator": "Aangemaakt door", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Componist", - "Conductor": "Dirigent", - "Copyright": "Copyright:", - "Encoded By": "Encoded Bij", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "label", - "Language": "Taal", - "Last Modified": "Laatst Gewijzigd", - "Last Played": "Laatst gespeeld", - "Length": "Lengte", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Eigenaar", - "Replay Gain": "Herhalen Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track nummer", - "Uploaded": "Uploaded", - "Website": "Website:", - "Year": "Jaar", - "Loading...": "Bezig met laden...", - "All": "Alle", - "Files": "Bestanden", - "Playlists": "Afspeellijsten", - "Smart Blocks": "slimme blokken", - "Web Streams": "Web Streams", - "Unknown type: ": "Onbekend type", - "Are you sure you want to delete the selected item?": "Wilt u de geselecteerde gegevens werkelijk verwijderen?", - "Uploading in progress...": "Uploaden in vooruitgang...", - "Retrieving data from the server...": "Gegevens op te halen van de server...", - "Import": "", - "Imported?": "", - "View": "Weergeven", - "Error code: ": "foutcode", - "Error msg: ": "Fout msg:", - "Input must be a positive number": "Invoer moet een positief getal", - "Input must be a number": "Invoer moet een getal", - "Input must be in the format: yyyy-mm-dd": "Invoer moet worden in de indeling: jjjj-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Invoer moet worden in het formaat: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?", - "Open Media Builder": "Open Media opbouw", - "please put in a time '00:00:00 (.0)'": "Gelieve te zetten in een tijd '00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:", - "Dynamic block is not previewable": "Dynamische blok is niet previewable", - "Limit to: ": "Beperk tot:", - "Playlist saved": "Afspeellijst opgeslagen", - "Playlist shuffled": "Afspeellijst geschud", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken.", - "Listener Count on %s: %s": "Luisteraar rekenen op %s: %s", - "Remind me in 1 week": "Stuur me een herinnering in 1 week", - "Remind me never": "Herinner me nooit", - "Yes, help Airtime": "Ja, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Afbeelding moet een van jpg, jpeg, png of gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "slimme blok geschud", - "Smart block generated and criteria saved": "slimme blok gegenereerd en opgeslagen criteria", - "Smart block saved": "Smart blok opgeslagen", - "Processing...": "Wordt verwerkt...", - "Select modifier": "Selecteer modifier", - "contains": "bevat", - "does not contain": "bevat niet", - "is": "is", - "is not": "is niet gelijk aan", - "starts with": "Begint met", - "ends with": "Eindigt op", - "is greater than": "is groter dan", - "is less than": "is minder dan", - "is in the range": "in het gebied", - "Generate": "Genereren", - "Choose Storage Folder": "Kies opslagmap", - "Choose Folder to Watch": "Kies map voor bewaken", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!", - "Manage Media Folders": "Mediamappen beheren", - "Are you sure you want to remove the watched folder?": "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?", - "This path is currently not accessible.": "Dit pad is momenteel niet toegankelijk.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt.", - "Connected to the streaming server": "Aangesloten op de streaming server", - "The stream is disabled": "De stream is uitgeschakeld", - "Getting information from the server...": "Het verkrijgen van informatie van de server ...", - "Can not connect to the streaming server": "Kan geen verbinding maken met de streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken.", - "Warning: You cannot change this field while the show is currently playing": "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen", - "No result found": "Geen resultaat gevonden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken.", - "Specify custom authentication which will work only for this show.": "Geef aangepaste verificatie die alleen voor deze show werken zal.", - "The show instance doesn't exist anymore!": "De Toon-exemplaar bestaat niet meer!", - "Warning: Shows cannot be re-linked": "Waarschuwing: Shows kunnen niet opnieuw gekoppelde", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen.", - "Show": "Show", - "Show is empty": "Show Is leeg", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retreiving gegevens van de server...", - "This show has no scheduled content.": "Deze show heeft geen geplande inhoud.", - "This show is not completely filled with content.": "Deze show is niet volledig gevuld met inhoud.", - "January": "Januari", - "February": "Februari", - "March": "maart", - "April": "april", - "May": "mei", - "June": "juni", - "July": "juli", - "August": "augustus", - "September": "september", - "October": "oktober", - "November": "november", - "December": "december", - "Jan": "jan", - "Feb": "feb", - "Mar": "maa", - "Apr": "apr", - "Jun": "jun", - "Jul": "jul", - "Aug": "aug", - "Sep": "sep", - "Oct": "okt", - "Nov": "nov", - "Dec": "dec", - "Today": "vandaag", - "Day": "dag", - "Week": "week", - "Month": "maand", - "Sunday": "zondag", - "Monday": "maandag", - "Tuesday": "dinsdag", - "Wednesday": "woensdag", - "Thursday": "donderdag", - "Friday": "vrijdag", - "Saturday": "zaterdag", - "Sun": "zon", - "Mon": "ma", - "Tue": "di", - "Wed": "wo", - "Thu": "do", - "Fri": "vrij", - "Sat": "zat", - "Shows longer than their scheduled time will be cut off by a following show.": "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling.", - "Cancel Current Show?": "Annuleer Huidige Show?", - "Stop recording current show?": "Stop de opname huidige show?", - "Ok": "oke", - "Contents of Show": "Inhoud van Show", - "Remove all content?": "Alle inhoud verwijderen?", - "Delete selected item(s)?": "verwijderd geselecteerd object(en)?", - "Start": "Start", - "End": "einde", - "Duration": "Duur", - "Filtering out ": "Filteren op", - " of ": "of", - " records": "records", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Infaden", - "Fade Out": "uitfaden", - "Show Empty": "Show leeg", - "Recording From Line In": "Opname van de Line In", - "Track preview": "Track Voorbeeld", - "Cannot schedule outside a show.": "Niet gepland buiten een show.", - "Moving 1 Item": "1 Item verplaatsen", - "Moving %s Items": "%s Items verplaatsen", - "Save": "opslaan", - "Cancel": "anuleren", - "Fade Editor": "Fade Bewerken", - "Cue Editor": "Cue Bewerken", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API", - "Select all": "Selecteer alles", - "Select none": "Niets selecteren", - "Trim overbooked shows": "Trim overboekte shows", - "Remove selected scheduled items": "Geselecteerde geplande items verwijderen", - "Jump to the current playing track": "Jump naar de huidige playing track", - "Jump to Current": "", - "Cancel current show": "Annuleren van de huidige show", - "Open library to add or remove content": "Open bibliotheek toevoegen of verwijderen van inhoud", - "Add / Remove Content": "Toevoegen / verwijderen van inhoud", - "in use": "In gebruik", - "Disk": "hardeschijf", - "Look in": "Zoeken in:", - "Open": "open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programmabeheer", - "Guest": "gast", - "Guests can do the following:": "Gasten kunnen het volgende doen:", - "View schedule": "Schema weergeven", - "View show content": "Weergave show content", - "DJs can do the following:": "DJ's kunnen het volgende doen:", - "Manage assigned show content": "Toegewezen Toon inhoud beheren", - "Import media files": "Mediabestanden importeren", - "Create playlists, smart blocks, and webstreams": "Maak afspeellijsten, slimme blokken en webstreams", - "Manage their own library content": "De inhoud van hun eigen bibliotheek beheren", - "Program Managers can do the following:": "", - "View and manage show content": "Bekijken en beheren van inhoud weergeven", - "Schedule shows": "Schema shows", - "Manage all library content": "Alle inhoud van de bibliotheek beheren", - "Admins can do the following:": "Beheerders kunnen het volgende doen:", - "Manage preferences": "Voorkeuren beheren", - "Manage users": "Gebruikers beheren", - "Manage watched folders": "Bewaakte mappen beheren", - "Send support feedback": "Ondersteuning feedback verzenden", - "View system status": "Bekijk systeem status", - "Access playout history": "Toegang playout geschiedenis", - "View listener stats": "Weergave luisteraar status", - "Show / hide columns": "Geef weer / verberg kolommen", - "Columns": "", - "From {from} to {to}": "Van {from} tot {to}", - "kbps": "kbps", - "yyyy-mm-dd": "jjjj-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Zo", - "Mo": "Ma", - "Tu": "Di", - "We": "Wo", - "Th": "Do", - "Fr": "Vr", - "Sa": "Za", - "Close": "Sluiten", - "Hour": "Uur", - "Minute": "Minuut", - "Done": "Klaar", - "Select files": "Selecteer bestanden", - "Add files to the upload queue and click the start button.": "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop", - "Filename": "", - "Size": "", - "Add Files": "Bestanden toevoegen", - "Stop Upload": "Stop upload", - "Start upload": "Begin upload", - "Start Upload": "", - "Add files": "Bestanden toevoegen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Geüploade %d/%d bestanden", - "N/A": "N/B", - "Drag files here.": "Sleep bestanden hierheen.", - "File extension error.": "Bestandsextensie fout", - "File size error.": "Bestandsgrote fout.", - "File count error.": "Graaf bestandsfout.", - "Init error.": "Init fout.", - "HTTP Error.": "HTTP fout.", - "Security error.": "Beveiligingsfout.", - "Generic error.": "Generieke fout.", - "IO error.": "IO fout.", - "File: %s": "Bestand: %s", - "%d files queued": "%d bestanden in de wachtrij", - "File: %f, size: %s, max file size: %m": "File: %f, grootte: %s, max bestandsgrootte: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL zou verkeerd kunnen zijn of bestaat niet", - "Error: File too large: ": "Fout: Bestand is te groot", - "Error: Invalid file extension: ": "Fout: Niet toegestane bestandsextensie ", - "Set Default": "Standaard instellen", - "Create Entry": "Aangemaakt op:", - "Edit History Record": "Geschiedenis Record bewerken", - "No Show": "geen show", - "Copied %s row%s to the clipboard": "Rij gekopieerde %s %s naar het Klembord", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent.", - "New Show": "Nieuw Show", - "New Log Entry": "Nieuwe logboekvermelding", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Beschrijving", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ingeschakeld", - "Disabled": "Uitgeschakeld", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Voer uw gebruikersnaam en wachtwoord.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd.", - "Wrong username or password provided. Please try again.": "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw.", - "You are viewing an older version of %s": "U bekijkt een oudere versie van %s", - "You cannot add tracks to dynamic blocks.": "U kunt nummers toevoegen aan dynamische blokken.", - "You don't have permission to delete selected %s(s).": "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)", - "You can only add tracks to smart block.": "U kunt alleen nummers toevoegen aan smart blok.", - "Untitled Playlist": "Naamloze afspeellijst", - "Untitled Smart Block": "Naamloze slimme block", - "Unknown Playlist": "Onbekende afspeellijst", - "Preferences updated.": "Voorkeuren bijgewerkt.", - "Stream Setting Updated.": "Stream vaststelling van bijgewerkte.", - "path should be specified": "pad moet worden opgegeven", - "Problem with Liquidsoap...": "Probleem met Liquidsoap...", - "Request method not accepted": "Verzoek methode niet geaccepteerd", - "Rebroadcast of show %s from %s at %s": "Rebroadcast van show %s van %s in %s", - "Select cursor": "Selecteer cursor", - "Remove cursor": "Cursor verwijderen", - "show does not exist": "show bestaat niet", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "gebruiker Succesvol Toegevoegd", - "User updated successfully!": "gebruiker Succesvol bijgewerkt", - "Settings updated successfully!": "Instellingen met succes bijgewerkt!", - "Untitled Webstream": "Naamloze Webstream", - "Webstream saved.": "Webstream opgeslagen.", - "Invalid form values.": "Ongeldige formulierwaarden.", - "Invalid character entered": "Ongeldig teken ingevoerd", - "Day must be specified": "Dag moet worden opgegeven", - "Time must be specified": "Tijd moet worden opgegeven", - "Must wait at least 1 hour to rebroadcast": "Ten minste 1 uur opnieuw uitzenden moet wachten", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "verificatie %s gebruiken:", - "Use Custom Authentication:": "Gebruik aangepaste verificatie:", - "Custom Username": "Aangepaste gebruikersnaam", - "Custom Password": "Aangepaste wachtwoord", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Veld Gebruikersnaam mag niet leeg.", - "Password field cannot be empty.": "veld wachtwoord mag niet leeg.", - "Record from Line In?": "Opnemen vanaf de lijn In?", - "Rebroadcast?": "Rebroadcast?", - "days": "dagen", - "Link:": "link", - "Repeat Type:": "Herhaal Type:", - "weekly": "wekelijks", - "every 2 weeks": "elke 2 weken", - "every 3 weeks": "elke 3 weken", - "every 4 weeks": "elke 4 weken", - "monthly": "per maand", - "Select Days:": "Selecteer dagen:", - "Repeat By:": "Herhaal door:", - "day of the month": "dag van de maand", - "day of the week": "Dag van de week", - "Date End:": "datum einde", - "No End?": "Geen einde?", - "End date must be after start date": "Einddatum moet worden na begindatum ligt", - "Please select a repeat day": "Selecteer een Herhaal dag", - "Background Colour:": "achtergrond kleur", - "Text Colour:": "tekst kleur", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "naam", - "Untitled Show": "Zonder titel show", - "URL:": "URL", - "Genre:": "genre:", - "Description:": "Omschrijving:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' past niet de tijdnotatie 'UU:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Looptijd:", - "Timezone:": "tijdzone:", - "Repeats?": "herhaalt?", - "Cannot create show in the past": "kan niet aanmaken show in het verleden weergeven", - "Cannot modify start date/time of the show that is already started": "Start datum/tijd van de show die is al gestart wijzigen niet", - "End date/time cannot be in the past": "Eind datum/tijd mogen niet in het verleden", - "Cannot have duration < 0m": "Geen duur hebben < 0m", - "Cannot have duration 00h 00m": "Kan niet hebben duur 00h 00m", - "Cannot have duration greater than 24h": "Duur groter is dan 24h kan niet hebben", - "Cannot schedule overlapping shows": "kan Niet gepland overlappen shows", - "Search Users:": "zoek gebruikers", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "gebuikersnaam", - "Password:": "wachtwoord", - "Verify Password:": "Wachtwoord verifiëren:", - "Firstname:": "voornaam", - "Lastname:": "achternaam", - "Email:": "e-mail", - "Mobile Phone:": "mobiel nummer", - "Skype:": "skype", - "Jabber:": "Jabber:", - "User Type:": "Gebruiker Type :", - "Login name is not unique.": "Login naam is niet uniek.", - "Delete All Tracks in Library": "", - "Date Start:": "datum start", - "Title:": "Titel", - "Creator:": "Aangemaakt door", - "Album:": "Album", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jaar", - "Label:": "label", - "Composer:": "schrijver van een muziekwerk", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC nummer:", - "Website:": "Website:", - "Language:": "Taal:", - "Publish...": "", - "Start Time": "Begintijd", - "End Time": "Eindtijd", - "Interface Timezone:": "Interface tijdzone:", - "Station Name": "station naam", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast.", - "Default Crossfade Duration (s):": "Standaardduur Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "standaard fade in (s):", - "Default Fade Out (s):": "standaard fade uit (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "station tijdzone", - "Week Starts On": "Week start aan", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Inloggen", - "Password": "wachtwoord", - "Confirm new password": "Bevestig nieuw wachtwoord", - "Password confirmation does not match your password.": "Wachtwoord bevestiging komt niet overeen met uw wachtwoord.", - "Email": "", - "Username": "gebuikersnaam", - "Reset password": "Reset wachtwoord", - "Back": "", - "Now Playing": "Nu spelen", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "al mij shows", - "My Shows": "", - "Select criteria": "Selecteer criteria", - "Bit Rate (Kbps)": "Bit Rate (kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Uren", - "minutes": "minuten", - "items": "artikelen", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "status", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Genereren van inhoud van de afspeellijst en criteria opslaan", - "Shuffle playlist content": "Shuffle afspeellijst inhoud", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limiet kan niet leeg zijn of kleiner is dan 0", - "Limit cannot be more than 24 hrs": "Limiet mag niet meer dan 24 uur", - "The value should be an integer": "De waarde moet een geheel getal", - "500 is the max item limit value you can set": "500 is de grenswaarde max object die kunt u instellen", - "You must select Criteria and Modifier": "U moet Criteria en Modifier selecteren", - "'Length' should be in '00:00:00' format": "'Lengte' moet in ' 00:00:00 ' formaat", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "De waarde moet worden numerieke", - "The value should be less then 2147483648": "De waarde moet minder dan 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "De waarde moet kleiner zijn dan %s tekens", - "Value cannot be empty": "Waarde kan niet leeg", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artiest - Titel", - "Show - Artist - Title": "Show - Artiest - titel", - "Station name - Show name": "Station naam - Show naam", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Inschakelen Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Ingeschakeld", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "kanalen:", - "Server": "Server", - "Port": "poort", - "Mount Point": "Aankoppelpunt", - "Name": "naam", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "mappen importeren", - "Watched Folders:": "Gecontroleerde mappen:", - "Not a valid Directory": "Niet een geldige map", - "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam", - "'%value%' does not fit the date format '%format%'": "'%value%' past niet in de datumnotatie '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is minder dan %min% tekens lang", - "'%value%' is more than %max% characters long": "'%value%' is meer dan %max% karakters lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is niet tussen '%min%' en '%max%', inclusief", - "Passwords do not match": "Wachtwoorden komen niet overeen.", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "%s wachtwoord Reset", - "Cue in and cue out are null.": "Het Cue in en cue uit null zijn.", - "Can't set cue out to be greater than file length.": "Niet instellen cue uit groter zijn dan de bestandslengte van het", - "Can't set cue in to be larger than cue out.": "Niet instellen cue in groter dan cue uit.", - "Can't set cue out to be smaller than cue in.": "Niet instellen cue uit op kleiner zijn dan het cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Selecteer land", - "livestream": "", - "Cannot move items out of linked shows": "Items uit gekoppelde toont kan niet verplaatsen", - "The schedule you're viewing is out of date! (sched mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)", - "The schedule you're viewing is out of date! (instance mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)", - "The schedule you're viewing is out of date!": "Het schema dat u aan het bekijken bent is verouderd!", - "You are not allowed to schedule show %s.": "U zijn niet toegestaan om te plannen show %s.", - "You cannot add files to recording shows.": "U kunt bestanden toevoegen aan het opnemen van programma's.", - "The show %s is over and cannot be scheduled.": "De show %s is voorbij en kan niet worden gepland.", - "The show %s has been previously updated!": "De show %s heeft al eerder zijn bijgewerkt!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Niet gepland een afspeellijst die ontbrekende bestanden bevat.", - "A selected File does not exist!": "Een geselecteerd bestand bestaat niet!", - "Shows can have a max length of 24 hours.": "Shows kunnen hebben een maximale lengte van 24 uur.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen.", - "Rebroadcast of %s from %s": "Rebroadcast van %s van %s", - "Length needs to be greater than 0 minutes": "Lengte moet groter zijn dan 0 minuten", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL moet 512 tekens of minder", - "No MIME type found for webstream.": "Geen MIME-type gevonden voor webstream.", - "Webstream name cannot be empty": "Webstream naam mag niet leeg zijn", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Kon niet ontleden PLS afspeellijst", - "Could not parse M3U playlist": "Kon niet ontleden M3U playlist", - "Invalid webstream - This appears to be a file download.": "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden.", - "Unrecognized stream type: %s": "Niet herkende type stream: %s", - "Record file doesn't exist": "Record bestand bestaat niet", - "View Recorded File Metadata": "Weergave opgenomen bestand Metadata", - "Schedule Tracks": "Schema Tracks", - "Clear Show": "Wissen show", - "Cancel Show": "Annuleren show", - "Edit Instance": "Aanleg bewerken", - "Edit Show": "Bewerken van Show", - "Delete Instance": "Exemplaar verwijderen", - "Delete Instance and All Following": "Exemplaar verwijderen en alle volgende", - "Permission denied": "Toestemming geweigerd", - "Can't drag and drop repeating shows": "Kan niet slepen en neerzetten herhalende shows", - "Can't move a past show": "Een verleden Show verplaatsen niet", - "Can't move show into past": "Niet verplaatsen show in verleden", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet.", - "Show was deleted because recorded show does not exist!": "Toon is verwijderd omdat opgenomen programma niet bestaat!", - "Must wait 1 hour to rebroadcast.": "Moet wachten 1 uur opnieuw uitzenden..", - "Track": "track", - "Played": "Gespeeld", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Het jaar %s moet binnen het bereik van 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s dit is geen geldige datum", + "%s:%s:%s is not a valid time": "%s:%s:%s Dit is geen geldige tijd", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s.", + "Click the 'New Show' button and fill out the required fields.": "Klik op de knop 'Nieuwe Show' en vul de vereiste velden.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n%sCreate een niet-gekoppelde Toon nu%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "gebruikers", + "Track Types": "", + "Streams": "streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout geschiedenis", + "History Templates": "Geschiedenis sjablonen", + "Listener Stats": "luister status", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Aan de slag", + "User Manual": "Gebruikershandleiding", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "U bent niet toegestaan voor toegang tot deze bron.", + "You are not allowed to access this resource. ": "U bent niet toegestaan voor toegang tot deze bron.", + "File does not exist in %s": "Bestand bestaat niet in %s", + "Bad request. no 'mode' parameter passed.": "Slecht verzoek. geen 'mode' parameter doorgegeven.", + "Bad request. 'mode' parameter is invalid": "Slecht verzoek. 'mode' parameter is ongeldig", + "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", + "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", + "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Pagina niet gevonden", + "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", + "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", + "An internal application error has occurred.": "Een interne toepassingsfout opgetreden.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s niet gevonden", + "Something went wrong.": "Er ging iets mis.", + "Preview": "Voorbeeld", + "Add to Playlist": "Toevoegen aan afspeellijst", + "Add to Smart Block": "Toevoegen aan slimme blok", + "Delete": "Verwijderen", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Dubbele afspeellijst", + "Duplicate Smartblock": "", + "No action available": "Geen actie beschikbaar", + "You don't have permission to delete selected items.": "Je hebt geen toestemming om geselecteerde items te verwijderen", + "Could not delete file because it is scheduled in the future.": "Kan bestand niet verwijderen omdat het in de toekomst is gepland.", + "Could not delete file(s).": "Bestand(en) kan geen gegevens verwijderen.", + "Copy of %s": "Kopie van %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Opname", + "Master Stream": "Master Stream", + "Live Stream": "Live stream", + "Nothing Scheduled": "Niets gepland", + "Current Show:": "Huidige Show:", + "Current": "Huidige", + "You are running the latest version": "U werkt de meest recente versie", + "New version available: ": "Nieuwe versie beschikbaar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Toevoegen aan huidige afspeellijst", + "Add to current smart block": "Toevoegen aan huidigeslimme block", + "Adding 1 Item": "1 Item toevoegen", + "Adding %s Items": "%s Items toe te voegen", + "You can only add tracks to smart blocks.": "U kunt alleen nummers naar slimme blokken toevoegen.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten.", + "Please select a cursor position on timeline.": "Selecteer een cursorpositie op de tijdlijn.", + "You haven't added any tracks": "U hebt de nummers nog niet toegevoegd", + "You haven't added any playlists": "U heb niet alle afspeellijsten toegevoegd", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "U nog niet toegevoegd een slimme blokken", + "You haven't added any webstreams": "U hebt webstreams nog niet toegevoegd", + "Learn about tracks": "Informatie over nummers", + "Learn about playlists": "Meer informatie over afspeellijsten", + "Learn about podcasts": "", + "Learn about smart blocks": "Informatie over slimme blokken", + "Learn about webstreams": "Meer informatie over webstreams", + "Click 'New' to create one.": "Klik op 'Nieuw' te maken.", + "Add": "toevoegen", + "New": "", + "Edit": "Bewerken", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "verwijderen", + "Edit Metadata": "Metagegevens bewerken", + "Add to selected show": "Toevoegen aan geselecteerde Toon", + "Select": "Selecteer", + "Select this page": "Selecteer deze pagina", + "Deselect this page": "Hef de selectie van deze pagina", + "Deselect all": "Alle selecties opheffen", + "Are you sure you want to delete the selected item(s)?": "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?", + "Scheduled": "Gepland", + "Tracks": "track", + "Playlist": "Afspeellijsten", + "Title": "Titel", + "Creator": "Aangemaakt door", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Componist", + "Conductor": "Dirigent", + "Copyright": "Copyright:", + "Encoded By": "Encoded Bij", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "label", + "Language": "Taal", + "Last Modified": "Laatst Gewijzigd", + "Last Played": "Laatst gespeeld", + "Length": "Lengte", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Eigenaar", + "Replay Gain": "Herhalen Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track nummer", + "Uploaded": "Uploaded", + "Website": "Website:", + "Year": "Jaar", + "Loading...": "Bezig met laden...", + "All": "Alle", + "Files": "Bestanden", + "Playlists": "Afspeellijsten", + "Smart Blocks": "slimme blokken", + "Web Streams": "Web Streams", + "Unknown type: ": "Onbekend type", + "Are you sure you want to delete the selected item?": "Wilt u de geselecteerde gegevens werkelijk verwijderen?", + "Uploading in progress...": "Uploaden in vooruitgang...", + "Retrieving data from the server...": "Gegevens op te halen van de server...", + "Import": "", + "Imported?": "", + "View": "Weergeven", + "Error code: ": "foutcode", + "Error msg: ": "Fout msg:", + "Input must be a positive number": "Invoer moet een positief getal", + "Input must be a number": "Invoer moet een getal", + "Input must be in the format: yyyy-mm-dd": "Invoer moet worden in de indeling: jjjj-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Invoer moet worden in het formaat: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?", + "Open Media Builder": "Open Media opbouw", + "please put in a time '00:00:00 (.0)'": "Gelieve te zetten in een tijd '00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:", + "Dynamic block is not previewable": "Dynamische blok is niet previewable", + "Limit to: ": "Beperk tot:", + "Playlist saved": "Afspeellijst opgeslagen", + "Playlist shuffled": "Afspeellijst geschud", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken.", + "Listener Count on %s: %s": "Luisteraar rekenen op %s: %s", + "Remind me in 1 week": "Stuur me een herinnering in 1 week", + "Remind me never": "Herinner me nooit", + "Yes, help Airtime": "Ja, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Afbeelding moet een van jpg, jpeg, png of gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "slimme blok geschud", + "Smart block generated and criteria saved": "slimme blok gegenereerd en opgeslagen criteria", + "Smart block saved": "Smart blok opgeslagen", + "Processing...": "Wordt verwerkt...", + "Select modifier": "Selecteer modifier", + "contains": "bevat", + "does not contain": "bevat niet", + "is": "is", + "is not": "is niet gelijk aan", + "starts with": "Begint met", + "ends with": "Eindigt op", + "is greater than": "is groter dan", + "is less than": "is minder dan", + "is in the range": "in het gebied", + "Generate": "Genereren", + "Choose Storage Folder": "Kies opslagmap", + "Choose Folder to Watch": "Kies map voor bewaken", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!", + "Manage Media Folders": "Mediamappen beheren", + "Are you sure you want to remove the watched folder?": "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?", + "This path is currently not accessible.": "Dit pad is momenteel niet toegankelijk.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt.", + "Connected to the streaming server": "Aangesloten op de streaming server", + "The stream is disabled": "De stream is uitgeschakeld", + "Getting information from the server...": "Het verkrijgen van informatie van de server ...", + "Can not connect to the streaming server": "Kan geen verbinding maken met de streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken.", + "Warning: You cannot change this field while the show is currently playing": "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen", + "No result found": "Geen resultaat gevonden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken.", + "Specify custom authentication which will work only for this show.": "Geef aangepaste verificatie die alleen voor deze show werken zal.", + "The show instance doesn't exist anymore!": "De Toon-exemplaar bestaat niet meer!", + "Warning: Shows cannot be re-linked": "Waarschuwing: Shows kunnen niet opnieuw gekoppelde", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen.", + "Show": "Show", + "Show is empty": "Show Is leeg", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retreiving gegevens van de server...", + "This show has no scheduled content.": "Deze show heeft geen geplande inhoud.", + "This show is not completely filled with content.": "Deze show is niet volledig gevuld met inhoud.", + "January": "Januari", + "February": "Februari", + "March": "maart", + "April": "april", + "May": "mei", + "June": "juni", + "July": "juli", + "August": "augustus", + "September": "september", + "October": "oktober", + "November": "november", + "December": "december", + "Jan": "jan", + "Feb": "feb", + "Mar": "maa", + "Apr": "apr", + "Jun": "jun", + "Jul": "jul", + "Aug": "aug", + "Sep": "sep", + "Oct": "okt", + "Nov": "nov", + "Dec": "dec", + "Today": "vandaag", + "Day": "dag", + "Week": "week", + "Month": "maand", + "Sunday": "zondag", + "Monday": "maandag", + "Tuesday": "dinsdag", + "Wednesday": "woensdag", + "Thursday": "donderdag", + "Friday": "vrijdag", + "Saturday": "zaterdag", + "Sun": "zon", + "Mon": "ma", + "Tue": "di", + "Wed": "wo", + "Thu": "do", + "Fri": "vrij", + "Sat": "zat", + "Shows longer than their scheduled time will be cut off by a following show.": "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling.", + "Cancel Current Show?": "Annuleer Huidige Show?", + "Stop recording current show?": "Stop de opname huidige show?", + "Ok": "oke", + "Contents of Show": "Inhoud van Show", + "Remove all content?": "Alle inhoud verwijderen?", + "Delete selected item(s)?": "verwijderd geselecteerd object(en)?", + "Start": "Start", + "End": "einde", + "Duration": "Duur", + "Filtering out ": "Filteren op", + " of ": "of", + " records": "records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Infaden", + "Fade Out": "uitfaden", + "Show Empty": "Show leeg", + "Recording From Line In": "Opname van de Line In", + "Track preview": "Track Voorbeeld", + "Cannot schedule outside a show.": "Niet gepland buiten een show.", + "Moving 1 Item": "1 Item verplaatsen", + "Moving %s Items": "%s Items verplaatsen", + "Save": "opslaan", + "Cancel": "anuleren", + "Fade Editor": "Fade Bewerken", + "Cue Editor": "Cue Bewerken", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API", + "Select all": "Selecteer alles", + "Select none": "Niets selecteren", + "Trim overbooked shows": "Trim overboekte shows", + "Remove selected scheduled items": "Geselecteerde geplande items verwijderen", + "Jump to the current playing track": "Jump naar de huidige playing track", + "Jump to Current": "", + "Cancel current show": "Annuleren van de huidige show", + "Open library to add or remove content": "Open bibliotheek toevoegen of verwijderen van inhoud", + "Add / Remove Content": "Toevoegen / verwijderen van inhoud", + "in use": "In gebruik", + "Disk": "hardeschijf", + "Look in": "Zoeken in:", + "Open": "open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programmabeheer", + "Guest": "gast", + "Guests can do the following:": "Gasten kunnen het volgende doen:", + "View schedule": "Schema weergeven", + "View show content": "Weergave show content", + "DJs can do the following:": "DJ's kunnen het volgende doen:", + "Manage assigned show content": "Toegewezen Toon inhoud beheren", + "Import media files": "Mediabestanden importeren", + "Create playlists, smart blocks, and webstreams": "Maak afspeellijsten, slimme blokken en webstreams", + "Manage their own library content": "De inhoud van hun eigen bibliotheek beheren", + "Program Managers can do the following:": "", + "View and manage show content": "Bekijken en beheren van inhoud weergeven", + "Schedule shows": "Schema shows", + "Manage all library content": "Alle inhoud van de bibliotheek beheren", + "Admins can do the following:": "Beheerders kunnen het volgende doen:", + "Manage preferences": "Voorkeuren beheren", + "Manage users": "Gebruikers beheren", + "Manage watched folders": "Bewaakte mappen beheren", + "Send support feedback": "Ondersteuning feedback verzenden", + "View system status": "Bekijk systeem status", + "Access playout history": "Toegang playout geschiedenis", + "View listener stats": "Weergave luisteraar status", + "Show / hide columns": "Geef weer / verberg kolommen", + "Columns": "", + "From {from} to {to}": "Van {from} tot {to}", + "kbps": "kbps", + "yyyy-mm-dd": "jjjj-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Zo", + "Mo": "Ma", + "Tu": "Di", + "We": "Wo", + "Th": "Do", + "Fr": "Vr", + "Sa": "Za", + "Close": "Sluiten", + "Hour": "Uur", + "Minute": "Minuut", + "Done": "Klaar", + "Select files": "Selecteer bestanden", + "Add files to the upload queue and click the start button.": "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop", + "Filename": "", + "Size": "", + "Add Files": "Bestanden toevoegen", + "Stop Upload": "Stop upload", + "Start upload": "Begin upload", + "Start Upload": "", + "Add files": "Bestanden toevoegen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Geüploade %d/%d bestanden", + "N/A": "N/B", + "Drag files here.": "Sleep bestanden hierheen.", + "File extension error.": "Bestandsextensie fout", + "File size error.": "Bestandsgrote fout.", + "File count error.": "Graaf bestandsfout.", + "Init error.": "Init fout.", + "HTTP Error.": "HTTP fout.", + "Security error.": "Beveiligingsfout.", + "Generic error.": "Generieke fout.", + "IO error.": "IO fout.", + "File: %s": "Bestand: %s", + "%d files queued": "%d bestanden in de wachtrij", + "File: %f, size: %s, max file size: %m": "File: %f, grootte: %s, max bestandsgrootte: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL zou verkeerd kunnen zijn of bestaat niet", + "Error: File too large: ": "Fout: Bestand is te groot", + "Error: Invalid file extension: ": "Fout: Niet toegestane bestandsextensie ", + "Set Default": "Standaard instellen", + "Create Entry": "Aangemaakt op:", + "Edit History Record": "Geschiedenis Record bewerken", + "No Show": "geen show", + "Copied %s row%s to the clipboard": "Rij gekopieerde %s %s naar het Klembord", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent.", + "New Show": "Nieuw Show", + "New Log Entry": "Nieuwe logboekvermelding", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschrijving", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ingeschakeld", + "Disabled": "Uitgeschakeld", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Voer uw gebruikersnaam en wachtwoord.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd.", + "Wrong username or password provided. Please try again.": "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw.", + "You are viewing an older version of %s": "U bekijkt een oudere versie van %s", + "You cannot add tracks to dynamic blocks.": "U kunt nummers toevoegen aan dynamische blokken.", + "You don't have permission to delete selected %s(s).": "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)", + "You can only add tracks to smart block.": "U kunt alleen nummers toevoegen aan smart blok.", + "Untitled Playlist": "Naamloze afspeellijst", + "Untitled Smart Block": "Naamloze slimme block", + "Unknown Playlist": "Onbekende afspeellijst", + "Preferences updated.": "Voorkeuren bijgewerkt.", + "Stream Setting Updated.": "Stream vaststelling van bijgewerkte.", + "path should be specified": "pad moet worden opgegeven", + "Problem with Liquidsoap...": "Probleem met Liquidsoap...", + "Request method not accepted": "Verzoek methode niet geaccepteerd", + "Rebroadcast of show %s from %s at %s": "Rebroadcast van show %s van %s in %s", + "Select cursor": "Selecteer cursor", + "Remove cursor": "Cursor verwijderen", + "show does not exist": "show bestaat niet", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "gebruiker Succesvol Toegevoegd", + "User updated successfully!": "gebruiker Succesvol bijgewerkt", + "Settings updated successfully!": "Instellingen met succes bijgewerkt!", + "Untitled Webstream": "Naamloze Webstream", + "Webstream saved.": "Webstream opgeslagen.", + "Invalid form values.": "Ongeldige formulierwaarden.", + "Invalid character entered": "Ongeldig teken ingevoerd", + "Day must be specified": "Dag moet worden opgegeven", + "Time must be specified": "Tijd moet worden opgegeven", + "Must wait at least 1 hour to rebroadcast": "Ten minste 1 uur opnieuw uitzenden moet wachten", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "verificatie %s gebruiken:", + "Use Custom Authentication:": "Gebruik aangepaste verificatie:", + "Custom Username": "Aangepaste gebruikersnaam", + "Custom Password": "Aangepaste wachtwoord", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Veld Gebruikersnaam mag niet leeg.", + "Password field cannot be empty.": "veld wachtwoord mag niet leeg.", + "Record from Line In?": "Opnemen vanaf de lijn In?", + "Rebroadcast?": "Rebroadcast?", + "days": "dagen", + "Link:": "link", + "Repeat Type:": "Herhaal Type:", + "weekly": "wekelijks", + "every 2 weeks": "elke 2 weken", + "every 3 weeks": "elke 3 weken", + "every 4 weeks": "elke 4 weken", + "monthly": "per maand", + "Select Days:": "Selecteer dagen:", + "Repeat By:": "Herhaal door:", + "day of the month": "dag van de maand", + "day of the week": "Dag van de week", + "Date End:": "datum einde", + "No End?": "Geen einde?", + "End date must be after start date": "Einddatum moet worden na begindatum ligt", + "Please select a repeat day": "Selecteer een Herhaal dag", + "Background Colour:": "achtergrond kleur", + "Text Colour:": "tekst kleur", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "naam", + "Untitled Show": "Zonder titel show", + "URL:": "URL", + "Genre:": "genre:", + "Description:": "Omschrijving:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' past niet de tijdnotatie 'UU:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Looptijd:", + "Timezone:": "tijdzone:", + "Repeats?": "herhaalt?", + "Cannot create show in the past": "kan niet aanmaken show in het verleden weergeven", + "Cannot modify start date/time of the show that is already started": "Start datum/tijd van de show die is al gestart wijzigen niet", + "End date/time cannot be in the past": "Eind datum/tijd mogen niet in het verleden", + "Cannot have duration < 0m": "Geen duur hebben < 0m", + "Cannot have duration 00h 00m": "Kan niet hebben duur 00h 00m", + "Cannot have duration greater than 24h": "Duur groter is dan 24h kan niet hebben", + "Cannot schedule overlapping shows": "kan Niet gepland overlappen shows", + "Search Users:": "zoek gebruikers", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "gebuikersnaam", + "Password:": "wachtwoord", + "Verify Password:": "Wachtwoord verifiëren:", + "Firstname:": "voornaam", + "Lastname:": "achternaam", + "Email:": "e-mail", + "Mobile Phone:": "mobiel nummer", + "Skype:": "skype", + "Jabber:": "Jabber:", + "User Type:": "Gebruiker Type :", + "Login name is not unique.": "Login naam is niet uniek.", + "Delete All Tracks in Library": "", + "Date Start:": "datum start", + "Title:": "Titel", + "Creator:": "Aangemaakt door", + "Album:": "Album", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jaar", + "Label:": "label", + "Composer:": "schrijver van een muziekwerk", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC nummer:", + "Website:": "Website:", + "Language:": "Taal:", + "Publish...": "", + "Start Time": "Begintijd", + "End Time": "Eindtijd", + "Interface Timezone:": "Interface tijdzone:", + "Station Name": "station naam", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast.", + "Default Crossfade Duration (s):": "Standaardduur Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "standaard fade in (s):", + "Default Fade Out (s):": "standaard fade uit (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "station tijdzone", + "Week Starts On": "Week start aan", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Inloggen", + "Password": "wachtwoord", + "Confirm new password": "Bevestig nieuw wachtwoord", + "Password confirmation does not match your password.": "Wachtwoord bevestiging komt niet overeen met uw wachtwoord.", + "Email": "", + "Username": "gebuikersnaam", + "Reset password": "Reset wachtwoord", + "Back": "", + "Now Playing": "Nu spelen", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "al mij shows", + "My Shows": "", + "Select criteria": "Selecteer criteria", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Uren", + "minutes": "minuten", + "items": "artikelen", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "status", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genereren van inhoud van de afspeellijst en criteria opslaan", + "Shuffle playlist content": "Shuffle afspeellijst inhoud", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limiet kan niet leeg zijn of kleiner is dan 0", + "Limit cannot be more than 24 hrs": "Limiet mag niet meer dan 24 uur", + "The value should be an integer": "De waarde moet een geheel getal", + "500 is the max item limit value you can set": "500 is de grenswaarde max object die kunt u instellen", + "You must select Criteria and Modifier": "U moet Criteria en Modifier selecteren", + "'Length' should be in '00:00:00' format": "'Lengte' moet in ' 00:00:00 ' formaat", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "De waarde moet worden numerieke", + "The value should be less then 2147483648": "De waarde moet minder dan 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "De waarde moet kleiner zijn dan %s tekens", + "Value cannot be empty": "Waarde kan niet leeg", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artiest - Titel", + "Show - Artist - Title": "Show - Artiest - titel", + "Station name - Show name": "Station naam - Show naam", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Inschakelen Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ingeschakeld", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "kanalen:", + "Server": "Server", + "Port": "poort", + "Mount Point": "Aankoppelpunt", + "Name": "naam", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "mappen importeren", + "Watched Folders:": "Gecontroleerde mappen:", + "Not a valid Directory": "Niet een geldige map", + "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam", + "'%value%' does not fit the date format '%format%'": "'%value%' past niet in de datumnotatie '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is minder dan %min% tekens lang", + "'%value%' is more than %max% characters long": "'%value%' is meer dan %max% karakters lang", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is niet tussen '%min%' en '%max%', inclusief", + "Passwords do not match": "Wachtwoorden komen niet overeen.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s wachtwoord Reset", + "Cue in and cue out are null.": "Het Cue in en cue uit null zijn.", + "Can't set cue out to be greater than file length.": "Niet instellen cue uit groter zijn dan de bestandslengte van het", + "Can't set cue in to be larger than cue out.": "Niet instellen cue in groter dan cue uit.", + "Can't set cue out to be smaller than cue in.": "Niet instellen cue uit op kleiner zijn dan het cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecteer land", + "livestream": "", + "Cannot move items out of linked shows": "Items uit gekoppelde toont kan niet verplaatsen", + "The schedule you're viewing is out of date! (sched mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)", + "The schedule you're viewing is out of date! (instance mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)", + "The schedule you're viewing is out of date!": "Het schema dat u aan het bekijken bent is verouderd!", + "You are not allowed to schedule show %s.": "U zijn niet toegestaan om te plannen show %s.", + "You cannot add files to recording shows.": "U kunt bestanden toevoegen aan het opnemen van programma's.", + "The show %s is over and cannot be scheduled.": "De show %s is voorbij en kan niet worden gepland.", + "The show %s has been previously updated!": "De show %s heeft al eerder zijn bijgewerkt!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Niet gepland een afspeellijst die ontbrekende bestanden bevat.", + "A selected File does not exist!": "Een geselecteerd bestand bestaat niet!", + "Shows can have a max length of 24 hours.": "Shows kunnen hebben een maximale lengte van 24 uur.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen.", + "Rebroadcast of %s from %s": "Rebroadcast van %s van %s", + "Length needs to be greater than 0 minutes": "Lengte moet groter zijn dan 0 minuten", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL moet 512 tekens of minder", + "No MIME type found for webstream.": "Geen MIME-type gevonden voor webstream.", + "Webstream name cannot be empty": "Webstream naam mag niet leeg zijn", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Kon niet ontleden PLS afspeellijst", + "Could not parse M3U playlist": "Kon niet ontleden M3U playlist", + "Invalid webstream - This appears to be a file download.": "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden.", + "Unrecognized stream type: %s": "Niet herkende type stream: %s", + "Record file doesn't exist": "Record bestand bestaat niet", + "View Recorded File Metadata": "Weergave opgenomen bestand Metadata", + "Schedule Tracks": "Schema Tracks", + "Clear Show": "Wissen show", + "Cancel Show": "Annuleren show", + "Edit Instance": "Aanleg bewerken", + "Edit Show": "Bewerken van Show", + "Delete Instance": "Exemplaar verwijderen", + "Delete Instance and All Following": "Exemplaar verwijderen en alle volgende", + "Permission denied": "Toestemming geweigerd", + "Can't drag and drop repeating shows": "Kan niet slepen en neerzetten herhalende shows", + "Can't move a past show": "Een verleden Show verplaatsen niet", + "Can't move show into past": "Niet verplaatsen show in verleden", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet.", + "Show was deleted because recorded show does not exist!": "Toon is verwijderd omdat opgenomen programma niet bestaat!", + "Must wait 1 hour to rebroadcast.": "Moet wachten 1 uur opnieuw uitzenden..", + "Track": "track", + "Played": "Gespeeld", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/pl_PL.json b/webapp/src/locale/pl_PL.json index fb284f9bd3..390bfa45c8 100644 --- a/webapp/src/locale/pl_PL.json +++ b/webapp/src/locale/pl_PL.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Rok %s musi być w przedziale od 1753 do 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s nie jest poprawną datą", - "%s:%s:%s is not a valid time": "%s:%s:%s nie jest prawidłowym czasem", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalendarz", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Użytkownicy", - "Track Types": "", - "Streams": "Strumienie", - "Status": "Status", - "Analytics": "", - "Playout History": "Historia odtwarzania", - "History Templates": "", - "Listener Stats": "Statystyki słuchaczy", - "Show Listener Stats": "", - "Help": "Pomoc", - "Getting Started": "Jak zacząć", - "User Manual": "Instrukcja użytkowania", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Nie masz dostępu do tej lokalizacji", - "You are not allowed to access this resource. ": "Nie masz dostępu do tej lokalizacji.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Złe zapytanie. Nie zaakceprtowano parametru 'mode'", - "Bad request. 'mode' parameter is invalid": "Złe zapytanie. Parametr 'mode' jest nieprawidłowy", - "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", - "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", - "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "nie znaleziono %s", - "Something went wrong.": "Wystapił błąd", - "Preview": "Podgląd", - "Add to Playlist": "Dodaj do listy odtwarzania", - "Add to Smart Block": "Dodaj do smartblocku", - "Delete": "Usuń", - "Edit...": "", - "Download": "Pobierz", - "Duplicate Playlist": "Skopiuj listę odtwarzania", - "Duplicate Smartblock": "", - "No action available": "Brak dostepnych czynności", - "You don't have permission to delete selected items.": "Nie masz uprawnień do usunięcia wybranych elementów", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopia %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie.", - "Audio Player": "Odtwrzacz ", - "Something went wrong!": "", - "Recording:": "Nagrywanie:", - "Master Stream": "Strumień Nadrzędny", - "Live Stream": "Transmisja na żywo", - "Nothing Scheduled": "Nic nie zaplanowano", - "Current Show:": "Aktualna audycja:", - "Current": "Aktualny", - "You are running the latest version": "Używasz najnowszej wersji", - "New version available: ": "Dostępna jest nowa wersja:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Dodaj do bieżącej listy odtwarzania", - "Add to current smart block": "Dodaj do bieżącego smart blocku", - "Adding 1 Item": "Dodawanie 1 elementu", - "Adding %s Items": "Dodawanie %s elementów", - "You can only add tracks to smart blocks.": "do smart blocków mozna dodawać tylko utwory.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy", - "Please select a cursor position on timeline.": "Proszę wybrać pozycję kursora na osi czasu.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Dodaj", - "New": "", - "Edit": "Edytuj", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Usuń", - "Edit Metadata": "Edytuj Metadane.", - "Add to selected show": "Dodaj do wybranej audycji", - "Select": "Zaznacz", - "Select this page": "Zaznacz tę stronę", - "Deselect this page": "Odznacz tę stronę", - "Deselect all": "Odznacz wszystko", - "Are you sure you want to delete the selected item(s)?": "Czy na pewno chcesz usunąć wybrane elementy?", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Tytuł", - "Creator": "Twórca", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Kompozytor", - "Conductor": "Dyrygent/Pod batutą", - "Copyright": "Prawa autorskie", - "Encoded By": "Kodowane przez", - "Genre": "Gatunek", - "ISRC": "ISRC", - "Label": "Wydawnictwo", - "Language": "Język", - "Last Modified": "Ostatnio zmodyfikowany", - "Last Played": "Ostatnio odtwarzany", - "Length": "Długość", - "Mime": "Podobne do", - "Mood": "Nastrój", - "Owner": "Właściciel", - "Replay Gain": "Normalizacja głośności (Replay Gain)", - "Sample Rate": "Wartość próbkowania", - "Track Number": "Numer utworu", - "Uploaded": "Przesłano", - "Website": "Strona internetowa", - "Year": "Rok", - "Loading...": "Ładowanie", - "All": "Wszystko", - "Files": "Pliki", - "Playlists": "Listy odtwarzania", - "Smart Blocks": "Smart Blocki", - "Web Streams": "Web Stream", - "Unknown type: ": "Nieznany typ:", - "Are you sure you want to delete the selected item?": "Czy na pewno chcesz usunąć wybrany element?", - "Uploading in progress...": "Wysyłanie w toku...", - "Retrieving data from the server...": "Pobieranie danych z serwera...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Kod błędu:", - "Error msg: ": "Komunikat błędu:", - "Input must be a positive number": "Podana wartość musi być liczbą dodatnią", - "Input must be a number": "Podana wartość musi być liczbą", - "Input must be in the format: yyyy-mm-dd": "Podana wartość musi mieć format yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Podana wartość musi mieć format hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "Wprowadź czas w formacie: '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:", - "Dynamic block is not previewable": "Podgląd bloku dynamicznego nie jest możliwy", - "Limit to: ": "Ograniczenie do:", - "Playlist saved": "Lista odtwarzania została zapisana", - "Playlist shuffled": "Playlista została przemieszana", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\".", - "Listener Count on %s: %s": "Licznik słuchaczy na %s: %s", - "Remind me in 1 week": "Przypomnij mi za 1 tydzień", - "Remind me never": "Nie przypominaj nigdy", - "Yes, help Airtime": "Tak, wspieraj Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Obraz musi mieć format jpg, jpeg, png lub gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart blocku został przemieszany", - "Smart block generated and criteria saved": "Utworzono smartblock i zapisano kryteria", - "Smart block saved": "Smart block został zapisany", - "Processing...": "Przetwarzanie...", - "Select modifier": "Wybierz modyfikator", - "contains": "zawiera", - "does not contain": "nie zawiera", - "is": "to", - "is not": "to nie", - "starts with": "zaczyna się od", - "ends with": "kończy się", - "is greater than": "jest większa niż", - "is less than": "jest mniejsza niż", - "is in the range": "mieści się w zakresie", - "Generate": "Utwórz", - "Choose Storage Folder": "Wybierz ścieżkę do katalogu importu", - "Choose Folder to Watch": "Wybierz katalog do obserwacji", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\nWszystkie pliki z biblioteki Airtime zostaną usunięte.", - "Manage Media Folders": "Zarządzaj folderami mediów", - "Are you sure you want to remove the watched folder?": "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?", - "This path is currently not accessible.": "Ściezka jest obecnie niedostepna.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Połączono z serwerem streamingu", - "The stream is disabled": "Strumień jest odłączony", - "Getting information from the server...": "Pobieranie informacji z serwera...", - "Can not connect to the streaming server": "Nie można połączyć z serwerem streamującym", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu.", - "Check this box to automatically switch on Master/Show source upon source connection.": "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nie znaleziono wyników", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć.", - "Specify custom authentication which will work only for this show.": "Ustal własne uwierzytelnienie tylko dla tej audycji.", - "The show instance doesn't exist anymore!": "Instancja audycji już nie istnieje.", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Audycja", - "Show is empty": "Audycja jest pusta", - "1m": "1 min", - "5m": "5 min", - "10m": "10 min", - "15m": "15 min", - "30m": "30 min", - "60m": "60 min", - "Retreiving data from the server...": "Odbieranie danych z serwera", - "This show has no scheduled content.": "Ta audycja nie ma zawartości", - "This show is not completely filled with content.": "Brak pełnej zawartości tej audycji.", - "January": "Styczeń", - "February": "Luty", - "March": "Marzec", - "April": "Kwiecień", - "May": "Maj", - "June": "Czerwiec", - "July": "Lipiec", - "August": "Sierpień", - "September": "Wrzesień", - "October": "Październik", - "November": "Listopad", - "December": "Grudzień", - "Jan": "Sty", - "Feb": "Lut", - "Mar": "Mar", - "Apr": "Kwi", - "Jun": "Cze", - "Jul": "Lip", - "Aug": "Sie", - "Sep": "Wrz", - "Oct": "Paź", - "Nov": "Lis", - "Dec": "Gru", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Niedziela", - "Monday": "Poniedziałek", - "Tuesday": "Wtorek", - "Wednesday": "Środa", - "Thursday": "Czwartek", - "Friday": "Piątek", - "Saturday": "Sobota", - "Sun": "Nie", - "Mon": "Pon", - "Tue": "Wt", - "Wed": "Śr", - "Thu": "Czw", - "Fri": "Pt", - "Sat": "Sob", - "Shows longer than their scheduled time will be cut off by a following show.": "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne .", - "Cancel Current Show?": "Skasować obecną audycję?", - "Stop recording current show?": "Przerwać nagrywanie aktualnej audycji?", - "Ok": "Ok", - "Contents of Show": "Zawartośc audycji", - "Remove all content?": "Usunąć całą zawartość?", - "Delete selected item(s)?": "Skasować wybrane elementy?", - "Start": "Rozpocznij", - "End": "Zakończ", - "Duration": "Czas trwania", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue out", - "Fade In": "Zgłaśnianie [Fade In]", - "Fade Out": "Wyciszanie [Fade out]", - "Show Empty": "Audycja jest pusta", - "Recording From Line In": "Nagrywaanie z wejścia liniowego", - "Track preview": "Podgląd utworu", - "Cannot schedule outside a show.": "Nie ma możliwości planowania poza audycją.", - "Moving 1 Item": "Przenoszenie 1 elementu", - "Moving %s Items": "Przenoszenie %s elementów", - "Save": "Zapisz", - "Cancel": "Anuluj", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Zaznacz wszystko", - "Select none": "Odznacz wszystkie", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Usuń wybrane elementy", - "Jump to the current playing track": "Przejdź do obecnie odtwarzanej ściezki", - "Jump to Current": "", - "Cancel current show": "Skasuj obecną audycję", - "Open library to add or remove content": "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości", - "Add / Remove Content": "Dodaj/usuń zawartość", - "in use": "W użyciu", - "Disk": "Dysk", - "Look in": "Sprawdź", - "Open": "Otwórz", - "Admin": "Administrator", - "DJ": "Prowadzący", - "Program Manager": "Menedżer programowy", - "Guest": "Gość", - "Guests can do the following:": "Goście mają mozliwość:", - "View schedule": "Przeglądanie harmonogramu", - "View show content": "Przeglądanie zawartości audycji", - "DJs can do the following:": "Prowadzący ma możliwość:", - "Manage assigned show content": "Zarządzać przypisaną sobie zawartością audycji", - "Import media files": "Importować pliki mediów", - "Create playlists, smart blocks, and webstreams": "Tworzyć playlisty, smart blocki i webstreamy", - "Manage their own library content": "Zarządzać zawartością własnej biblioteki", - "Program Managers can do the following:": "", - "View and manage show content": "Przeglądać i zarządzać zawartością audycji", - "Schedule shows": "Planować audycję", - "Manage all library content": "Zarządzać całą zawartością biblioteki", - "Admins can do the following:": "Administrator ma mozliwość:", - "Manage preferences": "Zarządzać preferencjami", - "Manage users": "Zarządzać użytkownikami", - "Manage watched folders": "Zarządzać przeglądanymi katalogami", - "Send support feedback": "Wyślij informację zwrotną", - "View system status": "Sprawdzać status systemu", - "Access playout history": "Przeglądać historię odtworzeń", - "View listener stats": "Sprawdzać statystyki słuchaczy", - "Show / hide columns": "Pokaż/ukryj kolumny", - "Columns": "", - "From {from} to {to}": "Od {from} do {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Nd", - "Mo": "Pn", - "Tu": "Wt", - "We": "Śr", - "Th": "Cz", - "Fr": "Pt", - "Sa": "So", - "Close": "Zamknij", - "Hour": "Godzina", - "Minute": "Minuta", - "Done": "Gotowe", - "Select files": "Wybierz pliki", - "Add files to the upload queue and click the start button.": "Dodaj pliki do kolejki i wciśnij \"start\"", - "Filename": "", - "Size": "", - "Add Files": "Dodaj pliki", - "Stop Upload": "Zatrzymaj przesyłanie", - "Start upload": "Rozpocznij przesyłanie", - "Start Upload": "", - "Add files": "Dodaj pliki", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Dodano pliki %d%d", - "N/A": "Nie dotyczy", - "Drag files here.": "Przeciągnij pliki tutaj.", - "File extension error.": "Błąd rozszerzenia pliku.", - "File size error.": "Błąd rozmiaru pliku.", - "File count error.": "Błąd liczenia plików", - "Init error.": "Błąd inicjalizacji", - "HTTP Error.": "Błąd HTTP.", - "Security error.": "Błąd zabezpieczeń.", - "Generic error.": "Błąd ogólny.", - "IO error.": "Błąd I/O", - "File: %s": "Plik: %s", - "%d files queued": "%d plików oczekujących", - "File: %f, size: %s, max file size: %m": "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m", - "Upload URL might be wrong or doesn't exist": "URL nie istnieje bądź jest niewłaściwy", - "Error: File too large: ": "Błąd: plik jest za duży:", - "Error: Invalid file extension: ": "Błąd: nieprawidłowe rozszerzenie pliku:", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "Skopiowano %srow%s do schowka", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Opis", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Włączone", - "Disabled": "Wyłączone", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie.", - "You are viewing an older version of %s": "Przeglądasz starszą wersję %s", - "You cannot add tracks to dynamic blocks.": "Nie można dodać ścieżek do bloków dynamicznych", - "You don't have permission to delete selected %s(s).": "Nie masz pozwolenia na usunięcie wybranych %s(s)", - "You can only add tracks to smart block.": "Utwory mogą być dodane tylko do smartblocku", - "Untitled Playlist": "Lista odtwarzania bez tytułu", - "Untitled Smart Block": "Smartblock bez tytułu", - "Unknown Playlist": "Nieznana playlista", - "Preferences updated.": "Zaktualizowano preferencje.", - "Stream Setting Updated.": "Zaktualizowano ustawienia strumienia", - "path should be specified": "należy okreslić ścieżkę", - "Problem with Liquidsoap...": "Problem z Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Retransmisja audycji %s z %s o %s", - "Select cursor": "Wybierz kursor", - "Remove cursor": "Usuń kursor", - "show does not exist": "audycja nie istnieje", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Użytkownik został dodany poprawnie!", - "User updated successfully!": "Użytkownik został poprawnie zaktualizowany!", - "Settings updated successfully!": "Ustawienia zostały poprawnie zaktualizowane!", - "Untitled Webstream": "Webstream bez nazwy", - "Webstream saved.": "Zapisano webstream", - "Invalid form values.": "Nieprawidłowe wartości formularzy", - "Invalid character entered": "Wprowadzony znak jest nieprawidłowy", - "Day must be specified": "Należy określić dzień", - "Time must be specified": "Należy określić czas", - "Must wait at least 1 hour to rebroadcast": "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Zastosuj własne uwierzytelnienie:", - "Custom Username": "Nazwa użytkownika", - "Custom Password": "Hasło", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Pole nazwy użytkownika nie może być puste.", - "Password field cannot be empty.": "Pole hasła nie może być puste.", - "Record from Line In?": "Nagrywać z wejścia liniowego?", - "Rebroadcast?": "Odtwarzać ponownie?", - "days": "dni", - "Link:": "", - "Repeat Type:": "Typ powtarzania:", - "weekly": "tygodniowo", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "miesięcznie", - "Select Days:": "Wybierz dni:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data zakończenia:", - "No End?": "Bez czasu końcowego?", - "End date must be after start date": "Data końcowa musi występować po dacie początkowej", - "Please select a repeat day": "", - "Background Colour:": "Kolor tła:", - "Text Colour:": "Kolor tekstu:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nazwa:", - "Untitled Show": "Audycja bez nazwy", - "URL:": "Adres URL", - "Genre:": "Rodzaj:", - "Description:": "Opis:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Czas trwania:", - "Timezone:": "Strefa czasowa:", - "Repeats?": "Powtarzanie?", - "Cannot create show in the past": "Nie można utworzyć audycji w przeszłości", - "Cannot modify start date/time of the show that is already started": "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła", - "End date/time cannot be in the past": "Data lub czas zakończenia nie może być z przeszłości.", - "Cannot have duration < 0m": "Czas trwania nie może być mniejszy niż 0m", - "Cannot have duration 00h 00m": "Czas trwania nie może wynosić 00h 00m", - "Cannot have duration greater than 24h": "Czas trwania nie może być dłuższy niż 24h", - "Cannot schedule overlapping shows": "Nie można planować nakładających się audycji", - "Search Users:": "Szukaj Użytkowników:", - "DJs:": "Prowadzący:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Nazwa użytkownika:", - "Password:": "Hasło:", - "Verify Password:": "Potwierdź hasło:", - "Firstname:": "Imię:", - "Lastname:": "Nazwisko:", - "Email:": "Email:", - "Mobile Phone:": "Telefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Typ użytkownika:", - "Login name is not unique.": "Nazwa użytkownika musi być unikalna.", - "Delete All Tracks in Library": "", - "Date Start:": "Data rozpoczęcia:", - "Title:": "Tytuł:", - "Creator:": "Autor:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Rok:", - "Label:": "Wydawnictwo:", - "Composer:": "Kompozytor:", - "Conductor:": "Dyrygent/Pod batutą:", - "Mood:": "Nastrój:", - "BPM:": "BPM:", - "Copyright:": "Prawa autorskie:", - "ISRC Number:": "Numer ISRC:", - "Website:": "Strona internetowa:", - "Language:": "Język:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nazwa stacji", - "Station Description": "", - "Station Logo:": "Logo stacji:", - "Note: Anything larger than 600x600 will be resized.": "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "Tydzień zaczynaj od", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Zaloguj", - "Password": "Hasło", - "Confirm new password": "Potwierdź nowe hasło", - "Password confirmation does not match your password.": "Hasła muszą się zgadzać.", - "Email": "", - "Username": "Nazwa użytkownika", - "Reset password": "Resetuj hasło", - "Back": "", - "Now Playing": "Aktualnie odtwarzane", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Wszystkie moje audycje:", - "My Shows": "", - "Select criteria": "Wybierz kryteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Częstotliwość próbkowania (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "godzin(y)", - "minutes": "minut(y)", - "items": "elementy", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamiczny", - "Static": "Statyczny", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Tworzenie zawartości listy odtwarzania i zapisz kryteria", - "Shuffle playlist content": "Losowa kolejność odtwarzania", - "Shuffle": "Przemieszaj", - "Limit cannot be empty or smaller than 0": "Limit nie może być pusty oraz mniejszy od 0", - "Limit cannot be more than 24 hrs": "Limit nie może być większy niż 24 godziny", - "The value should be an integer": "Wartość powinna być liczbą całkowitą", - "500 is the max item limit value you can set": "Maksymalna liczba elementów do ustawienia to 500", - "You must select Criteria and Modifier": "Należy wybrać kryteria i modyfikator", - "'Length' should be in '00:00:00' format": "Długość powinna być wprowadzona w formacie '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Wartość musi być liczbą", - "The value should be less then 2147483648": "Wartość powinna być mniejsza niż 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Wartość powinna posiadać mniej niż %s znaków", - "Value cannot be empty": "Wartość nie może być pusta", - "Stream Label:": "Nazwa strumienia:", - "Artist - Title": "Artysta - Tytuł", - "Show - Artist - Title": "Audycja - Artysta -Tytuł", - "Station name - Show name": "Nazwa stacji - Nazwa audycji", - "Off Air Metadata": "Metadane Off Air", - "Enable Replay Gain": "Włącz normalizację głośności (Replay Gain)", - "Replay Gain Modifier": "Modyfikator normalizacji głośności", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Włączony:", - "Mobile:": "", - "Stream Type:": "Typ strumienia:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Typ usługi:", - "Channels:": "Kanały:", - "Server": "Serwer", - "Port": "Port", - "Mount Point": "Punkt montowania", - "Name": "Nazwa", - "URL": "adres URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Katalog importu:", - "Watched Folders:": "Katalogi obserwowane:", - "Not a valid Directory": "Nieprawidłowy katalog", - "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' nie pasuje do formatu daty '%format%'", - "'%value%' is less than %min% characters long": "'%value%' zawiera mniej niż %min% znaków", - "'%value%' is more than %max% characters long": "'%value%' zawiera więcej niż %max% znaków", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'", - "Passwords do not match": "Hasła muszą się zgadzać", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue-in i cue-out mają wartość zerową.", - "Can't set cue out to be greater than file length.": "Wartość cue-out nie może być większa niż długość pliku.", - "Can't set cue in to be larger than cue out.": "Wartość cue-in nie może być większa niż cue-out.", - "Can't set cue out to be smaller than cue in.": "Wartość cue-out nie może być mniejsza od cue-in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Wybierz kraj", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)", - "The schedule you're viewing is out of date! (instance mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)", - "The schedule you're viewing is out of date!": "Harmonogram, który przeglądasz jest nieaktualny!", - "You are not allowed to schedule show %s.": "Nie posiadasz uprawnień, aby zaplanować audycję %s.", - "You cannot add files to recording shows.": "Nie można dodawać plików do nagrywanych audycji.", - "The show %s is over and cannot be scheduled.": "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana.", - "The show %s has been previously updated!": "Audycja %s została zaktualizowana wcześniej!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Wybrany plik nie istnieje!", - "Shows can have a max length of 24 hours.": "Audycje mogą mieć maksymalną długość 24 godzin.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nie można planować audycji nakładających się na siebie.\nUwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń.", - "Rebroadcast of %s from %s": "Retransmisja z %s do %s", - "Length needs to be greater than 0 minutes": "Długość musi być większa niż 0 minut", - "Length should be of form \"00h 00m\"": "Długość powinna mieć postać \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL powinien mieć postać \"https://example.org\"", - "URL should be 512 characters or less": "URL powinien mieć 512 znaków lub mniej", - "No MIME type found for webstream.": "Nie znaleziono typu MIME dla webstreamu", - "Webstream name cannot be empty": "Nazwa webstreamu nie może być pusta", - "Could not parse XSPF playlist": "Nie można przeanalizować playlisty XSPF", - "Could not parse PLS playlist": "Nie można przeanalizować playlisty PLS", - "Could not parse M3U playlist": "Nie można przeanalizować playlisty M3U", - "Invalid webstream - This appears to be a file download.": "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku.", - "Unrecognized stream type: %s": "Nie rozpoznano typu strumienia: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Przeglądaj metadane nagrania", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edytuj audycję", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji.", - "Can't move a past show": "Nie można przenieść audycji archiwalnej", - "Can't move show into past": "Nie można przenieść audycji w przeszłość", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką.", - "Show was deleted because recorded show does not exist!": "Audycja została usunięta, ponieważ nagranie nie istnieje!", - "Must wait 1 hour to rebroadcast.": "Należy odczekać 1 godzinę przed ponownym odtworzeniem.", - "Track": "", - "Played": "Odtwarzane", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Rok %s musi być w przedziale od 1753 do 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s nie jest poprawną datą", + "%s:%s:%s is not a valid time": "%s:%s:%s nie jest prawidłowym czasem", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendarz", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Użytkownicy", + "Track Types": "", + "Streams": "Strumienie", + "Status": "Status", + "Analytics": "", + "Playout History": "Historia odtwarzania", + "History Templates": "", + "Listener Stats": "Statystyki słuchaczy", + "Show Listener Stats": "", + "Help": "Pomoc", + "Getting Started": "Jak zacząć", + "User Manual": "Instrukcja użytkowania", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nie masz dostępu do tej lokalizacji", + "You are not allowed to access this resource. ": "Nie masz dostępu do tej lokalizacji.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Złe zapytanie. Nie zaakceprtowano parametru 'mode'", + "Bad request. 'mode' parameter is invalid": "Złe zapytanie. Parametr 'mode' jest nieprawidłowy", + "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", + "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", + "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "nie znaleziono %s", + "Something went wrong.": "Wystapił błąd", + "Preview": "Podgląd", + "Add to Playlist": "Dodaj do listy odtwarzania", + "Add to Smart Block": "Dodaj do smartblocku", + "Delete": "Usuń", + "Edit...": "", + "Download": "Pobierz", + "Duplicate Playlist": "Skopiuj listę odtwarzania", + "Duplicate Smartblock": "", + "No action available": "Brak dostepnych czynności", + "You don't have permission to delete selected items.": "Nie masz uprawnień do usunięcia wybranych elementów", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopia %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie.", + "Audio Player": "Odtwrzacz ", + "Something went wrong!": "", + "Recording:": "Nagrywanie:", + "Master Stream": "Strumień Nadrzędny", + "Live Stream": "Transmisja na żywo", + "Nothing Scheduled": "Nic nie zaplanowano", + "Current Show:": "Aktualna audycja:", + "Current": "Aktualny", + "You are running the latest version": "Używasz najnowszej wersji", + "New version available: ": "Dostępna jest nowa wersja:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj do bieżącej listy odtwarzania", + "Add to current smart block": "Dodaj do bieżącego smart blocku", + "Adding 1 Item": "Dodawanie 1 elementu", + "Adding %s Items": "Dodawanie %s elementów", + "You can only add tracks to smart blocks.": "do smart blocków mozna dodawać tylko utwory.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy", + "Please select a cursor position on timeline.": "Proszę wybrać pozycję kursora na osi czasu.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "", + "Edit": "Edytuj", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Usuń", + "Edit Metadata": "Edytuj Metadane.", + "Add to selected show": "Dodaj do wybranej audycji", + "Select": "Zaznacz", + "Select this page": "Zaznacz tę stronę", + "Deselect this page": "Odznacz tę stronę", + "Deselect all": "Odznacz wszystko", + "Are you sure you want to delete the selected item(s)?": "Czy na pewno chcesz usunąć wybrane elementy?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Tytuł", + "Creator": "Twórca", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Kompozytor", + "Conductor": "Dyrygent/Pod batutą", + "Copyright": "Prawa autorskie", + "Encoded By": "Kodowane przez", + "Genre": "Gatunek", + "ISRC": "ISRC", + "Label": "Wydawnictwo", + "Language": "Język", + "Last Modified": "Ostatnio zmodyfikowany", + "Last Played": "Ostatnio odtwarzany", + "Length": "Długość", + "Mime": "Podobne do", + "Mood": "Nastrój", + "Owner": "Właściciel", + "Replay Gain": "Normalizacja głośności (Replay Gain)", + "Sample Rate": "Wartość próbkowania", + "Track Number": "Numer utworu", + "Uploaded": "Przesłano", + "Website": "Strona internetowa", + "Year": "Rok", + "Loading...": "Ładowanie", + "All": "Wszystko", + "Files": "Pliki", + "Playlists": "Listy odtwarzania", + "Smart Blocks": "Smart Blocki", + "Web Streams": "Web Stream", + "Unknown type: ": "Nieznany typ:", + "Are you sure you want to delete the selected item?": "Czy na pewno chcesz usunąć wybrany element?", + "Uploading in progress...": "Wysyłanie w toku...", + "Retrieving data from the server...": "Pobieranie danych z serwera...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Kod błędu:", + "Error msg: ": "Komunikat błędu:", + "Input must be a positive number": "Podana wartość musi być liczbą dodatnią", + "Input must be a number": "Podana wartość musi być liczbą", + "Input must be in the format: yyyy-mm-dd": "Podana wartość musi mieć format yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Podana wartość musi mieć format hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "Wprowadź czas w formacie: '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:", + "Dynamic block is not previewable": "Podgląd bloku dynamicznego nie jest możliwy", + "Limit to: ": "Ograniczenie do:", + "Playlist saved": "Lista odtwarzania została zapisana", + "Playlist shuffled": "Playlista została przemieszana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\".", + "Listener Count on %s: %s": "Licznik słuchaczy na %s: %s", + "Remind me in 1 week": "Przypomnij mi za 1 tydzień", + "Remind me never": "Nie przypominaj nigdy", + "Yes, help Airtime": "Tak, wspieraj Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obraz musi mieć format jpg, jpeg, png lub gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart blocku został przemieszany", + "Smart block generated and criteria saved": "Utworzono smartblock i zapisano kryteria", + "Smart block saved": "Smart block został zapisany", + "Processing...": "Przetwarzanie...", + "Select modifier": "Wybierz modyfikator", + "contains": "zawiera", + "does not contain": "nie zawiera", + "is": "to", + "is not": "to nie", + "starts with": "zaczyna się od", + "ends with": "kończy się", + "is greater than": "jest większa niż", + "is less than": "jest mniejsza niż", + "is in the range": "mieści się w zakresie", + "Generate": "Utwórz", + "Choose Storage Folder": "Wybierz ścieżkę do katalogu importu", + "Choose Folder to Watch": "Wybierz katalog do obserwacji", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\nWszystkie pliki z biblioteki Airtime zostaną usunięte.", + "Manage Media Folders": "Zarządzaj folderami mediów", + "Are you sure you want to remove the watched folder?": "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?", + "This path is currently not accessible.": "Ściezka jest obecnie niedostepna.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Połączono z serwerem streamingu", + "The stream is disabled": "Strumień jest odłączony", + "Getting information from the server...": "Pobieranie informacji z serwera...", + "Can not connect to the streaming server": "Nie można połączyć z serwerem streamującym", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu.", + "Check this box to automatically switch on Master/Show source upon source connection.": "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nie znaleziono wyników", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć.", + "Specify custom authentication which will work only for this show.": "Ustal własne uwierzytelnienie tylko dla tej audycji.", + "The show instance doesn't exist anymore!": "Instancja audycji już nie istnieje.", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Audycja", + "Show is empty": "Audycja jest pusta", + "1m": "1 min", + "5m": "5 min", + "10m": "10 min", + "15m": "15 min", + "30m": "30 min", + "60m": "60 min", + "Retreiving data from the server...": "Odbieranie danych z serwera", + "This show has no scheduled content.": "Ta audycja nie ma zawartości", + "This show is not completely filled with content.": "Brak pełnej zawartości tej audycji.", + "January": "Styczeń", + "February": "Luty", + "March": "Marzec", + "April": "Kwiecień", + "May": "Maj", + "June": "Czerwiec", + "July": "Lipiec", + "August": "Sierpień", + "September": "Wrzesień", + "October": "Październik", + "November": "Listopad", + "December": "Grudzień", + "Jan": "Sty", + "Feb": "Lut", + "Mar": "Mar", + "Apr": "Kwi", + "Jun": "Cze", + "Jul": "Lip", + "Aug": "Sie", + "Sep": "Wrz", + "Oct": "Paź", + "Nov": "Lis", + "Dec": "Gru", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Niedziela", + "Monday": "Poniedziałek", + "Tuesday": "Wtorek", + "Wednesday": "Środa", + "Thursday": "Czwartek", + "Friday": "Piątek", + "Saturday": "Sobota", + "Sun": "Nie", + "Mon": "Pon", + "Tue": "Wt", + "Wed": "Śr", + "Thu": "Czw", + "Fri": "Pt", + "Sat": "Sob", + "Shows longer than their scheduled time will be cut off by a following show.": "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne .", + "Cancel Current Show?": "Skasować obecną audycję?", + "Stop recording current show?": "Przerwać nagrywanie aktualnej audycji?", + "Ok": "Ok", + "Contents of Show": "Zawartośc audycji", + "Remove all content?": "Usunąć całą zawartość?", + "Delete selected item(s)?": "Skasować wybrane elementy?", + "Start": "Rozpocznij", + "End": "Zakończ", + "Duration": "Czas trwania", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue out", + "Fade In": "Zgłaśnianie [Fade In]", + "Fade Out": "Wyciszanie [Fade out]", + "Show Empty": "Audycja jest pusta", + "Recording From Line In": "Nagrywaanie z wejścia liniowego", + "Track preview": "Podgląd utworu", + "Cannot schedule outside a show.": "Nie ma możliwości planowania poza audycją.", + "Moving 1 Item": "Przenoszenie 1 elementu", + "Moving %s Items": "Przenoszenie %s elementów", + "Save": "Zapisz", + "Cancel": "Anuluj", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Zaznacz wszystko", + "Select none": "Odznacz wszystkie", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Usuń wybrane elementy", + "Jump to the current playing track": "Przejdź do obecnie odtwarzanej ściezki", + "Jump to Current": "", + "Cancel current show": "Skasuj obecną audycję", + "Open library to add or remove content": "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości", + "Add / Remove Content": "Dodaj/usuń zawartość", + "in use": "W użyciu", + "Disk": "Dysk", + "Look in": "Sprawdź", + "Open": "Otwórz", + "Admin": "Administrator", + "DJ": "Prowadzący", + "Program Manager": "Menedżer programowy", + "Guest": "Gość", + "Guests can do the following:": "Goście mają mozliwość:", + "View schedule": "Przeglądanie harmonogramu", + "View show content": "Przeglądanie zawartości audycji", + "DJs can do the following:": "Prowadzący ma możliwość:", + "Manage assigned show content": "Zarządzać przypisaną sobie zawartością audycji", + "Import media files": "Importować pliki mediów", + "Create playlists, smart blocks, and webstreams": "Tworzyć playlisty, smart blocki i webstreamy", + "Manage their own library content": "Zarządzać zawartością własnej biblioteki", + "Program Managers can do the following:": "", + "View and manage show content": "Przeglądać i zarządzać zawartością audycji", + "Schedule shows": "Planować audycję", + "Manage all library content": "Zarządzać całą zawartością biblioteki", + "Admins can do the following:": "Administrator ma mozliwość:", + "Manage preferences": "Zarządzać preferencjami", + "Manage users": "Zarządzać użytkownikami", + "Manage watched folders": "Zarządzać przeglądanymi katalogami", + "Send support feedback": "Wyślij informację zwrotną", + "View system status": "Sprawdzać status systemu", + "Access playout history": "Przeglądać historię odtworzeń", + "View listener stats": "Sprawdzać statystyki słuchaczy", + "Show / hide columns": "Pokaż/ukryj kolumny", + "Columns": "", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Nd", + "Mo": "Pn", + "Tu": "Wt", + "We": "Śr", + "Th": "Cz", + "Fr": "Pt", + "Sa": "So", + "Close": "Zamknij", + "Hour": "Godzina", + "Minute": "Minuta", + "Done": "Gotowe", + "Select files": "Wybierz pliki", + "Add files to the upload queue and click the start button.": "Dodaj pliki do kolejki i wciśnij \"start\"", + "Filename": "", + "Size": "", + "Add Files": "Dodaj pliki", + "Stop Upload": "Zatrzymaj przesyłanie", + "Start upload": "Rozpocznij przesyłanie", + "Start Upload": "", + "Add files": "Dodaj pliki", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Dodano pliki %d%d", + "N/A": "Nie dotyczy", + "Drag files here.": "Przeciągnij pliki tutaj.", + "File extension error.": "Błąd rozszerzenia pliku.", + "File size error.": "Błąd rozmiaru pliku.", + "File count error.": "Błąd liczenia plików", + "Init error.": "Błąd inicjalizacji", + "HTTP Error.": "Błąd HTTP.", + "Security error.": "Błąd zabezpieczeń.", + "Generic error.": "Błąd ogólny.", + "IO error.": "Błąd I/O", + "File: %s": "Plik: %s", + "%d files queued": "%d plików oczekujących", + "File: %f, size: %s, max file size: %m": "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m", + "Upload URL might be wrong or doesn't exist": "URL nie istnieje bądź jest niewłaściwy", + "Error: File too large: ": "Błąd: plik jest za duży:", + "Error: Invalid file extension: ": "Błąd: nieprawidłowe rozszerzenie pliku:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "Skopiowano %srow%s do schowka", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Opis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Włączone", + "Disabled": "Wyłączone", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie.", + "You are viewing an older version of %s": "Przeglądasz starszą wersję %s", + "You cannot add tracks to dynamic blocks.": "Nie można dodać ścieżek do bloków dynamicznych", + "You don't have permission to delete selected %s(s).": "Nie masz pozwolenia na usunięcie wybranych %s(s)", + "You can only add tracks to smart block.": "Utwory mogą być dodane tylko do smartblocku", + "Untitled Playlist": "Lista odtwarzania bez tytułu", + "Untitled Smart Block": "Smartblock bez tytułu", + "Unknown Playlist": "Nieznana playlista", + "Preferences updated.": "Zaktualizowano preferencje.", + "Stream Setting Updated.": "Zaktualizowano ustawienia strumienia", + "path should be specified": "należy okreslić ścieżkę", + "Problem with Liquidsoap...": "Problem z Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmisja audycji %s z %s o %s", + "Select cursor": "Wybierz kursor", + "Remove cursor": "Usuń kursor", + "show does not exist": "audycja nie istnieje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Użytkownik został dodany poprawnie!", + "User updated successfully!": "Użytkownik został poprawnie zaktualizowany!", + "Settings updated successfully!": "Ustawienia zostały poprawnie zaktualizowane!", + "Untitled Webstream": "Webstream bez nazwy", + "Webstream saved.": "Zapisano webstream", + "Invalid form values.": "Nieprawidłowe wartości formularzy", + "Invalid character entered": "Wprowadzony znak jest nieprawidłowy", + "Day must be specified": "Należy określić dzień", + "Time must be specified": "Należy określić czas", + "Must wait at least 1 hour to rebroadcast": "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Zastosuj własne uwierzytelnienie:", + "Custom Username": "Nazwa użytkownika", + "Custom Password": "Hasło", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Pole nazwy użytkownika nie może być puste.", + "Password field cannot be empty.": "Pole hasła nie może być puste.", + "Record from Line In?": "Nagrywać z wejścia liniowego?", + "Rebroadcast?": "Odtwarzać ponownie?", + "days": "dni", + "Link:": "", + "Repeat Type:": "Typ powtarzania:", + "weekly": "tygodniowo", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "miesięcznie", + "Select Days:": "Wybierz dni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data zakończenia:", + "No End?": "Bez czasu końcowego?", + "End date must be after start date": "Data końcowa musi występować po dacie początkowej", + "Please select a repeat day": "", + "Background Colour:": "Kolor tła:", + "Text Colour:": "Kolor tekstu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nazwa:", + "Untitled Show": "Audycja bez nazwy", + "URL:": "Adres URL", + "Genre:": "Rodzaj:", + "Description:": "Opis:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Czas trwania:", + "Timezone:": "Strefa czasowa:", + "Repeats?": "Powtarzanie?", + "Cannot create show in the past": "Nie można utworzyć audycji w przeszłości", + "Cannot modify start date/time of the show that is already started": "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła", + "End date/time cannot be in the past": "Data lub czas zakończenia nie może być z przeszłości.", + "Cannot have duration < 0m": "Czas trwania nie może być mniejszy niż 0m", + "Cannot have duration 00h 00m": "Czas trwania nie może wynosić 00h 00m", + "Cannot have duration greater than 24h": "Czas trwania nie może być dłuższy niż 24h", + "Cannot schedule overlapping shows": "Nie można planować nakładających się audycji", + "Search Users:": "Szukaj Użytkowników:", + "DJs:": "Prowadzący:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Nazwa użytkownika:", + "Password:": "Hasło:", + "Verify Password:": "Potwierdź hasło:", + "Firstname:": "Imię:", + "Lastname:": "Nazwisko:", + "Email:": "Email:", + "Mobile Phone:": "Telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ użytkownika:", + "Login name is not unique.": "Nazwa użytkownika musi być unikalna.", + "Delete All Tracks in Library": "", + "Date Start:": "Data rozpoczęcia:", + "Title:": "Tytuł:", + "Creator:": "Autor:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Wydawnictwo:", + "Composer:": "Kompozytor:", + "Conductor:": "Dyrygent/Pod batutą:", + "Mood:": "Nastrój:", + "BPM:": "BPM:", + "Copyright:": "Prawa autorskie:", + "ISRC Number:": "Numer ISRC:", + "Website:": "Strona internetowa:", + "Language:": "Język:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nazwa stacji", + "Station Description": "", + "Station Logo:": "Logo stacji:", + "Note: Anything larger than 600x600 will be resized.": "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Tydzień zaczynaj od", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Zaloguj", + "Password": "Hasło", + "Confirm new password": "Potwierdź nowe hasło", + "Password confirmation does not match your password.": "Hasła muszą się zgadzać.", + "Email": "", + "Username": "Nazwa użytkownika", + "Reset password": "Resetuj hasło", + "Back": "", + "Now Playing": "Aktualnie odtwarzane", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Wszystkie moje audycje:", + "My Shows": "", + "Select criteria": "Wybierz kryteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Częstotliwość próbkowania (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "godzin(y)", + "minutes": "minut(y)", + "items": "elementy", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamiczny", + "Static": "Statyczny", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Tworzenie zawartości listy odtwarzania i zapisz kryteria", + "Shuffle playlist content": "Losowa kolejność odtwarzania", + "Shuffle": "Przemieszaj", + "Limit cannot be empty or smaller than 0": "Limit nie może być pusty oraz mniejszy od 0", + "Limit cannot be more than 24 hrs": "Limit nie może być większy niż 24 godziny", + "The value should be an integer": "Wartość powinna być liczbą całkowitą", + "500 is the max item limit value you can set": "Maksymalna liczba elementów do ustawienia to 500", + "You must select Criteria and Modifier": "Należy wybrać kryteria i modyfikator", + "'Length' should be in '00:00:00' format": "Długość powinna być wprowadzona w formacie '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Wartość musi być liczbą", + "The value should be less then 2147483648": "Wartość powinna być mniejsza niż 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Wartość powinna posiadać mniej niż %s znaków", + "Value cannot be empty": "Wartość nie może być pusta", + "Stream Label:": "Nazwa strumienia:", + "Artist - Title": "Artysta - Tytuł", + "Show - Artist - Title": "Audycja - Artysta -Tytuł", + "Station name - Show name": "Nazwa stacji - Nazwa audycji", + "Off Air Metadata": "Metadane Off Air", + "Enable Replay Gain": "Włącz normalizację głośności (Replay Gain)", + "Replay Gain Modifier": "Modyfikator normalizacji głośności", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Włączony:", + "Mobile:": "", + "Stream Type:": "Typ strumienia:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Typ usługi:", + "Channels:": "Kanały:", + "Server": "Serwer", + "Port": "Port", + "Mount Point": "Punkt montowania", + "Name": "Nazwa", + "URL": "adres URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Katalog importu:", + "Watched Folders:": "Katalogi obserwowane:", + "Not a valid Directory": "Nieprawidłowy katalog", + "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' nie pasuje do formatu daty '%format%'", + "'%value%' is less than %min% characters long": "'%value%' zawiera mniej niż %min% znaków", + "'%value%' is more than %max% characters long": "'%value%' zawiera więcej niż %max% znaków", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'", + "Passwords do not match": "Hasła muszą się zgadzać", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue-in i cue-out mają wartość zerową.", + "Can't set cue out to be greater than file length.": "Wartość cue-out nie może być większa niż długość pliku.", + "Can't set cue in to be larger than cue out.": "Wartość cue-in nie może być większa niż cue-out.", + "Can't set cue out to be smaller than cue in.": "Wartość cue-out nie może być mniejsza od cue-in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Wybierz kraj", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)", + "The schedule you're viewing is out of date! (instance mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)", + "The schedule you're viewing is out of date!": "Harmonogram, który przeglądasz jest nieaktualny!", + "You are not allowed to schedule show %s.": "Nie posiadasz uprawnień, aby zaplanować audycję %s.", + "You cannot add files to recording shows.": "Nie można dodawać plików do nagrywanych audycji.", + "The show %s is over and cannot be scheduled.": "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana.", + "The show %s has been previously updated!": "Audycja %s została zaktualizowana wcześniej!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Wybrany plik nie istnieje!", + "Shows can have a max length of 24 hours.": "Audycje mogą mieć maksymalną długość 24 godzin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nie można planować audycji nakładających się na siebie.\nUwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń.", + "Rebroadcast of %s from %s": "Retransmisja z %s do %s", + "Length needs to be greater than 0 minutes": "Długość musi być większa niż 0 minut", + "Length should be of form \"00h 00m\"": "Długość powinna mieć postać \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL powinien mieć postać \"https://example.org\"", + "URL should be 512 characters or less": "URL powinien mieć 512 znaków lub mniej", + "No MIME type found for webstream.": "Nie znaleziono typu MIME dla webstreamu", + "Webstream name cannot be empty": "Nazwa webstreamu nie może być pusta", + "Could not parse XSPF playlist": "Nie można przeanalizować playlisty XSPF", + "Could not parse PLS playlist": "Nie można przeanalizować playlisty PLS", + "Could not parse M3U playlist": "Nie można przeanalizować playlisty M3U", + "Invalid webstream - This appears to be a file download.": "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku.", + "Unrecognized stream type: %s": "Nie rozpoznano typu strumienia: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Przeglądaj metadane nagrania", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edytuj audycję", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji.", + "Can't move a past show": "Nie można przenieść audycji archiwalnej", + "Can't move show into past": "Nie można przenieść audycji w przeszłość", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką.", + "Show was deleted because recorded show does not exist!": "Audycja została usunięta, ponieważ nagranie nie istnieje!", + "Must wait 1 hour to rebroadcast.": "Należy odczekać 1 godzinę przed ponownym odtworzeniem.", + "Track": "", + "Played": "Odtwarzane", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/pt_BR.json b/webapp/src/locale/pt_BR.json index 1241097228..48ec734853 100644 --- a/webapp/src/locale/pt_BR.json +++ b/webapp/src/locale/pt_BR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "O ano %s deve estar compreendido no intervalo entre 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s não é uma data válida", - "%s:%s:%s is not a valid time": "%s:%s:%s não é um horário válido", - "English": "Inglês", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "Catalão", - "Corsican": "", - "Czech": "Tcheco", - "Welsh": "", - "Danish": "", - "German": "Alemão", - "Bhutani": "", - "Greek": "Grego", - "Esperanto": "", - "Spanish": "Espanhol", - "Estonian": "", - "Basque": "", - "Persian": "Persa", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "Francês", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "Italiano", - "Hebrew": "Hebraíco", - "Japanese": "Japonês", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "Português", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "Chinês", - "Zulu": "", - "Use station default": "Usar estação padrão", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "Seviço de API do LibreTime", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendário", - "Widgets": "", - "Player": "Reprodutor", - "Weekly Schedule": "", - "Settings": "Configurações", - "General": "Geral", - "My Profile": "Meu perfil", - "Users": "Usuários", - "Track Types": "", - "Streams": "Fluxos", - "Status": "Estado", - "Analytics": "", - "Playout History": "Histórico da Programação", - "History Templates": "", - "Listener Stats": "Estatísticas de Ouvintes", - "Show Listener Stats": "", - "Help": "Ajuda", - "Getting Started": "Iniciando", - "User Manual": "Manual do Usuário", - "Get Help Online": "", - "Contribute to LibreTime": "Contribua para o LibreTime", - "What's New?": "O que há de novo?", - "You are not allowed to access this resource.": "Você não tem permissão para acessar esta funcionalidade.", - "You are not allowed to access this resource. ": "Você não tem permissão para acessar esta funcionalidade.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Requisição inválida. Parâmetro não informado.", - "Bad request. 'mode' parameter is invalid": "Requisição inválida. Parâmetro informado é inválido.", - "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", - "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", - "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Página não encontrada.", - "The requested action is not supported.": "A ação solicitada não é suportada.", - "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", - "An internal application error has occurred.": "", - "%s Podcast": "Podcast %s", - "No tracks have been published yet.": "", - "%s not found": "%s não encontrado", - "Something went wrong.": "Ocorreu algo errado.", - "Preview": "Visualizar", - "Add to Playlist": "Adicionar à Lista", - "Add to Smart Block": "Adicionar ao Bloco", - "Delete": "Excluir", - "Edit...": "Editar...", - "Download": "Download", - "Duplicate Playlist": "Duplicar Lista", - "Duplicate Smartblock": "", - "No action available": "Nenhuma ação disponível", - "You don't have permission to delete selected items.": "Você não tem permissão para excluir os itens selecionados.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "Não foi possível apagar arquivo(s).", - "Copy of %s": "Cópia de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos.", - "Audio Player": "Player de Áudio", - "Something went wrong!": "", - "Recording:": "Gravando:", - "Master Stream": "Fluxo Mestre", - "Live Stream": "Fluxo Ao Vivo", - "Nothing Scheduled": "Nada Programado", - "Current Show:": "Programa em Exibição:", - "Current": "Agora", - "You are running the latest version": "Você está executando a versão mais recente", - "New version available: ": "Nova versão disponível:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Adicionar a esta lista de reprodução", - "Add to current smart block": "Adiconar a este bloco", - "Adding 1 Item": "Adicionando 1 item", - "Adding %s Items": "Adicionando %s items", - "You can only add tracks to smart blocks.": "Você pode adicionar somente faixas a um bloco inteligente.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução", - "Please select a cursor position on timeline.": "Por favor selecione um posição do cursor na linha do tempo.", - "You haven't added any tracks": "", - "You haven't added any playlists": "Você não adicionou nenhuma playlist", - "You haven't added any podcasts": "Você não adicionou nenhum podcast", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Adicionar", - "New": "Novo", - "Edit": "Editar", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Publicar", - "Remove": "Remover", - "Edit Metadata": "Editar Metadados", - "Add to selected show": "Adicionar ao programa selecionado", - "Select": "Selecionar", - "Select this page": "Selecionar esta página", - "Deselect this page": "Desmarcar esta página", - "Deselect all": "Desmarcar todos", - "Are you sure you want to delete the selected item(s)?": "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?", - "Scheduled": "Agendado", - "Tracks": "", - "Playlist": "", - "Title": "Título", - "Creator": "Criador", - "Album": "Álbum", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Compositor", - "Conductor": "Maestro", - "Copyright": "Copyright", - "Encoded By": "Convertido por", - "Genre": "Gênero", - "ISRC": "ISRC", - "Label": "Legenda", - "Language": "Idioma", - "Last Modified": "Última Ateração", - "Last Played": "Última Execução", - "Length": "Duração", - "Mime": "Mime", - "Mood": "Humor", - "Owner": "Prorietário", - "Replay Gain": "Ganho de Reprodução", - "Sample Rate": "Taxa de Amostragem", - "Track Number": "Número de Faixa", - "Uploaded": "Adicionado", - "Website": "Website", - "Year": "Ano", - "Loading...": "Carregando...", - "All": "Todos", - "Files": "Arquivos", - "Playlists": "Listas", - "Smart Blocks": "Blocos", - "Web Streams": "Fluxos", - "Unknown type: ": "Tipo Desconhecido:", - "Are you sure you want to delete the selected item?": "Você tem certeza que deseja excluir o item selecionado?", - "Uploading in progress...": "Upload em andamento...", - "Retrieving data from the server...": "Obtendo dados do servidor...", - "Import": "Importar", - "Imported?": "", - "View": "", - "Error code: ": "Código do erro:", - "Error msg: ": "Mensagem de erro:", - "Input must be a positive number": "A entrada deve ser um número positivo", - "Input must be a number": "A entrada deve ser um número", - "Input must be in the format: yyyy-mm-dd": "A entrada deve estar no formato yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "A entrada deve estar no formato hh:mm:ss.t", - "My Podcast": "Meu Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "por favor informe o tempo no formato '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Seu navegador não suporta a execução deste tipo de arquivo:", - "Dynamic block is not previewable": "Não é possível o preview de blocos dinâmicos", - "Limit to: ": "Limitar em:", - "Playlist saved": "A lista foi salva", - "Playlist shuffled": "A lista foi embaralhada", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'.", - "Listener Count on %s: %s": "Número de Ouvintes em %s: %s", - "Remind me in 1 week": "Lembrar-me dentro de uma semana", - "Remind me never": "Não me lembrar novamente", - "Yes, help Airtime": "Sim, quero colaborar com o Airtime", - "Image must be one of jpg, jpeg, png, or gif": "A imagem precisa conter extensão jpg, jpeg, png ou gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "O bloco foi embaralhado", - "Smart block generated and criteria saved": "O bloco foi gerado e o criterio foi salvo", - "Smart block saved": "O bloco foi salvo", - "Processing...": "Processando...", - "Select modifier": "Selecionar modificador", - "contains": "contém", - "does not contain": "não contém", - "is": "é", - "is not": "não é", - "starts with": "começa com", - "ends with": "termina com", - "is greater than": "é maior que", - "is less than": "é menor que", - "is in the range": "está no intervalo", - "Generate": "Gerar", - "Choose Storage Folder": "Selecione o Diretório de Armazenamento", - "Choose Folder to Watch": "Selecione o Diretório para Monitoramento", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Tem certeza de que deseja alterar o diretório de armazenamento? \nIsto irá remover os arquivos de sua biblioteca Airtime!", - "Manage Media Folders": "Gerenciar Diretórios de Mídia", - "Are you sure you want to remove the watched folder?": "Tem certeza que deseja remover o diretório monitorado?", - "This path is currently not accessible.": "O caminho está inacessível no momento.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Conectado ao servidor de fluxo", - "The stream is disabled": "O fluxo está desabilitado", - "Getting information from the server...": "Obtendo informações do servidor...", - "Can not connect to the streaming server": "Não é possível conectar ao servidor de streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\".", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes.", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nenhum resultado encontrado", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar.", - "Specify custom authentication which will work only for this show.": "Defina uma autenticação personalizada que funcionará apenas neste programa.", - "The show instance doesn't exist anymore!": "A instância deste programa não existe mais!", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Programa", - "Show is empty": "O programa está vazio", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Obtendo dados do servidor...", - "This show has no scheduled content.": "Este programa não possui conteúdo agendado.", - "This show is not completely filled with content.": "Este programa não possui duração completa de conteúdos.", - "January": "Janeiro", - "February": "Fevereiro", - "March": "Março", - "April": "Abril", - "May": "Maio", - "June": "Junho", - "July": "Julho", - "August": "Agosto", - "September": "Setembro", - "October": "Outubro", - "November": "Novembro", - "December": "Dezembro", - "Jan": "Jan", - "Feb": "Fev", - "Mar": "Mar", - "Apr": "Abr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Ago", - "Sep": "Set", - "Oct": "Out", - "Nov": "Nov", - "Dec": "Dez", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Domingo", - "Monday": "Segunda", - "Tuesday": "Terça", - "Wednesday": "Quarta", - "Thursday": "Quinta", - "Friday": "Sexta", - "Saturday": "Sábado", - "Sun": "Dom", - "Mon": "Seg", - "Tue": "Ter", - "Wed": "Qua", - "Thu": "Qui", - "Fri": "Sex", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte.", - "Cancel Current Show?": "Cancelar Programa em Execução?", - "Stop recording current show?": "Parar gravação do programa em execução?", - "Ok": "Ok", - "Contents of Show": "Conteúdos do Programa", - "Remove all content?": "Remover todos os conteúdos?", - "Delete selected item(s)?": "Excluir item(ns) selecionado(s)?", - "Start": "Início", - "End": "Fim", - "Duration": "Duração", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue Entrada", - "Cue Out": "Cue Saída", - "Fade In": "Fade Entrada", - "Fade Out": "Fade Saída", - "Show Empty": "Programa vazio", - "Recording From Line In": "Gravando a partir do Line In", - "Track preview": "Prévia da faixa", - "Cannot schedule outside a show.": "Não é possível realizar agendamento fora de um programa.", - "Moving 1 Item": "Movendo 1 item", - "Moving %s Items": "Movendo %s itens", - "Save": "Salvar", - "Cancel": "Cancelar", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Selecionar todos", - "Select none": "Selecionar nenhum", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remover seleção de itens agendados", - "Jump to the current playing track": "Saltar para faixa em execução", - "Jump to Current": "", - "Cancel current show": "Cancelar programa atual", - "Open library to add or remove content": "Abrir biblioteca para adicionar ou remover conteúdo", - "Add / Remove Content": "Adicionar / Remover Conteúdo", - "in use": "em uso", - "Disk": "Disco", - "Look in": "Explorar", - "Open": "Abrir", - "Admin": "Administrador", - "DJ": "DJ", - "Program Manager": "Gerente de Programação", - "Guest": "Visitante", - "Guests can do the following:": "Visitantes podem fazer o seguinte:", - "View schedule": "Visualizar agendamentos", - "View show content": "Visualizar conteúdo dos programas", - "DJs can do the following:": "DJs podem fazer o seguinte:", - "Manage assigned show content": "Gerenciar o conteúdo de programas delegados a ele", - "Import media files": "Importar arquivos de mídia", - "Create playlists, smart blocks, and webstreams": "Criar listas de reprodução, blocos inteligentes e fluxos", - "Manage their own library content": "Gerenciar sua própria blblioteca de conteúdos", - "Program Managers can do the following:": "", - "View and manage show content": "Visualizar e gerenciar o conteúdo dos programas", - "Schedule shows": "Agendar programas", - "Manage all library content": "Gerenciar bibliotecas de conteúdo", - "Admins can do the following:": "Administradores podem fazer o seguinte:", - "Manage preferences": "Gerenciar configurações", - "Manage users": "Gerenciar usuários", - "Manage watched folders": "Gerenciar diretórios monitorados", - "Send support feedback": "Enviar informações de suporte", - "View system status": "Visualizar estado do sistema", - "Access playout history": "Acessar o histórico da programação", - "View listener stats": "Ver estado dos ouvintes", - "Show / hide columns": "Exibir / ocultar colunas", - "Columns": "", - "From {from} to {to}": "De {from} até {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "khz", - "Su": "Do", - "Mo": "Se", - "Tu": "Te", - "We": "Qu", - "Th": "Qu", - "Fr": "Se", - "Sa": "Sa", - "Close": "Fechar", - "Hour": "Hora", - "Minute": "Minuto", - "Done": "Concluído", - "Select files": "Selecionar arquivos", - "Add files to the upload queue and click the start button.": "Adicione arquivos para a fila de upload e pressione o botão iniciar ", - "Filename": "", - "Size": "", - "Add Files": "Adicionar Arquivos", - "Stop Upload": "Parar Upload", - "Start upload": "Iniciar Upload", - "Start Upload": "", - "Add files": "Adicionar arquivos", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d arquivos importados", - "N/A": "N/A", - "Drag files here.": "Arraste arquivos nesta área.", - "File extension error.": "Erro na extensão do arquivo.", - "File size error.": "Erro no tamanho do arquivo.", - "File count error.": "Erro na contagem dos arquivos.", - "Init error.": "Erro de inicialização.", - "HTTP Error.": "Erro HTTP.", - "Security error.": "Erro de segurança.", - "Generic error.": "Erro genérico.", - "IO error.": "Erro de I/O.", - "File: %s": "Arquivos: %s.", - "%d files queued": "%d arquivos adicionados à fila.", - "File: %f, size: %s, max file size: %m": "Arquivo: %f, tamanho: %s, tamanho máximo: %m", - "Upload URL might be wrong or doesn't exist": "URL de upload pode estar incorreta ou inexiste.", - "Error: File too large: ": "Erro: Arquivo muito grande:", - "Error: Invalid file extension: ": "Erro: Extensão de arquivo inválida.", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "%s linhas%s copiadas para a área de transferência", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Descrição", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ativo", - "Disabled": "Inativo", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Usuário ou senha inválidos. Tente novamente.", - "You are viewing an older version of %s": "Você está vendo uma versão obsoleta de %s", - "You cannot add tracks to dynamic blocks.": "Você não pode adicionar faixas a um bloco dinâmico", - "You don't have permission to delete selected %s(s).": "Você não tem permissão para excluir os %s(s) selecionados.", - "You can only add tracks to smart block.": "Você pode somente adicionar faixas um bloco inteligente.", - "Untitled Playlist": "Lista Sem Título", - "Untitled Smart Block": "Bloco Sem Título", - "Unknown Playlist": "Lista Desconhecida", - "Preferences updated.": "Preferências atualizadas.", - "Stream Setting Updated.": "Preferências de fluxo atualizadas.", - "path should be specified": "o caminho precisa ser informado", - "Problem with Liquidsoap...": "Problemas com o Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Retransmissão do programa %s de %s as %s", - "Select cursor": "Selecione o cursor", - "Remove cursor": "Remover o cursor", - "show does not exist": "programa inexistente", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Usuário adicionado com sucesso!", - "User updated successfully!": "Usuário atualizado com sucesso!", - "Settings updated successfully!": "Configurações atualizadas com sucesso!", - "Untitled Webstream": "Fluxo Sem Título", - "Webstream saved.": "Fluxo gravado.", - "Invalid form values.": "Valores do formulário inválidos.", - "Invalid character entered": "Caracter inválido informado", - "Day must be specified": "O dia precisa ser especificado", - "Time must be specified": "O horário deve ser especificado", - "Must wait at least 1 hour to rebroadcast": "É preciso aguardar uma hora para retransmitir", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Usar Autenticação Personalizada:", - "Custom Username": "Definir Usuário:", - "Custom Password": "Definir Senha:", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "O usuário não pode estar em branco.", - "Password field cannot be empty.": "A senha não pode estar em branco.", - "Record from Line In?": "Gravar a partir do Line In?", - "Rebroadcast?": "Retransmitir?", - "days": "dias", - "Link:": "", - "Repeat Type:": "Tipo de Reexibição:", - "weekly": "semanal", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "mensal", - "Select Days:": "Selecione os Dias:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data de Fim:", - "No End?": "Sem fim?", - "End date must be after start date": "A data de fim deve ser posterior à data de início", - "Please select a repeat day": "", - "Background Colour:": "Cor de Fundo:", - "Text Colour:": "Cor da Fonte:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nome:", - "Untitled Show": "Programa Sem Título", - "URL:": "URL:", - "Genre:": "Gênero:", - "Description:": "Descrição:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' não corresponde ao formato 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duração:", - "Timezone:": "Fuso Horário:", - "Repeats?": "Reexibir?", - "Cannot create show in the past": "Não é possível criar um programa no passado.", - "Cannot modify start date/time of the show that is already started": "Não é possível alterar o início de um programa que está em execução", - "End date/time cannot be in the past": "Data e horário finais não podem ser definidos no passado.", - "Cannot have duration < 0m": "Não pode ter duração < 0m", - "Cannot have duration 00h 00m": "Não pode ter duração 00h 00m", - "Cannot have duration greater than 24h": "Não pode ter duração maior que 24 horas", - "Cannot schedule overlapping shows": "Não é permitido agendar programas sobrepostos", - "Search Users:": "Procurar Usuários:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Usuário:", - "Password:": "Senha:", - "Verify Password:": "Confirmar Senha:", - "Firstname:": "Primeiro nome:", - "Lastname:": "Último nome:", - "Email:": "Email:", - "Mobile Phone:": "Celular:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Perfil do Usuário:", - "Login name is not unique.": "Usuário já existe.", - "Delete All Tracks in Library": "", - "Date Start:": "Data de Início:", - "Title:": "Título:", - "Creator:": "Criador:", - "Album:": "Álbum:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Ano:", - "Label:": "Legenda:", - "Composer:": "Compositor:", - "Conductor:": "Maestro:", - "Mood:": "Humor:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Número ISRC:", - "Website:": "Website:", - "Language:": "Idioma:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nome da Estação", - "Station Description": "", - "Station Logo:": "Logo da Estação:", - "Note: Anything larger than 600x600 will be resized.": "Nota: qualquer arquivo maior que 600x600 será redimensionado", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "Semana Inicia Em", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Acessar", - "Password": "Senha", - "Confirm new password": "Confirmar nova senha", - "Password confirmation does not match your password.": "A senha de confirmação não confere.", - "Email": "", - "Username": "Usuário", - "Reset password": "Redefinir senha", - "Back": "", - "Now Playing": "Tocando agora", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Meus Programas:", - "My Shows": "", - "Select criteria": "Selecione um critério", - "Bit Rate (Kbps)": "Bitrate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Taxa de Amostragem (khz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "horas", - "minutes": "minutos", - "items": "itens", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinâmico", - "Static": "Estático", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Gerar conteúdo da lista e salvar critério", - "Shuffle playlist content": "Embaralhar conteúdo da lista", - "Shuffle": "Embaralhar", - "Limit cannot be empty or smaller than 0": "O limite não pode ser vazio ou menor que 0", - "Limit cannot be more than 24 hrs": "O limite não pode ser maior que 24 horas", - "The value should be an integer": "O valor deve ser um número inteiro", - "500 is the max item limit value you can set": "O número máximo de itens é 500", - "You must select Criteria and Modifier": "Você precisa selecionar Critério e Modificador ", - "'Length' should be in '00:00:00' format": "A duração deve ser informada no formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "O valor deve ser numérico", - "The value should be less then 2147483648": "O valor precisa ser menor que 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "O valor deve conter no máximo %s caracteres", - "Value cannot be empty": "O valor não pode estar em branco", - "Stream Label:": "Legenda do Fluxo:", - "Artist - Title": "Artista - Título", - "Show - Artist - Title": "Programa - Artista - Título", - "Station name - Show name": "Nome da Estação - Nome do Programa", - "Off Air Metadata": "Metadados Off Air", - "Enable Replay Gain": "Habilitar Ganho de Reprodução", - "Replay Gain Modifier": "Modificador de Ganho de Reprodução", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Habilitado:", - "Mobile:": "", - "Stream Type:": "Tipo de Fluxo:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Tipo de Serviço:", - "Channels:": "Canais:", - "Server": "Servidor", - "Port": "Porta", - "Mount Point": "Ponto de Montagem", - "Name": "Nome", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Diretório de Importação:", - "Watched Folders:": "Diretórios Monitorados: ", - "Not a valid Directory": "Não é um diretório válido", - "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", - "'%value%' is no valid email address in the basic format local-part@hostname": "%value%' não é um enderçeo de email válido", - "'%value%' does not fit the date format '%format%'": "'%value%' não corresponde a uma data válida '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is menor que comprimento mínimo %min% de caracteres", - "'%value%' is more than %max% characters long": "'%value%' is maior que o número máximo %max% de caracteres", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' não está compreendido entre '%min%' e '%max%', inclusive", - "Passwords do not match": "Senhas não conferem", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue de entrada e saída são nulos.", - "Can't set cue out to be greater than file length.": "O ponto de saída não pode ser maior que a duração do arquivo", - "Can't set cue in to be larger than cue out.": "A duração do ponto de entrada não pode ser maior que a do ponto de saída.", - "Can't set cue out to be smaller than cue in.": "A duração do ponto de saída não pode ser menor que a do ponto de entrada.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Selecione o País", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "A programação que você está vendo está desatualizada! (programação incompatível)", - "The schedule you're viewing is out of date! (instance mismatch)": "A programação que você está vendo está desatualizada! (instância incompatível)", - "The schedule you're viewing is out of date!": "A programação que você está vendo está desatualizada!", - "You are not allowed to schedule show %s.": "Você não tem permissão para agendar programa %s.", - "You cannot add files to recording shows.": "Você não pode adicionar arquivos para gravação de programas.", - "The show %s is over and cannot be scheduled.": "O programa %s terminou e não pode ser agendado.", - "The show %s has been previously updated!": "O programa %s foi previamente atualizado!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Um dos arquivos selecionados não existe!", - "Shows can have a max length of 24 hours.": "Os programas podem ter duração máxima de 24 horas.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Não é possível agendar programas sobrepostos.\nNota: Redimensionar um programa repetitivo afeta todas as suas repetições.", - "Rebroadcast of %s from %s": "Retransmissão de %s a partir de %s", - "Length needs to be greater than 0 minutes": "A duração precisa ser maior que 0 minuto", - "Length should be of form \"00h 00m\"": "A duração deve ser informada no formato \"00h 00m\"", - "URL should be of form \"https://example.org\"": "A URL deve estar no formato \"https://example.org\"", - "URL should be 512 characters or less": "A URL de conter no máximo 512 caracteres", - "No MIME type found for webstream.": "Nenhum tipo MIME encontrado para o fluxo.", - "Webstream name cannot be empty": "O nome do fluxo não pode estar vazio", - "Could not parse XSPF playlist": "Não foi possível analisar a lista XSPF", - "Could not parse PLS playlist": "Não foi possível analisar a lista PLS", - "Could not parse M3U playlist": "Não foi possível analisar a lista M3U", - "Invalid webstream - This appears to be a file download.": "Fluxo web inválido. A URL parece tratar-se de download de arquivo.", - "Unrecognized stream type: %s": "Tipo de fluxo não reconhecido: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Visualizar Metadados do Arquivo Gravado", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Editar Programa", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Não é possível arrastar e soltar programas repetidos", - "Can't move a past show": "Não é possível mover um programa anterior", - "Can't move show into past": "Não é possível mover um programa anterior", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões.", - "Show was deleted because recorded show does not exist!": "O programa foi excluído porque a gravação prévia não existe!", - "Must wait 1 hour to rebroadcast.": "É necessário aguardar 1 hora antes de retransmitir.", - "Track": "", - "Played": "Executado", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "O ano %s deve estar compreendido no intervalo entre 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s não é uma data válida", + "%s:%s:%s is not a valid time": "%s:%s:%s não é um horário válido", + "English": "Inglês", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "Catalão", + "Corsican": "", + "Czech": "Tcheco", + "Welsh": "", + "Danish": "", + "German": "Alemão", + "Bhutani": "", + "Greek": "Grego", + "Esperanto": "", + "Spanish": "Espanhol", + "Estonian": "", + "Basque": "", + "Persian": "Persa", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "Francês", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "Italiano", + "Hebrew": "Hebraíco", + "Japanese": "Japonês", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "Português", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Chinês", + "Zulu": "", + "Use station default": "Usar estação padrão", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "Seviço de API do LibreTime", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendário", + "Widgets": "", + "Player": "Reprodutor", + "Weekly Schedule": "", + "Settings": "Configurações", + "General": "Geral", + "My Profile": "Meu perfil", + "Users": "Usuários", + "Track Types": "", + "Streams": "Fluxos", + "Status": "Estado", + "Analytics": "", + "Playout History": "Histórico da Programação", + "History Templates": "", + "Listener Stats": "Estatísticas de Ouvintes", + "Show Listener Stats": "", + "Help": "Ajuda", + "Getting Started": "Iniciando", + "User Manual": "Manual do Usuário", + "Get Help Online": "", + "Contribute to LibreTime": "Contribua para o LibreTime", + "What's New?": "O que há de novo?", + "You are not allowed to access this resource.": "Você não tem permissão para acessar esta funcionalidade.", + "You are not allowed to access this resource. ": "Você não tem permissão para acessar esta funcionalidade.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Requisição inválida. Parâmetro não informado.", + "Bad request. 'mode' parameter is invalid": "Requisição inválida. Parâmetro informado é inválido.", + "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", + "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", + "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Página não encontrada.", + "The requested action is not supported.": "A ação solicitada não é suportada.", + "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", + "An internal application error has occurred.": "", + "%s Podcast": "Podcast %s", + "No tracks have been published yet.": "", + "%s not found": "%s não encontrado", + "Something went wrong.": "Ocorreu algo errado.", + "Preview": "Visualizar", + "Add to Playlist": "Adicionar à Lista", + "Add to Smart Block": "Adicionar ao Bloco", + "Delete": "Excluir", + "Edit...": "Editar...", + "Download": "Download", + "Duplicate Playlist": "Duplicar Lista", + "Duplicate Smartblock": "", + "No action available": "Nenhuma ação disponível", + "You don't have permission to delete selected items.": "Você não tem permissão para excluir os itens selecionados.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "Não foi possível apagar arquivo(s).", + "Copy of %s": "Cópia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos.", + "Audio Player": "Player de Áudio", + "Something went wrong!": "", + "Recording:": "Gravando:", + "Master Stream": "Fluxo Mestre", + "Live Stream": "Fluxo Ao Vivo", + "Nothing Scheduled": "Nada Programado", + "Current Show:": "Programa em Exibição:", + "Current": "Agora", + "You are running the latest version": "Você está executando a versão mais recente", + "New version available: ": "Nova versão disponível:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Adicionar a esta lista de reprodução", + "Add to current smart block": "Adiconar a este bloco", + "Adding 1 Item": "Adicionando 1 item", + "Adding %s Items": "Adicionando %s items", + "You can only add tracks to smart blocks.": "Você pode adicionar somente faixas a um bloco inteligente.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução", + "Please select a cursor position on timeline.": "Por favor selecione um posição do cursor na linha do tempo.", + "You haven't added any tracks": "", + "You haven't added any playlists": "Você não adicionou nenhuma playlist", + "You haven't added any podcasts": "Você não adicionou nenhum podcast", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Adicionar", + "New": "Novo", + "Edit": "Editar", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Publicar", + "Remove": "Remover", + "Edit Metadata": "Editar Metadados", + "Add to selected show": "Adicionar ao programa selecionado", + "Select": "Selecionar", + "Select this page": "Selecionar esta página", + "Deselect this page": "Desmarcar esta página", + "Deselect all": "Desmarcar todos", + "Are you sure you want to delete the selected item(s)?": "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?", + "Scheduled": "Agendado", + "Tracks": "", + "Playlist": "", + "Title": "Título", + "Creator": "Criador", + "Album": "Álbum", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Maestro", + "Copyright": "Copyright", + "Encoded By": "Convertido por", + "Genre": "Gênero", + "ISRC": "ISRC", + "Label": "Legenda", + "Language": "Idioma", + "Last Modified": "Última Ateração", + "Last Played": "Última Execução", + "Length": "Duração", + "Mime": "Mime", + "Mood": "Humor", + "Owner": "Prorietário", + "Replay Gain": "Ganho de Reprodução", + "Sample Rate": "Taxa de Amostragem", + "Track Number": "Número de Faixa", + "Uploaded": "Adicionado", + "Website": "Website", + "Year": "Ano", + "Loading...": "Carregando...", + "All": "Todos", + "Files": "Arquivos", + "Playlists": "Listas", + "Smart Blocks": "Blocos", + "Web Streams": "Fluxos", + "Unknown type: ": "Tipo Desconhecido:", + "Are you sure you want to delete the selected item?": "Você tem certeza que deseja excluir o item selecionado?", + "Uploading in progress...": "Upload em andamento...", + "Retrieving data from the server...": "Obtendo dados do servidor...", + "Import": "Importar", + "Imported?": "", + "View": "", + "Error code: ": "Código do erro:", + "Error msg: ": "Mensagem de erro:", + "Input must be a positive number": "A entrada deve ser um número positivo", + "Input must be a number": "A entrada deve ser um número", + "Input must be in the format: yyyy-mm-dd": "A entrada deve estar no formato yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "A entrada deve estar no formato hh:mm:ss.t", + "My Podcast": "Meu Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "por favor informe o tempo no formato '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Seu navegador não suporta a execução deste tipo de arquivo:", + "Dynamic block is not previewable": "Não é possível o preview de blocos dinâmicos", + "Limit to: ": "Limitar em:", + "Playlist saved": "A lista foi salva", + "Playlist shuffled": "A lista foi embaralhada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'.", + "Listener Count on %s: %s": "Número de Ouvintes em %s: %s", + "Remind me in 1 week": "Lembrar-me dentro de uma semana", + "Remind me never": "Não me lembrar novamente", + "Yes, help Airtime": "Sim, quero colaborar com o Airtime", + "Image must be one of jpg, jpeg, png, or gif": "A imagem precisa conter extensão jpg, jpeg, png ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "O bloco foi embaralhado", + "Smart block generated and criteria saved": "O bloco foi gerado e o criterio foi salvo", + "Smart block saved": "O bloco foi salvo", + "Processing...": "Processando...", + "Select modifier": "Selecionar modificador", + "contains": "contém", + "does not contain": "não contém", + "is": "é", + "is not": "não é", + "starts with": "começa com", + "ends with": "termina com", + "is greater than": "é maior que", + "is less than": "é menor que", + "is in the range": "está no intervalo", + "Generate": "Gerar", + "Choose Storage Folder": "Selecione o Diretório de Armazenamento", + "Choose Folder to Watch": "Selecione o Diretório para Monitoramento", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Tem certeza de que deseja alterar o diretório de armazenamento? \nIsto irá remover os arquivos de sua biblioteca Airtime!", + "Manage Media Folders": "Gerenciar Diretórios de Mídia", + "Are you sure you want to remove the watched folder?": "Tem certeza que deseja remover o diretório monitorado?", + "This path is currently not accessible.": "O caminho está inacessível no momento.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Conectado ao servidor de fluxo", + "The stream is disabled": "O fluxo está desabilitado", + "Getting information from the server...": "Obtendo informações do servidor...", + "Can not connect to the streaming server": "Não é possível conectar ao servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\".", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes.", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nenhum resultado encontrado", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar.", + "Specify custom authentication which will work only for this show.": "Defina uma autenticação personalizada que funcionará apenas neste programa.", + "The show instance doesn't exist anymore!": "A instância deste programa não existe mais!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Programa", + "Show is empty": "O programa está vazio", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Obtendo dados do servidor...", + "This show has no scheduled content.": "Este programa não possui conteúdo agendado.", + "This show is not completely filled with content.": "Este programa não possui duração completa de conteúdos.", + "January": "Janeiro", + "February": "Fevereiro", + "March": "Março", + "April": "Abril", + "May": "Maio", + "June": "Junho", + "July": "Julho", + "August": "Agosto", + "September": "Setembro", + "October": "Outubro", + "November": "Novembro", + "December": "Dezembro", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Out", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domingo", + "Monday": "Segunda", + "Tuesday": "Terça", + "Wednesday": "Quarta", + "Thursday": "Quinta", + "Friday": "Sexta", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Seg", + "Tue": "Ter", + "Wed": "Qua", + "Thu": "Qui", + "Fri": "Sex", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte.", + "Cancel Current Show?": "Cancelar Programa em Execução?", + "Stop recording current show?": "Parar gravação do programa em execução?", + "Ok": "Ok", + "Contents of Show": "Conteúdos do Programa", + "Remove all content?": "Remover todos os conteúdos?", + "Delete selected item(s)?": "Excluir item(ns) selecionado(s)?", + "Start": "Início", + "End": "Fim", + "Duration": "Duração", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue Entrada", + "Cue Out": "Cue Saída", + "Fade In": "Fade Entrada", + "Fade Out": "Fade Saída", + "Show Empty": "Programa vazio", + "Recording From Line In": "Gravando a partir do Line In", + "Track preview": "Prévia da faixa", + "Cannot schedule outside a show.": "Não é possível realizar agendamento fora de um programa.", + "Moving 1 Item": "Movendo 1 item", + "Moving %s Items": "Movendo %s itens", + "Save": "Salvar", + "Cancel": "Cancelar", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Selecionar todos", + "Select none": "Selecionar nenhum", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remover seleção de itens agendados", + "Jump to the current playing track": "Saltar para faixa em execução", + "Jump to Current": "", + "Cancel current show": "Cancelar programa atual", + "Open library to add or remove content": "Abrir biblioteca para adicionar ou remover conteúdo", + "Add / Remove Content": "Adicionar / Remover Conteúdo", + "in use": "em uso", + "Disk": "Disco", + "Look in": "Explorar", + "Open": "Abrir", + "Admin": "Administrador", + "DJ": "DJ", + "Program Manager": "Gerente de Programação", + "Guest": "Visitante", + "Guests can do the following:": "Visitantes podem fazer o seguinte:", + "View schedule": "Visualizar agendamentos", + "View show content": "Visualizar conteúdo dos programas", + "DJs can do the following:": "DJs podem fazer o seguinte:", + "Manage assigned show content": "Gerenciar o conteúdo de programas delegados a ele", + "Import media files": "Importar arquivos de mídia", + "Create playlists, smart blocks, and webstreams": "Criar listas de reprodução, blocos inteligentes e fluxos", + "Manage their own library content": "Gerenciar sua própria blblioteca de conteúdos", + "Program Managers can do the following:": "", + "View and manage show content": "Visualizar e gerenciar o conteúdo dos programas", + "Schedule shows": "Agendar programas", + "Manage all library content": "Gerenciar bibliotecas de conteúdo", + "Admins can do the following:": "Administradores podem fazer o seguinte:", + "Manage preferences": "Gerenciar configurações", + "Manage users": "Gerenciar usuários", + "Manage watched folders": "Gerenciar diretórios monitorados", + "Send support feedback": "Enviar informações de suporte", + "View system status": "Visualizar estado do sistema", + "Access playout history": "Acessar o histórico da programação", + "View listener stats": "Ver estado dos ouvintes", + "Show / hide columns": "Exibir / ocultar colunas", + "Columns": "", + "From {from} to {to}": "De {from} até {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "khz", + "Su": "Do", + "Mo": "Se", + "Tu": "Te", + "We": "Qu", + "Th": "Qu", + "Fr": "Se", + "Sa": "Sa", + "Close": "Fechar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Concluído", + "Select files": "Selecionar arquivos", + "Add files to the upload queue and click the start button.": "Adicione arquivos para a fila de upload e pressione o botão iniciar ", + "Filename": "", + "Size": "", + "Add Files": "Adicionar Arquivos", + "Stop Upload": "Parar Upload", + "Start upload": "Iniciar Upload", + "Start Upload": "", + "Add files": "Adicionar arquivos", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d arquivos importados", + "N/A": "N/A", + "Drag files here.": "Arraste arquivos nesta área.", + "File extension error.": "Erro na extensão do arquivo.", + "File size error.": "Erro no tamanho do arquivo.", + "File count error.": "Erro na contagem dos arquivos.", + "Init error.": "Erro de inicialização.", + "HTTP Error.": "Erro HTTP.", + "Security error.": "Erro de segurança.", + "Generic error.": "Erro genérico.", + "IO error.": "Erro de I/O.", + "File: %s": "Arquivos: %s.", + "%d files queued": "%d arquivos adicionados à fila.", + "File: %f, size: %s, max file size: %m": "Arquivo: %f, tamanho: %s, tamanho máximo: %m", + "Upload URL might be wrong or doesn't exist": "URL de upload pode estar incorreta ou inexiste.", + "Error: File too large: ": "Erro: Arquivo muito grande:", + "Error: Invalid file extension: ": "Erro: Extensão de arquivo inválida.", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s linhas%s copiadas para a área de transferência", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrição", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ativo", + "Disabled": "Inativo", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Usuário ou senha inválidos. Tente novamente.", + "You are viewing an older version of %s": "Você está vendo uma versão obsoleta de %s", + "You cannot add tracks to dynamic blocks.": "Você não pode adicionar faixas a um bloco dinâmico", + "You don't have permission to delete selected %s(s).": "Você não tem permissão para excluir os %s(s) selecionados.", + "You can only add tracks to smart block.": "Você pode somente adicionar faixas um bloco inteligente.", + "Untitled Playlist": "Lista Sem Título", + "Untitled Smart Block": "Bloco Sem Título", + "Unknown Playlist": "Lista Desconhecida", + "Preferences updated.": "Preferências atualizadas.", + "Stream Setting Updated.": "Preferências de fluxo atualizadas.", + "path should be specified": "o caminho precisa ser informado", + "Problem with Liquidsoap...": "Problemas com o Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmissão do programa %s de %s as %s", + "Select cursor": "Selecione o cursor", + "Remove cursor": "Remover o cursor", + "show does not exist": "programa inexistente", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Usuário adicionado com sucesso!", + "User updated successfully!": "Usuário atualizado com sucesso!", + "Settings updated successfully!": "Configurações atualizadas com sucesso!", + "Untitled Webstream": "Fluxo Sem Título", + "Webstream saved.": "Fluxo gravado.", + "Invalid form values.": "Valores do formulário inválidos.", + "Invalid character entered": "Caracter inválido informado", + "Day must be specified": "O dia precisa ser especificado", + "Time must be specified": "O horário deve ser especificado", + "Must wait at least 1 hour to rebroadcast": "É preciso aguardar uma hora para retransmitir", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usar Autenticação Personalizada:", + "Custom Username": "Definir Usuário:", + "Custom Password": "Definir Senha:", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "O usuário não pode estar em branco.", + "Password field cannot be empty.": "A senha não pode estar em branco.", + "Record from Line In?": "Gravar a partir do Line In?", + "Rebroadcast?": "Retransmitir?", + "days": "dias", + "Link:": "", + "Repeat Type:": "Tipo de Reexibição:", + "weekly": "semanal", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensal", + "Select Days:": "Selecione os Dias:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data de Fim:", + "No End?": "Sem fim?", + "End date must be after start date": "A data de fim deve ser posterior à data de início", + "Please select a repeat day": "", + "Background Colour:": "Cor de Fundo:", + "Text Colour:": "Cor da Fonte:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Programa Sem Título", + "URL:": "URL:", + "Genre:": "Gênero:", + "Description:": "Descrição:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' não corresponde ao formato 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duração:", + "Timezone:": "Fuso Horário:", + "Repeats?": "Reexibir?", + "Cannot create show in the past": "Não é possível criar um programa no passado.", + "Cannot modify start date/time of the show that is already started": "Não é possível alterar o início de um programa que está em execução", + "End date/time cannot be in the past": "Data e horário finais não podem ser definidos no passado.", + "Cannot have duration < 0m": "Não pode ter duração < 0m", + "Cannot have duration 00h 00m": "Não pode ter duração 00h 00m", + "Cannot have duration greater than 24h": "Não pode ter duração maior que 24 horas", + "Cannot schedule overlapping shows": "Não é permitido agendar programas sobrepostos", + "Search Users:": "Procurar Usuários:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Usuário:", + "Password:": "Senha:", + "Verify Password:": "Confirmar Senha:", + "Firstname:": "Primeiro nome:", + "Lastname:": "Último nome:", + "Email:": "Email:", + "Mobile Phone:": "Celular:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Perfil do Usuário:", + "Login name is not unique.": "Usuário já existe.", + "Delete All Tracks in Library": "", + "Date Start:": "Data de Início:", + "Title:": "Título:", + "Creator:": "Criador:", + "Album:": "Álbum:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Ano:", + "Label:": "Legenda:", + "Composer:": "Compositor:", + "Conductor:": "Maestro:", + "Mood:": "Humor:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Número ISRC:", + "Website:": "Website:", + "Language:": "Idioma:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome da Estação", + "Station Description": "", + "Station Logo:": "Logo da Estação:", + "Note: Anything larger than 600x600 will be resized.": "Nota: qualquer arquivo maior que 600x600 será redimensionado", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Semana Inicia Em", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Acessar", + "Password": "Senha", + "Confirm new password": "Confirmar nova senha", + "Password confirmation does not match your password.": "A senha de confirmação não confere.", + "Email": "", + "Username": "Usuário", + "Reset password": "Redefinir senha", + "Back": "", + "Now Playing": "Tocando agora", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Meus Programas:", + "My Shows": "", + "Select criteria": "Selecione um critério", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Taxa de Amostragem (khz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "horas", + "minutes": "minutos", + "items": "itens", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinâmico", + "Static": "Estático", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Gerar conteúdo da lista e salvar critério", + "Shuffle playlist content": "Embaralhar conteúdo da lista", + "Shuffle": "Embaralhar", + "Limit cannot be empty or smaller than 0": "O limite não pode ser vazio ou menor que 0", + "Limit cannot be more than 24 hrs": "O limite não pode ser maior que 24 horas", + "The value should be an integer": "O valor deve ser um número inteiro", + "500 is the max item limit value you can set": "O número máximo de itens é 500", + "You must select Criteria and Modifier": "Você precisa selecionar Critério e Modificador ", + "'Length' should be in '00:00:00' format": "A duração deve ser informada no formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "O valor deve ser numérico", + "The value should be less then 2147483648": "O valor precisa ser menor que 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "O valor deve conter no máximo %s caracteres", + "Value cannot be empty": "O valor não pode estar em branco", + "Stream Label:": "Legenda do Fluxo:", + "Artist - Title": "Artista - Título", + "Show - Artist - Title": "Programa - Artista - Título", + "Station name - Show name": "Nome da Estação - Nome do Programa", + "Off Air Metadata": "Metadados Off Air", + "Enable Replay Gain": "Habilitar Ganho de Reprodução", + "Replay Gain Modifier": "Modificador de Ganho de Reprodução", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Habilitado:", + "Mobile:": "", + "Stream Type:": "Tipo de Fluxo:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Tipo de Serviço:", + "Channels:": "Canais:", + "Server": "Servidor", + "Port": "Porta", + "Mount Point": "Ponto de Montagem", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Diretório de Importação:", + "Watched Folders:": "Diretórios Monitorados: ", + "Not a valid Directory": "Não é um diretório válido", + "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", + "'%value%' is no valid email address in the basic format local-part@hostname": "%value%' não é um enderçeo de email válido", + "'%value%' does not fit the date format '%format%'": "'%value%' não corresponde a uma data válida '%format%'", + "'%value%' is less than %min% characters long": "'%value%' is menor que comprimento mínimo %min% de caracteres", + "'%value%' is more than %max% characters long": "'%value%' is maior que o número máximo %max% de caracteres", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' não está compreendido entre '%min%' e '%max%', inclusive", + "Passwords do not match": "Senhas não conferem", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue de entrada e saída são nulos.", + "Can't set cue out to be greater than file length.": "O ponto de saída não pode ser maior que a duração do arquivo", + "Can't set cue in to be larger than cue out.": "A duração do ponto de entrada não pode ser maior que a do ponto de saída.", + "Can't set cue out to be smaller than cue in.": "A duração do ponto de saída não pode ser menor que a do ponto de entrada.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecione o País", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "A programação que você está vendo está desatualizada! (programação incompatível)", + "The schedule you're viewing is out of date! (instance mismatch)": "A programação que você está vendo está desatualizada! (instância incompatível)", + "The schedule you're viewing is out of date!": "A programação que você está vendo está desatualizada!", + "You are not allowed to schedule show %s.": "Você não tem permissão para agendar programa %s.", + "You cannot add files to recording shows.": "Você não pode adicionar arquivos para gravação de programas.", + "The show %s is over and cannot be scheduled.": "O programa %s terminou e não pode ser agendado.", + "The show %s has been previously updated!": "O programa %s foi previamente atualizado!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Um dos arquivos selecionados não existe!", + "Shows can have a max length of 24 hours.": "Os programas podem ter duração máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Não é possível agendar programas sobrepostos.\nNota: Redimensionar um programa repetitivo afeta todas as suas repetições.", + "Rebroadcast of %s from %s": "Retransmissão de %s a partir de %s", + "Length needs to be greater than 0 minutes": "A duração precisa ser maior que 0 minuto", + "Length should be of form \"00h 00m\"": "A duração deve ser informada no formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "A URL deve estar no formato \"https://example.org\"", + "URL should be 512 characters or less": "A URL de conter no máximo 512 caracteres", + "No MIME type found for webstream.": "Nenhum tipo MIME encontrado para o fluxo.", + "Webstream name cannot be empty": "O nome do fluxo não pode estar vazio", + "Could not parse XSPF playlist": "Não foi possível analisar a lista XSPF", + "Could not parse PLS playlist": "Não foi possível analisar a lista PLS", + "Could not parse M3U playlist": "Não foi possível analisar a lista M3U", + "Invalid webstream - This appears to be a file download.": "Fluxo web inválido. A URL parece tratar-se de download de arquivo.", + "Unrecognized stream type: %s": "Tipo de fluxo não reconhecido: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Visualizar Metadados do Arquivo Gravado", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Editar Programa", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Não é possível arrastar e soltar programas repetidos", + "Can't move a past show": "Não é possível mover um programa anterior", + "Can't move show into past": "Não é possível mover um programa anterior", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões.", + "Show was deleted because recorded show does not exist!": "O programa foi excluído porque a gravação prévia não existe!", + "Must wait 1 hour to rebroadcast.": "É necessário aguardar 1 hora antes de retransmitir.", + "Track": "", + "Played": "Executado", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/ru_RU.json b/webapp/src/locale/ru_RU.json index d443da1f94..eff689b515 100644 --- a/webapp/src/locale/ru_RU.json +++ b/webapp/src/locale/ru_RU.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s год должен быть в пределах 1753 - 9999", - "%s-%s-%s is not a valid date": "%s - %s - %s недопустимая дата", - "%s:%s:%s is not a valid time": "%s : %s : %s недопустимое время", - "English": "Английский", - "Afar": "Афар", - "Abkhazian": "Абхазский", - "Afrikaans": "Африкаанс", - "Amharic": "Амхарский", - "Arabic": "Арабский", - "Assamese": "Ассамский", - "Aymara": "Аймара", - "Azerbaijani": "Азербаджанский", - "Bashkir": "Башкирский", - "Belarusian": "Белорусский", - "Bulgarian": "Болгарский", - "Bihari": "Бихари", - "Bislama": "Бислама", - "Bengali/Bangla": "Бенгали", - "Tibetan": "Тибетский", - "Breton": "Бретонский", - "Catalan": "Каталанский", - "Corsican": "Корсиканский", - "Czech": "Чешский", - "Welsh": "Вэльский", - "Danish": "Данский", - "German": "Немецкий", - "Bhutani": "Бутан", - "Greek": "Греческий", - "Esperanto": "Эсперанто", - "Spanish": "Испанский", - "Estonian": "Эстонский", - "Basque": "Басков", - "Persian": "Персидский", - "Finnish": "Финский", - "Fiji": "Фиджи", - "Faeroese": "Фарси", - "French": "Французский", - "Frisian": "Фризский", - "Irish": "Ирландский", - "Scots/Gaelic": "Шотландский", - "Galician": "Галицийский", - "Guarani": "Гуананский", - "Gujarati": "Гуджарати", - "Hausa": "Науса", - "Hindi": "Хинди", - "Croatian": "Хорватский", - "Hungarian": "Венгерский", - "Armenian": "Армянский", - "Interlingua": "Интернациональный", - "Interlingue": "Интерлинг", - "Inupiak": "Инупиак", - "Indonesian": "Индонезийский", - "Icelandic": "Исландский", - "Italian": "Итальянский", - "Hebrew": "Иврит", - "Japanese": "Японский", - "Yiddish": "Иудейский", - "Javanese": "Яванский", - "Georgian": "Грузинский", - "Kazakh": "Казахский", - "Greenlandic": "Гренландский", - "Cambodian": "Камбоджийский", - "Kannada": "Каннадский", - "Korean": "Корейский", - "Kashmiri": "Кашмирский", - "Kurdish": "Курдский", - "Kirghiz": "Киргизский", - "Latin": "Латынь", - "Lingala": "Лингала", - "Laothian": "Лаосский", - "Lithuanian": "Литовский", - "Latvian/Lettish": "Латвийский", - "Malagasy": "Малайзийский", - "Maori": "Маори", - "Macedonian": "Македонский", - "Malayalam": "Малаямский", - "Mongolian": "Монгольский", - "Moldavian": "Молдавский", - "Marathi": "Маратхи", - "Malay": "Малайзийский", - "Maltese": "Мальтийский", - "Burmese": "Бирманский", - "Nauru": "Науру", - "Nepali": "Непальский", - "Dutch": "Немецкий", - "Norwegian": "Норвежский", - "Occitan": "Окситанский", - "(Afan)/Oromoor/Oriya": "(Афан)/Оромур/Ория", - "Punjabi": "Панджаби Эм Си", - "Polish": "Польский", - "Pashto/Pushto": "Пушту", - "Portuguese": "Португальский", - "Quechua": "Кечуа", - "Rhaeto-Romance": "Рэето-романс", - "Kirundi": "Кирунди", - "Romanian": "Румынский", - "Russian": "Русский", - "Kinyarwanda": "Киньяруанда", - "Sanskrit": "Санскрит", - "Sindhi": "Синди", - "Sangro": "Сангро", - "Serbo-Croatian": "Сербский", - "Singhalese": "Синигальский", - "Slovak": "Словацкий", - "Slovenian": "Славянский", - "Samoan": "Самоанский", - "Shona": "Шона", - "Somali": "Сомалийский", - "Albanian": "Албанский", - "Serbian": "Сербский", - "Siswati": "Сисвати", - "Sesotho": "Сесото", - "Sundanese": "Сунданский", - "Swedish": "Шведский", - "Swahili": "Суахили", - "Tamil": "Тамильский", - "Tegulu": "Телугу", - "Tajik": "Таджикский", - "Thai": "Тайский", - "Tigrinya": "Тигринья", - "Turkmen": "Туркменский", - "Tagalog": "Тагальский", - "Setswana": "Сетсвана", - "Tonga": "Тонга", - "Turkish": "Турецкий", - "Tsonga": "Тсонга", - "Tatar": "Татарский", - "Twi": "Тви", - "Ukrainian": "Украинский", - "Urdu": "Урду", - "Uzbek": "Узбекский", - "Vietnamese": "Въетнамский", - "Volapuk": "Волапукский", - "Wolof": "Волоф", - "Xhosa": "Хоса", - "Yoruba": "Юрубский", - "Chinese": "Китайский", - "Zulu": "Зулу", - "Use station default": "Время станции по умолчанию", - "Upload some tracks below to add them to your library!": "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s.", - "Click the 'New Show' button and fill out the required fields.": "Нажмите на кнопку «Новая Программа» и заполните необходимые поля.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Выберите следующую Программу и нажмите «Запланировать Треки»", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s.", - "LibreTime media analyzer service": "Служба медиа анализатора LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Проверьте, что служба libretime-analyzer правильно установлена в ", - " and ensure that it's running with ": " а также убедитесь, что она запущена ", - "If not, try ": "Если нет - попробуйте запустить", - "LibreTime playout service": "Служба воспроизведения LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Проверьте, что служба libretime-playout правильно установлена в ", - "LibreTime liquidsoap service": "Служба Liquidsoap LibreTime", - "Check that the libretime-liquidsoap service is installed correctly in ": "Проверьте, что служба libretime-liquidsoap правильно установлена в ", - "LibreTime Celery Task service": "Служба Celery Task LibreTime", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Страница Радио", - "Calendar": "Календарь", - "Widgets": "Виджеты", - "Player": "Плеер", - "Weekly Schedule": "Расписание программ", - "Settings": "Настройки", - "General": "Основные", - "My Profile": "Мой профиль", - "Users": "Пользователи", - "Track Types": "Типы треков", - "Streams": "Аудио потоки", - "Status": "Статус системы", - "Analytics": "Аналитика", - "Playout History": "История воспроизведения треков", - "History Templates": "Шаблоны истории", - "Listener Stats": "Статистика по слушателям", - "Show Listener Stats": "Статистика прослушиваний", - "Help": "Справка", - "Getting Started": "С чего начать", - "User Manual": "Руководство пользователя", - "Get Help Online": "Получить справку онлайн", - "Contribute to LibreTime": "", - "What's New?": "Что нового?", - "You are not allowed to access this resource.": "Вы не имеете доступа к этому ресурсу.", - "You are not allowed to access this resource. ": "Вы не имеете доступа к этому ресурсу. ", - "File does not exist in %s": "Файл не существует в %s", - "Bad request. no 'mode' parameter passed.": "Неверный запрос. Параметр «режим» не прошел.", - "Bad request. 'mode' parameter is invalid": "Неверный запрос. Параметр «режим» является недопустимым", - "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", - "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", - "You don't have permission to switch source.": "У вас нет прав для переключения источника.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:

\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "Page not found.": "Страница не найдена.", - "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", - "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", - "An internal application error has occurred.": "Произошла внутренняя ошибка.", - "%s Podcast": "%s Подкаст", - "No tracks have been published yet.": "Ни одного трека пока не опубликовано.", - "%s not found": "%s не найден", - "Something went wrong.": "Что-то пошло не так.", - "Preview": "Прослушать", - "Add to Playlist": "Добавить в Плейлист", - "Add to Smart Block": "Добавить в Смарт-блок", - "Delete": "Удалить", - "Edit...": "Редактировать...", - "Download": "Загрузка", - "Duplicate Playlist": "Дублировать Плейлист", - "Duplicate Smartblock": "Дублировать Смарт-блок", - "No action available": "Нет доступных действий", - "You don't have permission to delete selected items.": "У вас нет разрешения на удаление выбранных объектов.", - "Could not delete file because it is scheduled in the future.": "Нельзя удалить запланированный файл.", - "Could not delete file(s).": "Нельзя удалить файл(ы)", - "Copy of %s": "Копия %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки.", - "Audio Player": "Аудио плеер", - "Something went wrong!": "Что-то пошло не так!", - "Recording:": "Запись:", - "Master Stream": "Master-Steam", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Ничего нет", - "Current Show:": "Текущая Программа:", - "Current": "Играет", - "You are running the latest version": "Вы используете последнюю версию", - "New version available: ": "Доступна новая версия: ", - "You have a pre-release version of LibreTime intalled.": "У вас установлена предварительная версия LibreTime.", - "A patch update for your LibreTime installation is available.": "Доступен патч обновлений для текущей версии LibreTime.", - "A feature update for your LibreTime installation is available.": "Доступно обновление функций для текущей версии LibreTime.", - "A major update for your LibreTime installation is available.": "Доступно важное обновление для текущей версии LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее.", - "Add to current playlist": "Добавить в текущий Плейлист", - "Add to current smart block": "Добавить в текущий Смарт-блок", - "Adding 1 Item": "Добавление одного элемента", - "Adding %s Items": "Добавление %s элементов", - "You can only add tracks to smart blocks.": "Вы можете добавить только треки в Смарт-блоки.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты.", - "Please select a cursor position on timeline.": "Переместите курсор по временной шкале.", - "You haven't added any tracks": "Вы не добавили ни одного трека", - "You haven't added any playlists": "Вы не добавили ни одного Плейлиста", - "You haven't added any podcasts": "У вас не добавлено ни одного подкаста", - "You haven't added any smart blocks": "Вы не добавили ни одного Смарт-блока", - "You haven't added any webstreams": "Вы не добавили ни одного веб-потока", - "Learn about tracks": "Узнать больше о треках", - "Learn about playlists": "Узнать больше о Плейлистах", - "Learn about podcasts": "Узнать больше о Подкастах", - "Learn about smart blocks": "Узнать больше об Смарт-блоках", - "Learn about webstreams": "Узнать больше о веб-потоках", - "Click 'New' to create one.": "Выберите «Новый» для создания.", - "Add": "Добавить", - "New": "Новый", - "Edit": "Редактировать", - "Add to Schedule": "Добавить в расписание", - "Add to next show": "Добавить к следующему шоу", - "Add to current show": "Добавить к текущему шоу", - "Add after selected items": "", - "Publish": "Опубликовать", - "Remove": "Удалить", - "Edit Metadata": "Править мета-данные", - "Add to selected show": "Добавить в выбранную Программу", - "Select": "Выбрать", - "Select this page": "Выбрать текущую страницу", - "Deselect this page": "Отменить выбор текущей страницы", - "Deselect all": "Отменить все выделения", - "Are you sure you want to delete the selected item(s)?": "Вы действительно хотите удалить выбранные элементы?", - "Scheduled": "Запланирован", - "Tracks": "Треки", - "Playlist": "Плейлист", - "Title": "Название", - "Creator": "Автор", - "Album": "Альбом", - "Bit Rate": "Битрейт", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Дирижер", - "Copyright": "Копирайт", - "Encoded By": "Закодировано", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Метка", - "Language": "Язык", - "Last Modified": "Изменен", - "Last Played": "Последнее проигрывание", - "Length": "Длительность", - "Mime": "Mime", - "Mood": "Настроение", - "Owner": "Владелец", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Номер трека", - "Uploaded": "Загружено", - "Website": "Вебсайт", - "Year": "Год", - "Loading...": "Загрузка...", - "All": "Все", - "Files": "Файлы", - "Playlists": "Плейлисты", - "Smart Blocks": "Смарт-блоки", - "Web Streams": "Веб-потоки", - "Unknown type: ": "Неизвестный тип: ", - "Are you sure you want to delete the selected item?": "Вы действительно хотите удалить выбранный элемент?", - "Uploading in progress...": "Загружается ...", - "Retrieving data from the server...": "Получение данных с сервера ...", - "Import": "Импорт", - "Imported?": "Импортировано?", - "View": "Посмотреть", - "Error code: ": "Код ошибки: ", - "Error msg: ": "Сообщение об ошибке: ", - "Input must be a positive number": "Ввод должен быть положительным числом", - "Input must be a number": "Ввод должен быть числом", - "Input must be in the format: yyyy-mm-dd": "Ввод должен быть в формате: гггг-мм-дд", - "Input must be in the format: hh:mm:ss.t": "Ввод должен быть в формате: чч:мм:сс", - "My Podcast": "Мой Подкаст", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?", - "Open Media Builder": "Открыть медиа-построитель", - "please put in a time '00:00:00 (.0)'": "пожалуйста, установите время '00:00:00.0'", - "Please enter a valid time in seconds. Eg. 0.5": "Пожалуйста, укажите допустимое время в секундах. Например: 0.5", - "Your browser does not support playing this file type: ": "Ваш браузер не поддерживает воспроизведения данного типа файлов: ", - "Dynamic block is not previewable": "Динамический Блок не подлежит предпросмотру", - "Limit to: ": "Ограничить до: ", - "Playlist saved": "Плейлист сохранен", - "Playlist shuffled": "Плейлист перемешан", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра.", - "Listener Count on %s: %s": "Количество слушателей %s : %s", - "Remind me in 1 week": "Напомнить мне через одну неделю", - "Remind me never": "Никогда не напоминать", - "Yes, help Airtime": "Да, помочь LibreTime", - "Image must be one of jpg, jpeg, png, or gif": "Изображение должно быть в формате: jpg, jpeg, png или gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке.", - "Smart block shuffled": "Смарт-блок перемешан", - "Smart block generated and criteria saved": "Смарт-блок создан и критерии сохранены", - "Smart block saved": "Смарт-блок сохранен", - "Processing...": "Подождите...", - "Select modifier": "Выберите модификатор", - "contains": "содержит", - "does not contain": "не содержит", - "is": "является", - "is not": "не является", - "starts with": "начинается с", - "ends with": "заканчивается", - "is greater than": "больше, чем", - "is less than": "меньше, чем", - "is in the range": "в диапазоне", - "Generate": "Сгенерировать", - "Choose Storage Folder": "Выберите папку хранения", - "Choose Folder to Watch": "Выберите папку для просмотра", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Вы уверены, что хотите изменить папку хранения? \n Файлы из вашей Библиотеки будут удалены!", - "Manage Media Folders": "Управление папками медиа-файлов", - "Are you sure you want to remove the watched folder?": "Вы уверены, что хотите удалить просматриваемую папку?", - "This path is currently not accessible.": "Этот путь в настоящий момент недоступен.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены.", - "Connected to the streaming server": "Подключено к потоковому серверу", - "The stream is disabled": "Поток отключен", - "Getting information from the server...": "Получение информации с сервера ...", - "Can not connect to the streaming server": "Не удалось подключиться к потоковому серверу", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151.", - "For more details, please read the %s%s Manual%s": "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях.", - "Warning: You cannot change this field while the show is currently playing": "Внимание: Вы не можете изменить данное поле, пока Программа в эфире", - "No result found": "Не найдено", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться.", - "Specify custom authentication which will work only for this show.": "Укажите пользователя, который будет работать только в этой Программе.", - "The show instance doesn't exist anymore!": "Программы больше не существует!", - "Warning: Shows cannot be re-linked": "Внимание: Программы не могут быть пересвязаны", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса.", - "Show": "Программа", - "Show is empty": "Пустая Программа", - "1m": "1 мин", - "5m": "5 мин", - "10m": "10 мин", - "15m": "15 мин", - "30m": "30 мин", - "60m": "60 мин", - "Retreiving data from the server...": "Получение данных с сервера ...", - "This show has no scheduled content.": "В этой Программе нет запланированного контента.", - "This show is not completely filled with content.": "Данная Программа не до конца заполнена контентом.", - "January": "Январь", - "February": "Февраль", - "March": "Март", - "April": "Апрель", - "May": "Май", - "June": "Июнь", - "July": "Июль", - "August": "Август", - "September": "Сентябрь", - "October": "Октябрь", - "November": "Ноябрь", - "December": "Декабрь", - "Jan": "Янв", - "Feb": "Фев", - "Mar": "Март", - "Apr": "Апр", - "Jun": "Июн", - "Jul": "Июл", - "Aug": "Авг", - "Sep": "Сент", - "Oct": "Окт", - "Nov": "Нояб", - "Dec": "Дек", - "Today": "Сегодня", - "Day": "День", - "Week": "Неделя", - "Month": "Месяц", - "Sunday": "Воскресенье", - "Monday": "Понедельник", - "Tuesday": "Вторник", - "Wednesday": "Среда", - "Thursday": "Четверг", - "Friday": "Пятница", - "Saturday": "Суббота", - "Sun": "Вс", - "Mon": "Пн", - "Tue": "Вт", - "Wed": "Ср", - "Thu": "Чт", - "Fri": "Пт", - "Sat": "Сб", - "Shows longer than their scheduled time will be cut off by a following show.": "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой.", - "Cancel Current Show?": "Отменить эту Программу?", - "Stop recording current show?": "Остановить запись текущей Программы?", - "Ok": "Оk", - "Contents of Show": "Содержимое Программы", - "Remove all content?": "Удалить все содержимое?", - "Delete selected item(s)?": "Удалить выбранные элементы?", - "Start": "Начало", - "End": "Конец", - "Duration": "Длительность", - "Filtering out ": "Фильтрация ", - " of ": " из ", - " records": " записи", - "There are no shows scheduled during the specified time period.": "Нет Программ, запланированных в указанный период времени.", - "Cue In": "Начало звучания", - "Cue Out": "Окончание звучания", - "Fade In": "Сведение", - "Fade Out": "Затухание", - "Show Empty": "Программа пуста", - "Recording From Line In": "Запись с линейного входа", - "Track preview": "Предпросмотр трека", - "Cannot schedule outside a show.": "Нельзя планировать вне рамок Программы.", - "Moving 1 Item": "Перемещение одного элемента", - "Moving %s Items": "Перемещение %s элементов", - "Save": "Сохранить", - "Cancel": "Отменить", - "Fade Editor": "Редактор затухания", - "Cue Editor": "Редактор начала трека", - "Waveform features are available in a browser supporting the Web Audio API": "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API", - "Select all": "Выбрать все", - "Select none": "Снять выделения", - "Trim overbooked shows": "Обрезать пересекающиеся Программы", - "Remove selected scheduled items": "Удалить выбранные запланированные элементы", - "Jump to the current playing track": "Перейти к текущей проигрываемой дорожке", - "Jump to Current": "Перейти к текущему треку", - "Cancel current show": "Отмена текущей Программы", - "Open library to add or remove content": "Открыть Библиотеку, чтобы добавить или удалить содержимое", - "Add / Remove Content": "Добавить/удалить содержимое", - "in use": "используется", - "Disk": "Диск", - "Look in": "Посмотреть", - "Open": "Открыть", - "Admin": "Админ", - "DJ": "Диджей", - "Program Manager": "Менеджер", - "Guest": "Гость", - "Guests can do the following:": "Гости могут следующее:", - "View schedule": "Просматривать расписание", - "View show content": "Просматривать содержимое программы", - "DJs can do the following:": "DJ может:", - "Manage assigned show content": "- Управлять контентом назначенной ему Программы;", - "Import media files": "Импортировать медиа-файлы", - "Create playlists, smart blocks, and webstreams": "Создавать плейлисты, смарт-блоки и вебстримы", - "Manage their own library content": "Управлять содержимым собственной библиотеки", - "Program Managers can do the following:": "Менеджеры Программ могут следующее:", - "View and manage show content": "Просматривать и управлять содержимым программы", - "Schedule shows": "Планировать программы", - "Manage all library content": "Управлять содержимым всех библиотек", - "Admins can do the following:": "Администраторы могут:", - "Manage preferences": "Управлять настройками", - "Manage users": "Управлять пользователями", - "Manage watched folders": "Управлять просматриваемыми папками", - "Send support feedback": "Отправлять отзыв поддержке", - "View system status": "Просматривать статус системы", - "Access playout history": "Получить доступ к истории воспроизведений", - "View listener stats": "Видеть статистику слушателей", - "Show / hide columns": "Показать/скрыть столбцы", - "Columns": "Столбцы", - "From {from} to {to}": "С {from} до {to}", - "kbps": "кбит/с", - "yyyy-mm-dd": "гггг-мм-дд", - "hh:mm:ss.t": "чч:мм:сс.t", - "kHz": "кГц", - "Su": "Вс", - "Mo": "Пн", - "Tu": "Вт", - "We": "Ср", - "Th": "Чт", - "Fr": "Пт", - "Sa": "Сб", - "Close": "Закрыть", - "Hour": "Часы", - "Minute": "Минуты", - "Done": "Готово", - "Select files": "Выбрать файлы", - "Add files to the upload queue and click the start button.": "Добавьте файлы в очередь загрузки и нажмите кнопку Старт.", - "Filename": "", - "Size": "", - "Add Files": "Добавить файлы", - "Stop Upload": "Остановить загрузку", - "Start upload": "Начать загрузку", - "Start Upload": "", - "Add files": "Добавить файлы", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Загружено %d/%d файлов", - "N/A": "н/д", - "Drag files here.": "Перетащите файлы сюда.", - "File extension error.": "Неверное расширение файла.", - "File size error.": "Неверный размер файла.", - "File count error.": "Ошибка подсчета файла.", - "Init error.": "Ошибка инициализации.", - "HTTP Error.": "Ошибка HTTP.", - "Security error.": "Ошибка безопасности.", - "Generic error.": "Общая ошибка.", - "IO error.": "Ошибка записи/чтения.", - "File: %s": "Файл: %s", - "%d files queued": "%d файлов в очереди", - "File: %f, size: %s, max file size: %m": "Файл: %f, размер: %s, максимальный размер файла: %m", - "Upload URL might be wrong or doesn't exist": "URL загрузки указан неверно или не существует", - "Error: File too large: ": "Ошибка: Файл слишком большой: ", - "Error: Invalid file extension: ": "Ошибка: Неверное расширение файла: ", - "Set Default": "Установить по умолчанию", - "Create Entry": "Создать", - "Edit History Record": "Редактировать историю", - "No Show": "Нет программы", - "Copied %s row%s to the clipboard": "Скопировано %s строк %s в буфер обмена", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения.", - "New Show": "Новая Программа", - "New Log Entry": "Новая запись в журнале", - "No data available in table": "В таблице нет данных", - "(filtered from _MAX_ total entries)": "(отфильтровано из _MAX_ записей)", - "First": "Первая", - "Last": "Последняя", - "Next": "Следующая", - "Previous": "Предыдущая", - "Search:": "Поиск:", - "No matching records found": "Записи отсутствуют.", - "Drag tracks here from the library": "Перетащите треки сюда из Библиотеки", - "No tracks were played during the selected time period.": "В течение выбранного периода времени треки не воспроизводились.", - "Unpublish": "Снять с публикации", - "No matching results found.": "Результаты не найдены.", - "Author": "Автор", - "Description": "Описание", - "Link": "Ссылка", - "Publication Date": "Дата публикации", - "Import Status": "Статус загрузки", - "Actions": "Действия", - "Delete from Library": "Удалить из Библиотеки", - "Successfully imported": "Успешно загружено", - "Show _MENU_": "Показать _MENU_", - "Show _MENU_ entries": "Показать _MENU_ записей", - "Showing _START_ to _END_ of _TOTAL_ entries": "Записи с _START_ до _END_ из _TOTAL_ записей", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано с _START_ по _END_ из _TOTAL_ треков", - "Showing _START_ to _END_ of _TOTAL_ track types": "Показано с _START_ по _END_ из _TOTAL_ типов трека", - "Showing _START_ to _END_ of _TOTAL_ users": "Показано с _START_ по _END_ из _TOTAL_ пользователей", - "Showing 0 to 0 of 0 entries": "Записи с 0 до 0 из 0 записей", - "Showing 0 to 0 of 0 tracks": "Показано с 0 по 0 из 0 треков", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "Вы уверены что хотите удалить этот тип трека?", - "No track types were found.": "Типы треков не были найдены.", - "No track types found": "Типы треков не найдены", - "No matching track types found": "Не найдено подходящих типов треков", - "Enabled": "Включено", - "Disabled": "Отключено", - "Cancel upload": "Отменить загрузку", - "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "Настройки подкаста сохранены", - "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", - "Can't delete yourself!": "Вы не можете удалить себя!", - "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", - "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", - "Try it now": "Попробовать сейчас", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

", - "Playlist preview": "Предпросмотр плейлиста", - "Smart Block": "Смарт-блок", - "Webstream preview": "Предпросмотр веб-потока", - "You don't have permission to view the library.": "У вас нет разрешений для просмотра Библиотеки", - "Now": "С текущего момента", - "Click 'New' to create one now.": "Нажмите «Новый» чтобы создать новый", - "Click 'Upload' to add some now.": "Нажмите «Загрузить» чтобы добавить новый", - "Feed URL": "Ссылка на ленту", - "Import Date": "Дата импорта", - "Add New Podcast": "Добавить новый подкаст", - "Cannot schedule outside a show.\nTry creating a show first.": "Нельзя планировать аудио вне рамок Программы.\nПопробуйте сначала создать Программу", - "No files have been uploaded yet.": "Еще ни одного файла не загружено", - "On Air": "В прямом эфире", - "Off Air": "Не в эфире", - "Offline": "Офлайн", - "Nothing scheduled": "Ничего не запланировано", - "Click 'Add' to create one now.": "Нажмите «Добавить» чтобы создать новый", - "Please enter your username and password.": "Пожалуйста введите ваш логин и пароль.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом.", - "That username or email address could not be found.": "Такой пользователь или e-mail не найдены.", - "There was a problem with the username or email address you entered.": "Неправильно ввели логин или e-mail.", - "Wrong username or password provided. Please try again.": "Неверный логин или пароль. Пожалуйста, попробуйте еще раз.", - "You are viewing an older version of %s": "Вы просматриваете старые версии %s", - "You cannot add tracks to dynamic blocks.": "Вы не можете добавить треки в динамические блоки.", - "You don't have permission to delete selected %s(s).": "У вас нет разрешения на удаление выбранных %s(s).", - "You can only add tracks to smart block.": "Вы можете добавить треки только в Смарт-блок.", - "Untitled Playlist": "Плейлист без названия", - "Untitled Smart Block": "Смарт-блок без названия", - "Unknown Playlist": "Неизвестный Плейлист", - "Preferences updated.": "Настройки сохранены.", - "Stream Setting Updated.": "Настройки потока обновлены.", - "path should be specified": "необходимо указать путь", - "Problem with Liquidsoap...": "Проблема с Liquidsoap ...", - "Request method not accepted": "Метод запроса не принят", - "Rebroadcast of show %s from %s at %s": "Ретрансляция Программы %s от %s в %s", - "Select cursor": "Выбрать курсор", - "Remove cursor": "Удалить курсор", - "show does not exist": "Программы не существует", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Пользователь успешно добавлен!", - "User updated successfully!": "Пользователь успешно обновлен!", - "Settings updated successfully!": "Настройки успешно обновлены!", - "Untitled Webstream": "Веб-поток без названия", - "Webstream saved.": "Веб-поток сохранен.", - "Invalid form values.": "Недопустимые значения.", - "Invalid character entered": "Неверно введенный символ", - "Day must be specified": "Укажите день", - "Time must be specified": "Укажите время", - "Must wait at least 1 hour to rebroadcast": "Нужно подождать хотя бы один час для ретрансляции", - "Add Autoloading Playlist ?": "Добавить?", - "Select Playlist": "Выбрать Плейлист", - "Repeat Playlist Until Show is Full ?": "Повторять Плейлист, пока Программа не заполнится?", - "Use %s Authentication:": "Использовать %s Аутентификацию:", - "Use Custom Authentication:": "Использование пользовательской идентификации:", - "Custom Username": "Пользовательский логин", - "Custom Password": "Пользовательский пароль", - "Host:": "Хост:", - "Port:": "Порт:", - "Mount:": "Точка монтирования:", - "Username field cannot be empty.": "Поле «Логин» не может быть пустым.", - "Password field cannot be empty.": "Поле «Пароль» не может быть пустым.", - "Record from Line In?": "Запись с линейного входа?", - "Rebroadcast?": "Ретрансляция?", - "days": "дней", - "Link:": "Связать?", - "Repeat Type:": "Тип повтора:", - "weekly": "еженедельно", - "every 2 weeks": "каждые 2 недели", - "every 3 weeks": "каждые 3 недели", - "every 4 weeks": "каждые 4 недели", - "monthly": "ежемесячно", - "Select Days:": "Выберите дни недели:", - "Repeat By:": "Повторять:", - "day of the month": "день месяца", - "day of the week": "день недели", - "Date End:": "Дата окончания:", - "No End?": "Бесконечно?", - "End date must be after start date": "Дата окончания должна быть после даты начала", - "Please select a repeat day": "Укажите день повтора", - "Background Colour:": "Цвет фона:", - "Text Colour:": "Цвет текста:", - "Current Logo:": "Текущий логотип:", - "Show Logo:": "Логотип Программы:", - "Logo Preview:": "Предпросмотр логотипа:", - "Name:": "Имя:", - "Untitled Show": "Программа без названия", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Описание:", - "Instance Description:": "Описание экземпляра:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' не соответствует формату времени 'HH:mm'", - "Start Time:": "Время начала:", - "In the Future:": "В будущем:", - "End Time:": "Время завершения:", - "Duration:": "Длительность:", - "Timezone:": "Часовой пояс:", - "Repeats?": "Повторы?", - "Cannot create show in the past": "Нельзя создать Программу в прошлом", - "Cannot modify start date/time of the show that is already started": "Нельзя изменить дату/время начала Программы, которая уже началась", - "End date/time cannot be in the past": "Дата/время окончания не могут быть в прошлом", - "Cannot have duration < 0m": "Не может длиться меньше 0 мин.", - "Cannot have duration 00h 00m": "Не может длиться 00 ч 00 мин", - "Cannot have duration greater than 24h": "Программа не может длиться больше 24 часов", - "Cannot schedule overlapping shows": "Нельзя запланировать пересекающиеся Программы.", - "Search Users:": "Поиск пользователей:", - "DJs:": "Диджеи:", - "Type Name:": "Название типа", - "Code:": "Код:", - "Visibility:": "Видимость:", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Логин:", - "Password:": "Пароль:", - "Verify Password:": "Пароль еще раз:", - "Firstname:": "Имя:", - "Lastname:": "Фамилия:", - "Email:": "E-mail:", - "Mobile Phone:": "Номер телефона:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Категория:", - "Login name is not unique.": "Логин не является уникальным.", - "Delete All Tracks in Library": "Удалить все треки в Библиотеке", - "Date Start:": "Дата начала:", - "Title:": "Название:", - "Creator:": "Автор:", - "Album:": "Альбом:", - "Owner:": "Владелец:", - "Select a Type": "", - "Track Type:": "", - "Year:": "Год:", - "Label:": "Метка:", - "Composer:": "Композитор:", - "Conductor:": "Исполнитель:", - "Mood:": "Настроение:", - "BPM:": "BPM:", - "Copyright:": "Авторское право:", - "ISRC Number:": "ISRC номер:", - "Website:": "Сайт:", - "Language:": "Язык:", - "Publish...": "Опубликовать...", - "Start Time": "Время начала", - "End Time": "Время окончания", - "Interface Timezone:": "Часовой пояс:", - "Station Name": "Название Станции:", - "Station Description": "Описание Станции:", - "Station Logo:": "Логотип Станции:", - "Note: Anything larger than 600x600 will be resized.": "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены.", - "Default Crossfade Duration (s):": "Стандартная длительность сведения треков (сек):", - "Please enter a time in seconds (eg. 0.5)": "Пожалуйста введите время в секундах (например 0.5)", - "Default Fade In (s):": "Сведение по умолчанию (сек):", - "Default Fade Out (s):": "Затухание по умолчанию (сек):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "Вступительный автозагружаемый плейлист (Intro)", - "Outro Autoloading Playlist": "Завершающий автозагружаемый плейлист (Outro)", - "Overwrite Podcast Episode Metatags": "Перезапись мета-тегов эпизодов Подкастов:", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды.", - "Public LibreTime API": "Разрешить публичный API для LibreTime?", - "Required for embeddable schedule widget.": "Требуется для встраиваемого виджета-расписания.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт.", - "Default Language": "Язык по умолчанию:", - "Station Timezone": "Часовой пояс станции:", - "Week Starts On": "Неделя начинается с:", - "Display login button on your Radio Page?": "Отображать кнопку «Вход» на Странице Радио?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Авто-откл. внешнего потока:", - "Auto Switch On:": "Авто-вкл. внешнего потока:", - "Switch Transition Fade (s):": "Затухание при переключ. (сек):", - "Master Source Host:": "Хост для источника Master:", - "Master Source Port:": "Порт для источника Master:", - "Master Source Mount:": "Точка монтирования для источника Master:", - "Show Source Host:": "Хост для источника Show:", - "Show Source Port:": "Порт для источника Show:", - "Show Source Mount:": "Точка монтирования для источника Show:", - "Login": "Вход", - "Password": "Пароль", - "Confirm new password": "Подтвердить новый пароль", - "Password confirmation does not match your password.": "Подтверждение пароля не совпадает с вашим паролем.", - "Email": "Электронная почта", - "Username": "Логин", - "Reset password": "Сбросить пароль", - "Back": "Назад", - "Now Playing": "Сейчас играет", - "Select Stream:": "Выбрать поток:", - "Auto detect the most appropriate stream to use.": "Автоопределение наиболее приоритетного потока вещания.", - "Select a stream:": "Выберите поток:", - " - Mobile friendly": " - Совместимость с мобильными", - " - The player does not support Opus streams.": " - Проигрыватель не поддерживает вещание Opus .", - "Embeddable code:": "Встраиваемый код:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер.", - "Preview:": "Предпросмотр:", - "Feed Privacy": "Приватность ленты", - "Public": "Публичный", - "Private": "Частный", - "Station Language": "Язык радиостанции", - "Filter by Show": "Фильтровать по Программам", - "All My Shows:": "Все мои Программы:", - "My Shows": "Мои Программы", - "Select criteria": "Выбрать критерии", - "Bit Rate (Kbps)": "Битрейт (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Частота дискретизации (кГц)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "часов", - "minutes": "минут", - "items": "элементы", - "time remaining in show": "оставшееся время программы", - "Randomly": "Случайно", - "Newest": "Новые", - "Oldest": "Старые", - "Most recently played": "Давно проигранные", - "Least recently played": "Недавно проигранные", - "Select Track Type": "", - "Type:": "Тип:", - "Dynamic": "Динамический", - "Static": "Статический", - "Select track type": "", - "Allow Repeated Tracks:": "Разрешить повторение треков:", - "Allow last track to exceed time limit:": "Разрешить последнему треку превышать лимит времени:", - "Sort Tracks:": "Сортировка треков:", - "Limit to:": "Ограничить в:", - "Generate playlist content and save criteria": "Сгенерировать содержимое Плейлиста и сохранить критерии", - "Shuffle playlist content": "Перемешать содержимое Плейлиста", - "Shuffle": "Перемешать", - "Limit cannot be empty or smaller than 0": "Интервал не может быть пустым или менее 0", - "Limit cannot be more than 24 hrs": "Интервал не может быть более 24 часов", - "The value should be an integer": "Значение должно быть целым числом", - "500 is the max item limit value you can set": "500 является максимально допустимым значением", - "You must select Criteria and Modifier": "Вы должны выбрать Критерии и Модификаторы", - "'Length' should be in '00:00:00' format": "«Длительность» должна быть в формате '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Значение должно быть числом", - "The value should be less then 2147483648": "Значение должно быть меньше, чем 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Значение должно быть менее %s символов", - "Value cannot be empty": "Значение не может быть пустым", - "Stream Label:": "Мета-данные потока:", - "Artist - Title": "Исполнитель - Название трека ", - "Show - Artist - Title": "Программа - Исполнитель - Название трека", - "Station name - Show name": "Название станции - Программа", - "Off Air Metadata": "Мета-данные при выкл. эфире", - "Enable Replay Gain": "Включить коэфф. усиления", - "Replay Gain Modifier": "Изменить коэфф. усиления", - "Hardware Audio Output:": "Аппаратный аудио выход", - "Output Type": "Тип выхода", - "Enabled:": "Активировать:", - "Mobile:": "Мобильный:", - "Stream Type:": "Тип потока:", - "Bit Rate:": "Битрейт:", - "Service Type:": "Тип сервиса:", - "Channels:": "Аудио каналы:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Точка монтирования", - "Name": "Название", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Добавить мета-данные вашей станции в TuneIn?", - "Station ID:": "ID станции:", - "Partner Key:": "Ключ партнера:", - "Partner Id:": "Идентификатор партнера:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку.", - "Import Folder:": "Импорт папки:", - "Watched Folders:": "Просматриваемые папки:", - "Not a valid Directory": "Не является допустимой папкой", - "Value is required and can't be empty": "Поля не могут быть пустыми", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не является действительным адресом электронной почты в формате local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не соответствует формату даты '%format%'", - "'%value%' is less than %min% characters long": "'%value%' имеет менее %min% символов", - "'%value%' is more than %max% characters long": "'%value%' имеет более %max% символов", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не входит в промежуток '%min%' и '%max%', включительно", - "Passwords do not match": "Пароли не совпадают", - "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", - "\n\nThank you,\nThe %s Team": "\n\nСпасибо,\nКоманда %s", - "%s Password Reset": "%s Сброс пароля", - "Cue in and cue out are null.": "Время начала и окончания звучания трека не заполнены.", - "Can't set cue out to be greater than file length.": "Время окончания звучания не может превышать длину трека.", - "Can't set cue in to be larger than cue out.": "Время начала звучания не может быть позже времени окончания.", - "Can't set cue out to be smaller than cue in.": "Время окончания звучания не может быть раньше времени начала.", - "Upload Time": "Время загрузки", - "None": "Ничего", - "Powered by %s": "При поддержке %s", - "Select Country": "Выберите страну", - "livestream": "живой аудио поток", - "Cannot move items out of linked shows": "Невозможно переместить элементы из связанных Программ", - "The schedule you're viewing is out of date! (sched mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)", - "The schedule you're viewing is out of date! (instance mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)", - "The schedule you're viewing is out of date!": "Расписание, которое вы просматриваете - устарело!", - "You are not allowed to schedule show %s.": "Вы не допущены к планированию Программы %s.", - "You cannot add files to recording shows.": "Вы не можете добавлять файлы в записываемую Программу.", - "The show %s is over and cannot be scheduled.": "Программа %s окончилась и не может быть добавлена в расписание.", - "The show %s has been previously updated!": "Программа %s была обновлена ранее!", - "Content in linked shows cannot be changed while on air!": "Контент в связанных Программах не может быть изменен пока Программа в эфире!", - "Cannot schedule a playlist that contains missing files.": "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы.", - "A selected File does not exist!": "Выбранный файл не существует!", - "Shows can have a max length of 24 hours.": "Максимальная продолжительность Программы - 24 часа.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Нельзя планировать пересекающиеся Программы.\nПримечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры.", - "Rebroadcast of %s from %s": "Ретрансляция %s из %s", - "Length needs to be greater than 0 minutes": "Длительность должна быть более 0 минут", - "Length should be of form \"00h 00m\"": "Длительность должна быть указана в формате '00h 00min'", - "URL should be of form \"https://example.org\"": "URL должен быть в формате \"http://домен\"", - "URL should be 512 characters or less": "Длина URL должна составлять не более 512 символов", - "No MIME type found for webstream.": "Для веб-потока не найдено MIME типа.", - "Webstream name cannot be empty": "Имя веб-потока должно быть заполнено", - "Could not parse XSPF playlist": "Не удалось анализировать XSPF Плейлист", - "Could not parse PLS playlist": "Не удалось анализировать PLS Плейлист", - "Could not parse M3U playlist": "Не удалось анализировать M3U Плейлист", - "Invalid webstream - This appears to be a file download.": "Неверный веб-поток - скорее всего это загрузка файла.", - "Unrecognized stream type: %s": "Нераспознанный тип потока: %s", - "Record file doesn't exist": "Записанный файл не существует", - "View Recorded File Metadata": "Просмотр мета-данных записанного файла", - "Schedule Tracks": "Запланировать Треки", - "Clear Show": "Очистить Программу", - "Cancel Show": "Отменить Программу", - "Edit Instance": "Редактировать этот Экземпляр", - "Edit Show": "Редактировать Программу", - "Delete Instance": "Удалить этот Экземпляр", - "Delete Instance and All Following": "Удалить этот Экземпляр и все связанные", - "Permission denied": "Доступ запрещен", - "Can't drag and drop repeating shows": "Невозможно перетащить повторяющиеся Программы", - "Can't move a past show": "Невозможно переместить завершившуюся Программу", - "Can't move show into past": "Невозможно переместить Программу в прошлое", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции.", - "Show was deleted because recorded show does not exist!": "Программа была удалена, потому что записанной Программы не существует!", - "Must wait 1 hour to rebroadcast.": "Подождите один час до ретрансляции.", - "Track": "Трек", - "Played": "Проиграно", - "Auto-generated smartblock for podcast": "Автоматически сгенерированный Смарт-блок для подкаста", - "Webstreams": "Веб-потоки" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "%s год должен быть в пределах 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s недопустимая дата", + "%s:%s:%s is not a valid time": "%s : %s : %s недопустимое время", + "English": "Английский", + "Afar": "Афар", + "Abkhazian": "Абхазский", + "Afrikaans": "Африкаанс", + "Amharic": "Амхарский", + "Arabic": "Арабский", + "Assamese": "Ассамский", + "Aymara": "Аймара", + "Azerbaijani": "Азербаджанский", + "Bashkir": "Башкирский", + "Belarusian": "Белорусский", + "Bulgarian": "Болгарский", + "Bihari": "Бихари", + "Bislama": "Бислама", + "Bengali/Bangla": "Бенгали", + "Tibetan": "Тибетский", + "Breton": "Бретонский", + "Catalan": "Каталанский", + "Corsican": "Корсиканский", + "Czech": "Чешский", + "Welsh": "Вэльский", + "Danish": "Данский", + "German": "Немецкий", + "Bhutani": "Бутан", + "Greek": "Греческий", + "Esperanto": "Эсперанто", + "Spanish": "Испанский", + "Estonian": "Эстонский", + "Basque": "Басков", + "Persian": "Персидский", + "Finnish": "Финский", + "Fiji": "Фиджи", + "Faeroese": "Фарси", + "French": "Французский", + "Frisian": "Фризский", + "Irish": "Ирландский", + "Scots/Gaelic": "Шотландский", + "Galician": "Галицийский", + "Guarani": "Гуананский", + "Gujarati": "Гуджарати", + "Hausa": "Науса", + "Hindi": "Хинди", + "Croatian": "Хорватский", + "Hungarian": "Венгерский", + "Armenian": "Армянский", + "Interlingua": "Интернациональный", + "Interlingue": "Интерлинг", + "Inupiak": "Инупиак", + "Indonesian": "Индонезийский", + "Icelandic": "Исландский", + "Italian": "Итальянский", + "Hebrew": "Иврит", + "Japanese": "Японский", + "Yiddish": "Иудейский", + "Javanese": "Яванский", + "Georgian": "Грузинский", + "Kazakh": "Казахский", + "Greenlandic": "Гренландский", + "Cambodian": "Камбоджийский", + "Kannada": "Каннадский", + "Korean": "Корейский", + "Kashmiri": "Кашмирский", + "Kurdish": "Курдский", + "Kirghiz": "Киргизский", + "Latin": "Латынь", + "Lingala": "Лингала", + "Laothian": "Лаосский", + "Lithuanian": "Литовский", + "Latvian/Lettish": "Латвийский", + "Malagasy": "Малайзийский", + "Maori": "Маори", + "Macedonian": "Македонский", + "Malayalam": "Малаямский", + "Mongolian": "Монгольский", + "Moldavian": "Молдавский", + "Marathi": "Маратхи", + "Malay": "Малайзийский", + "Maltese": "Мальтийский", + "Burmese": "Бирманский", + "Nauru": "Науру", + "Nepali": "Непальский", + "Dutch": "Немецкий", + "Norwegian": "Норвежский", + "Occitan": "Окситанский", + "(Afan)/Oromoor/Oriya": "(Афан)/Оромур/Ория", + "Punjabi": "Панджаби Эм Си", + "Polish": "Польский", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальский", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рэето-романс", + "Kirundi": "Кирунди", + "Romanian": "Румынский", + "Russian": "Русский", + "Kinyarwanda": "Киньяруанда", + "Sanskrit": "Санскрит", + "Sindhi": "Синди", + "Sangro": "Сангро", + "Serbo-Croatian": "Сербский", + "Singhalese": "Синигальский", + "Slovak": "Словацкий", + "Slovenian": "Славянский", + "Samoan": "Самоанский", + "Shona": "Шона", + "Somali": "Сомалийский", + "Albanian": "Албанский", + "Serbian": "Сербский", + "Siswati": "Сисвати", + "Sesotho": "Сесото", + "Sundanese": "Сунданский", + "Swedish": "Шведский", + "Swahili": "Суахили", + "Tamil": "Тамильский", + "Tegulu": "Телугу", + "Tajik": "Таджикский", + "Thai": "Тайский", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменский", + "Tagalog": "Тагальский", + "Setswana": "Сетсвана", + "Tonga": "Тонга", + "Turkish": "Турецкий", + "Tsonga": "Тсонга", + "Tatar": "Татарский", + "Twi": "Тви", + "Ukrainian": "Украинский", + "Urdu": "Урду", + "Uzbek": "Узбекский", + "Vietnamese": "Въетнамский", + "Volapuk": "Волапукский", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубский", + "Chinese": "Китайский", + "Zulu": "Зулу", + "Use station default": "Время станции по умолчанию", + "Upload some tracks below to add them to your library!": "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s.", + "Click the 'New Show' button and fill out the required fields.": "Нажмите на кнопку «Новая Программа» и заполните необходимые поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Выберите следующую Программу и нажмите «Запланировать Треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s.", + "LibreTime media analyzer service": "Служба медиа анализатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Проверьте, что служба libretime-analyzer правильно установлена в ", + " and ensure that it's running with ": " а также убедитесь, что она запущена ", + "If not, try ": "Если нет - попробуйте запустить", + "LibreTime playout service": "Служба воспроизведения LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Проверьте, что служба libretime-playout правильно установлена в ", + "LibreTime liquidsoap service": "Служба Liquidsoap LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Проверьте, что служба libretime-liquidsoap правильно установлена в ", + "LibreTime Celery Task service": "Служба Celery Task LibreTime", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Страница Радио", + "Calendar": "Календарь", + "Widgets": "Виджеты", + "Player": "Плеер", + "Weekly Schedule": "Расписание программ", + "Settings": "Настройки", + "General": "Основные", + "My Profile": "Мой профиль", + "Users": "Пользователи", + "Track Types": "Типы треков", + "Streams": "Аудио потоки", + "Status": "Статус системы", + "Analytics": "Аналитика", + "Playout History": "История воспроизведения треков", + "History Templates": "Шаблоны истории", + "Listener Stats": "Статистика по слушателям", + "Show Listener Stats": "Статистика прослушиваний", + "Help": "Справка", + "Getting Started": "С чего начать", + "User Manual": "Руководство пользователя", + "Get Help Online": "Получить справку онлайн", + "Contribute to LibreTime": "", + "What's New?": "Что нового?", + "You are not allowed to access this resource.": "Вы не имеете доступа к этому ресурсу.", + "You are not allowed to access this resource. ": "Вы не имеете доступа к этому ресурсу. ", + "File does not exist in %s": "Файл не существует в %s", + "Bad request. no 'mode' parameter passed.": "Неверный запрос. Параметр «режим» не прошел.", + "Bad request. 'mode' parameter is invalid": "Неверный запрос. Параметр «режим» является недопустимым", + "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", + "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", + "You don't have permission to switch source.": "У вас нет прав для переключения источника.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:

\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "Page not found.": "Страница не найдена.", + "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", + "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", + "An internal application error has occurred.": "Произошла внутренняя ошибка.", + "%s Podcast": "%s Подкаст", + "No tracks have been published yet.": "Ни одного трека пока не опубликовано.", + "%s not found": "%s не найден", + "Something went wrong.": "Что-то пошло не так.", + "Preview": "Прослушать", + "Add to Playlist": "Добавить в Плейлист", + "Add to Smart Block": "Добавить в Смарт-блок", + "Delete": "Удалить", + "Edit...": "Редактировать...", + "Download": "Загрузка", + "Duplicate Playlist": "Дублировать Плейлист", + "Duplicate Smartblock": "Дублировать Смарт-блок", + "No action available": "Нет доступных действий", + "You don't have permission to delete selected items.": "У вас нет разрешения на удаление выбранных объектов.", + "Could not delete file because it is scheduled in the future.": "Нельзя удалить запланированный файл.", + "Could not delete file(s).": "Нельзя удалить файл(ы)", + "Copy of %s": "Копия %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки.", + "Audio Player": "Аудио плеер", + "Something went wrong!": "Что-то пошло не так!", + "Recording:": "Запись:", + "Master Stream": "Master-Steam", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Ничего нет", + "Current Show:": "Текущая Программа:", + "Current": "Играет", + "You are running the latest version": "Вы используете последнюю версию", + "New version available: ": "Доступна новая версия: ", + "You have a pre-release version of LibreTime intalled.": "У вас установлена предварительная версия LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступен патч обновлений для текущей версии LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступно обновление функций для текущей версии LibreTime.", + "A major update for your LibreTime installation is available.": "Доступно важное обновление для текущей версии LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее.", + "Add to current playlist": "Добавить в текущий Плейлист", + "Add to current smart block": "Добавить в текущий Смарт-блок", + "Adding 1 Item": "Добавление одного элемента", + "Adding %s Items": "Добавление %s элементов", + "You can only add tracks to smart blocks.": "Вы можете добавить только треки в Смарт-блоки.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты.", + "Please select a cursor position on timeline.": "Переместите курсор по временной шкале.", + "You haven't added any tracks": "Вы не добавили ни одного трека", + "You haven't added any playlists": "Вы не добавили ни одного Плейлиста", + "You haven't added any podcasts": "У вас не добавлено ни одного подкаста", + "You haven't added any smart blocks": "Вы не добавили ни одного Смарт-блока", + "You haven't added any webstreams": "Вы не добавили ни одного веб-потока", + "Learn about tracks": "Узнать больше о треках", + "Learn about playlists": "Узнать больше о Плейлистах", + "Learn about podcasts": "Узнать больше о Подкастах", + "Learn about smart blocks": "Узнать больше об Смарт-блоках", + "Learn about webstreams": "Узнать больше о веб-потоках", + "Click 'New' to create one.": "Выберите «Новый» для создания.", + "Add": "Добавить", + "New": "Новый", + "Edit": "Редактировать", + "Add to Schedule": "Добавить в расписание", + "Add to next show": "Добавить к следующему шоу", + "Add to current show": "Добавить к текущему шоу", + "Add after selected items": "", + "Publish": "Опубликовать", + "Remove": "Удалить", + "Edit Metadata": "Править мета-данные", + "Add to selected show": "Добавить в выбранную Программу", + "Select": "Выбрать", + "Select this page": "Выбрать текущую страницу", + "Deselect this page": "Отменить выбор текущей страницы", + "Deselect all": "Отменить все выделения", + "Are you sure you want to delete the selected item(s)?": "Вы действительно хотите удалить выбранные элементы?", + "Scheduled": "Запланирован", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Название", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Битрейт", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Дирижер", + "Copyright": "Копирайт", + "Encoded By": "Закодировано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Метка", + "Language": "Язык", + "Last Modified": "Изменен", + "Last Played": "Последнее проигрывание", + "Length": "Длительность", + "Mime": "Mime", + "Mood": "Настроение", + "Owner": "Владелец", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Номер трека", + "Uploaded": "Загружено", + "Website": "Вебсайт", + "Year": "Год", + "Loading...": "Загрузка...", + "All": "Все", + "Files": "Файлы", + "Playlists": "Плейлисты", + "Smart Blocks": "Смарт-блоки", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Неизвестный тип: ", + "Are you sure you want to delete the selected item?": "Вы действительно хотите удалить выбранный элемент?", + "Uploading in progress...": "Загружается ...", + "Retrieving data from the server...": "Получение данных с сервера ...", + "Import": "Импорт", + "Imported?": "Импортировано?", + "View": "Посмотреть", + "Error code: ": "Код ошибки: ", + "Error msg: ": "Сообщение об ошибке: ", + "Input must be a positive number": "Ввод должен быть положительным числом", + "Input must be a number": "Ввод должен быть числом", + "Input must be in the format: yyyy-mm-dd": "Ввод должен быть в формате: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Ввод должен быть в формате: чч:мм:сс", + "My Podcast": "Мой Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?", + "Open Media Builder": "Открыть медиа-построитель", + "please put in a time '00:00:00 (.0)'": "пожалуйста, установите время '00:00:00.0'", + "Please enter a valid time in seconds. Eg. 0.5": "Пожалуйста, укажите допустимое время в секундах. Например: 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не поддерживает воспроизведения данного типа файлов: ", + "Dynamic block is not previewable": "Динамический Блок не подлежит предпросмотру", + "Limit to: ": "Ограничить до: ", + "Playlist saved": "Плейлист сохранен", + "Playlist shuffled": "Плейлист перемешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра.", + "Listener Count on %s: %s": "Количество слушателей %s : %s", + "Remind me in 1 week": "Напомнить мне через одну неделю", + "Remind me never": "Никогда не напоминать", + "Yes, help Airtime": "Да, помочь LibreTime", + "Image must be one of jpg, jpeg, png, or gif": "Изображение должно быть в формате: jpg, jpeg, png или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке.", + "Smart block shuffled": "Смарт-блок перемешан", + "Smart block generated and criteria saved": "Смарт-блок создан и критерии сохранены", + "Smart block saved": "Смарт-блок сохранен", + "Processing...": "Подождите...", + "Select modifier": "Выберите модификатор", + "contains": "содержит", + "does not contain": "не содержит", + "is": "является", + "is not": "не является", + "starts with": "начинается с", + "ends with": "заканчивается", + "is greater than": "больше, чем", + "is less than": "меньше, чем", + "is in the range": "в диапазоне", + "Generate": "Сгенерировать", + "Choose Storage Folder": "Выберите папку хранения", + "Choose Folder to Watch": "Выберите папку для просмотра", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Вы уверены, что хотите изменить папку хранения? \n Файлы из вашей Библиотеки будут удалены!", + "Manage Media Folders": "Управление папками медиа-файлов", + "Are you sure you want to remove the watched folder?": "Вы уверены, что хотите удалить просматриваемую папку?", + "This path is currently not accessible.": "Этот путь в настоящий момент недоступен.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены.", + "Connected to the streaming server": "Подключено к потоковому серверу", + "The stream is disabled": "Поток отключен", + "Getting information from the server...": "Получение информации с сервера ...", + "Can not connect to the streaming server": "Не удалось подключиться к потоковому серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151.", + "For more details, please read the %s%s Manual%s": "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях.", + "Warning: You cannot change this field while the show is currently playing": "Внимание: Вы не можете изменить данное поле, пока Программа в эфире", + "No result found": "Не найдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться.", + "Specify custom authentication which will work only for this show.": "Укажите пользователя, который будет работать только в этой Программе.", + "The show instance doesn't exist anymore!": "Программы больше не существует!", + "Warning: Shows cannot be re-linked": "Внимание: Программы не могут быть пересвязаны", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса.", + "Show": "Программа", + "Show is empty": "Пустая Программа", + "1m": "1 мин", + "5m": "5 мин", + "10m": "10 мин", + "15m": "15 мин", + "30m": "30 мин", + "60m": "60 мин", + "Retreiving data from the server...": "Получение данных с сервера ...", + "This show has no scheduled content.": "В этой Программе нет запланированного контента.", + "This show is not completely filled with content.": "Данная Программа не до конца заполнена контентом.", + "January": "Январь", + "February": "Февраль", + "March": "Март", + "April": "Апрель", + "May": "Май", + "June": "Июнь", + "July": "Июль", + "August": "Август", + "September": "Сентябрь", + "October": "Октябрь", + "November": "Ноябрь", + "December": "Декабрь", + "Jan": "Янв", + "Feb": "Фев", + "Mar": "Март", + "Apr": "Апр", + "Jun": "Июн", + "Jul": "Июл", + "Aug": "Авг", + "Sep": "Сент", + "Oct": "Окт", + "Nov": "Нояб", + "Dec": "Дек", + "Today": "Сегодня", + "Day": "День", + "Week": "Неделя", + "Month": "Месяц", + "Sunday": "Воскресенье", + "Monday": "Понедельник", + "Tuesday": "Вторник", + "Wednesday": "Среда", + "Thursday": "Четверг", + "Friday": "Пятница", + "Saturday": "Суббота", + "Sun": "Вс", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой.", + "Cancel Current Show?": "Отменить эту Программу?", + "Stop recording current show?": "Остановить запись текущей Программы?", + "Ok": "Оk", + "Contents of Show": "Содержимое Программы", + "Remove all content?": "Удалить все содержимое?", + "Delete selected item(s)?": "Удалить выбранные элементы?", + "Start": "Начало", + "End": "Конец", + "Duration": "Длительность", + "Filtering out ": "Фильтрация ", + " of ": " из ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "Нет Программ, запланированных в указанный период времени.", + "Cue In": "Начало звучания", + "Cue Out": "Окончание звучания", + "Fade In": "Сведение", + "Fade Out": "Затухание", + "Show Empty": "Программа пуста", + "Recording From Line In": "Запись с линейного входа", + "Track preview": "Предпросмотр трека", + "Cannot schedule outside a show.": "Нельзя планировать вне рамок Программы.", + "Moving 1 Item": "Перемещение одного элемента", + "Moving %s Items": "Перемещение %s элементов", + "Save": "Сохранить", + "Cancel": "Отменить", + "Fade Editor": "Редактор затухания", + "Cue Editor": "Редактор начала трека", + "Waveform features are available in a browser supporting the Web Audio API": "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API", + "Select all": "Выбрать все", + "Select none": "Снять выделения", + "Trim overbooked shows": "Обрезать пересекающиеся Программы", + "Remove selected scheduled items": "Удалить выбранные запланированные элементы", + "Jump to the current playing track": "Перейти к текущей проигрываемой дорожке", + "Jump to Current": "Перейти к текущему треку", + "Cancel current show": "Отмена текущей Программы", + "Open library to add or remove content": "Открыть Библиотеку, чтобы добавить или удалить содержимое", + "Add / Remove Content": "Добавить/удалить содержимое", + "in use": "используется", + "Disk": "Диск", + "Look in": "Посмотреть", + "Open": "Открыть", + "Admin": "Админ", + "DJ": "Диджей", + "Program Manager": "Менеджер", + "Guest": "Гость", + "Guests can do the following:": "Гости могут следующее:", + "View schedule": "Просматривать расписание", + "View show content": "Просматривать содержимое программы", + "DJs can do the following:": "DJ может:", + "Manage assigned show content": "- Управлять контентом назначенной ему Программы;", + "Import media files": "Импортировать медиа-файлы", + "Create playlists, smart blocks, and webstreams": "Создавать плейлисты, смарт-блоки и вебстримы", + "Manage their own library content": "Управлять содержимым собственной библиотеки", + "Program Managers can do the following:": "Менеджеры Программ могут следующее:", + "View and manage show content": "Просматривать и управлять содержимым программы", + "Schedule shows": "Планировать программы", + "Manage all library content": "Управлять содержимым всех библиотек", + "Admins can do the following:": "Администраторы могут:", + "Manage preferences": "Управлять настройками", + "Manage users": "Управлять пользователями", + "Manage watched folders": "Управлять просматриваемыми папками", + "Send support feedback": "Отправлять отзыв поддержке", + "View system status": "Просматривать статус системы", + "Access playout history": "Получить доступ к истории воспроизведений", + "View listener stats": "Видеть статистику слушателей", + "Show / hide columns": "Показать/скрыть столбцы", + "Columns": "Столбцы", + "From {from} to {to}": "С {from} до {to}", + "kbps": "кбит/с", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "чч:мм:сс.t", + "kHz": "кГц", + "Su": "Вс", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрыть", + "Hour": "Часы", + "Minute": "Минуты", + "Done": "Готово", + "Select files": "Выбрать файлы", + "Add files to the upload queue and click the start button.": "Добавьте файлы в очередь загрузки и нажмите кнопку Старт.", + "Filename": "", + "Size": "", + "Add Files": "Добавить файлы", + "Stop Upload": "Остановить загрузку", + "Start upload": "Начать загрузку", + "Start Upload": "", + "Add files": "Добавить файлы", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Загружено %d/%d файлов", + "N/A": "н/д", + "Drag files here.": "Перетащите файлы сюда.", + "File extension error.": "Неверное расширение файла.", + "File size error.": "Неверный размер файла.", + "File count error.": "Ошибка подсчета файла.", + "Init error.": "Ошибка инициализации.", + "HTTP Error.": "Ошибка HTTP.", + "Security error.": "Ошибка безопасности.", + "Generic error.": "Общая ошибка.", + "IO error.": "Ошибка записи/чтения.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлов в очереди", + "File: %f, size: %s, max file size: %m": "Файл: %f, размер: %s, максимальный размер файла: %m", + "Upload URL might be wrong or doesn't exist": "URL загрузки указан неверно или не существует", + "Error: File too large: ": "Ошибка: Файл слишком большой: ", + "Error: Invalid file extension: ": "Ошибка: Неверное расширение файла: ", + "Set Default": "Установить по умолчанию", + "Create Entry": "Создать", + "Edit History Record": "Редактировать историю", + "No Show": "Нет программы", + "Copied %s row%s to the clipboard": "Скопировано %s строк %s в буфер обмена", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения.", + "New Show": "Новая Программа", + "New Log Entry": "Новая запись в журнале", + "No data available in table": "В таблице нет данных", + "(filtered from _MAX_ total entries)": "(отфильтровано из _MAX_ записей)", + "First": "Первая", + "Last": "Последняя", + "Next": "Следующая", + "Previous": "Предыдущая", + "Search:": "Поиск:", + "No matching records found": "Записи отсутствуют.", + "Drag tracks here from the library": "Перетащите треки сюда из Библиотеки", + "No tracks were played during the selected time period.": "В течение выбранного периода времени треки не воспроизводились.", + "Unpublish": "Снять с публикации", + "No matching results found.": "Результаты не найдены.", + "Author": "Автор", + "Description": "Описание", + "Link": "Ссылка", + "Publication Date": "Дата публикации", + "Import Status": "Статус загрузки", + "Actions": "Действия", + "Delete from Library": "Удалить из Библиотеки", + "Successfully imported": "Успешно загружено", + "Show _MENU_": "Показать _MENU_", + "Show _MENU_ entries": "Показать _MENU_ записей", + "Showing _START_ to _END_ of _TOTAL_ entries": "Записи с _START_ до _END_ из _TOTAL_ записей", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано с _START_ по _END_ из _TOTAL_ треков", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано с _START_ по _END_ из _TOTAL_ типов трека", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано с _START_ по _END_ из _TOTAL_ пользователей", + "Showing 0 to 0 of 0 entries": "Записи с 0 до 0 из 0 записей", + "Showing 0 to 0 of 0 tracks": "Показано с 0 по 0 из 0 треков", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Вы уверены что хотите удалить этот тип трека?", + "No track types were found.": "Типы треков не были найдены.", + "No track types found": "Типы треков не найдены", + "No matching track types found": "Не найдено подходящих типов треков", + "Enabled": "Включено", + "Disabled": "Отключено", + "Cancel upload": "Отменить загрузку", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Настройки подкаста сохранены", + "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", + "Can't delete yourself!": "Вы не можете удалить себя!", + "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", + "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", + "Try it now": "Попробовать сейчас", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

", + "Playlist preview": "Предпросмотр плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Предпросмотр веб-потока", + "You don't have permission to view the library.": "У вас нет разрешений для просмотра Библиотеки", + "Now": "С текущего момента", + "Click 'New' to create one now.": "Нажмите «Новый» чтобы создать новый", + "Click 'Upload' to add some now.": "Нажмите «Загрузить» чтобы добавить новый", + "Feed URL": "Ссылка на ленту", + "Import Date": "Дата импорта", + "Add New Podcast": "Добавить новый подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Нельзя планировать аудио вне рамок Программы.\nПопробуйте сначала создать Программу", + "No files have been uploaded yet.": "Еще ни одного файла не загружено", + "On Air": "В прямом эфире", + "Off Air": "Не в эфире", + "Offline": "Офлайн", + "Nothing scheduled": "Ничего не запланировано", + "Click 'Add' to create one now.": "Нажмите «Добавить» чтобы создать новый", + "Please enter your username and password.": "Пожалуйста введите ваш логин и пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом.", + "That username or email address could not be found.": "Такой пользователь или e-mail не найдены.", + "There was a problem with the username or email address you entered.": "Неправильно ввели логин или e-mail.", + "Wrong username or password provided. Please try again.": "Неверный логин или пароль. Пожалуйста, попробуйте еще раз.", + "You are viewing an older version of %s": "Вы просматриваете старые версии %s", + "You cannot add tracks to dynamic blocks.": "Вы не можете добавить треки в динамические блоки.", + "You don't have permission to delete selected %s(s).": "У вас нет разрешения на удаление выбранных %s(s).", + "You can only add tracks to smart block.": "Вы можете добавить треки только в Смарт-блок.", + "Untitled Playlist": "Плейлист без названия", + "Untitled Smart Block": "Смарт-блок без названия", + "Unknown Playlist": "Неизвестный Плейлист", + "Preferences updated.": "Настройки сохранены.", + "Stream Setting Updated.": "Настройки потока обновлены.", + "path should be specified": "необходимо указать путь", + "Problem with Liquidsoap...": "Проблема с Liquidsoap ...", + "Request method not accepted": "Метод запроса не принят", + "Rebroadcast of show %s from %s at %s": "Ретрансляция Программы %s от %s в %s", + "Select cursor": "Выбрать курсор", + "Remove cursor": "Удалить курсор", + "show does not exist": "Программы не существует", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Пользователь успешно добавлен!", + "User updated successfully!": "Пользователь успешно обновлен!", + "Settings updated successfully!": "Настройки успешно обновлены!", + "Untitled Webstream": "Веб-поток без названия", + "Webstream saved.": "Веб-поток сохранен.", + "Invalid form values.": "Недопустимые значения.", + "Invalid character entered": "Неверно введенный символ", + "Day must be specified": "Укажите день", + "Time must be specified": "Укажите время", + "Must wait at least 1 hour to rebroadcast": "Нужно подождать хотя бы один час для ретрансляции", + "Add Autoloading Playlist ?": "Добавить?", + "Select Playlist": "Выбрать Плейлист", + "Repeat Playlist Until Show is Full ?": "Повторять Плейлист, пока Программа не заполнится?", + "Use %s Authentication:": "Использовать %s Аутентификацию:", + "Use Custom Authentication:": "Использование пользовательской идентификации:", + "Custom Username": "Пользовательский логин", + "Custom Password": "Пользовательский пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтирования:", + "Username field cannot be empty.": "Поле «Логин» не может быть пустым.", + "Password field cannot be empty.": "Поле «Пароль» не может быть пустым.", + "Record from Line In?": "Запись с линейного входа?", + "Rebroadcast?": "Ретрансляция?", + "days": "дней", + "Link:": "Связать?", + "Repeat Type:": "Тип повтора:", + "weekly": "еженедельно", + "every 2 weeks": "каждые 2 недели", + "every 3 weeks": "каждые 3 недели", + "every 4 weeks": "каждые 4 недели", + "monthly": "ежемесячно", + "Select Days:": "Выберите дни недели:", + "Repeat By:": "Повторять:", + "day of the month": "день месяца", + "day of the week": "день недели", + "Date End:": "Дата окончания:", + "No End?": "Бесконечно?", + "End date must be after start date": "Дата окончания должна быть после даты начала", + "Please select a repeat day": "Укажите день повтора", + "Background Colour:": "Цвет фона:", + "Text Colour:": "Цвет текста:", + "Current Logo:": "Текущий логотип:", + "Show Logo:": "Логотип Программы:", + "Logo Preview:": "Предпросмотр логотипа:", + "Name:": "Имя:", + "Untitled Show": "Программа без названия", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Описание:", + "Instance Description:": "Описание экземпляра:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' не соответствует формату времени 'HH:mm'", + "Start Time:": "Время начала:", + "In the Future:": "В будущем:", + "End Time:": "Время завершения:", + "Duration:": "Длительность:", + "Timezone:": "Часовой пояс:", + "Repeats?": "Повторы?", + "Cannot create show in the past": "Нельзя создать Программу в прошлом", + "Cannot modify start date/time of the show that is already started": "Нельзя изменить дату/время начала Программы, которая уже началась", + "End date/time cannot be in the past": "Дата/время окончания не могут быть в прошлом", + "Cannot have duration < 0m": "Не может длиться меньше 0 мин.", + "Cannot have duration 00h 00m": "Не может длиться 00 ч 00 мин", + "Cannot have duration greater than 24h": "Программа не может длиться больше 24 часов", + "Cannot schedule overlapping shows": "Нельзя запланировать пересекающиеся Программы.", + "Search Users:": "Поиск пользователей:", + "DJs:": "Диджеи:", + "Type Name:": "Название типа", + "Code:": "Код:", + "Visibility:": "Видимость:", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Логин:", + "Password:": "Пароль:", + "Verify Password:": "Пароль еще раз:", + "Firstname:": "Имя:", + "Lastname:": "Фамилия:", + "Email:": "E-mail:", + "Mobile Phone:": "Номер телефона:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Категория:", + "Login name is not unique.": "Логин не является уникальным.", + "Delete All Tracks in Library": "Удалить все треки в Библиотеке", + "Date Start:": "Дата начала:", + "Title:": "Название:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Владелец:", + "Select a Type": "", + "Track Type:": "", + "Year:": "Год:", + "Label:": "Метка:", + "Composer:": "Композитор:", + "Conductor:": "Исполнитель:", + "Mood:": "Настроение:", + "BPM:": "BPM:", + "Copyright:": "Авторское право:", + "ISRC Number:": "ISRC номер:", + "Website:": "Сайт:", + "Language:": "Язык:", + "Publish...": "Опубликовать...", + "Start Time": "Время начала", + "End Time": "Время окончания", + "Interface Timezone:": "Часовой пояс:", + "Station Name": "Название Станции:", + "Station Description": "Описание Станции:", + "Station Logo:": "Логотип Станции:", + "Note: Anything larger than 600x600 will be resized.": "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены.", + "Default Crossfade Duration (s):": "Стандартная длительность сведения треков (сек):", + "Please enter a time in seconds (eg. 0.5)": "Пожалуйста введите время в секундах (например 0.5)", + "Default Fade In (s):": "Сведение по умолчанию (сек):", + "Default Fade Out (s):": "Затухание по умолчанию (сек):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "Вступительный автозагружаемый плейлист (Intro)", + "Outro Autoloading Playlist": "Завершающий автозагружаемый плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезапись мета-тегов эпизодов Подкастов:", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды.", + "Public LibreTime API": "Разрешить публичный API для LibreTime?", + "Required for embeddable schedule widget.": "Требуется для встраиваемого виджета-расписания.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт.", + "Default Language": "Язык по умолчанию:", + "Station Timezone": "Часовой пояс станции:", + "Week Starts On": "Неделя начинается с:", + "Display login button on your Radio Page?": "Отображать кнопку «Вход» на Странице Радио?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Авто-откл. внешнего потока:", + "Auto Switch On:": "Авто-вкл. внешнего потока:", + "Switch Transition Fade (s):": "Затухание при переключ. (сек):", + "Master Source Host:": "Хост для источника Master:", + "Master Source Port:": "Порт для источника Master:", + "Master Source Mount:": "Точка монтирования для источника Master:", + "Show Source Host:": "Хост для источника Show:", + "Show Source Port:": "Порт для источника Show:", + "Show Source Mount:": "Точка монтирования для источника Show:", + "Login": "Вход", + "Password": "Пароль", + "Confirm new password": "Подтвердить новый пароль", + "Password confirmation does not match your password.": "Подтверждение пароля не совпадает с вашим паролем.", + "Email": "Электронная почта", + "Username": "Логин", + "Reset password": "Сбросить пароль", + "Back": "Назад", + "Now Playing": "Сейчас играет", + "Select Stream:": "Выбрать поток:", + "Auto detect the most appropriate stream to use.": "Автоопределение наиболее приоритетного потока вещания.", + "Select a stream:": "Выберите поток:", + " - Mobile friendly": " - Совместимость с мобильными", + " - The player does not support Opus streams.": " - Проигрыватель не поддерживает вещание Opus .", + "Embeddable code:": "Встраиваемый код:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер.", + "Preview:": "Предпросмотр:", + "Feed Privacy": "Приватность ленты", + "Public": "Публичный", + "Private": "Частный", + "Station Language": "Язык радиостанции", + "Filter by Show": "Фильтровать по Программам", + "All My Shows:": "Все мои Программы:", + "My Shows": "Мои Программы", + "Select criteria": "Выбрать критерии", + "Bit Rate (Kbps)": "Битрейт (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Частота дискретизации (кГц)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "часов", + "minutes": "минут", + "items": "элементы", + "time remaining in show": "оставшееся время программы", + "Randomly": "Случайно", + "Newest": "Новые", + "Oldest": "Старые", + "Most recently played": "Давно проигранные", + "Least recently played": "Недавно проигранные", + "Select Track Type": "", + "Type:": "Тип:", + "Dynamic": "Динамический", + "Static": "Статический", + "Select track type": "", + "Allow Repeated Tracks:": "Разрешить повторение треков:", + "Allow last track to exceed time limit:": "Разрешить последнему треку превышать лимит времени:", + "Sort Tracks:": "Сортировка треков:", + "Limit to:": "Ограничить в:", + "Generate playlist content and save criteria": "Сгенерировать содержимое Плейлиста и сохранить критерии", + "Shuffle playlist content": "Перемешать содержимое Плейлиста", + "Shuffle": "Перемешать", + "Limit cannot be empty or smaller than 0": "Интервал не может быть пустым или менее 0", + "Limit cannot be more than 24 hrs": "Интервал не может быть более 24 часов", + "The value should be an integer": "Значение должно быть целым числом", + "500 is the max item limit value you can set": "500 является максимально допустимым значением", + "You must select Criteria and Modifier": "Вы должны выбрать Критерии и Модификаторы", + "'Length' should be in '00:00:00' format": "«Длительность» должна быть в формате '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Значение должно быть числом", + "The value should be less then 2147483648": "Значение должно быть меньше, чем 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Значение должно быть менее %s символов", + "Value cannot be empty": "Значение не может быть пустым", + "Stream Label:": "Мета-данные потока:", + "Artist - Title": "Исполнитель - Название трека ", + "Show - Artist - Title": "Программа - Исполнитель - Название трека", + "Station name - Show name": "Название станции - Программа", + "Off Air Metadata": "Мета-данные при выкл. эфире", + "Enable Replay Gain": "Включить коэфф. усиления", + "Replay Gain Modifier": "Изменить коэфф. усиления", + "Hardware Audio Output:": "Аппаратный аудио выход", + "Output Type": "Тип выхода", + "Enabled:": "Активировать:", + "Mobile:": "Мобильный:", + "Stream Type:": "Тип потока:", + "Bit Rate:": "Битрейт:", + "Service Type:": "Тип сервиса:", + "Channels:": "Аудио каналы:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтирования", + "Name": "Название", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Добавить мета-данные вашей станции в TuneIn?", + "Station ID:": "ID станции:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "Идентификатор партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку.", + "Import Folder:": "Импорт папки:", + "Watched Folders:": "Просматриваемые папки:", + "Not a valid Directory": "Не является допустимой папкой", + "Value is required and can't be empty": "Поля не могут быть пустыми", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не является действительным адресом электронной почты в формате local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не соответствует формату даты '%format%'", + "'%value%' is less than %min% characters long": "'%value%' имеет менее %min% символов", + "'%value%' is more than %max% characters long": "'%value%' имеет более %max% символов", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не входит в промежуток '%min%' и '%max%', включительно", + "Passwords do not match": "Пароли не совпадают", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", + "\n\nThank you,\nThe %s Team": "\n\nСпасибо,\nКоманда %s", + "%s Password Reset": "%s Сброс пароля", + "Cue in and cue out are null.": "Время начала и окончания звучания трека не заполнены.", + "Can't set cue out to be greater than file length.": "Время окончания звучания не может превышать длину трека.", + "Can't set cue in to be larger than cue out.": "Время начала звучания не может быть позже времени окончания.", + "Can't set cue out to be smaller than cue in.": "Время окончания звучания не может быть раньше времени начала.", + "Upload Time": "Время загрузки", + "None": "Ничего", + "Powered by %s": "При поддержке %s", + "Select Country": "Выберите страну", + "livestream": "живой аудио поток", + "Cannot move items out of linked shows": "Невозможно переместить элементы из связанных Программ", + "The schedule you're viewing is out of date! (sched mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)", + "The schedule you're viewing is out of date! (instance mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)", + "The schedule you're viewing is out of date!": "Расписание, которое вы просматриваете - устарело!", + "You are not allowed to schedule show %s.": "Вы не допущены к планированию Программы %s.", + "You cannot add files to recording shows.": "Вы не можете добавлять файлы в записываемую Программу.", + "The show %s is over and cannot be scheduled.": "Программа %s окончилась и не может быть добавлена в расписание.", + "The show %s has been previously updated!": "Программа %s была обновлена ранее!", + "Content in linked shows cannot be changed while on air!": "Контент в связанных Программах не может быть изменен пока Программа в эфире!", + "Cannot schedule a playlist that contains missing files.": "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы.", + "A selected File does not exist!": "Выбранный файл не существует!", + "Shows can have a max length of 24 hours.": "Максимальная продолжительность Программы - 24 часа.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Нельзя планировать пересекающиеся Программы.\nПримечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры.", + "Rebroadcast of %s from %s": "Ретрансляция %s из %s", + "Length needs to be greater than 0 minutes": "Длительность должна быть более 0 минут", + "Length should be of form \"00h 00m\"": "Длительность должна быть указана в формате '00h 00min'", + "URL should be of form \"https://example.org\"": "URL должен быть в формате \"http://домен\"", + "URL should be 512 characters or less": "Длина URL должна составлять не более 512 символов", + "No MIME type found for webstream.": "Для веб-потока не найдено MIME типа.", + "Webstream name cannot be empty": "Имя веб-потока должно быть заполнено", + "Could not parse XSPF playlist": "Не удалось анализировать XSPF Плейлист", + "Could not parse PLS playlist": "Не удалось анализировать PLS Плейлист", + "Could not parse M3U playlist": "Не удалось анализировать M3U Плейлист", + "Invalid webstream - This appears to be a file download.": "Неверный веб-поток - скорее всего это загрузка файла.", + "Unrecognized stream type: %s": "Нераспознанный тип потока: %s", + "Record file doesn't exist": "Записанный файл не существует", + "View Recorded File Metadata": "Просмотр мета-данных записанного файла", + "Schedule Tracks": "Запланировать Треки", + "Clear Show": "Очистить Программу", + "Cancel Show": "Отменить Программу", + "Edit Instance": "Редактировать этот Экземпляр", + "Edit Show": "Редактировать Программу", + "Delete Instance": "Удалить этот Экземпляр", + "Delete Instance and All Following": "Удалить этот Экземпляр и все связанные", + "Permission denied": "Доступ запрещен", + "Can't drag and drop repeating shows": "Невозможно перетащить повторяющиеся Программы", + "Can't move a past show": "Невозможно переместить завершившуюся Программу", + "Can't move show into past": "Невозможно переместить Программу в прошлое", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции.", + "Show was deleted because recorded show does not exist!": "Программа была удалена, потому что записанной Программы не существует!", + "Must wait 1 hour to rebroadcast.": "Подождите один час до ретрансляции.", + "Track": "Трек", + "Played": "Проиграно", + "Auto-generated smartblock for podcast": "Автоматически сгенерированный Смарт-блок для подкаста", + "Webstreams": "Веб-потоки" +} diff --git a/webapp/src/locale/sr_RS.json b/webapp/src/locale/sr_RS.json index 020b341ce6..95b31f0f25 100644 --- a/webapp/src/locale/sr_RS.json +++ b/webapp/src/locale/sr_RS.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Година %s мора да буде у распону између 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s није исправан датум", - "%s:%s:%s is not a valid time": "%s:%s:%s није исправан датум", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Календар", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Корисници", - "Track Types": "", - "Streams": "Преноси", - "Status": "Стање", - "Analytics": "", - "Playout History": "Историја Пуштених Песама", - "History Templates": "Историјски Шаблони", - "Listener Stats": "Слушатељска Статистика", - "Show Listener Stats": "", - "Help": "Помоћ", - "Getting Started": "Почетак Коришћења", - "User Manual": "Упутство", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Не смеш да приступиш овог извора.", - "You are not allowed to access this resource. ": "Не смеш да приступите овог извора.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Неисправан захтев.", - "Bad request. 'mode' parameter is invalid": "Неисправан захтев", - "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", - "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", - "You don't have permission to switch source.": "Немаш дозволу за промену извора.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s није пронађен", - "Something went wrong.": "Нешто је пошло по криву.", - "Preview": "Преглед", - "Add to Playlist": "Додај на Списак Песама", - "Add to Smart Block": "Додај у Smart Block", - "Delete": "Обриши", - "Edit...": "", - "Download": "Преузимање", - "Duplicate Playlist": "Удвостручавање", - "Duplicate Smartblock": "", - "No action available": "Нема доступних акција", - "You don't have permission to delete selected items.": "Немаш допуштење за брисање одабране ставке.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Копирање од %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси.", - "Audio Player": "Аудио Уређај", - "Something went wrong!": "", - "Recording:": "Снимање:", - "Master Stream": "Мајсторски Пренос", - "Live Stream": "Пренос Уживо", - "Nothing Scheduled": "Ништа по распореду", - "Current Show:": "Садашња Емисија:", - "Current": "Тренутна", - "You are running the latest version": "Ти имаш инсталирану најновију верзију", - "New version available: ": "Нова верзија је доступна:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Додај у тренутни списак песама", - "Add to current smart block": "Додај у тренутни smart block", - "Adding 1 Item": "Додавање 1 Ставке", - "Adding %s Items": "Додавање %s Ставке", - "You can only add tracks to smart blocks.": "Можеш да додаш само песме код паметних блокова.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера.", - "Please select a cursor position on timeline.": "Молимо одабери место показивача на временској црти.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Додај", - "New": "", - "Edit": "Уређивање", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Уклони", - "Edit Metadata": "Уреди Метаподатке", - "Add to selected show": "Додај у одабраној емисији", - "Select": "Одабери", - "Select this page": "Одабери ову страницу", - "Deselect this page": "Одзначи ову страницу", - "Deselect all": "Одзначи све", - "Are you sure you want to delete the selected item(s)?": "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?", - "Scheduled": "Заказана", - "Tracks": "", - "Playlist": "", - "Title": "Назив", - "Creator": "Творац", - "Album": "Албум", - "Bit Rate": "Пренос Бита", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Диригент", - "Copyright": "Ауторско право", - "Encoded By": "Кодирано је по", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Налепница", - "Language": "Језик", - "Last Modified": "Последња Измена", - "Last Played": "Задњи Пут Одиграна", - "Length": "Дужина", - "Mime": "Mime", - "Mood": "Расположење", - "Owner": "Власник", - "Replay Gain": "Replay Gain", - "Sample Rate": "Узорак Стопа", - "Track Number": "Број Песма", - "Uploaded": "Додата", - "Website": "Веб страница", - "Year": "Година", - "Loading...": "Учитавање...", - "All": "Све", - "Files": "Датотеке", - "Playlists": "Листе песама", - "Smart Blocks": "Smart Block-ови", - "Web Streams": "Преноси", - "Unknown type: ": "Непознати тип:", - "Are you sure you want to delete the selected item?": "Јеси ли сигуран да желиш да обришеш изабрану ставку?", - "Uploading in progress...": "Пренос је у току...", - "Retrieving data from the server...": "Преузимање података са сервера...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Шифра грешке:", - "Error msg: ": "Порука о грешци:", - "Input must be a positive number": "Мора да буде позитиван број", - "Input must be a number": "Мора да буде број", - "Input must be in the format: yyyy-mm-dd": "Мора да буде у облику: гггг-мм-дд", - "Input must be in the format: hh:mm:ss.t": "Мора да буде у облику: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s", - "Open Media Builder": "Отвори Медијског Градитеља", - "please put in a time '00:00:00 (.0)'": "молимо стави у време '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Твој претраживач не подржава ову врсту аудио фајл:", - "Dynamic block is not previewable": "Динамички блок није доступан за преглед", - "Limit to: ": "Ограничити се на:", - "Playlist saved": "Списак песама је спремљена", - "Playlist shuffled": "Списак песама је измешан", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'.", - "Listener Count on %s: %s": "Број Слушалаца %s: %s", - "Remind me in 1 week": "Подсети ме за 1 недељу", - "Remind me never": "Никад ме више не подсети", - "Yes, help Airtime": "Да, помажем Airtime-у", - "Image must be one of jpg, jpeg, png, or gif": "Слика мора да буде jpg, jpeg, png, или gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block је измешан", - "Smart block generated and criteria saved": "Smart block је генерисан и критеријуме су спремне", - "Smart block saved": "Smart block је сачуван", - "Processing...": "Обрада...", - "Select modifier": "Одабери модификатор", - "contains": "садржи", - "does not contain": "не садржи", - "is": "је", - "is not": "није", - "starts with": "почиње се са", - "ends with": "завршава се са", - "is greater than": "је већи од", - "is less than": "је мањи од", - "is in the range": "је у опсегу", - "Generate": "Генериши", - "Choose Storage Folder": "Одабери Мапу за Складиштење", - "Choose Folder to Watch": "Одабери Мапу за Праћење", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Јеси ли сигуран да желиш да промениш мапу за складиштење?\nТо ће да уклони датотеке из твоје библиотеке!", - "Manage Media Folders": "Управљање Медијске Мапе", - "Are you sure you want to remove the watched folder?": "Јеси ли сигуран да желиш да уклониш надзорску мапу?", - "This path is currently not accessible.": "Овај пут није тренутно доступан.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни.", - "Connected to the streaming server": "Прикључен је на серверу", - "The stream is disabled": "Пренос је онемогућен", - "Getting information from the server...": "Добијање информација са сервера...", - "Can not connect to the streaming server": "Не може да се повеже на серверу", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Провери ову опцију како би се омогућило метаподатака за OGG потоке.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику.", - "Warning: You cannot change this field while the show is currently playing": "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава", - "No result found": "Нема пронађених резултата", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију.", - "Specify custom authentication which will work only for this show.": "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију.", - "The show instance doesn't exist anymore!": "Емисија у овом случају више не постоји!", - "Warning: Shows cannot be re-linked": "Упозорење: Емисије не може поново да се повеже", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци.", - "Show": "Емисија", - "Show is empty": "Емисија је празна", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Добијање података са сервера...", - "This show has no scheduled content.": "Ова емисија нема заказаног садржаја.", - "This show is not completely filled with content.": "Ова емисија није у потпуности испуњена са садржајем.", - "January": "Јануар", - "February": "Фебруар", - "March": "Март", - "April": "Април", - "May": "Мај", - "June": "Јун", - "July": "Јул", - "August": "Август", - "September": "Септембар", - "October": "Октобар", - "November": "Новембар", - "December": "Децембар", - "Jan": "Јан", - "Feb": "Феб", - "Mar": "Мар", - "Apr": "Апр", - "Jun": "Јун", - "Jul": "Јул", - "Aug": "Авг", - "Sep": "Сеп", - "Oct": "Окт", - "Nov": "Нов", - "Dec": "Дец", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Недеља", - "Monday": "Понедељак", - "Tuesday": "Уторак", - "Wednesday": "Среда", - "Thursday": "Четвртак", - "Friday": "Петак", - "Saturday": "Субота", - "Sun": "Нед", - "Mon": "Пон", - "Tue": "Уто", - "Wed": "Сре", - "Thu": "Чет", - "Fri": "Пет", - "Sat": "Суб", - "Shows longer than their scheduled time will be cut off by a following show.": "Емисија дуже од предвиђеног времена ће да буде одсечен.", - "Cancel Current Show?": "Откажи Тренутног Програма?", - "Stop recording current show?": "Заустављање снимање емисије?", - "Ok": "Ок", - "Contents of Show": "Садржај Емисије", - "Remove all content?": "Уклониш све садржаје?", - "Delete selected item(s)?": "Обришеш ли одабрану (е) ставу (е)?", - "Start": "Почетак", - "End": "Завршетак", - "Duration": "Трајање", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Одтамњење", - "Fade Out": "Затамњење", - "Show Empty": "Празна Емисија", - "Recording From Line In": "Снимање са Line In", - "Track preview": "Преглед песма", - "Cannot schedule outside a show.": "Не може да се заказује ван емисије.", - "Moving 1 Item": "Премештање 1 Ставка", - "Moving %s Items": "Премештање %s Ставке", - "Save": "Сачувај", - "Cancel": "Одустани", - "Fade Editor": "Уређивач за (Од-/За-)тамњивање", - "Cue Editor": "Cue Уређивач", - "Waveform features are available in a browser supporting the Web Audio API": "Таласни облик функције су доступне у споредну Web Audio API прегледачу", - "Select all": "Одабери све", - "Select none": "Не одабери ништа", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Уклони одабране заказане ставке", - "Jump to the current playing track": "Скочи на тренутну свирану песму", - "Jump to Current": "", - "Cancel current show": "Поништи тренутну емисију", - "Open library to add or remove content": "Отвори библиотеку за додавање или уклањање садржаја", - "Add / Remove Content": "Додај / Уклони Садржај", - "in use": "у употреби", - "Disk": "Диск", - "Look in": "Погледај унутра", - "Open": "Отвори", - "Admin": "Администратор", - "DJ": "Диск-џокеј", - "Program Manager": "Водитељ Програма", - "Guest": "Гост", - "Guests can do the following:": "Гости могу да уради следеће:", - "View schedule": "Преглед распореда", - "View show content": "Преглед садржај емисије", - "DJs can do the following:": "Диск-џокеји могу да уради следеће:", - "Manage assigned show content": "Управљање додељен садржај емисије", - "Import media files": "Увоз медијске фајлове", - "Create playlists, smart blocks, and webstreams": "Изради листе песама, паметне блокове, и преносе", - "Manage their own library content": "Управљање своје библиотечког садржаја", - "Program Managers can do the following:": "", - "View and manage show content": "Приказ и управљање садржај емисије", - "Schedule shows": "Распоредне емисије", - "Manage all library content": "Управљање све садржаје библиотека", - "Admins can do the following:": "Администратори могу да уради следеће:", - "Manage preferences": "Управљање подешавања", - "Manage users": "Управљање кориснике", - "Manage watched folders": "Управљање надзираних датотеке", - "Send support feedback": "Пошаљи повратне информације", - "View system status": "Преглед стања система", - "Access playout history": "Приступ за историју пуштених песама", - "View listener stats": "Погледај статистику слушаоце", - "Show / hide columns": "Покажи/сакриј колоне", - "Columns": "", - "From {from} to {to}": "Од {from} до {to}", - "kbps": "kbps", - "yyyy-mm-dd": "гггг-мм-дд", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Не", - "Mo": "По", - "Tu": "Ут", - "We": "Ср", - "Th": "Че", - "Fr": "Пе", - "Sa": "Су", - "Close": "Затвори", - "Hour": "Сат", - "Minute": "Минута", - "Done": "Готово", - "Select files": "Изабери датотеке", - "Add files to the upload queue and click the start button.": "Додај датотеке и кликни на 'Покрени Upload' дугме.", - "Filename": "", - "Size": "", - "Add Files": "Додај Датотеке", - "Stop Upload": "Заустави Upload", - "Start upload": "Покрени upload", - "Start Upload": "", - "Add files": "Додај датотеке", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Послата %d/%d датотека", - "N/A": "N/A", - "Drag files here.": "Повуци датотеке овде.", - "File extension error.": "Грешка (ознаку типа датотеке).", - "File size error.": "Грешка величине датотеке.", - "File count error.": "Грешка број датотеке.", - "Init error.": "Init грешка.", - "HTTP Error.": "HTTP Грешка.", - "Security error.": "Безбедносна грешка.", - "Generic error.": "Генеричка грешка.", - "IO error.": "IO грешка.", - "File: %s": "Фајл: %s", - "%d files queued": "%d датотека на чекању", - "File: %f, size: %s, max file size: %m": "Датотека: %f, величина: %s, макс величина датотеке: %m", - "Upload URL might be wrong or doesn't exist": "Преносни URL може да буде у криву или не постоји", - "Error: File too large: ": "Грешка: Датотека је превелика:", - "Error: Invalid file extension: ": "Грешка: Неважећи ознак типа датотека:", - "Set Default": "Постави Подразумевано", - "Create Entry": "Стварање Уноса", - "Edit History Record": "Уреди Историјат Уписа", - "No Show": "Нема Програма", - "Copied %s row%s to the clipboard": "%s ред%s је копиран у међумеморију", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Опис", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Омогућено", - "Disabled": "Онемогућено", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Погрешно корисничко име или лозинка. Молимо покушај поново.", - "You are viewing an older version of %s": "Гледаш старију верзију %s", - "You cannot add tracks to dynamic blocks.": "Не можеш да додаш песме за динамичне блокове.", - "You don't have permission to delete selected %s(s).": "Немаш допуштење за брисање одабраног (е) %s.", - "You can only add tracks to smart block.": "Можеш само песме да додаш за паметног блока.", - "Untitled Playlist": "Неименовани Списак Песама", - "Untitled Smart Block": "Неименовани Smart Block", - "Unknown Playlist": "Непознати Списак Песама", - "Preferences updated.": "Подешавања су ажуриране.", - "Stream Setting Updated.": "Пренос Подешавање је Ажурирано.", - "path should be specified": "пут би требао да буде специфициран", - "Problem with Liquidsoap...": "Проблем са Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Реемитовање емисија %s од %s на %s", - "Select cursor": "Одабери показивач", - "Remove cursor": "Уклони показивач", - "show does not exist": "емисија не постоји", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Корисник је успешно додат!", - "User updated successfully!": "Корисник је успешно ажуриран!", - "Settings updated successfully!": "Подешавања су успешно ажуриране!", - "Untitled Webstream": "Неименовани Пренос", - "Webstream saved.": "Пренос је сачуван.", - "Invalid form values.": "Неважећи вредности обрасца.", - "Invalid character entered": "Унесени су неважећи знакови", - "Day must be specified": "Дан мора да буде наведен", - "Time must be specified": "Време мора да буде наведено", - "Must wait at least 1 hour to rebroadcast": "Мораш да чекаш најмање 1 сат за ре-емитовање", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Користи Прилагођено потврду идентитета:", - "Custom Username": "Прилагођено Корисничко Име", - "Custom Password": "Прилагођена Лозинка", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "'Корисничко Име' поља не сме да остане празно.", - "Password field cannot be empty.": "'Лозинка' поља не сме да остане празно.", - "Record from Line In?": "Снимање са Line In?", - "Rebroadcast?": "Поново да емитује?", - "days": "дани", - "Link:": "Link:", - "Repeat Type:": "Тип Понављање:", - "weekly": "недељно", - "every 2 weeks": "сваке 2 недеље", - "every 3 weeks": "свака 3 недеље", - "every 4 weeks": "свака 4 недеље", - "monthly": "месечно", - "Select Days:": "Одабери Дане:", - "Repeat By:": "Понављање По:", - "day of the month": "дан у месецу", - "day of the week": "дан у недељи", - "Date End:": "Датум Завршетка:", - "No End?": "Нема Краја?", - "End date must be after start date": "Датум завршетка мора да буде после датума почетка", - "Please select a repeat day": "Молимо, одабери којег дана", - "Background Colour:": "Боја Позадине:", - "Text Colour:": "Боја Текста:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Назив:", - "Untitled Show": "Неименована Емисија", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Опис:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' се не уклапа у временском формату 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Трајање:", - "Timezone:": "Временска Зона:", - "Repeats?": "Понављање?", - "Cannot create show in the past": "Не може да се створи емисију у прошлости", - "Cannot modify start date/time of the show that is already started": "Не можеш да мењаш датум/време почетак емисије, ако је већ почела", - "End date/time cannot be in the past": "Датум завршетка и време не може да буде у прошлости", - "Cannot have duration < 0m": "Не може да траје < 0m", - "Cannot have duration 00h 00m": "Не може да траје 00h 00m", - "Cannot have duration greater than 24h": "Не може да траје више од 24h", - "Cannot schedule overlapping shows": "Не можеш заказати преклапајуће емисије", - "Search Users:": "Тражи Кориснике:", - "DJs:": "Диск-џокеји:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Корисничко име:", - "Password:": "Лозинка:", - "Verify Password:": "Потврди Лозинку:", - "Firstname:": "Име:", - "Lastname:": "Презиме:", - "Email:": "Е-маил:", - "Mobile Phone:": "Мобилни Телефон:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Типова Корисника:", - "Login name is not unique.": "Име пријаве није јединствено.", - "Delete All Tracks in Library": "", - "Date Start:": "Датум Почетка:", - "Title:": "Назив:", - "Creator:": "Творац:", - "Album:": "Aлбум:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Година:", - "Label:": "Налепница:", - "Composer:": "Композитор:", - "Conductor:": "Диригент:", - "Mood:": "Расположење:", - "BPM:": "BPM:", - "Copyright:": "Ауторско право:", - "ISRC Number:": "ISRC Број:", - "Website:": "Веб страница:", - "Language:": "Језик:", - "Publish...": "", - "Start Time": "Време Почетка", - "End Time": "Време Завршетка", - "Interface Timezone:": "Временска Зона Интерфејси:", - "Station Name": "Назив Станице", - "Station Description": "", - "Station Logo:": "Лого:", - "Note: Anything larger than 600x600 will be resized.": "Напомена: Све већа од 600к600 ће да се мењају.", - "Default Crossfade Duration (s):": "Подразумевано Трајање Укрштено Стишавање (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Подразумевано Одтамњење (s):", - "Default Fade Out (s):": "Подразумевано Затамњење (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Станична Временска Зона", - "Week Starts On": "Први Дан у Недељи", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Пријава", - "Password": "Лозинка", - "Confirm new password": "Потврди нову лозинку", - "Password confirmation does not match your password.": "Лозинке које сте унели не подударају се.", - "Email": "", - "Username": "Корисничко име", - "Reset password": "Ресетуј лозинку", - "Back": "", - "Now Playing": "Тренутно Извођена", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Све Моје Емисије:", - "My Shows": "", - "Select criteria": "Одабери критеријуме", - "Bit Rate (Kbps)": "Брзина у Битовима (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Узорак Стопа (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "сати", - "minutes": "минути", - "items": "елементи", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Динамички", - "Static": "Статички", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Генерисање листе песама и чување садржаја критеријуме", - "Shuffle playlist content": "Садржај случајни избор списак песама", - "Shuffle": "Мешање", - "Limit cannot be empty or smaller than 0": "Ограничење не може да буде празан или мањи од 0", - "Limit cannot be more than 24 hrs": "Ограничење не може да буде више од 24 сати", - "The value should be an integer": "Вредност мора да буде цео број", - "500 is the max item limit value you can set": "500 је макс ставу граничну вредност могуће је да подесиш", - "You must select Criteria and Modifier": "Мораш да изабереш Критерију и Модификацију", - "'Length' should be in '00:00:00' format": "'Дужина' требала да буде у '00:00:00' облику", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Вредност мора да буде нумеричка", - "The value should be less then 2147483648": "Вредност би требала да буде мања од 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Вредност мора да буде мања од %s знакова", - "Value cannot be empty": "Вредност не може да буде празна", - "Stream Label:": "Видљиви Подаци:", - "Artist - Title": "Аутор - Назив", - "Show - Artist - Title": "Емисија - Аутор - Назив", - "Station name - Show name": "Назив станице - Назив емисије", - "Off Air Metadata": "Off Air Метаподаци", - "Enable Replay Gain": "Укључи Replay Gain", - "Replay Gain Modifier": "Replay Gain Модификатор", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Омогућено:", - "Mobile:": "", - "Stream Type:": "Пренос Типа:", - "Bit Rate:": "Брзина у Битовима:", - "Service Type:": "Тип Услуге:", - "Channels:": "Канали:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Тачка Монтирања", - "Name": "Назив", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Увозна Мапа:", - "Watched Folders:": "Мапе Под Надзором:", - "Not a valid Directory": "Не важећи Директоријум", - "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не одговара по облику датума '%format%'", - "'%value%' is less than %min% characters long": "'%value%' је мањи од %min% дугачко знакова", - "'%value%' is more than %max% characters long": "'%value%' је више од %max% дугачко знакова", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' није између '%min%' и '%max%', укључиво", - "Passwords do not match": "Лозинке се не подударају", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "'Cue in' и 'cue out' су нуле.", - "Can't set cue out to be greater than file length.": "Не можеш да подесиш да 'cue out' буде веће од дужине фајла.", - "Can't set cue in to be larger than cue out.": "Не можеш да подесиш да 'cue in' буде веће него 'cue out'.", - "Can't set cue out to be smaller than cue in.": "Не можеш да подесиш да 'cue out' буде мање него 'cue in'.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Одабери Државу", - "livestream": "", - "Cannot move items out of linked shows": "Не можеш да преместиш ставке из повезаних емисија", - "The schedule you're viewing is out of date! (sched mismatch)": "Застарео се прегледан распоред! (неважећи распоред)", - "The schedule you're viewing is out of date! (instance mismatch)": "Застарео се прегледан распоред! (пример неусклађеност)", - "The schedule you're viewing is out of date!": "Застарео се прегледан распоред!", - "You are not allowed to schedule show %s.": "Не смеш да закажеш распоредну емисију %s.", - "You cannot add files to recording shows.": "Не можеш да додаш датотеке за снимљене емисије.", - "The show %s is over and cannot be scheduled.": "Емисија %s је готова и не могу да буде заказана.", - "The show %s has been previously updated!": "Раније је %s емисија већ била ажурирана!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Изабрани Фајл не постоји!", - "Shows can have a max length of 24 hours.": "Емисије могу да имају највећу дужину 24 сата.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не може да се закаже преклапајуће емисије.\nНапомена: Промена величине понављане емисије утиче на све њене понављање.", - "Rebroadcast of %s from %s": "Реемитовање од %s од %s", - "Length needs to be greater than 0 minutes": "Дужина мора да буде већа од 0 минута", - "Length should be of form \"00h 00m\"": "Дужина мора да буде у облику \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL мора да буде у облику \"https://example.org\"", - "URL should be 512 characters or less": "URL мора да буде 512 знакова или мање", - "No MIME type found for webstream.": "Не постоји MIME тип за пренос.", - "Webstream name cannot be empty": "Име преноса не може да да буде празно", - "Could not parse XSPF playlist": "Нисмо могли анализирати XSPF списак песама", - "Could not parse PLS playlist": "Нисмо могли анализирати PLS списак песама", - "Could not parse M3U playlist": "Нисмо могли анализирати M3U списак песама", - "Invalid webstream - This appears to be a file download.": "Неважећи пренос - Чини се да је ово преузимање.", - "Unrecognized stream type: %s": "Непознати преносни тип: %s", - "Record file doesn't exist": "Снимљена датотека не постоји", - "View Recorded File Metadata": "Метаподаци снимљеног фајла", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Уређивање Програма", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Дозвола одбијена", - "Can't drag and drop repeating shows": "Не можеш повући и испустити понављајуће емисије", - "Can't move a past show": "Не можеш преместити догађане емисије", - "Can't move show into past": "Не можеш преместити емисију у прошлости", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања.", - "Show was deleted because recorded show does not exist!": "Емисија је избрисана јер је снимљена емисија не постоји!", - "Must wait 1 hour to rebroadcast.": "Мораш причекати 1 сат за ре-емитовање.", - "Track": "Песма", - "Played": "Пуштена", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Година %s мора да буде у распону између 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s није исправан датум", + "%s:%s:%s is not a valid time": "%s:%s:%s није исправан датум", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Календар", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Корисници", + "Track Types": "", + "Streams": "Преноси", + "Status": "Стање", + "Analytics": "", + "Playout History": "Историја Пуштених Песама", + "History Templates": "Историјски Шаблони", + "Listener Stats": "Слушатељска Статистика", + "Show Listener Stats": "", + "Help": "Помоћ", + "Getting Started": "Почетак Коришћења", + "User Manual": "Упутство", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Не смеш да приступиш овог извора.", + "You are not allowed to access this resource. ": "Не смеш да приступите овог извора.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Неисправан захтев.", + "Bad request. 'mode' parameter is invalid": "Неисправан захтев", + "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", + "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", + "You don't have permission to switch source.": "Немаш дозволу за промену извора.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s није пронађен", + "Something went wrong.": "Нешто је пошло по криву.", + "Preview": "Преглед", + "Add to Playlist": "Додај на Списак Песама", + "Add to Smart Block": "Додај у Smart Block", + "Delete": "Обриши", + "Edit...": "", + "Download": "Преузимање", + "Duplicate Playlist": "Удвостручавање", + "Duplicate Smartblock": "", + "No action available": "Нема доступних акција", + "You don't have permission to delete selected items.": "Немаш допуштење за брисање одабране ставке.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Копирање од %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси.", + "Audio Player": "Аудио Уређај", + "Something went wrong!": "", + "Recording:": "Снимање:", + "Master Stream": "Мајсторски Пренос", + "Live Stream": "Пренос Уживо", + "Nothing Scheduled": "Ништа по распореду", + "Current Show:": "Садашња Емисија:", + "Current": "Тренутна", + "You are running the latest version": "Ти имаш инсталирану најновију верзију", + "New version available: ": "Нова верзија је доступна:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Додај у тренутни списак песама", + "Add to current smart block": "Додај у тренутни smart block", + "Adding 1 Item": "Додавање 1 Ставке", + "Adding %s Items": "Додавање %s Ставке", + "You can only add tracks to smart blocks.": "Можеш да додаш само песме код паметних блокова.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера.", + "Please select a cursor position on timeline.": "Молимо одабери место показивача на временској црти.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Додај", + "New": "", + "Edit": "Уређивање", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Уклони", + "Edit Metadata": "Уреди Метаподатке", + "Add to selected show": "Додај у одабраној емисији", + "Select": "Одабери", + "Select this page": "Одабери ову страницу", + "Deselect this page": "Одзначи ову страницу", + "Deselect all": "Одзначи све", + "Are you sure you want to delete the selected item(s)?": "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?", + "Scheduled": "Заказана", + "Tracks": "", + "Playlist": "", + "Title": "Назив", + "Creator": "Творац", + "Album": "Албум", + "Bit Rate": "Пренос Бита", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Диригент", + "Copyright": "Ауторско право", + "Encoded By": "Кодирано је по", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Налепница", + "Language": "Језик", + "Last Modified": "Последња Измена", + "Last Played": "Задњи Пут Одиграна", + "Length": "Дужина", + "Mime": "Mime", + "Mood": "Расположење", + "Owner": "Власник", + "Replay Gain": "Replay Gain", + "Sample Rate": "Узорак Стопа", + "Track Number": "Број Песма", + "Uploaded": "Додата", + "Website": "Веб страница", + "Year": "Година", + "Loading...": "Учитавање...", + "All": "Све", + "Files": "Датотеке", + "Playlists": "Листе песама", + "Smart Blocks": "Smart Block-ови", + "Web Streams": "Преноси", + "Unknown type: ": "Непознати тип:", + "Are you sure you want to delete the selected item?": "Јеси ли сигуран да желиш да обришеш изабрану ставку?", + "Uploading in progress...": "Пренос је у току...", + "Retrieving data from the server...": "Преузимање података са сервера...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Шифра грешке:", + "Error msg: ": "Порука о грешци:", + "Input must be a positive number": "Мора да буде позитиван број", + "Input must be a number": "Мора да буде број", + "Input must be in the format: yyyy-mm-dd": "Мора да буде у облику: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Мора да буде у облику: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s", + "Open Media Builder": "Отвори Медијског Градитеља", + "please put in a time '00:00:00 (.0)'": "молимо стави у време '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Твој претраживач не подржава ову врсту аудио фајл:", + "Dynamic block is not previewable": "Динамички блок није доступан за преглед", + "Limit to: ": "Ограничити се на:", + "Playlist saved": "Списак песама је спремљена", + "Playlist shuffled": "Списак песама је измешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'.", + "Listener Count on %s: %s": "Број Слушалаца %s: %s", + "Remind me in 1 week": "Подсети ме за 1 недељу", + "Remind me never": "Никад ме више не подсети", + "Yes, help Airtime": "Да, помажем Airtime-у", + "Image must be one of jpg, jpeg, png, or gif": "Слика мора да буде jpg, jpeg, png, или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block је измешан", + "Smart block generated and criteria saved": "Smart block је генерисан и критеријуме су спремне", + "Smart block saved": "Smart block је сачуван", + "Processing...": "Обрада...", + "Select modifier": "Одабери модификатор", + "contains": "садржи", + "does not contain": "не садржи", + "is": "је", + "is not": "није", + "starts with": "почиње се са", + "ends with": "завршава се са", + "is greater than": "је већи од", + "is less than": "је мањи од", + "is in the range": "је у опсегу", + "Generate": "Генериши", + "Choose Storage Folder": "Одабери Мапу за Складиштење", + "Choose Folder to Watch": "Одабери Мапу за Праћење", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Јеси ли сигуран да желиш да промениш мапу за складиштење?\nТо ће да уклони датотеке из твоје библиотеке!", + "Manage Media Folders": "Управљање Медијске Мапе", + "Are you sure you want to remove the watched folder?": "Јеси ли сигуран да желиш да уклониш надзорску мапу?", + "This path is currently not accessible.": "Овај пут није тренутно доступан.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни.", + "Connected to the streaming server": "Прикључен је на серверу", + "The stream is disabled": "Пренос је онемогућен", + "Getting information from the server...": "Добијање информација са сервера...", + "Can not connect to the streaming server": "Не може да се повеже на серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Провери ову опцију како би се омогућило метаподатака за OGG потоке.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику.", + "Warning: You cannot change this field while the show is currently playing": "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава", + "No result found": "Нема пронађених резултата", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију.", + "Specify custom authentication which will work only for this show.": "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију.", + "The show instance doesn't exist anymore!": "Емисија у овом случају више не постоји!", + "Warning: Shows cannot be re-linked": "Упозорење: Емисије не може поново да се повеже", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци.", + "Show": "Емисија", + "Show is empty": "Емисија је празна", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Добијање података са сервера...", + "This show has no scheduled content.": "Ова емисија нема заказаног садржаја.", + "This show is not completely filled with content.": "Ова емисија није у потпуности испуњена са садржајем.", + "January": "Јануар", + "February": "Фебруар", + "March": "Март", + "April": "Април", + "May": "Мај", + "June": "Јун", + "July": "Јул", + "August": "Август", + "September": "Септембар", + "October": "Октобар", + "November": "Новембар", + "December": "Децембар", + "Jan": "Јан", + "Feb": "Феб", + "Mar": "Мар", + "Apr": "Апр", + "Jun": "Јун", + "Jul": "Јул", + "Aug": "Авг", + "Sep": "Сеп", + "Oct": "Окт", + "Nov": "Нов", + "Dec": "Дец", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Недеља", + "Monday": "Понедељак", + "Tuesday": "Уторак", + "Wednesday": "Среда", + "Thursday": "Четвртак", + "Friday": "Петак", + "Saturday": "Субота", + "Sun": "Нед", + "Mon": "Пон", + "Tue": "Уто", + "Wed": "Сре", + "Thu": "Чет", + "Fri": "Пет", + "Sat": "Суб", + "Shows longer than their scheduled time will be cut off by a following show.": "Емисија дуже од предвиђеног времена ће да буде одсечен.", + "Cancel Current Show?": "Откажи Тренутног Програма?", + "Stop recording current show?": "Заустављање снимање емисије?", + "Ok": "Ок", + "Contents of Show": "Садржај Емисије", + "Remove all content?": "Уклониш све садржаје?", + "Delete selected item(s)?": "Обришеш ли одабрану (е) ставу (е)?", + "Start": "Почетак", + "End": "Завршетак", + "Duration": "Трајање", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Одтамњење", + "Fade Out": "Затамњење", + "Show Empty": "Празна Емисија", + "Recording From Line In": "Снимање са Line In", + "Track preview": "Преглед песма", + "Cannot schedule outside a show.": "Не може да се заказује ван емисије.", + "Moving 1 Item": "Премештање 1 Ставка", + "Moving %s Items": "Премештање %s Ставке", + "Save": "Сачувај", + "Cancel": "Одустани", + "Fade Editor": "Уређивач за (Од-/За-)тамњивање", + "Cue Editor": "Cue Уређивач", + "Waveform features are available in a browser supporting the Web Audio API": "Таласни облик функције су доступне у споредну Web Audio API прегледачу", + "Select all": "Одабери све", + "Select none": "Не одабери ништа", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Уклони одабране заказане ставке", + "Jump to the current playing track": "Скочи на тренутну свирану песму", + "Jump to Current": "", + "Cancel current show": "Поништи тренутну емисију", + "Open library to add or remove content": "Отвори библиотеку за додавање или уклањање садржаја", + "Add / Remove Content": "Додај / Уклони Садржај", + "in use": "у употреби", + "Disk": "Диск", + "Look in": "Погледај унутра", + "Open": "Отвори", + "Admin": "Администратор", + "DJ": "Диск-џокеј", + "Program Manager": "Водитељ Програма", + "Guest": "Гост", + "Guests can do the following:": "Гости могу да уради следеће:", + "View schedule": "Преглед распореда", + "View show content": "Преглед садржај емисије", + "DJs can do the following:": "Диск-џокеји могу да уради следеће:", + "Manage assigned show content": "Управљање додељен садржај емисије", + "Import media files": "Увоз медијске фајлове", + "Create playlists, smart blocks, and webstreams": "Изради листе песама, паметне блокове, и преносе", + "Manage their own library content": "Управљање своје библиотечког садржаја", + "Program Managers can do the following:": "", + "View and manage show content": "Приказ и управљање садржај емисије", + "Schedule shows": "Распоредне емисије", + "Manage all library content": "Управљање све садржаје библиотека", + "Admins can do the following:": "Администратори могу да уради следеће:", + "Manage preferences": "Управљање подешавања", + "Manage users": "Управљање кориснике", + "Manage watched folders": "Управљање надзираних датотеке", + "Send support feedback": "Пошаљи повратне информације", + "View system status": "Преглед стања система", + "Access playout history": "Приступ за историју пуштених песама", + "View listener stats": "Погледај статистику слушаоце", + "Show / hide columns": "Покажи/сакриј колоне", + "Columns": "", + "From {from} to {to}": "Од {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Не", + "Mo": "По", + "Tu": "Ут", + "We": "Ср", + "Th": "Че", + "Fr": "Пе", + "Sa": "Су", + "Close": "Затвори", + "Hour": "Сат", + "Minute": "Минута", + "Done": "Готово", + "Select files": "Изабери датотеке", + "Add files to the upload queue and click the start button.": "Додај датотеке и кликни на 'Покрени Upload' дугме.", + "Filename": "", + "Size": "", + "Add Files": "Додај Датотеке", + "Stop Upload": "Заустави Upload", + "Start upload": "Покрени upload", + "Start Upload": "", + "Add files": "Додај датотеке", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Послата %d/%d датотека", + "N/A": "N/A", + "Drag files here.": "Повуци датотеке овде.", + "File extension error.": "Грешка (ознаку типа датотеке).", + "File size error.": "Грешка величине датотеке.", + "File count error.": "Грешка број датотеке.", + "Init error.": "Init грешка.", + "HTTP Error.": "HTTP Грешка.", + "Security error.": "Безбедносна грешка.", + "Generic error.": "Генеричка грешка.", + "IO error.": "IO грешка.", + "File: %s": "Фајл: %s", + "%d files queued": "%d датотека на чекању", + "File: %f, size: %s, max file size: %m": "Датотека: %f, величина: %s, макс величина датотеке: %m", + "Upload URL might be wrong or doesn't exist": "Преносни URL може да буде у криву или не постоји", + "Error: File too large: ": "Грешка: Датотека је превелика:", + "Error: Invalid file extension: ": "Грешка: Неважећи ознак типа датотека:", + "Set Default": "Постави Подразумевано", + "Create Entry": "Стварање Уноса", + "Edit History Record": "Уреди Историјат Уписа", + "No Show": "Нема Програма", + "Copied %s row%s to the clipboard": "%s ред%s је копиран у међумеморију", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Опис", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Омогућено", + "Disabled": "Онемогућено", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Погрешно корисничко име или лозинка. Молимо покушај поново.", + "You are viewing an older version of %s": "Гледаш старију верзију %s", + "You cannot add tracks to dynamic blocks.": "Не можеш да додаш песме за динамичне блокове.", + "You don't have permission to delete selected %s(s).": "Немаш допуштење за брисање одабраног (е) %s.", + "You can only add tracks to smart block.": "Можеш само песме да додаш за паметног блока.", + "Untitled Playlist": "Неименовани Списак Песама", + "Untitled Smart Block": "Неименовани Smart Block", + "Unknown Playlist": "Непознати Списак Песама", + "Preferences updated.": "Подешавања су ажуриране.", + "Stream Setting Updated.": "Пренос Подешавање је Ажурирано.", + "path should be specified": "пут би требао да буде специфициран", + "Problem with Liquidsoap...": "Проблем са Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Реемитовање емисија %s од %s на %s", + "Select cursor": "Одабери показивач", + "Remove cursor": "Уклони показивач", + "show does not exist": "емисија не постоји", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Корисник је успешно додат!", + "User updated successfully!": "Корисник је успешно ажуриран!", + "Settings updated successfully!": "Подешавања су успешно ажуриране!", + "Untitled Webstream": "Неименовани Пренос", + "Webstream saved.": "Пренос је сачуван.", + "Invalid form values.": "Неважећи вредности обрасца.", + "Invalid character entered": "Унесени су неважећи знакови", + "Day must be specified": "Дан мора да буде наведен", + "Time must be specified": "Време мора да буде наведено", + "Must wait at least 1 hour to rebroadcast": "Мораш да чекаш најмање 1 сат за ре-емитовање", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Користи Прилагођено потврду идентитета:", + "Custom Username": "Прилагођено Корисничко Име", + "Custom Password": "Прилагођена Лозинка", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "'Корисничко Име' поља не сме да остане празно.", + "Password field cannot be empty.": "'Лозинка' поља не сме да остане празно.", + "Record from Line In?": "Снимање са Line In?", + "Rebroadcast?": "Поново да емитује?", + "days": "дани", + "Link:": "Link:", + "Repeat Type:": "Тип Понављање:", + "weekly": "недељно", + "every 2 weeks": "сваке 2 недеље", + "every 3 weeks": "свака 3 недеље", + "every 4 weeks": "свака 4 недеље", + "monthly": "месечно", + "Select Days:": "Одабери Дане:", + "Repeat By:": "Понављање По:", + "day of the month": "дан у месецу", + "day of the week": "дан у недељи", + "Date End:": "Датум Завршетка:", + "No End?": "Нема Краја?", + "End date must be after start date": "Датум завршетка мора да буде после датума почетка", + "Please select a repeat day": "Молимо, одабери којег дана", + "Background Colour:": "Боја Позадине:", + "Text Colour:": "Боја Текста:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Назив:", + "Untitled Show": "Неименована Емисија", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' се не уклапа у временском формату 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Трајање:", + "Timezone:": "Временска Зона:", + "Repeats?": "Понављање?", + "Cannot create show in the past": "Не може да се створи емисију у прошлости", + "Cannot modify start date/time of the show that is already started": "Не можеш да мењаш датум/време почетак емисије, ако је већ почела", + "End date/time cannot be in the past": "Датум завршетка и време не може да буде у прошлости", + "Cannot have duration < 0m": "Не може да траје < 0m", + "Cannot have duration 00h 00m": "Не може да траје 00h 00m", + "Cannot have duration greater than 24h": "Не може да траје више од 24h", + "Cannot schedule overlapping shows": "Не можеш заказати преклапајуће емисије", + "Search Users:": "Тражи Кориснике:", + "DJs:": "Диск-џокеји:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Корисничко име:", + "Password:": "Лозинка:", + "Verify Password:": "Потврди Лозинку:", + "Firstname:": "Име:", + "Lastname:": "Презиме:", + "Email:": "Е-маил:", + "Mobile Phone:": "Мобилни Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Типова Корисника:", + "Login name is not unique.": "Име пријаве није јединствено.", + "Delete All Tracks in Library": "", + "Date Start:": "Датум Почетка:", + "Title:": "Назив:", + "Creator:": "Творац:", + "Album:": "Aлбум:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Година:", + "Label:": "Налепница:", + "Composer:": "Композитор:", + "Conductor:": "Диригент:", + "Mood:": "Расположење:", + "BPM:": "BPM:", + "Copyright:": "Ауторско право:", + "ISRC Number:": "ISRC Број:", + "Website:": "Веб страница:", + "Language:": "Језик:", + "Publish...": "", + "Start Time": "Време Почетка", + "End Time": "Време Завршетка", + "Interface Timezone:": "Временска Зона Интерфејси:", + "Station Name": "Назив Станице", + "Station Description": "", + "Station Logo:": "Лого:", + "Note: Anything larger than 600x600 will be resized.": "Напомена: Све већа од 600к600 ће да се мењају.", + "Default Crossfade Duration (s):": "Подразумевано Трајање Укрштено Стишавање (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Подразумевано Одтамњење (s):", + "Default Fade Out (s):": "Подразумевано Затамњење (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Станична Временска Зона", + "Week Starts On": "Први Дан у Недељи", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Пријава", + "Password": "Лозинка", + "Confirm new password": "Потврди нову лозинку", + "Password confirmation does not match your password.": "Лозинке које сте унели не подударају се.", + "Email": "", + "Username": "Корисничко име", + "Reset password": "Ресетуј лозинку", + "Back": "", + "Now Playing": "Тренутно Извођена", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Све Моје Емисије:", + "My Shows": "", + "Select criteria": "Одабери критеријуме", + "Bit Rate (Kbps)": "Брзина у Битовима (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Узорак Стопа (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "сати", + "minutes": "минути", + "items": "елементи", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Динамички", + "Static": "Статички", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Генерисање листе песама и чување садржаја критеријуме", + "Shuffle playlist content": "Садржај случајни избор списак песама", + "Shuffle": "Мешање", + "Limit cannot be empty or smaller than 0": "Ограничење не може да буде празан или мањи од 0", + "Limit cannot be more than 24 hrs": "Ограничење не може да буде више од 24 сати", + "The value should be an integer": "Вредност мора да буде цео број", + "500 is the max item limit value you can set": "500 је макс ставу граничну вредност могуће је да подесиш", + "You must select Criteria and Modifier": "Мораш да изабереш Критерију и Модификацију", + "'Length' should be in '00:00:00' format": "'Дужина' требала да буде у '00:00:00' облику", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Вредност мора да буде нумеричка", + "The value should be less then 2147483648": "Вредност би требала да буде мања од 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Вредност мора да буде мања од %s знакова", + "Value cannot be empty": "Вредност не може да буде празна", + "Stream Label:": "Видљиви Подаци:", + "Artist - Title": "Аутор - Назив", + "Show - Artist - Title": "Емисија - Аутор - Назив", + "Station name - Show name": "Назив станице - Назив емисије", + "Off Air Metadata": "Off Air Метаподаци", + "Enable Replay Gain": "Укључи Replay Gain", + "Replay Gain Modifier": "Replay Gain Модификатор", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Омогућено:", + "Mobile:": "", + "Stream Type:": "Пренос Типа:", + "Bit Rate:": "Брзина у Битовима:", + "Service Type:": "Тип Услуге:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Тачка Монтирања", + "Name": "Назив", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Увозна Мапа:", + "Watched Folders:": "Мапе Под Надзором:", + "Not a valid Directory": "Не важећи Директоријум", + "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не одговара по облику датума '%format%'", + "'%value%' is less than %min% characters long": "'%value%' је мањи од %min% дугачко знакова", + "'%value%' is more than %max% characters long": "'%value%' је више од %max% дугачко знакова", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' није између '%min%' и '%max%', укључиво", + "Passwords do not match": "Лозинке се не подударају", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "'Cue in' и 'cue out' су нуле.", + "Can't set cue out to be greater than file length.": "Не можеш да подесиш да 'cue out' буде веће од дужине фајла.", + "Can't set cue in to be larger than cue out.": "Не можеш да подесиш да 'cue in' буде веће него 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Не можеш да подесиш да 'cue out' буде мање него 'cue in'.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Одабери Државу", + "livestream": "", + "Cannot move items out of linked shows": "Не можеш да преместиш ставке из повезаних емисија", + "The schedule you're viewing is out of date! (sched mismatch)": "Застарео се прегледан распоред! (неважећи распоред)", + "The schedule you're viewing is out of date! (instance mismatch)": "Застарео се прегледан распоред! (пример неусклађеност)", + "The schedule you're viewing is out of date!": "Застарео се прегледан распоред!", + "You are not allowed to schedule show %s.": "Не смеш да закажеш распоредну емисију %s.", + "You cannot add files to recording shows.": "Не можеш да додаш датотеке за снимљене емисије.", + "The show %s is over and cannot be scheduled.": "Емисија %s је готова и не могу да буде заказана.", + "The show %s has been previously updated!": "Раније је %s емисија већ била ажурирана!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Изабрани Фајл не постоји!", + "Shows can have a max length of 24 hours.": "Емисије могу да имају највећу дужину 24 сата.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не може да се закаже преклапајуће емисије.\nНапомена: Промена величине понављане емисије утиче на све њене понављање.", + "Rebroadcast of %s from %s": "Реемитовање од %s од %s", + "Length needs to be greater than 0 minutes": "Дужина мора да буде већа од 0 минута", + "Length should be of form \"00h 00m\"": "Дужина мора да буде у облику \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL мора да буде у облику \"https://example.org\"", + "URL should be 512 characters or less": "URL мора да буде 512 знакова или мање", + "No MIME type found for webstream.": "Не постоји MIME тип за пренос.", + "Webstream name cannot be empty": "Име преноса не може да да буде празно", + "Could not parse XSPF playlist": "Нисмо могли анализирати XSPF списак песама", + "Could not parse PLS playlist": "Нисмо могли анализирати PLS списак песама", + "Could not parse M3U playlist": "Нисмо могли анализирати M3U списак песама", + "Invalid webstream - This appears to be a file download.": "Неважећи пренос - Чини се да је ово преузимање.", + "Unrecognized stream type: %s": "Непознати преносни тип: %s", + "Record file doesn't exist": "Снимљена датотека не постоји", + "View Recorded File Metadata": "Метаподаци снимљеног фајла", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Уређивање Програма", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Дозвола одбијена", + "Can't drag and drop repeating shows": "Не можеш повући и испустити понављајуће емисије", + "Can't move a past show": "Не можеш преместити догађане емисије", + "Can't move show into past": "Не можеш преместити емисију у прошлости", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања.", + "Show was deleted because recorded show does not exist!": "Емисија је избрисана јер је снимљена емисија не постоји!", + "Must wait 1 hour to rebroadcast.": "Мораш причекати 1 сат за ре-емитовање.", + "Track": "Песма", + "Played": "Пуштена", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/tr_TR.json b/webapp/src/locale/tr_TR.json index 4d11cf7ad0..661c5a353c 100644 --- a/webapp/src/locale/tr_TR.json +++ b/webapp/src/locale/tr_TR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s yılı 1753 - 9999 aralığında olmalıdır", - "%s-%s-%s is not a valid date": "%s-%s-%s geçerli bir tarih değil", - "%s:%s:%s is not a valid time": "%s:%s:%s geçerli bir zaman değil", - "English": "İngilizce", - "Afar": "Afarca", - "Abkhazian": "Abhazca", - "Afrikaans": "Afrikanca", - "Amharic": "Amharca", - "Arabic": "Arapça", - "Assamese": "Assam dili", - "Aymara": "Aymaraca", - "Azerbaijani": "Azerice", - "Bashkir": "Başkurtça", - "Belarusian": "Belarusça", - "Bulgarian": "Bulgarca", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengalce", - "Tibetan": "Tibetçe", - "Breton": "Bretonca", - "Catalan": "Katalanca", - "Corsican": "Korsikaca", - "Czech": "Çekçe", - "Welsh": "Galce", - "Danish": "Danca", - "German": "Almanca", - "Bhutani": "Bhutani", - "Greek": "Yunanca", - "Esperanto": "Esperanto", - "Spanish": "İspanyolca", - "Estonian": "Estonca", - "Basque": "Baskça", - "Persian": "Farsça", - "Finnish": "Fince", - "Fiji": "Fiji", - "Faeroese": "Faroece", - "French": "Fransızca", - "Frisian": "Frizce", - "Irish": "İrlandaca", - "Scots/Gaelic": "İskoçça", - "Galician": "Galiçyaca", - "Guarani": "Guarani", - "Gujarati": "Guceratça", - "Hausa": "Hausa dili", - "Hindi": "Hintçe", - "Croatian": "Hırvatça", - "Hungarian": "Macarca", - "Armenian": "Ermenice", - "Interlingua": "İnterlingua", - "Interlingue": "İnterlingue", - "Inupiak": "", - "Indonesian": "Endonezyaca", - "Icelandic": "İzlandaca", - "Italian": "İtalyanca", - "Hebrew": "İbranice", - "Japanese": "Japonca", - "Yiddish": "Yidçe", - "Javanese": "Cavaca", - "Georgian": "Gürcüce", - "Kazakh": "Kazakça", - "Greenlandic": "Grönlandca", - "Cambodian": "", - "Kannada": "Kannada", - "Korean": "Korece", - "Kashmiri": "", - "Kurdish": "Kürtçe", - "Kirghiz": "Kırgızca", - "Latin": "Latince", - "Lingala": "", - "Laothian": "", - "Lithuanian": "Litvanyaca", - "Latvian/Lettish": "Letonca/Lettçe", - "Malagasy": "Madagaskarca", - "Maori": "Maori dili", - "Macedonian": "Makedonca", - "Malayalam": "Malayalamca", - "Mongolian": "Moğolca", - "Moldavian": "Moldovyaca", - "Marathi": "", - "Malay": "Malayca", - "Maltese": "Maltaca", - "Burmese": "", - "Nauru": "", - "Nepali": "Nepalce", - "Dutch": "Felemenkçe", - "Norwegian": "Norveççe", - "Occitan": "Oksitanca", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "Pencapça", - "Polish": "Lehçe", - "Pashto/Pushto": "Peştuca/Puşto", - "Portuguese": "Portekizce", - "Quechua": "Keçuva", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "Rumence", - "Russian": "Rusça", - "Kinyarwanda": "", - "Sanskrit": "Sanskritçe", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "Sırpça-Hırvatça", - "Singhalese": "", - "Slovak": "Slovakça", - "Slovenian": "Slovence", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "Arnavutça", - "Serbian": "Sırpça", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "İsveççe", - "Swahili": "", - "Tamil": "Tamilce", - "Tegulu": "", - "Tajik": "Tacikçe", - "Thai": "", - "Tigrinya": "", - "Turkmen": "Türkmence", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "Türkçe", - "Tsonga": "", - "Tatar": "Tatarca", - "Twi": "", - "Ukrainian": "Ukraynaca", - "Urdu": "Urduca", - "Uzbek": "Özbekçe", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "Çince", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "Profilim", - "Users": "Kullanıcılar", - "Track Types": "", - "Streams": "", - "Status": "Durum", - "Analytics": "", - "Playout History": "", - "History Templates": "", - "Listener Stats": "", - "Show Listener Stats": "", - "Help": "Yardım", - "Getting Started": "Başlarken", - "User Manual": "Kullanım Kılavuzu", - "Get Help Online": "Çevrim İçi Yardım Alın", - "Contribute to LibreTime": "LibreTime'a Katkıda Bulunun", - "What's New?": "", - "You are not allowed to access this resource.": "", - "You are not allowed to access this resource. ": "", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "", - "Bad request. 'mode' parameter is invalid": "", - "You don't have permission to disconnect source.": "", - "There is no source connected to this input.": "", - "You don't have permission to switch source.": "", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Sayfa bulunamadı.", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "", - "Something went wrong.": "Bir şeyler yanlış gitti.", - "Preview": "Ön izleme", - "Add to Playlist": "", - "Add to Smart Block": "", - "Delete": "Sil", - "Edit...": "Düzenle...", - "Download": "İndir", - "Duplicate Playlist": "", - "Duplicate Smartblock": "", - "No action available": "", - "You don't have permission to delete selected items.": "", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "", - "Please make sure admin user/password is correct on Settings->Streams page.": "", - "Audio Player": "Audio Player", - "Something went wrong!": "Bir şeyler yanlış gitti!", - "Recording:": "", - "Master Stream": "", - "Live Stream": "Canlı yayın", - "Nothing Scheduled": "", - "Current Show:": "", - "Current": "", - "You are running the latest version": "", - "New version available: ": "", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "", - "Add to current smart block": "", - "Adding 1 Item": "", - "Adding %s Items": "", - "You can only add tracks to smart blocks.": "", - "You can only add tracks, smart blocks, and webstreams to playlists.": "", - "Please select a cursor position on timeline.": "", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Ekle", - "New": "Yeni", - "Edit": "Düzenle", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Kaldır", - "Edit Metadata": "", - "Add to selected show": "", - "Select": "Seç", - "Select this page": "Bu sayfayı seç", - "Deselect this page": "Bu sayfanın seçimini kaldır", - "Deselect all": "Tümünün seçimini kaldır", - "Are you sure you want to delete the selected item(s)?": "", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Parça Adı", - "Creator": "Oluşturan", - "Album": "Albüm", - "Bit Rate": "Bit Hızı", - "BPM": "BPM", - "Composer": "Besteleyen", - "Conductor": "Orkestra Şefi", - "Copyright": "Telif Hakkı", - "Encoded By": "Encode eden", - "Genre": "Tür", - "ISRC": "ISRC", - "Label": "Plak Şirketi", - "Language": "Dil", - "Last Modified": "Son Değiştirilme Zamanı", - "Last Played": "Son Oynatma Zamanı", - "Length": "Uzunluk", - "Mime": "Mime", - "Mood": "Ruh Hali", - "Owner": "Sahibi", - "Replay Gain": "Replay Gain", - "Sample Rate": "", - "Track Number": "Parça Numarası", - "Uploaded": "Yüklenme Tarihi", - "Website": "Website'si", - "Year": "Yıl", - "Loading...": "Yükleniyor...", - "All": "Tümü", - "Files": "Dosyalar", - "Playlists": "", - "Smart Blocks": "", - "Web Streams": "", - "Unknown type: ": "Bilinmeyen tür: ", - "Are you sure you want to delete the selected item?": "", - "Uploading in progress...": "", - "Retrieving data from the server...": "", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Hata kodu: ", - "Error msg: ": "Hata mesajı: ", - "Input must be a positive number": "", - "Input must be a number": "", - "Input must be in the format: yyyy-mm-dd": "", - "Input must be in the format: hh:mm:ss.t": "", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "", - "Dynamic block is not previewable": "", - "Limit to: ": "", - "Playlist saved": "", - "Playlist shuffled": "", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "", - "Listener Count on %s: %s": "", - "Remind me in 1 week": "", - "Remind me never": "", - "Yes, help Airtime": "", - "Image must be one of jpg, jpeg, png, or gif": "", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "", - "Smart block generated and criteria saved": "", - "Smart block saved": "", - "Processing...": "", - "Select modifier": "Değişken seçin", - "contains": "içersin", - "does not contain": "içermesin", - "is": "eşittir", - "is not": "eşit değildir", - "starts with": "ile başlayan", - "ends with": "ile biten", - "is greater than": "büyüktür", - "is less than": "küçüktür", - "is in the range": "aralıkta", - "Generate": "Oluştur", - "Choose Storage Folder": "", - "Choose Folder to Watch": "", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "", - "Manage Media Folders": "", - "Are you sure you want to remove the watched folder?": "", - "This path is currently not accessible.": "", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "", - "The stream is disabled": "", - "Getting information from the server...": "Sunucudan bilgiler getiriliyor...", - "Can not connect to the streaming server": "", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "", - "Check this box to automatically switch on Master/Show source upon source connection.": "", - "If your Icecast server expects a username of 'source', this field can be left blank.": "", - "If your live streaming client does not ask for a username, this field should be 'source'.": "", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "", - "Specify custom authentication which will work only for this show.": "", - "The show instance doesn't exist anymore!": "", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "", - "Show is empty": "", - "1m": "", - "5m": "", - "10m": "", - "15m": "", - "30m": "", - "60m": "", - "Retreiving data from the server...": "", - "This show has no scheduled content.": "", - "This show is not completely filled with content.": "", - "January": "Ocak", - "February": "Şubat", - "March": "Mart", - "April": "Nisan", - "May": "Mayıs", - "June": "Haziran", - "July": "Temmuz", - "August": "Ağustos", - "September": "Eylül", - "October": "Ekim", - "November": "Kasım", - "December": "Aralık", - "Jan": "Oca", - "Feb": "Şub", - "Mar": "Mar", - "Apr": "Nis", - "Jun": "Haz", - "Jul": "Tem", - "Aug": "Ağu", - "Sep": "Eyl", - "Oct": "Eki", - "Nov": "Kas", - "Dec": "Ara", - "Today": "Bugün", - "Day": "Gün", - "Week": "Hafta", - "Month": "Ay", - "Sunday": "Pazar", - "Monday": "Pazartesi", - "Tuesday": "Salı", - "Wednesday": "Çarşamba", - "Thursday": "Perşembe", - "Friday": "Cuma", - "Saturday": "Cumartesi", - "Sun": "Paz", - "Mon": "Pzt", - "Tue": "Sal", - "Wed": "Çar", - "Thu": "Per", - "Fri": "Cum", - "Sat": "Cmt", - "Shows longer than their scheduled time will be cut off by a following show.": "", - "Cancel Current Show?": "", - "Stop recording current show?": "", - "Ok": "OK", - "Contents of Show": "", - "Remove all content?": "", - "Delete selected item(s)?": "", - "Start": "", - "End": "", - "Duration": "", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "", - "Recording From Line In": "", - "Track preview": "", - "Cannot schedule outside a show.": "", - "Moving 1 Item": "", - "Moving %s Items": "", - "Save": "Kaydet", - "Cancel": "İptal", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "", - "Select none": "", - "Trim overbooked shows": "", - "Remove selected scheduled items": "", - "Jump to the current playing track": "", - "Jump to Current": "", - "Cancel current show": "", - "Open library to add or remove content": "", - "Add / Remove Content": "", - "in use": "", - "Disk": "", - "Look in": "", - "Open": "", - "Admin": "Yönetici (Admin)", - "DJ": "DJ", - "Program Manager": "Program Yöneticisi", - "Guest": "Ziyaretçi", - "Guests can do the following:": "", - "View schedule": "", - "View show content": "", - "DJs can do the following:": "", - "Manage assigned show content": "", - "Import media files": "", - "Create playlists, smart blocks, and webstreams": "", - "Manage their own library content": "", - "Program Managers can do the following:": "", - "View and manage show content": "", - "Schedule shows": "", - "Manage all library content": "", - "Admins can do the following:": "", - "Manage preferences": "", - "Manage users": "", - "Manage watched folders": "", - "Send support feedback": "Destek Geribildirimi gönder", - "View system status": "", - "Access playout history": "", - "View listener stats": "", - "Show / hide columns": "", - "Columns": "", - "From {from} to {to}": "", - "kbps": "", - "yyyy-mm-dd": "", - "hh:mm:ss.t": "", - "kHz": "kHz", - "Su": "Pa", - "Mo": "Pt", - "Tu": "Sa", - "We": "Ça", - "Th": "Pe", - "Fr": "Cu", - "Sa": "Ct", - "Close": "Kapat", - "Hour": "Saat", - "Minute": "Dakika", - "Done": "Bitti", - "Select files": "", - "Add files to the upload queue and click the start button.": "", - "Filename": "", - "Size": "", - "Add Files": "", - "Stop Upload": "", - "Start upload": "", - "Start Upload": "", - "Add files": "", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "", - "N/A": "", - "Drag files here.": "", - "File extension error.": "Dosya uzantısı hatası.", - "File size error.": "Dosya boyutu hatası.", - "File count error.": "Dosya sayısı hatası.", - "Init error.": "", - "HTTP Error.": "HTTP hatası.", - "Security error.": "Güvenlik hatası.", - "Generic error.": "Genel hata.", - "IO error.": "GÇ hatası.", - "File: %s": "Dosya: %s", - "%d files queued": "", - "File: %f, size: %s, max file size: %m": "", - "Upload URL might be wrong or doesn't exist": "", - "Error: File too large: ": "Hata: Dosya çok büyük: ", - "Error: Invalid file extension: ": "Hata: Geçersiz dosya uzantısı: ", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "Show Yok", - "Copied %s row%s to the clipboard": "", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Tanım", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktif", - "Disabled": "Devre dışı", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "", - "You are viewing an older version of %s": "", - "You cannot add tracks to dynamic blocks.": "", - "You don't have permission to delete selected %s(s).": "", - "You can only add tracks to smart block.": "", - "Untitled Playlist": "", - "Untitled Smart Block": "", - "Unknown Playlist": "", - "Preferences updated.": "", - "Stream Setting Updated.": "", - "path should be specified": "", - "Problem with Liquidsoap...": "", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "", - "Select cursor": "", - "Remove cursor": "", - "show does not exist": "", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Kullanıcı başarıyla eklendi!", - "User updated successfully!": "Kullanıcı başarıyla güncellendi!", - "Settings updated successfully!": "Ayarlar başarıyla güncellendi!", - "Untitled Webstream": "", - "Webstream saved.": "", - "Invalid form values.": "", - "Invalid character entered": "Yanlış karakter girdiniz", - "Day must be specified": "Günü belirtmelisiniz", - "Time must be specified": "Zamanı belirtmelisiniz", - "Must wait at least 1 hour to rebroadcast": "Tekrar yayın yapmak için en az bir saat bekleyiniz", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "%s Kimlik Doğrulamasını Kullan", - "Use Custom Authentication:": "Özel Kimlik Doğrulama Kullan", - "Custom Username": "Özel Kullanıcı Adı", - "Custom Password": "Özel Şifre", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Kullanıcı adı kısmı boş bırakılamaz.", - "Password field cannot be empty.": "Şifre kısmı boş bırakılamaz.", - "Record from Line In?": "Line In'den Kaydet?", - "Rebroadcast?": "Tekrar yayınla?", - "days": "gün", - "Link:": "Birbirine Bağla:", - "Repeat Type:": "Tekrar Türü:", - "weekly": "haftalık", - "every 2 weeks": "2 haftada bir", - "every 3 weeks": "3 haftada bir", - "every 4 weeks": "4 haftada bir", - "monthly": "aylık", - "Select Days:": "Günleri Seçin:", - "Repeat By:": "Şuna göre tekrar et:", - "day of the month": "Ayın günü", - "day of the week": "Haftanın günü", - "Date End:": "Tarih Bitişi:", - "No End?": "Sonu yok?", - "End date must be after start date": "Bitiş tarihi başlangıç tarihinden sonra olmalı", - "Please select a repeat day": "Lütfen tekrar edilmesini istediğiniz günleri seçiniz", - "Background Colour:": "Arkaplan Rengi", - "Text Colour:": "Metin Rengi:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "İsim:", - "Untitled Show": "İsimsiz Show", - "URL:": "URL", - "Genre:": "Tür:", - "Description:": "Açıklama:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' değeri 'HH:mm' saat formatına uymuyor", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Uzunluğu:", - "Timezone:": "Zaman Dilimi:", - "Repeats?": "Tekrar Ediyor mu?", - "Cannot create show in the past": "Geçmiş tarihli bir show oluşturamazsınız", - "Cannot modify start date/time of the show that is already started": "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz", - "End date/time cannot be in the past": "Bitiş tarihi geçmişte olamaz", - "Cannot have duration < 0m": "Uzunluk < 0dk'dan kısa olamaz", - "Cannot have duration 00h 00m": "00s 00dk Uzunluk olamaz", - "Cannot have duration greater than 24h": "Yayın süresi 24 saati geçemez", - "Cannot schedule overlapping shows": "Üst üste binen show'lar olamaz", - "Search Users:": "Kullanıcıları Ara:", - "DJs:": "DJ'ler:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Kullanıcı Adı:", - "Password:": "Şifre:", - "Verify Password:": "Şifre Onayı:", - "Firstname:": "İsim:", - "Lastname:": "Soyisim:", - "Email:": "Eposta:", - "Mobile Phone:": "Cep Telefonu:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Kullanıcı Tipi:", - "Login name is not unique.": "Kullanıcı adı eşsiz değil.", - "Delete All Tracks in Library": "", - "Date Start:": "Tarih Başlangıcı:", - "Title:": "Parça Adı:", - "Creator:": "Oluşturan:", - "Album:": "Albüm:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Yıl:", - "Label:": "Plak Şirketi:", - "Composer:": "Besteleyen:", - "Conductor:": "Orkestra Şefi:", - "Mood:": "Ruh Hali:", - "BPM:": "BPM:", - "Copyright:": "Telif Hakkı:", - "ISRC Number:": "ISRC No:", - "Website:": "Websitesi:", - "Language:": "Dil:", - "Publish...": "", - "Start Time": "Başlangıç Saati", - "End Time": "Bitiş Saati", - "Interface Timezone:": "Arayüz Zaman Dilimi", - "Station Name": "Radyo Adı", - "Station Description": "", - "Station Logo:": "Radyo Logosu:", - "Note: Anything larger than 600x600 will be resized.": "", - "Default Crossfade Duration (s):": "Varsayılan Çarpraz Geçiş Süresi:", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Varsayılan Fade In geçişi (s)", - "Default Fade Out (s):": "Varsayılan Fade Out geçişi (s)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Radyo Saat Dilimi", - "Week Starts On": "Hafta Başlangıcı", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Giriş yap", - "Password": "Şifre", - "Confirm new password": "Yeni şifreyi onayla", - "Password confirmation does not match your password.": "Onay şifresiyle şifreniz aynı değil.", - "Email": "", - "Username": "Kullanıcı adı", - "Reset password": "Parolayı değiştir", - "Back": "", - "Now Playing": "", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Tüm Şovlarım:", - "My Shows": "Şovlarım", - "Select criteria": "Kriter seçin", - "Bit Rate (Kbps)": "Bit Oranı (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Örnekleme Oranı (kHz)", - "before": "önce", - "after": "sonra", - "between": "arasında", - "Select unit of time": "Zaman birimi seçin", - "minute(s)": "dakika", - "hour(s)": "saat", - "day(s)": "gün", - "week(s)": "hafta", - "month(s)": "ay", - "year(s)": "yıl", - "hours": "saat", - "minutes": "dakika", - "items": "parça", - "time remaining in show": "", - "Randomly": "Rastgele", - "Newest": "En yeni", - "Oldest": "En eski", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinamik", - "Static": "Sabit", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Çalma listesi içeriği oluştur ve kriterleri kaydet", - "Shuffle playlist content": "Çalma listesi içeriğini karıştır", - "Shuffle": "Karıştır", - "Limit cannot be empty or smaller than 0": "Sınırlama boş veya 0'dan küçük olamaz", - "Limit cannot be more than 24 hrs": "Sınırlama 24 saati geçemez", - "The value should be an integer": "Değer tamsayı olmalıdır", - "500 is the max item limit value you can set": "Ayarlayabileceğiniz azami parça sınırı 500'dür", - "You must select Criteria and Modifier": "Kriter ve Değişken seçin", - "'Length' should be in '00:00:00' format": "Uzunluk '00:00:00' türünde olmalıdır", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Değer rakam cinsinden girilmelidir", - "The value should be less then 2147483648": "Değer 2147483648'den küçük olmalıdır", - "The value cannot be empty": "", - "The value should be less than %s characters": "Değer %s karakter'den az olmalıdır", - "Value cannot be empty": "Değer boş bırakılamaz", - "Stream Label:": "Yayın Etiketi:", - "Artist - Title": "Şarkıcı - Parça Adı", - "Show - Artist - Title": "Show - Şarkıcı - Parça Adı", - "Station name - Show name": "Radyo adı - Show adı", - "Off Air Metadata": "Yayın Dışında Gösterilecek Etiket", - "Enable Replay Gain": "ReplayGain'i aktif et", - "Replay Gain Modifier": "ReplayGain Değeri", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Etkin:", - "Mobile:": "", - "Stream Type:": "Yayın Türü:", - "Bit Rate:": "Bit Değeri:", - "Service Type:": "Servis Türü:", - "Channels:": "Kanallar:", - "Server": "Sunucu", - "Port": "Port", - "Mount Point": "Bağlama Noktası", - "Name": "İsim", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "İçe Aktarım Klasörü", - "Watched Folders:": "İzlenen Klasörler:", - "Not a valid Directory": "Geçerli bir Klasör değil.", - "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres", - "'%value%' does not fit the date format '%format%'": "'%value%' değeri '%format%' zaman formatına uymuyor", - "'%value%' is less than %min% characters long": "'%value%' değeri olması gereken '%min%' karakterden daha az", - "'%value%' is more than %max% characters long": "'%value%' değeri olması gereken '%max%' karakterden daha fazla", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil", - "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "", - "Can't set cue out to be greater than file length.": "", - "Can't set cue in to be larger than cue out.": "", - "Can't set cue out to be smaller than cue in.": "", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "", - "The schedule you're viewing is out of date! (instance mismatch)": "", - "The schedule you're viewing is out of date!": "", - "You are not allowed to schedule show %s.": "", - "You cannot add files to recording shows.": "", - "The show %s is over and cannot be scheduled.": "", - "The show %s has been previously updated!": "", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "", - "Shows can have a max length of 24 hours.": "", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "", - "Rebroadcast of %s from %s": "", - "Length needs to be greater than 0 minutes": "", - "Length should be of form \"00h 00m\"": "", - "URL should be of form \"https://example.org\"": "", - "URL should be 512 characters or less": "", - "No MIME type found for webstream.": "", - "Webstream name cannot be empty": "", - "Could not parse XSPF playlist": "", - "Could not parse PLS playlist": "", - "Could not parse M3U playlist": "", - "Invalid webstream - This appears to be a file download.": "", - "Unrecognized stream type: %s": "", - "Record file doesn't exist": "", - "View Recorded File Metadata": "", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "", - "Can't move a past show": "", - "Can't move show into past": "", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "", - "Show was deleted because recorded show does not exist!": "", - "Must wait 1 hour to rebroadcast.": "", - "Track": "", - "Played": "", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "%s yılı 1753 - 9999 aralığında olmalıdır", + "%s-%s-%s is not a valid date": "%s-%s-%s geçerli bir tarih değil", + "%s:%s:%s is not a valid time": "%s:%s:%s geçerli bir zaman değil", + "English": "İngilizce", + "Afar": "Afarca", + "Abkhazian": "Abhazca", + "Afrikaans": "Afrikanca", + "Amharic": "Amharca", + "Arabic": "Arapça", + "Assamese": "Assam dili", + "Aymara": "Aymaraca", + "Azerbaijani": "Azerice", + "Bashkir": "Başkurtça", + "Belarusian": "Belarusça", + "Bulgarian": "Bulgarca", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengalce", + "Tibetan": "Tibetçe", + "Breton": "Bretonca", + "Catalan": "Katalanca", + "Corsican": "Korsikaca", + "Czech": "Çekçe", + "Welsh": "Galce", + "Danish": "Danca", + "German": "Almanca", + "Bhutani": "Bhutani", + "Greek": "Yunanca", + "Esperanto": "Esperanto", + "Spanish": "İspanyolca", + "Estonian": "Estonca", + "Basque": "Baskça", + "Persian": "Farsça", + "Finnish": "Fince", + "Fiji": "Fiji", + "Faeroese": "Faroece", + "French": "Fransızca", + "Frisian": "Frizce", + "Irish": "İrlandaca", + "Scots/Gaelic": "İskoçça", + "Galician": "Galiçyaca", + "Guarani": "Guarani", + "Gujarati": "Guceratça", + "Hausa": "Hausa dili", + "Hindi": "Hintçe", + "Croatian": "Hırvatça", + "Hungarian": "Macarca", + "Armenian": "Ermenice", + "Interlingua": "İnterlingua", + "Interlingue": "İnterlingue", + "Inupiak": "", + "Indonesian": "Endonezyaca", + "Icelandic": "İzlandaca", + "Italian": "İtalyanca", + "Hebrew": "İbranice", + "Japanese": "Japonca", + "Yiddish": "Yidçe", + "Javanese": "Cavaca", + "Georgian": "Gürcüce", + "Kazakh": "Kazakça", + "Greenlandic": "Grönlandca", + "Cambodian": "", + "Kannada": "Kannada", + "Korean": "Korece", + "Kashmiri": "", + "Kurdish": "Kürtçe", + "Kirghiz": "Kırgızca", + "Latin": "Latince", + "Lingala": "", + "Laothian": "", + "Lithuanian": "Litvanyaca", + "Latvian/Lettish": "Letonca/Lettçe", + "Malagasy": "Madagaskarca", + "Maori": "Maori dili", + "Macedonian": "Makedonca", + "Malayalam": "Malayalamca", + "Mongolian": "Moğolca", + "Moldavian": "Moldovyaca", + "Marathi": "", + "Malay": "Malayca", + "Maltese": "Maltaca", + "Burmese": "", + "Nauru": "", + "Nepali": "Nepalce", + "Dutch": "Felemenkçe", + "Norwegian": "Norveççe", + "Occitan": "Oksitanca", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "Pencapça", + "Polish": "Lehçe", + "Pashto/Pushto": "Peştuca/Puşto", + "Portuguese": "Portekizce", + "Quechua": "Keçuva", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "Rumence", + "Russian": "Rusça", + "Kinyarwanda": "", + "Sanskrit": "Sanskritçe", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "Sırpça-Hırvatça", + "Singhalese": "", + "Slovak": "Slovakça", + "Slovenian": "Slovence", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "Arnavutça", + "Serbian": "Sırpça", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "İsveççe", + "Swahili": "", + "Tamil": "Tamilce", + "Tegulu": "", + "Tajik": "Tacikçe", + "Thai": "", + "Tigrinya": "", + "Turkmen": "Türkmence", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "Türkçe", + "Tsonga": "", + "Tatar": "Tatarca", + "Twi": "", + "Ukrainian": "Ukraynaca", + "Urdu": "Urduca", + "Uzbek": "Özbekçe", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Çince", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "Profilim", + "Users": "Kullanıcılar", + "Track Types": "", + "Streams": "", + "Status": "Durum", + "Analytics": "", + "Playout History": "", + "History Templates": "", + "Listener Stats": "", + "Show Listener Stats": "", + "Help": "Yardım", + "Getting Started": "Başlarken", + "User Manual": "Kullanım Kılavuzu", + "Get Help Online": "Çevrim İçi Yardım Alın", + "Contribute to LibreTime": "LibreTime'a Katkıda Bulunun", + "What's New?": "", + "You are not allowed to access this resource.": "", + "You are not allowed to access this resource. ": "", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "", + "There is no source connected to this input.": "", + "You don't have permission to switch source.": "", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Sayfa bulunamadı.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "", + "Something went wrong.": "Bir şeyler yanlış gitti.", + "Preview": "Ön izleme", + "Add to Playlist": "", + "Add to Smart Block": "", + "Delete": "Sil", + "Edit...": "Düzenle...", + "Download": "İndir", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "", + "You don't have permission to delete selected items.": "", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "Bir şeyler yanlış gitti!", + "Recording:": "", + "Master Stream": "", + "Live Stream": "Canlı yayın", + "Nothing Scheduled": "", + "Current Show:": "", + "Current": "", + "You are running the latest version": "", + "New version available: ": "", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "", + "Add to current smart block": "", + "Adding 1 Item": "", + "Adding %s Items": "", + "You can only add tracks to smart blocks.": "", + "You can only add tracks, smart blocks, and webstreams to playlists.": "", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Ekle", + "New": "Yeni", + "Edit": "Düzenle", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Kaldır", + "Edit Metadata": "", + "Add to selected show": "", + "Select": "Seç", + "Select this page": "Bu sayfayı seç", + "Deselect this page": "Bu sayfanın seçimini kaldır", + "Deselect all": "Tümünün seçimini kaldır", + "Are you sure you want to delete the selected item(s)?": "", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Parça Adı", + "Creator": "Oluşturan", + "Album": "Albüm", + "Bit Rate": "Bit Hızı", + "BPM": "BPM", + "Composer": "Besteleyen", + "Conductor": "Orkestra Şefi", + "Copyright": "Telif Hakkı", + "Encoded By": "Encode eden", + "Genre": "Tür", + "ISRC": "ISRC", + "Label": "Plak Şirketi", + "Language": "Dil", + "Last Modified": "Son Değiştirilme Zamanı", + "Last Played": "Son Oynatma Zamanı", + "Length": "Uzunluk", + "Mime": "Mime", + "Mood": "Ruh Hali", + "Owner": "Sahibi", + "Replay Gain": "Replay Gain", + "Sample Rate": "", + "Track Number": "Parça Numarası", + "Uploaded": "Yüklenme Tarihi", + "Website": "Website'si", + "Year": "Yıl", + "Loading...": "Yükleniyor...", + "All": "Tümü", + "Files": "Dosyalar", + "Playlists": "", + "Smart Blocks": "", + "Web Streams": "", + "Unknown type: ": "Bilinmeyen tür: ", + "Are you sure you want to delete the selected item?": "", + "Uploading in progress...": "", + "Retrieving data from the server...": "", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Hata kodu: ", + "Error msg: ": "Hata mesajı: ", + "Input must be a positive number": "", + "Input must be a number": "", + "Input must be in the format: yyyy-mm-dd": "", + "Input must be in the format: hh:mm:ss.t": "", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "", + "Dynamic block is not previewable": "", + "Limit to: ": "", + "Playlist saved": "", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "", + "Listener Count on %s: %s": "", + "Remind me in 1 week": "", + "Remind me never": "", + "Yes, help Airtime": "", + "Image must be one of jpg, jpeg, png, or gif": "", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "", + "Smart block generated and criteria saved": "", + "Smart block saved": "", + "Processing...": "", + "Select modifier": "Değişken seçin", + "contains": "içersin", + "does not contain": "içermesin", + "is": "eşittir", + "is not": "eşit değildir", + "starts with": "ile başlayan", + "ends with": "ile biten", + "is greater than": "büyüktür", + "is less than": "küçüktür", + "is in the range": "aralıkta", + "Generate": "Oluştur", + "Choose Storage Folder": "", + "Choose Folder to Watch": "", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "", + "Manage Media Folders": "", + "Are you sure you want to remove the watched folder?": "", + "This path is currently not accessible.": "", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "", + "The stream is disabled": "", + "Getting information from the server...": "Sunucudan bilgiler getiriliyor...", + "Can not connect to the streaming server": "", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "", + "Check this box to automatically switch on Master/Show source upon source connection.": "", + "If your Icecast server expects a username of 'source', this field can be left blank.": "", + "If your live streaming client does not ask for a username, this field should be 'source'.": "", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "", + "Specify custom authentication which will work only for this show.": "", + "The show instance doesn't exist anymore!": "", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "", + "Show is empty": "", + "1m": "", + "5m": "", + "10m": "", + "15m": "", + "30m": "", + "60m": "", + "Retreiving data from the server...": "", + "This show has no scheduled content.": "", + "This show is not completely filled with content.": "", + "January": "Ocak", + "February": "Şubat", + "March": "Mart", + "April": "Nisan", + "May": "Mayıs", + "June": "Haziran", + "July": "Temmuz", + "August": "Ağustos", + "September": "Eylül", + "October": "Ekim", + "November": "Kasım", + "December": "Aralık", + "Jan": "Oca", + "Feb": "Şub", + "Mar": "Mar", + "Apr": "Nis", + "Jun": "Haz", + "Jul": "Tem", + "Aug": "Ağu", + "Sep": "Eyl", + "Oct": "Eki", + "Nov": "Kas", + "Dec": "Ara", + "Today": "Bugün", + "Day": "Gün", + "Week": "Hafta", + "Month": "Ay", + "Sunday": "Pazar", + "Monday": "Pazartesi", + "Tuesday": "Salı", + "Wednesday": "Çarşamba", + "Thursday": "Perşembe", + "Friday": "Cuma", + "Saturday": "Cumartesi", + "Sun": "Paz", + "Mon": "Pzt", + "Tue": "Sal", + "Wed": "Çar", + "Thu": "Per", + "Fri": "Cum", + "Sat": "Cmt", + "Shows longer than their scheduled time will be cut off by a following show.": "", + "Cancel Current Show?": "", + "Stop recording current show?": "", + "Ok": "OK", + "Contents of Show": "", + "Remove all content?": "", + "Delete selected item(s)?": "", + "Start": "", + "End": "", + "Duration": "", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "", + "Recording From Line In": "", + "Track preview": "", + "Cannot schedule outside a show.": "", + "Moving 1 Item": "", + "Moving %s Items": "", + "Save": "Kaydet", + "Cancel": "İptal", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "", + "Select none": "", + "Trim overbooked shows": "", + "Remove selected scheduled items": "", + "Jump to the current playing track": "", + "Jump to Current": "", + "Cancel current show": "", + "Open library to add or remove content": "", + "Add / Remove Content": "", + "in use": "", + "Disk": "", + "Look in": "", + "Open": "", + "Admin": "Yönetici (Admin)", + "DJ": "DJ", + "Program Manager": "Program Yöneticisi", + "Guest": "Ziyaretçi", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Destek Geribildirimi gönder", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "", + "Columns": "", + "From {from} to {to}": "", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "kHz", + "Su": "Pa", + "Mo": "Pt", + "Tu": "Sa", + "We": "Ça", + "Th": "Pe", + "Fr": "Cu", + "Sa": "Ct", + "Close": "Kapat", + "Hour": "Saat", + "Minute": "Dakika", + "Done": "Bitti", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "Dosya uzantısı hatası.", + "File size error.": "Dosya boyutu hatası.", + "File count error.": "Dosya sayısı hatası.", + "Init error.": "", + "HTTP Error.": "HTTP hatası.", + "Security error.": "Güvenlik hatası.", + "Generic error.": "Genel hata.", + "IO error.": "GÇ hatası.", + "File: %s": "Dosya: %s", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "Hata: Dosya çok büyük: ", + "Error: Invalid file extension: ": "Hata: Geçersiz dosya uzantısı: ", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "Show Yok", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Tanım", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktif", + "Disabled": "Devre dışı", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "", + "You are viewing an older version of %s": "", + "You cannot add tracks to dynamic blocks.": "", + "You don't have permission to delete selected %s(s).": "", + "You can only add tracks to smart block.": "", + "Untitled Playlist": "", + "Untitled Smart Block": "", + "Unknown Playlist": "", + "Preferences updated.": "", + "Stream Setting Updated.": "", + "path should be specified": "", + "Problem with Liquidsoap...": "", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "", + "Select cursor": "", + "Remove cursor": "", + "show does not exist": "", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Kullanıcı başarıyla eklendi!", + "User updated successfully!": "Kullanıcı başarıyla güncellendi!", + "Settings updated successfully!": "Ayarlar başarıyla güncellendi!", + "Untitled Webstream": "", + "Webstream saved.": "", + "Invalid form values.": "", + "Invalid character entered": "Yanlış karakter girdiniz", + "Day must be specified": "Günü belirtmelisiniz", + "Time must be specified": "Zamanı belirtmelisiniz", + "Must wait at least 1 hour to rebroadcast": "Tekrar yayın yapmak için en az bir saat bekleyiniz", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s Kimlik Doğrulamasını Kullan", + "Use Custom Authentication:": "Özel Kimlik Doğrulama Kullan", + "Custom Username": "Özel Kullanıcı Adı", + "Custom Password": "Özel Şifre", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Kullanıcı adı kısmı boş bırakılamaz.", + "Password field cannot be empty.": "Şifre kısmı boş bırakılamaz.", + "Record from Line In?": "Line In'den Kaydet?", + "Rebroadcast?": "Tekrar yayınla?", + "days": "gün", + "Link:": "Birbirine Bağla:", + "Repeat Type:": "Tekrar Türü:", + "weekly": "haftalık", + "every 2 weeks": "2 haftada bir", + "every 3 weeks": "3 haftada bir", + "every 4 weeks": "4 haftada bir", + "monthly": "aylık", + "Select Days:": "Günleri Seçin:", + "Repeat By:": "Şuna göre tekrar et:", + "day of the month": "Ayın günü", + "day of the week": "Haftanın günü", + "Date End:": "Tarih Bitişi:", + "No End?": "Sonu yok?", + "End date must be after start date": "Bitiş tarihi başlangıç tarihinden sonra olmalı", + "Please select a repeat day": "Lütfen tekrar edilmesini istediğiniz günleri seçiniz", + "Background Colour:": "Arkaplan Rengi", + "Text Colour:": "Metin Rengi:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "İsim:", + "Untitled Show": "İsimsiz Show", + "URL:": "URL", + "Genre:": "Tür:", + "Description:": "Açıklama:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' değeri 'HH:mm' saat formatına uymuyor", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Uzunluğu:", + "Timezone:": "Zaman Dilimi:", + "Repeats?": "Tekrar Ediyor mu?", + "Cannot create show in the past": "Geçmiş tarihli bir show oluşturamazsınız", + "Cannot modify start date/time of the show that is already started": "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz", + "End date/time cannot be in the past": "Bitiş tarihi geçmişte olamaz", + "Cannot have duration < 0m": "Uzunluk < 0dk'dan kısa olamaz", + "Cannot have duration 00h 00m": "00s 00dk Uzunluk olamaz", + "Cannot have duration greater than 24h": "Yayın süresi 24 saati geçemez", + "Cannot schedule overlapping shows": "Üst üste binen show'lar olamaz", + "Search Users:": "Kullanıcıları Ara:", + "DJs:": "DJ'ler:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Kullanıcı Adı:", + "Password:": "Şifre:", + "Verify Password:": "Şifre Onayı:", + "Firstname:": "İsim:", + "Lastname:": "Soyisim:", + "Email:": "Eposta:", + "Mobile Phone:": "Cep Telefonu:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Kullanıcı Tipi:", + "Login name is not unique.": "Kullanıcı adı eşsiz değil.", + "Delete All Tracks in Library": "", + "Date Start:": "Tarih Başlangıcı:", + "Title:": "Parça Adı:", + "Creator:": "Oluşturan:", + "Album:": "Albüm:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Yıl:", + "Label:": "Plak Şirketi:", + "Composer:": "Besteleyen:", + "Conductor:": "Orkestra Şefi:", + "Mood:": "Ruh Hali:", + "BPM:": "BPM:", + "Copyright:": "Telif Hakkı:", + "ISRC Number:": "ISRC No:", + "Website:": "Websitesi:", + "Language:": "Dil:", + "Publish...": "", + "Start Time": "Başlangıç Saati", + "End Time": "Bitiş Saati", + "Interface Timezone:": "Arayüz Zaman Dilimi", + "Station Name": "Radyo Adı", + "Station Description": "", + "Station Logo:": "Radyo Logosu:", + "Note: Anything larger than 600x600 will be resized.": "", + "Default Crossfade Duration (s):": "Varsayılan Çarpraz Geçiş Süresi:", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Varsayılan Fade In geçişi (s)", + "Default Fade Out (s):": "Varsayılan Fade Out geçişi (s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Radyo Saat Dilimi", + "Week Starts On": "Hafta Başlangıcı", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Giriş yap", + "Password": "Şifre", + "Confirm new password": "Yeni şifreyi onayla", + "Password confirmation does not match your password.": "Onay şifresiyle şifreniz aynı değil.", + "Email": "", + "Username": "Kullanıcı adı", + "Reset password": "Parolayı değiştir", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tüm Şovlarım:", + "My Shows": "Şovlarım", + "Select criteria": "Kriter seçin", + "Bit Rate (Kbps)": "Bit Oranı (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Örnekleme Oranı (kHz)", + "before": "önce", + "after": "sonra", + "between": "arasında", + "Select unit of time": "Zaman birimi seçin", + "minute(s)": "dakika", + "hour(s)": "saat", + "day(s)": "gün", + "week(s)": "hafta", + "month(s)": "ay", + "year(s)": "yıl", + "hours": "saat", + "minutes": "dakika", + "items": "parça", + "time remaining in show": "", + "Randomly": "Rastgele", + "Newest": "En yeni", + "Oldest": "En eski", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamik", + "Static": "Sabit", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Çalma listesi içeriği oluştur ve kriterleri kaydet", + "Shuffle playlist content": "Çalma listesi içeriğini karıştır", + "Shuffle": "Karıştır", + "Limit cannot be empty or smaller than 0": "Sınırlama boş veya 0'dan küçük olamaz", + "Limit cannot be more than 24 hrs": "Sınırlama 24 saati geçemez", + "The value should be an integer": "Değer tamsayı olmalıdır", + "500 is the max item limit value you can set": "Ayarlayabileceğiniz azami parça sınırı 500'dür", + "You must select Criteria and Modifier": "Kriter ve Değişken seçin", + "'Length' should be in '00:00:00' format": "Uzunluk '00:00:00' türünde olmalıdır", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Değer rakam cinsinden girilmelidir", + "The value should be less then 2147483648": "Değer 2147483648'den küçük olmalıdır", + "The value cannot be empty": "", + "The value should be less than %s characters": "Değer %s karakter'den az olmalıdır", + "Value cannot be empty": "Değer boş bırakılamaz", + "Stream Label:": "Yayın Etiketi:", + "Artist - Title": "Şarkıcı - Parça Adı", + "Show - Artist - Title": "Show - Şarkıcı - Parça Adı", + "Station name - Show name": "Radyo adı - Show adı", + "Off Air Metadata": "Yayın Dışında Gösterilecek Etiket", + "Enable Replay Gain": "ReplayGain'i aktif et", + "Replay Gain Modifier": "ReplayGain Değeri", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Etkin:", + "Mobile:": "", + "Stream Type:": "Yayın Türü:", + "Bit Rate:": "Bit Değeri:", + "Service Type:": "Servis Türü:", + "Channels:": "Kanallar:", + "Server": "Sunucu", + "Port": "Port", + "Mount Point": "Bağlama Noktası", + "Name": "İsim", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "İçe Aktarım Klasörü", + "Watched Folders:": "İzlenen Klasörler:", + "Not a valid Directory": "Geçerli bir Klasör değil.", + "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres", + "'%value%' does not fit the date format '%format%'": "'%value%' değeri '%format%' zaman formatına uymuyor", + "'%value%' is less than %min% characters long": "'%value%' değeri olması gereken '%min%' karakterden daha az", + "'%value%' is more than %max% characters long": "'%value%' değeri olması gereken '%max%' karakterden daha fazla", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil", + "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "", + "Can't set cue out to be greater than file length.": "", + "Can't set cue in to be larger than cue out.": "", + "Can't set cue out to be smaller than cue in.": "", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "", + "The schedule you're viewing is out of date! (instance mismatch)": "", + "The schedule you're viewing is out of date!": "", + "You are not allowed to schedule show %s.": "", + "You cannot add files to recording shows.": "", + "The show %s is over and cannot be scheduled.": "", + "The show %s has been previously updated!": "", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "", + "Shows can have a max length of 24 hours.": "", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "", + "Rebroadcast of %s from %s": "", + "Length needs to be greater than 0 minutes": "", + "Length should be of form \"00h 00m\"": "", + "URL should be of form \"https://example.org\"": "", + "URL should be 512 characters or less": "", + "No MIME type found for webstream.": "", + "Webstream name cannot be empty": "", + "Could not parse XSPF playlist": "", + "Could not parse PLS playlist": "", + "Could not parse M3U playlist": "", + "Invalid webstream - This appears to be a file download.": "", + "Unrecognized stream type: %s": "", + "Record file doesn't exist": "", + "View Recorded File Metadata": "", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "", + "Can't move a past show": "", + "Can't move show into past": "", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "", + "Show was deleted because recorded show does not exist!": "", + "Must wait 1 hour to rebroadcast.": "", + "Track": "", + "Played": "", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/locale/uk_UA.json b/webapp/src/locale/uk_UA.json index e1fe10eff2..6b0aa933ee 100644 --- a/webapp/src/locale/uk_UA.json +++ b/webapp/src/locale/uk_UA.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Рік %s має бути в діапазоні 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s дата недійсна", - "%s:%s:%s is not a valid time": "%s:%s:%s недійсний час", - "English": "Англійська", - "Afar": "Афар", - "Abkhazian": "Абхазька", - "Afrikaans": "Африканська", - "Amharic": "Амхарська", - "Arabic": "Арабська", - "Assamese": "Асамська", - "Aymara": "Аймара", - "Azerbaijani": "Азербайджанська", - "Bashkir": "Башкирська", - "Belarusian": "Білоруська", - "Bulgarian": "Болгарська", - "Bihari": "Біхарі", - "Bislama": "Біслама", - "Bengali/Bangla": "Бенгальська/Бангла", - "Tibetan": "Тибетська", - "Breton": "Бретонська", - "Catalan": "Каталонська", - "Corsican": "Корсиканська", - "Czech": "Чеська", - "Welsh": "Валлійська", - "Danish": "Датська", - "German": "Німецька", - "Bhutani": "Мови Бутану", - "Greek": "Грецька", - "Esperanto": "Есперанто", - "Spanish": "Іспанська", - "Estonian": "Естонська", - "Basque": "Баскська", - "Persian": "Перська", - "Finnish": "Фінська", - "Fiji": "Фіджійська", - "Faeroese": "Фарерська", - "French": "Французька", - "Frisian": "Фризька", - "Irish": "Ірландська", - "Scots/Gaelic": "Шотландська/Гельська", - "Galician": "Галісійська", - "Guarani": "Гуарані", - "Gujarati": "Гуджаратська", - "Hausa": "Хауса", - "Hindi": "Хінді", - "Croatian": "Хорватська", - "Hungarian": "Угорська", - "Armenian": "Вірменська", - "Interlingua": "Інтерлінгва", - "Interlingue": "Окциденталь", - "Inupiak": "Аляскинсько-інуїтська", - "Indonesian": "Індонезійська", - "Icelandic": "Ісландська", - "Italian": "Італійська", - "Hebrew": "Іврит", - "Japanese": "Японська", - "Yiddish": "Ідиш", - "Javanese": "Яванська", - "Georgian": "Грузинська", - "Kazakh": "Казахська", - "Greenlandic": "Гренландська", - "Cambodian": "Камбоджійська", - "Kannada": "Каннада", - "Korean": "Корейська", - "Kashmiri": "Кашмірська", - "Kurdish": "Курдська", - "Kirghiz": "Киргизька", - "Latin": "Латинська", - "Lingala": "Лінґала", - "Laothian": "Лаоська", - "Lithuanian": "Литовська", - "Latvian/Lettish": "Латиська", - "Malagasy": "Малагасійська", - "Maori": "Маорійська", - "Macedonian": "Македонська", - "Malayalam": "Малаялам", - "Mongolian": "Монгольська", - "Moldavian": "Молдавська", - "Marathi": "Мара́тська", - "Malay": "Малайська", - "Maltese": "Мальтійська", - "Burmese": "Бірманська", - "Nauru": "Науруанська", - "Nepali": "Непальська", - "Dutch": "Голландська", - "Norwegian": "Норвезька", - "Occitan": "Окситанська", - "(Afan)/Oromoor/Oriya": "Оромо", - "Punjabi": "Пенджабська", - "Polish": "Польська", - "Pashto/Pushto": "Пушту", - "Portuguese": "Португальська", - "Quechua": "Кечуа", - "Rhaeto-Romance": "Рето-романська", - "Kirundi": "Кірунді", - "Romanian": "Румунська", - "Russian": "Російська", - "Kinyarwanda": "Руандійська", - "Sanskrit": "Санскрит", - "Sindhi": "Сіндхі", - "Sangro": "Санго", - "Serbo-Croatian": "Сербохорватська", - "Singhalese": "Сингальська", - "Slovak": "Словацька", - "Slovenian": "Словенська", - "Samoan": "Самоанська", - "Shona": "Шона", - "Somali": "Сомалійська", - "Albanian": "Албанська", - "Serbian": "Сербська", - "Siswati": "Сваті", - "Sesotho": "Сесото", - "Sundanese": "Сунданська", - "Swedish": "Шведська", - "Swahili": "Суахілі", - "Tamil": "Тамільська", - "Tegulu": "Телугу", - "Tajik": "Таджицька", - "Thai": "Тайська", - "Tigrinya": "Тигринья", - "Turkmen": "Туркменський", - "Tagalog": "Тагальська", - "Setswana": "Тсвана", - "Tonga": "Тонганська", - "Turkish": "Турецька", - "Tsonga": "Тсонга", - "Tatar": "Татарська", - "Twi": "Чві", - "Ukrainian": "Українська", - "Urdu": "Урду", - "Uzbek": "Узбецька", - "Vietnamese": "В'єтнамська", - "Volapuk": "Волапюк", - "Wolof": "Волоф", - "Xhosa": "Хоса", - "Yoruba": "Юрубський", - "Chinese": "Китайська", - "Zulu": "Зулуська", - "Use station default": "Використовувати станцію за замовчуванням", - "Upload some tracks below to add them to your library!": "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s.", - "Click the 'New Show' button and fill out the required fields.": "Натисніть кнопку «Нова програма» та заповніть необхідні поля.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n %sСтворіть непов'язану програму зараз%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s.", - "LibreTime media analyzer service": "Служба медіааналізатора LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Переконайтеся, що службу libretime-analyzer встановлено правильно ", - " and ensure that it's running with ": " і переконайтеся, що вона працює ", - "If not, try ": "Якщо ні, спробуйте запустити ", - "LibreTime playout service": "Сервіс відтворення LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Переконайтеся, що службу libretime-playout встановлено правильно ", - "LibreTime liquidsoap service": "Служба LibreTime liquidsoap", - "Check that the libretime-liquidsoap service is installed correctly in ": "Переконайтеся, що службу libretime-liquidsoap встановлено правильно ", - "LibreTime Celery Task service": "Служба завдань LibreTime Celery", - "Check that the libretime-worker service is installed correctly in ": "Переконайтеся, що служба libretime-worker коректно встановлена в ", - "LibreTime API service": "LibreTime API service", - "Check that the libretime-api service is installed correctly in ": "Переконайтеся, що службу libretime-api встановлено правильно ", - "Radio Page": "Сторінка радіо", - "Calendar": "Календар", - "Widgets": "Віджети", - "Player": "Плеєр", - "Weekly Schedule": "Тижневий розклад", - "Settings": "Налаштування", - "General": "Основні", - "My Profile": "Мій профіль", - "Users": "Користувачі", - "Track Types": "Типи треків", - "Streams": "Потоки", - "Status": "Статус", - "Analytics": "Аналітика", - "Playout History": "Історія відтворення", - "History Templates": "Історія шаблонів", - "Listener Stats": "Статистика слухачів", - "Show Listener Stats": "Показати статистику слухачів", - "Help": "Допомога", - "Getting Started": "Починаємо", - "User Manual": "Посібник користувача", - "Get Help Online": "Отримати допомогу онлайн", - "Contribute to LibreTime": "Зробіть внесок у LibreTime", - "What's New?": "Що нового?", - "You are not allowed to access this resource.": "Ви не маєте доступу до цього ресурсу.", - "You are not allowed to access this resource. ": "Ви не маєте доступу до цього ресурсу. ", - "File does not exist in %s": "Файл не існує в %s", - "Bad request. no 'mode' parameter passed.": "Неправильний запит. параметр 'mode' не передано.", - "Bad request. 'mode' parameter is invalid": "Неправильний запит. Параметр 'mode' недійсний", - "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", - "There is no source connected to this input.": "До цього входу не підключено джерело.", - "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "Page not found.": "Сторінку не знайдено.", - "The requested action is not supported.": "Задана дія не підтримується.", - "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", - "An internal application error has occurred.": "Сталася внутрішня помилка програми.", - "%s Podcast": "%s Підкаст", - "No tracks have been published yet.": "Треків ще не опубліковано.", - "%s not found": "%s не знайдено", - "Something went wrong.": "Щось пішло не так.", - "Preview": "Попередній перегляд", - "Add to Playlist": "Додати в плейлист", - "Add to Smart Block": "Додати до Смарт Блоку", - "Delete": "Видалити", - "Edit...": "Редагувати...", - "Download": "Завантажити", - "Duplicate Playlist": "Дублікат плейлиста", - "Duplicate Smartblock": "Дублікат Смарт-блоку", - "No action available": "Немає доступних дій", - "You don't have permission to delete selected items.": "Ви не маєте дозволу на видалення вибраних елементів.", - "Could not delete file because it is scheduled in the future.": "Не вдалося видалити файл, оскільки його заплановано в майбутньому.", - "Could not delete file(s).": "Не вдалося видалити файл(и).", - "Copy of %s": "Копія %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки.", - "Audio Player": "Аудіоплеєр", - "Something went wrong!": "Щось пішло не так!", - "Recording:": "Запис:", - "Master Stream": "Головний потік", - "Live Stream": "Наживо", - "Nothing Scheduled": "Нічого не заплановано", - "Current Show:": "Поточна програма:", - "Current": "Поточний", - "You are running the latest version": "Ви використовуєте останню версію", - "New version available: ": "Доступна нова версія: ", - "You have a pre-release version of LibreTime intalled.": "У вас встановлено попередню версію LibreTime.", - "A patch update for your LibreTime installation is available.": "Доступне оновлення для вашої інсталяції LibreTime.", - "A feature update for your LibreTime installation is available.": "Доступне оновлення функції для вашої інсталяції LibreTime.", - "A major update for your LibreTime installation is available.": "Доступне велике оновлення для вашої інсталяції LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше.", - "Add to current playlist": "Додати до поточного списку відтворення", - "Add to current smart block": "Додати до поточного смарт-блоку", - "Adding 1 Item": "Додавання 1 елемента", - "Adding %s Items": "Додавання %s Елемента(ів)", - "You can only add tracks to smart blocks.": "Ви можете додавати треки лише до смарт-блоків.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки.", - "Please select a cursor position on timeline.": "Виберіть позицію курсору на часовій шкалі.", - "You haven't added any tracks": "Ви не додали жодної композиції", - "You haven't added any playlists": "Ви не додали жодного плейлиста", - "You haven't added any podcasts": "Ви не додали подкастів", - "You haven't added any smart blocks": "Ви не додали смарт-блоків", - "You haven't added any webstreams": "Ви не додали жодного веб-потоку", - "Learn about tracks": "Дізнайтеся про треки", - "Learn about playlists": "Дізнайтеся про плейлисти", - "Learn about podcasts": "Дізнайтеся про подкасти", - "Learn about smart blocks": "Дізнайтеся про смарт-блоки", - "Learn about webstreams": "Дізнайтеся про веб-потоки", - "Click 'New' to create one.": "Натисніть «Новий», щоб створити.", - "Add": "Додати", - "New": "Новий", - "Edit": "Редагувати", - "Add to Schedule": "Додати до розкладу", - "Add to next show": "Додати до наступної програми", - "Add to current show": "Додати до поточної програми", - "Add after selected items": "Додати після вибраних елементів", - "Publish": "Опублікувати", - "Remove": "Видалити", - "Edit Metadata": "Редагувати метадані", - "Add to selected show": "Додати до вибраної програми", - "Select": "Вибрати", - "Select this page": "Вибрати поточну сторінку", - "Deselect this page": "Скасувати вибір поточної сторінки", - "Deselect all": "Скасувати виділення з усіх", - "Are you sure you want to delete the selected item(s)?": "Ви впевнені, що бажаєте видалити вибрані елементи?", - "Scheduled": "Запланований", - "Tracks": "Треки", - "Playlist": "Плейлист", - "Title": "Назва", - "Creator": "Автор", - "Album": "Альбом", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Виконавець", - "Copyright": "Авторське право", - "Encoded By": "Закодовано", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Мова", - "Last Modified": "Остання зміна", - "Last Played": "Останнє програвання", - "Length": "Довжина", - "Mime": "Mime", - "Mood": "Настрій", - "Owner": "Власник", - "Replay Gain": "Вирівнювання гучності", - "Sample Rate": "Частота дискретизації", - "Track Number": "Номер треку", - "Uploaded": "Завантажено", - "Website": "Веб-Сайт", - "Year": "Рік", - "Loading...": "Завантаження...", - "All": "Всі", - "Files": "Файли", - "Playlists": "Плейлист", - "Smart Blocks": "Смарт-блок", - "Web Streams": "Веб-потоки", - "Unknown type: ": "Невідомий тип: ", - "Are you sure you want to delete the selected item?": "Ви впевнені, що бажаєте видалити вибраний елемент?", - "Uploading in progress...": "Виконується завантаження...", - "Retrieving data from the server...": "Отримання даних із сервера...", - "Import": "Імпорт", - "Imported?": "Імпортований?", - "View": "Переглянути", - "Error code: ": "Код помилки: ", - "Error msg: ": "Повідомлення про помилку: ", - "Input must be a positive number": "Введене значення має бути позитивним числом", - "Input must be a number": "Введене значення має бути числом", - "Input must be in the format: yyyy-mm-dd": "Вхідні дані мають бути у такому форматі: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Вхідні дані мають бути у такому форматі: hh:mm:ss.t", - "My Podcast": "Мій Подкаст", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?", - "Open Media Builder": "Відкрити Конструктор Медіафайлів", - "please put in a time '00:00:00 (.0)'": "будь ласка, вкажіть час '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Введіть дійсний час у секундах. напр. 0.5", - "Your browser does not support playing this file type: ": "Ваш браузер не підтримує відтворення цього типу файлу: ", - "Dynamic block is not previewable": "Динамічний блок не доступний для попереднього перегляду", - "Limit to: ": "Обмеження до: ", - "Playlist saved": "Плейлист збережено", - "Playlist shuffled": "Плейлист перемішано", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується».", - "Listener Count on %s: %s": "Кількість слухачів %s: %s", - "Remind me in 1 week": "Нагадати через 1 тиждень", - "Remind me never": "Ніколи не нагадувати", - "Yes, help Airtime": "Так, допоможи Libretime", - "Image must be one of jpg, jpeg, png, or gif": "Зображення має бути jpg, jpeg, png, або gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку.", - "Smart block shuffled": "Смарт-блок перемішано", - "Smart block generated and criteria saved": "Створено смарт-блок і збережено критерії", - "Smart block saved": "Смарт-блок збережено", - "Processing...": "Обробка...", - "Select modifier": "Виберіть модифікатор", - "contains": "містить", - "does not contain": "не містить", - "is": "є", - "is not": "не", - "starts with": "починається з", - "ends with": "закінчується на", - "is greater than": "більше ніж", - "is less than": "менше ніж", - "is in the range": "знаходиться в діапазоні", - "Generate": "Генерувати", - "Choose Storage Folder": "Виберіть папку зберігання", - "Choose Folder to Watch": "Виберіть папку для перегляду", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Ви впевнені, що бажаєте змінити папку для зберігання?\nЦе видалить файли з вашої бібліотеки!", - "Manage Media Folders": "Керування медіа-папками", - "Are you sure you want to remove the watched folder?": "Ви впевнені, що хочете видалити переглянуту папку?", - "This path is currently not accessible.": "Цей шлях зараз недоступний.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s.", - "Connected to the streaming server": "Підключено до потокового сервера", - "The stream is disabled": "Потік вимкнено", - "Getting information from the server...": "Отримання інформації з сервера...", - "Can not connect to the streaming server": "Не вдається підключитися до потокового сервера", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151.", - "For more details, please read the %s%s Manual%s": "Щоб дізнатися більше, прочитайте %s%s Мануал%s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів.", - "Warning: You cannot change this field while the show is currently playing": "Попередження: Ви не можете змінити це поле під час відтворення програми", - "No result found": "Результатів не знайдено", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися.", - "Specify custom authentication which will work only for this show.": "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми.", - "The show instance doesn't exist anymore!": "Екземпляр програми більше не існує!", - "Warning: Shows cannot be re-linked": "Застереження: програму не можна повторно пов’язати", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача.", - "Show": "Програма", - "Show is empty": "Програма порожня", - "1m": "1хв", - "5m": "5хв", - "10m": "10хв", - "15m": "15хв", - "30m": "30хв", - "60m": "60хв", - "Retreiving data from the server...": "Отримання даних із сервера...", - "This show has no scheduled content.": "Це програма не має запланованого вмісту.", - "This show is not completely filled with content.": "Це програма не повністю наповнена контентом.", - "January": "Січень", - "February": "Лютий", - "March": "Березень", - "April": "Квітень", - "May": "Травень", - "June": "Червень", - "July": "Липень", - "August": "Серпень", - "September": "Вересень", - "October": "Жовтень", - "November": "Листопад", - "December": "Грудень", - "Jan": "Січ", - "Feb": "Лют", - "Mar": "Бер", - "Apr": "Квіт", - "Jun": "Черв", - "Jul": "Лип", - "Aug": "Серп", - "Sep": "Вер", - "Oct": "Жовт", - "Nov": "Лист", - "Dec": "Груд", - "Today": "Сьогодні", - "Day": "День", - "Week": "Тиждень", - "Month": "Місяць", - "Sunday": "Неділя", - "Monday": "Понеділок", - "Tuesday": "Вівторок", - "Wednesday": "Середа", - "Thursday": "Четвер", - "Friday": "П'ятниця", - "Saturday": "Субота", - "Sun": "Нд", - "Mon": "Пн", - "Tue": "Вт", - "Wed": "Ср", - "Thu": "Чт", - "Fri": "Пт", - "Sat": "Сб", - "Shows longer than their scheduled time will be cut off by a following show.": "Програма, яка триває довше запланованого часу, буде перервана наступною програмою.", - "Cancel Current Show?": "Скасувати поточну програму?", - "Stop recording current show?": "Зупинити запис поточної програми?", - "Ok": "Ok", - "Contents of Show": "Зміст програми", - "Remove all content?": "Видалити весь вміст?", - "Delete selected item(s)?": "Видалити вибрані елементи?", - "Start": "Старт", - "End": "Кінець", - "Duration": "Тривалість", - "Filtering out ": "Фільтрація ", - " of ": " з ", - " records": " записи", - "There are no shows scheduled during the specified time period.": "На зазначений період часу не заплановано жодної програми.", - "Cue In": "Початок звучання", - "Cue Out": "Закінчення звучання", - "Fade In": "Зведення", - "Fade Out": "Затухання", - "Show Empty": "Програма порожня", - "Recording From Line In": "Запис з лінійного входу", - "Track preview": "Попередній перегляд треку", - "Cannot schedule outside a show.": "Не можна планувати поза програмою.", - "Moving 1 Item": "Переміщення 1 елементу", - "Moving %s Items": "Переміщення %s елементів", - "Save": "Зберегти", - "Cancel": "Відміна", - "Fade Editor": "Редактор Fade", - "Cue Editor": "Редактор Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Функції Waveform доступні в браузері, який підтримує API Web Audio", - "Select all": "Вибрати все", - "Select none": "Зняти виділення", - "Trim overbooked shows": "Обрізати переповнені програми", - "Remove selected scheduled items": "Видалити вибрані заплановані елементи", - "Jump to the current playing track": "Перехід до поточного треку", - "Jump to Current": "Перейти до поточного", - "Cancel current show": "Скасувати поточну програму", - "Open library to add or remove content": "Відкрийте бібліотеку, щоб додати або видалити вміст", - "Add / Remove Content": "Додати / видалити вміст", - "in use": "у вживанні", - "Disk": "Диск", - "Look in": "Подивитись", - "Open": "Відкрити", - "Admin": "Адмін", - "DJ": "DJ", - "Program Manager": "Менеджер програми", - "Guest": "Гість", - "Guests can do the following:": "Гості можуть зробити наступне:", - "View schedule": "Переглянути розклад", - "View show content": "Переглянути вміст програм", - "DJs can do the following:": "DJs можуть робити наступне:", - "Manage assigned show content": "Керуйте призначеним вмістом програм", - "Import media files": "Імпорт медіафайлів", - "Create playlists, smart blocks, and webstreams": "Створюйте списки відтворення, смарт-блоки та веб-потоки", - "Manage their own library content": "Керувати вмістом власної бібліотеки", - "Program Managers can do the following:": "Керівники програм можуть робити наступне:", - "View and manage show content": "Перегляд вмісту програм та керування ними", - "Schedule shows": "Розклад програм", - "Manage all library content": "Керуйте всім вмістом бібліотеки", - "Admins can do the following:": "Адміністратори можуть робити наступне:", - "Manage preferences": "Керувати налаштуваннями", - "Manage users": "Керувати користувачами", - "Manage watched folders": "Керування папками, які переглядаються", - "Send support feedback": "Надіслати відгук у службу підтримки", - "View system status": "Переглянути стан системи", - "Access playout history": "Доступ до історії відтворення", - "View listener stats": "Переглянути статистику слухачів", - "Show / hide columns": "Показати/сховати стовпці", - "Columns": "Стовпці", - "From {from} to {to}": "З {from} до {to}", - "kbps": "kbps", - "yyyy-mm-dd": "рррр-мм-дд", - "hh:mm:ss.t": "гг:хх:ss.t", - "kHz": "кГц", - "Su": "Нд", - "Mo": "Пн", - "Tu": "Вт", - "We": "Ср", - "Th": "Чт", - "Fr": "Пт", - "Sa": "Сб", - "Close": "Закрити", - "Hour": "Година", - "Minute": "Хвилина", - "Done": "Готово", - "Select files": "Виберіть файли", - "Add files to the upload queue and click the start button.": "Додайте файли до черги завантаження та натисніть кнопку «Пуск».", - "Filename": "Назва файлу", - "Size": "Розмір", - "Add Files": "Додати файли", - "Stop Upload": "Зупинити завантаження", - "Start upload": "Почати завантаження", - "Start Upload": "Розпочати вивантаження", - "Add files": "Додати файли", - "Stop current upload": "Припинити поточне вивантаження", - "Start uploading queue": "Почати вивантаження черги", - "Uploaded %d/%d files": "Завантажено %d/%d файлів", - "N/A": "N/A", - "Drag files here.": "Перетягніть файли сюди.", - "File extension error.": "Помилка розширення файлу.", - "File size error.": "Помилка розміру файлу.", - "File count error.": "Помилка підрахунку файлів.", - "Init error.": "Помилка ініціалізації.", - "HTTP Error.": "HTTP помилка.", - "Security error.": "Помилка безпеки.", - "Generic error.": "Загальна помилка.", - "IO error.": "IO помилка.", - "File: %s": "Файл: %s", - "%d files queued": "%d файлів у черзі", - "File: %f, size: %s, max file size: %m": "Файл: %f, розмір: %s, макс. розмір файлу: %m", - "Upload URL might be wrong or doesn't exist": "URL-адреса завантаження може бути неправильною або не існує", - "Error: File too large: ": "Помилка: Файл завеликий: ", - "Error: Invalid file extension: ": "Помилка: Недійсне розширення файлу: ", - "Set Default": "Встановити за замовчуванням", - "Create Entry": "Створити запис", - "Edit History Record": "Редагувати запис історії", - "No Show": "Немає програми", - "Copied %s row%s to the clipboard": "Скопійовано %s рядок%s у буфер обміну", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape.", - "New Show": "Нова програма", - "New Log Entry": "Новий запис журналу", - "No data available in table": "Дані в таблиці відсутні", - "(filtered from _MAX_ total entries)": "(відфільтровано з _MAX_ всього записів)", - "First": "Спочатку", - "Last": "Останній", - "Next": "Наступний", - "Previous": "Попередній", - "Search:": "Пошук:", - "No matching records found": "Відповідних записів не знайдено", - "Drag tracks here from the library": "Перетягніть треки сюди з бібліотеки", - "No tracks were played during the selected time period.": "Жоден трек не відтворювався протягом вибраного періоду часу.", - "Unpublish": "Зняти з публікації", - "No matching results found.": "Відповідних результатів не знайдено.", - "Author": "Автор", - "Description": "Опис", - "Link": "Посилання", - "Publication Date": "Дата публікації", - "Import Status": "Статус імпорту", - "Actions": "Дії", - "Delete from Library": "Видалити з бібліотеки", - "Successfully imported": "Успішно імпортовано", - "Show _MENU_": "Показати _MENU_", - "Show _MENU_ entries": "Показати _MENU_ записів", - "Showing _START_ to _END_ of _TOTAL_ entries": "Показано від _START_ to _END_ of _TOTAL_ записів", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано від _START_ to _END_ of _TOTAL_ треків", - "Showing _START_ to _END_ of _TOTAL_ track types": "Показано від _START_ to _END_ of _TOTAL_типів треків", - "Showing _START_ to _END_ of _TOTAL_ users": "Показано від _START_ to _END_ of _TOTAL_ користувачів", - "Showing 0 to 0 of 0 entries": "Показано від 0 до 0 із 0 записів", - "Showing 0 to 0 of 0 tracks": "Показано від 0 до 0 із 0 треків", - "Showing 0 to 0 of 0 track types": "Показано від 0 до 0 із 0 типів треків", - "(filtered from _MAX_ total track types)": "(відфільтровано з _MAX_ загальних типів доріжок)", - "Are you sure you want to delete this tracktype?": "Ви впевнені, що хочете видалити цей тип треку?", - "No track types were found.": "Типи треків не знайдено.", - "No track types found": "Типи треків не знайдено", - "No matching track types found": "Відповідних типів треків не знайдено", - "Enabled": "Увімкнено", - "Disabled": "Вимкнено", - "Cancel upload": "Скасувати завантаження", - "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", - "Podcast settings saved": "Налаштування подкасту збережено", - "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", - "Can't delete yourself!": "Неможливо видалити себе!", - "You haven't published any episodes!": "Ви не опублікували жодного випуску!", - "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", - "Try it now": "Спробуй зараз", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

", - "Playlist preview": "Попередній перегляд плейлиста", - "Smart Block": "Смарт-блок", - "Webstream preview": "Попередній перегляд веб-потоку", - "You don't have permission to view the library.": "Ви не маєте дозволу переглядати бібліотеку.", - "Now": "Зараз", - "Click 'New' to create one now.": "Натисніть «Новий», щоб створити.", - "Click 'Upload' to add some now.": "Натисніть «Завантажити», щоб додати.", - "Feed URL": "URL стрічки", - "Import Date": "Дата імпорту", - "Add New Podcast": "Додати новий подкаст", - "Cannot schedule outside a show.\nTry creating a show first.": "Не можна планувати за межами програми.\nСпочатку створіть програму.", - "No files have been uploaded yet.": "Файли ще не завантажено.", - "On Air": "В ефірі", - "Off Air": "Не в ефірі", - "Offline": "Offline", - "Nothing scheduled": "Нічого не заплановано", - "Click 'Add' to create one now.": "Натисніть «Додати», щоб створити зараз.", - "Please enter your username and password.": "Будь ласка, введіть своє ім'я користувача та пароль.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином.", - "That username or email address could not be found.": "Не вдалося знайти це ім’я користувача чи електронну адресу.", - "There was a problem with the username or email address you entered.": "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели.", - "Wrong username or password provided. Please try again.": "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз.", - "You are viewing an older version of %s": "Ви переглядаєте старішу версію %s", - "You cannot add tracks to dynamic blocks.": "До динамічних блоків не можна додавати треки.", - "You don't have permission to delete selected %s(s).": "Ви не маєте дозволу на видалення вибраного %s(х).", - "You can only add tracks to smart block.": "Ви можете додавати треки лише в смарт-блок.", - "Untitled Playlist": "Плейлист без назви", - "Untitled Smart Block": "Смарт-блок без назви", - "Unknown Playlist": "Невідомий плейлист", - "Preferences updated.": "Налаштування оновлено.", - "Stream Setting Updated.": "Налаштування потоку оновлено.", - "path should be specified": "слід вказати шлях", - "Problem with Liquidsoap...": "Проблема з Liquidsoap...", - "Request method not accepted": "Метод запиту не прийнято", - "Rebroadcast of show %s from %s at %s": "Ретрансяція програми %s від %s в %s", - "Select cursor": "Вибрати курсор", - "Remove cursor": "Видалити курсор", - "show does not exist": "програми не існує", - "Track Type added successfully!": "Тип треку успішно додано!", - "Track Type updated successfully!": "Тип треку успішно оновлено!", - "User added successfully!": "Користувача успішно додано!", - "User updated successfully!": "Користувача успішно оновлено!", - "Settings updated successfully!": "Налаштування успішно оновлено!", - "Untitled Webstream": "Веб-потік без назви", - "Webstream saved.": "Веб-потік збережено.", - "Invalid form values.": "Недійсні значення форми.", - "Invalid character entered": "Введено недійсний символ", - "Day must be specified": "Необхідно вказати день", - "Time must be specified": "Необхідно вказати час", - "Must wait at least 1 hour to rebroadcast": "Для повторної трансляції потрібно зачекати принаймні 1 годину", - "Add Autoloading Playlist ?": "Додати плейлист з автозавантаженням?", - "Select Playlist": "Вибір плейлиста", - "Repeat Playlist Until Show is Full ?": "Повторювати список відтворення до заповнення програми?", - "Use %s Authentication:": "Використовувати %s Аутентифікацію:", - "Use Custom Authentication:": "Використовувати спеціальну автентифікацію:", - "Custom Username": "Спеціальне ім'я користувача", - "Custom Password": "Користувацький пароль", - "Host:": "Хост:", - "Port:": "Порт:", - "Mount:": "Точка монтування:", - "Username field cannot be empty.": "Поле імені користувача не може бути порожнім.", - "Password field cannot be empty.": "Поле пароля не може бути порожнім.", - "Record from Line In?": "Записувати з лінійного входу?", - "Rebroadcast?": "Повторна трансляція?", - "days": "днів", - "Link:": "Посилання:", - "Repeat Type:": "Тип повтору:", - "weekly": "щотижня", - "every 2 weeks": "кожні 2 тижні", - "every 3 weeks": "кожні 3 тижні", - "every 4 weeks": "кожні 4 тижні", - "monthly": "щомісяця", - "Select Days:": "Оберіть дні:", - "Repeat By:": "Повторити:", - "day of the month": "день місяця", - "day of the week": "день тижня", - "Date End:": "Кінцева дата:", - "No End?": "Немає кінця?", - "End date must be after start date": "Дата завершення має бути після дати початку", - "Please select a repeat day": "Виберіть день повторення", - "Background Colour:": "Колір фону:", - "Text Colour:": "Колір тексту:", - "Current Logo:": "Поточний логотип:", - "Show Logo:": "Показати логотип:", - "Logo Preview:": "Попередній перегляд логотипу:", - "Name:": "Ім'я:", - "Untitled Show": "Програма без назви", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Опис:", - "Instance Description:": "Опис екземпляру:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' не відповідає часовому формату 'HH:mm'", - "Start Time:": "Час початку:", - "In the Future:": "У майбутньому:", - "End Time:": "Час закінчення:", - "Duration:": "Тривалість:", - "Timezone:": "Часовий пояс:", - "Repeats?": "Повторювати?", - "Cannot create show in the past": "Неможливо створити програму в минулому часі", - "Cannot modify start date/time of the show that is already started": "Неможливо змінити дату/час початку програми, яка вже розпочата", - "End date/time cannot be in the past": "Дата/час завершення не можуть бути в минулому", - "Cannot have duration < 0m": "Не може мати тривалість < 0хв", - "Cannot have duration 00h 00m": "Не може мати тривалість 00год 00хв", - "Cannot have duration greater than 24h": "Тривалість не може перевищувати 24 год", - "Cannot schedule overlapping shows": "Неможливо запланувати накладені програми", - "Search Users:": "Пошук користувачів:", - "DJs:": "Діджеї:", - "Type Name:": "Назва типу:", - "Code:": "Код:", - "Visibility:": "Видимість:", - "Analyze cue points:": "Проаналізуйте контрольні точки:", - "Code is not unique.": "Код не унікальний.", - "Username:": "Ім'я користувача:", - "Password:": "Пароль:", - "Verify Password:": "Підтвердіть пароль:", - "Firstname:": "Ім'я:", - "Lastname:": "Прізвище:", - "Email:": "Email:", - "Mobile Phone:": "Телефон:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Тип користувача:", - "Login name is not unique.": "Логін не є унікальним.", - "Delete All Tracks in Library": "Видалити всі треки з бібліотеки", - "Date Start:": "Дата початку:", - "Title:": "Назва:", - "Creator:": "Автор:", - "Album:": "Альбом:", - "Owner:": "Власник:", - "Select a Type": "Виберіть тип", - "Track Type:": "Тип треку:", - "Year:": "Рік:", - "Label:": "Label:", - "Composer:": "Композитор:", - "Conductor:": "Виконавець:", - "Mood:": "Настрій:", - "BPM:": "BPM:", - "Copyright:": "Авторське право:", - "ISRC Number:": "Номер ISRC:", - "Website:": "Веб-сайт:", - "Language:": "Мова:", - "Publish...": "Опублікувати...", - "Start Time": "Час початку", - "End Time": "Час закінчення", - "Interface Timezone:": "Часовий пояс інтерфейсу:", - "Station Name": "Назва станції", - "Station Description": "Опис Станції", - "Station Logo:": "Лого Станції:", - "Note: Anything larger than 600x600 will be resized.": "Примітка: все, що перевищує 600x600, буде змінено.", - "Default Crossfade Duration (s):": "Тривалість переходу за замовчуванням (с):", - "Please enter a time in seconds (eg. 0.5)": "Будь ласка, введіть час у секундах (наприклад, 0,5)", - "Default Fade In (s):": "За замовчуванням Fade In (s):", - "Default Fade Out (s):": "За замовчуванням Fade Out (s):", - "Track Type Upload Default": "Тип доріжки Завантаження за замовчуванням", - "Intro Autoloading Playlist": "Вступний автозавантажуваний плейлист (Intro)", - "Outro Autoloading Playlist": "Завершальний автозавантажувальний плейлист (Outro)", - "Overwrite Podcast Episode Metatags": "Перезаписати метатеги епізоду подкасту", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Створіть смартблок і список відтворення після створення нового подкасту", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди.", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Потрібний для вбудованого віджета розкладу.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт.", - "Default Language": "Мова за замовчуванням", - "Station Timezone": "Часовий пояс станції", - "Week Starts On": "Тиждень починається з", - "Display login button on your Radio Page?": "Відображати кнопку входу на сторінці радіо?", - "Feature Previews": "Попередній перегляд функцій", - "Enable this to opt-in to test new features.": "Увімкніть це, щоб тестувати нові функції.", - "Auto Switch Off:": "Автоматичне вимкнення:", - "Auto Switch On:": "Автоматичне ввімкнення:", - "Switch Transition Fade (s):": "Перемикання переходу Fade (s):", - "Master Source Host:": "Головний вихідний хост:", - "Master Source Port:": "Головний вихідний порт:", - "Master Source Mount:": "Головне джерело монтування:", - "Show Source Host:": "Показати вихідний хост:", - "Show Source Port:": "Показати вихідний порт:", - "Show Source Mount:": "Показати джерела монтування:", - "Login": "Логін", - "Password": "Пароль", - "Confirm new password": "Підтвердити новий пароль", - "Password confirmation does not match your password.": "Підтвердження пароля не збігається з вашим.", - "Email": "Email", - "Username": "Ім'я користувача", - "Reset password": "Скинути пароль", - "Back": "Назад", - "Now Playing": "Зараз грає", - "Select Stream:": "Виберіть потік:", - "Auto detect the most appropriate stream to use.": "Автоматичне визначення потоку, який найбільше підходить для використання.", - "Select a stream:": "Виберіть потік:", - " - Mobile friendly": " - Зручний для мобільних пристроїв", - " - The player does not support Opus streams.": " - Плеєр не підтримує потоки Opus.", - "Embeddable code:": "Код для вбудовування:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт.", - "Preview:": "Попередній перегляд:", - "Feed Privacy": "Конфіденційність стрічки", - "Public": "Публічний", - "Private": "Приватний", - "Station Language": "Мова станції", - "Filter by Show": "Фільтрувати мої програми", - "All My Shows:": "Усі мої програми:", - "My Shows": "Мої програми", - "Select criteria": "Виберіть критерії", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "Тип треку", - "Sample Rate (kHz)": "Частота дискретизації (kHz)", - "before": "раніше", - "after": "після", - "between": "між", - "Select unit of time": "Виберіть одиницю часу", - "minute(s)": "хвилина(и)", - "hour(s)": "година(и)", - "day(s)": "День(Дні)", - "week(s)": "Тиждень(і)", - "month(s)": "місяць(і)", - "year(s)": "Рік(и)", - "hours": "година(и)", - "minutes": "хвилина(и)", - "items": "елементи", - "time remaining in show": "час, що залишився у програмі", - "Randomly": "Довільно", - "Newest": "Найновіший(і)", - "Oldest": "Найстаріший(і)", - "Most recently played": "Нещодавно зіграно", - "Least recently played": "Нещодавно грали", - "Select Track Type": "Виберіть тип доріжки", - "Type:": "Тип:", - "Dynamic": "Динамічний", - "Static": "Статичний", - "Select track type": "Виберіть тип доріжки", - "Allow Repeated Tracks:": "Дозволити повторення треків:", - "Allow last track to exceed time limit:": "Дозволити останньому треку перевищити ліміт часу:", - "Sort Tracks:": "Сортування треків:", - "Limit to:": "Обмежити в:", - "Generate playlist content and save criteria": "Створення вмісту списку відтворення та збереження критеріїв", - "Shuffle playlist content": "Перемішати вміст плейлиста", - "Shuffle": "Перемішати", - "Limit cannot be empty or smaller than 0": "Ліміт не може бути порожнім або меншим за 0", - "Limit cannot be more than 24 hrs": "Ліміт не може перевищувати 24 год", - "The value should be an integer": "Значення має бути цілим числом", - "500 is the max item limit value you can set": "500 максимальне граничне значення", - "You must select Criteria and Modifier": "Ви повинні вибрати Критерії і Модифікатор", - "'Length' should be in '00:00:00' format": "'Довжина має бути введена у '00:00:00' форматі", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)", - "You must select a time unit for a relative datetime.": "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа", - "The value has to be numeric": "Значення має бути числовим", - "The value should be less then 2147483648": "Значення має бути меншим, ніж 2147483648", - "The value cannot be empty": "Значення не може бути порожнім", - "The value should be less than %s characters": "Значення має бути менше ніж %s символів", - "Value cannot be empty": "Значення не може бути порожнім", - "Stream Label:": "Метадані потоку:", - "Artist - Title": "Виконавець - Назва", - "Show - Artist - Title": "Програма - Виконавець - Назва", - "Station name - Show name": "Назва станції - Показати назву", - "Off Air Metadata": "Метадані при вимкненому ефірі", - "Enable Replay Gain": "Вмикнути Replay Gain", - "Replay Gain Modifier": "Змінити Replay Gain", - "Hardware Audio Output:": "Апаратний аудіовихід:", - "Output Type": "Тип виходу", - "Enabled:": "Увімкнено:", - "Mobile:": "Телефон:", - "Stream Type:": "Тип потоку:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Тип сервіса:", - "Channels:": "Канали:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Точка монтування", - "Name": "Ім'я", - "URL": "URL", - "Stream URL": "URL-адреса трансляції", - "Push metadata to your station on TuneIn?": "Надішлати метадані на свою станцію в TuneIn?", - "Station ID:": "ID Станції:", - "Partner Key:": "Ключ партнера:", - "Partner Id:": "ID партнера:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу.", - "Import Folder:": "Імпорт папки:", - "Watched Folders:": "Переглянути папки:", - "Not a valid Directory": "Недійсний каталог", - "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не є дійсною електронною адресою в форматі local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не відповідає формату дати '%format%'", - "'%value%' is less than %min% characters long": "'%value%' є меншим ніж %min% довжина символів", - "'%value%' is more than %max% characters long": "'%value%' це більше ніж %max% довжина символів", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не знаходиться між '%min%' і '%max%', включно", - "Passwords do not match": "Паролі не співпадають", - "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", - "\n\nThank you,\nThe %s Team": "\n\nДякую Вам,\nThe %s Team", - "%s Password Reset": "%s Скидання паролю", - "Cue in and cue out are null.": "Час початку та закінчення звучання треку не заповнені.", - "Can't set cue out to be greater than file length.": "Час закінчення звучання не може перевищувати довжину треку.", - "Can't set cue in to be larger than cue out.": "Час початку звучання може бути пізніше часу закінчення.", - "Can't set cue out to be smaller than cue in.": "Час закінчення звучання не може бути раніше початку.", - "Upload Time": "Час завантаження", - "None": "Жодного", - "Powered by %s": "На основі %s", - "Select Country": "Оберіть Країну", - "livestream": "Наживо", - "Cannot move items out of linked shows": "Неможливо перемістити елементи з пов’язаних програм", - "The schedule you're viewing is out of date! (sched mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)", - "The schedule you're viewing is out of date! (instance mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)", - "The schedule you're viewing is out of date!": "Розклад, який ви переглядаєте, застарів!", - "You are not allowed to schedule show %s.": "Вам не дозволено планувати програму %s.", - "You cannot add files to recording shows.": "Ви не можете додавати файли до Програми, що записується.", - "The show %s is over and cannot be scheduled.": "Програма %s закінчилась, її не можливо запланувати.", - "The show %s has been previously updated!": "Програма %s була оновлена раніше!", - "Content in linked shows cannot be changed while on air!": "Вміст пов’язаних програм не можна змінювати під час трансляції!", - "Cannot schedule a playlist that contains missing files.": "Неможливо запланувати плейлист, який містить відсутні файли.", - "A selected File does not exist!": "Вибраний файл не існує!", - "Shows can have a max length of 24 hours.": "Програма може тривати не більше 24 годин.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не можна планувати Програми, що перетинаються.\nПримітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники.", - "Rebroadcast of %s from %s": "Ретрансляція %s від %s", - "Length needs to be greater than 0 minutes": "Довжина повинна бути більше ніж 0 хвилин", - "Length should be of form \"00h 00m\"": "Довжина повинна відповідати формі \"00год 00хв\"", - "URL should be of form \"https://example.org\"": "URL має бути форми \"https://example.org\"", - "URL should be 512 characters or less": "URL-адреса має містити не більше 512 символів", - "No MIME type found for webstream.": "Для веб-потоку не знайдено тип MIME.", - "Webstream name cannot be empty": "Назва веб-потоку не може бути пустою", - "Could not parse XSPF playlist": "Не вдалося проаналізувати XSPF плейлист", - "Could not parse PLS playlist": "Не вдалося проаналізувати PLS плейлист", - "Could not parse M3U playlist": "Не вдалося проаналізувати M3U плейлист", - "Invalid webstream - This appears to be a file download.": "Недійсний веб-потік. Здається, це завантажений файл.", - "Unrecognized stream type: %s": "Нерозпізнаний тип потоку: %s", - "Record file doesn't exist": "Файл запису не існує", - "View Recorded File Metadata": "Перегляд метаданих записаного файлу", - "Schedule Tracks": "Заплановані треки", - "Clear Show": "Очистити програму", - "Cancel Show": "Відміна програми", - "Edit Instance": "Редагувати екземпляр", - "Edit Show": "Редагування програми", - "Delete Instance": "Видалити екземпляр", - "Delete Instance and All Following": "Видалити екземпляр і все наступне", - "Permission denied": "У дозволі відмовлено", - "Can't drag and drop repeating shows": "Не можна перетягувати повторювані програми", - "Can't move a past show": "Неможливо перемістити минулу програму", - "Can't move show into past": "Неможливо перенести програму в минуле", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції.", - "Show was deleted because recorded show does not exist!": "Програму видалено, оскільки записаної програми не існує!", - "Must wait 1 hour to rebroadcast.": "Для повторної трансляції потрібно почекати 1 годину.", - "Track": "Трек", - "Played": "Програно", - "Auto-generated smartblock for podcast": "Автоматично створений смарт-блок для подкасту", - "Webstreams": "Веб-потоки" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "Рік %s має бути в діапазоні 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s дата недійсна", + "%s:%s:%s is not a valid time": "%s:%s:%s недійсний час", + "English": "Англійська", + "Afar": "Афар", + "Abkhazian": "Абхазька", + "Afrikaans": "Африканська", + "Amharic": "Амхарська", + "Arabic": "Арабська", + "Assamese": "Асамська", + "Aymara": "Аймара", + "Azerbaijani": "Азербайджанська", + "Bashkir": "Башкирська", + "Belarusian": "Білоруська", + "Bulgarian": "Болгарська", + "Bihari": "Біхарі", + "Bislama": "Біслама", + "Bengali/Bangla": "Бенгальська/Бангла", + "Tibetan": "Тибетська", + "Breton": "Бретонська", + "Catalan": "Каталонська", + "Corsican": "Корсиканська", + "Czech": "Чеська", + "Welsh": "Валлійська", + "Danish": "Датська", + "German": "Німецька", + "Bhutani": "Мови Бутану", + "Greek": "Грецька", + "Esperanto": "Есперанто", + "Spanish": "Іспанська", + "Estonian": "Естонська", + "Basque": "Баскська", + "Persian": "Перська", + "Finnish": "Фінська", + "Fiji": "Фіджійська", + "Faeroese": "Фарерська", + "French": "Французька", + "Frisian": "Фризька", + "Irish": "Ірландська", + "Scots/Gaelic": "Шотландська/Гельська", + "Galician": "Галісійська", + "Guarani": "Гуарані", + "Gujarati": "Гуджаратська", + "Hausa": "Хауса", + "Hindi": "Хінді", + "Croatian": "Хорватська", + "Hungarian": "Угорська", + "Armenian": "Вірменська", + "Interlingua": "Інтерлінгва", + "Interlingue": "Окциденталь", + "Inupiak": "Аляскинсько-інуїтська", + "Indonesian": "Індонезійська", + "Icelandic": "Ісландська", + "Italian": "Італійська", + "Hebrew": "Іврит", + "Japanese": "Японська", + "Yiddish": "Ідиш", + "Javanese": "Яванська", + "Georgian": "Грузинська", + "Kazakh": "Казахська", + "Greenlandic": "Гренландська", + "Cambodian": "Камбоджійська", + "Kannada": "Каннада", + "Korean": "Корейська", + "Kashmiri": "Кашмірська", + "Kurdish": "Курдська", + "Kirghiz": "Киргизька", + "Latin": "Латинська", + "Lingala": "Лінґала", + "Laothian": "Лаоська", + "Lithuanian": "Литовська", + "Latvian/Lettish": "Латиська", + "Malagasy": "Малагасійська", + "Maori": "Маорійська", + "Macedonian": "Македонська", + "Malayalam": "Малаялам", + "Mongolian": "Монгольська", + "Moldavian": "Молдавська", + "Marathi": "Мара́тська", + "Malay": "Малайська", + "Maltese": "Мальтійська", + "Burmese": "Бірманська", + "Nauru": "Науруанська", + "Nepali": "Непальська", + "Dutch": "Голландська", + "Norwegian": "Норвезька", + "Occitan": "Окситанська", + "(Afan)/Oromoor/Oriya": "Оромо", + "Punjabi": "Пенджабська", + "Polish": "Польська", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальська", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рето-романська", + "Kirundi": "Кірунді", + "Romanian": "Румунська", + "Russian": "Російська", + "Kinyarwanda": "Руандійська", + "Sanskrit": "Санскрит", + "Sindhi": "Сіндхі", + "Sangro": "Санго", + "Serbo-Croatian": "Сербохорватська", + "Singhalese": "Сингальська", + "Slovak": "Словацька", + "Slovenian": "Словенська", + "Samoan": "Самоанська", + "Shona": "Шона", + "Somali": "Сомалійська", + "Albanian": "Албанська", + "Serbian": "Сербська", + "Siswati": "Сваті", + "Sesotho": "Сесото", + "Sundanese": "Сунданська", + "Swedish": "Шведська", + "Swahili": "Суахілі", + "Tamil": "Тамільська", + "Tegulu": "Телугу", + "Tajik": "Таджицька", + "Thai": "Тайська", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменський", + "Tagalog": "Тагальська", + "Setswana": "Тсвана", + "Tonga": "Тонганська", + "Turkish": "Турецька", + "Tsonga": "Тсонга", + "Tatar": "Татарська", + "Twi": "Чві", + "Ukrainian": "Українська", + "Urdu": "Урду", + "Uzbek": "Узбецька", + "Vietnamese": "В'єтнамська", + "Volapuk": "Волапюк", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубський", + "Chinese": "Китайська", + "Zulu": "Зулуська", + "Use station default": "Використовувати станцію за замовчуванням", + "Upload some tracks below to add them to your library!": "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s.", + "Click the 'New Show' button and fill out the required fields.": "Натисніть кнопку «Нова програма» та заповніть необхідні поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n %sСтворіть непов'язану програму зараз%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s.", + "LibreTime media analyzer service": "Служба медіааналізатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Переконайтеся, що службу libretime-analyzer встановлено правильно ", + " and ensure that it's running with ": " і переконайтеся, що вона працює ", + "If not, try ": "Якщо ні, спробуйте запустити ", + "LibreTime playout service": "Сервіс відтворення LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Переконайтеся, що службу libretime-playout встановлено правильно ", + "LibreTime liquidsoap service": "Служба LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Переконайтеся, що службу libretime-liquidsoap встановлено правильно ", + "LibreTime Celery Task service": "Служба завдань LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Переконайтеся, що служба libretime-worker коректно встановлена в ", + "LibreTime API service": "LibreTime API service", + "Check that the libretime-api service is installed correctly in ": "Переконайтеся, що службу libretime-api встановлено правильно ", + "Radio Page": "Сторінка радіо", + "Calendar": "Календар", + "Widgets": "Віджети", + "Player": "Плеєр", + "Weekly Schedule": "Тижневий розклад", + "Settings": "Налаштування", + "General": "Основні", + "My Profile": "Мій профіль", + "Users": "Користувачі", + "Track Types": "Типи треків", + "Streams": "Потоки", + "Status": "Статус", + "Analytics": "Аналітика", + "Playout History": "Історія відтворення", + "History Templates": "Історія шаблонів", + "Listener Stats": "Статистика слухачів", + "Show Listener Stats": "Показати статистику слухачів", + "Help": "Допомога", + "Getting Started": "Починаємо", + "User Manual": "Посібник користувача", + "Get Help Online": "Отримати допомогу онлайн", + "Contribute to LibreTime": "Зробіть внесок у LibreTime", + "What's New?": "Що нового?", + "You are not allowed to access this resource.": "Ви не маєте доступу до цього ресурсу.", + "You are not allowed to access this resource. ": "Ви не маєте доступу до цього ресурсу. ", + "File does not exist in %s": "Файл не існує в %s", + "Bad request. no 'mode' parameter passed.": "Неправильний запит. параметр 'mode' не передано.", + "Bad request. 'mode' parameter is invalid": "Неправильний запит. Параметр 'mode' недійсний", + "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", + "There is no source connected to this input.": "До цього входу не підключено джерело.", + "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "Page not found.": "Сторінку не знайдено.", + "The requested action is not supported.": "Задана дія не підтримується.", + "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", + "An internal application error has occurred.": "Сталася внутрішня помилка програми.", + "%s Podcast": "%s Підкаст", + "No tracks have been published yet.": "Треків ще не опубліковано.", + "%s not found": "%s не знайдено", + "Something went wrong.": "Щось пішло не так.", + "Preview": "Попередній перегляд", + "Add to Playlist": "Додати в плейлист", + "Add to Smart Block": "Додати до Смарт Блоку", + "Delete": "Видалити", + "Edit...": "Редагувати...", + "Download": "Завантажити", + "Duplicate Playlist": "Дублікат плейлиста", + "Duplicate Smartblock": "Дублікат Смарт-блоку", + "No action available": "Немає доступних дій", + "You don't have permission to delete selected items.": "Ви не маєте дозволу на видалення вибраних елементів.", + "Could not delete file because it is scheduled in the future.": "Не вдалося видалити файл, оскільки його заплановано в майбутньому.", + "Could not delete file(s).": "Не вдалося видалити файл(и).", + "Copy of %s": "Копія %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки.", + "Audio Player": "Аудіоплеєр", + "Something went wrong!": "Щось пішло не так!", + "Recording:": "Запис:", + "Master Stream": "Головний потік", + "Live Stream": "Наживо", + "Nothing Scheduled": "Нічого не заплановано", + "Current Show:": "Поточна програма:", + "Current": "Поточний", + "You are running the latest version": "Ви використовуєте останню версію", + "New version available: ": "Доступна нова версія: ", + "You have a pre-release version of LibreTime intalled.": "У вас встановлено попередню версію LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступне оновлення для вашої інсталяції LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступне оновлення функції для вашої інсталяції LibreTime.", + "A major update for your LibreTime installation is available.": "Доступне велике оновлення для вашої інсталяції LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше.", + "Add to current playlist": "Додати до поточного списку відтворення", + "Add to current smart block": "Додати до поточного смарт-блоку", + "Adding 1 Item": "Додавання 1 елемента", + "Adding %s Items": "Додавання %s Елемента(ів)", + "You can only add tracks to smart blocks.": "Ви можете додавати треки лише до смарт-блоків.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки.", + "Please select a cursor position on timeline.": "Виберіть позицію курсору на часовій шкалі.", + "You haven't added any tracks": "Ви не додали жодної композиції", + "You haven't added any playlists": "Ви не додали жодного плейлиста", + "You haven't added any podcasts": "Ви не додали подкастів", + "You haven't added any smart blocks": "Ви не додали смарт-блоків", + "You haven't added any webstreams": "Ви не додали жодного веб-потоку", + "Learn about tracks": "Дізнайтеся про треки", + "Learn about playlists": "Дізнайтеся про плейлисти", + "Learn about podcasts": "Дізнайтеся про подкасти", + "Learn about smart blocks": "Дізнайтеся про смарт-блоки", + "Learn about webstreams": "Дізнайтеся про веб-потоки", + "Click 'New' to create one.": "Натисніть «Новий», щоб створити.", + "Add": "Додати", + "New": "Новий", + "Edit": "Редагувати", + "Add to Schedule": "Додати до розкладу", + "Add to next show": "Додати до наступної програми", + "Add to current show": "Додати до поточної програми", + "Add after selected items": "Додати після вибраних елементів", + "Publish": "Опублікувати", + "Remove": "Видалити", + "Edit Metadata": "Редагувати метадані", + "Add to selected show": "Додати до вибраної програми", + "Select": "Вибрати", + "Select this page": "Вибрати поточну сторінку", + "Deselect this page": "Скасувати вибір поточної сторінки", + "Deselect all": "Скасувати виділення з усіх", + "Are you sure you want to delete the selected item(s)?": "Ви впевнені, що бажаєте видалити вибрані елементи?", + "Scheduled": "Запланований", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Назва", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Виконавець", + "Copyright": "Авторське право", + "Encoded By": "Закодовано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Мова", + "Last Modified": "Остання зміна", + "Last Played": "Останнє програвання", + "Length": "Довжина", + "Mime": "Mime", + "Mood": "Настрій", + "Owner": "Власник", + "Replay Gain": "Вирівнювання гучності", + "Sample Rate": "Частота дискретизації", + "Track Number": "Номер треку", + "Uploaded": "Завантажено", + "Website": "Веб-Сайт", + "Year": "Рік", + "Loading...": "Завантаження...", + "All": "Всі", + "Files": "Файли", + "Playlists": "Плейлист", + "Smart Blocks": "Смарт-блок", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Невідомий тип: ", + "Are you sure you want to delete the selected item?": "Ви впевнені, що бажаєте видалити вибраний елемент?", + "Uploading in progress...": "Виконується завантаження...", + "Retrieving data from the server...": "Отримання даних із сервера...", + "Import": "Імпорт", + "Imported?": "Імпортований?", + "View": "Переглянути", + "Error code: ": "Код помилки: ", + "Error msg: ": "Повідомлення про помилку: ", + "Input must be a positive number": "Введене значення має бути позитивним числом", + "Input must be a number": "Введене значення має бути числом", + "Input must be in the format: yyyy-mm-dd": "Вхідні дані мають бути у такому форматі: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Вхідні дані мають бути у такому форматі: hh:mm:ss.t", + "My Podcast": "Мій Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?", + "Open Media Builder": "Відкрити Конструктор Медіафайлів", + "please put in a time '00:00:00 (.0)'": "будь ласка, вкажіть час '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Введіть дійсний час у секундах. напр. 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не підтримує відтворення цього типу файлу: ", + "Dynamic block is not previewable": "Динамічний блок не доступний для попереднього перегляду", + "Limit to: ": "Обмеження до: ", + "Playlist saved": "Плейлист збережено", + "Playlist shuffled": "Плейлист перемішано", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується».", + "Listener Count on %s: %s": "Кількість слухачів %s: %s", + "Remind me in 1 week": "Нагадати через 1 тиждень", + "Remind me never": "Ніколи не нагадувати", + "Yes, help Airtime": "Так, допоможи Libretime", + "Image must be one of jpg, jpeg, png, or gif": "Зображення має бути jpg, jpeg, png, або gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку.", + "Smart block shuffled": "Смарт-блок перемішано", + "Smart block generated and criteria saved": "Створено смарт-блок і збережено критерії", + "Smart block saved": "Смарт-блок збережено", + "Processing...": "Обробка...", + "Select modifier": "Виберіть модифікатор", + "contains": "містить", + "does not contain": "не містить", + "is": "є", + "is not": "не", + "starts with": "починається з", + "ends with": "закінчується на", + "is greater than": "більше ніж", + "is less than": "менше ніж", + "is in the range": "знаходиться в діапазоні", + "Generate": "Генерувати", + "Choose Storage Folder": "Виберіть папку зберігання", + "Choose Folder to Watch": "Виберіть папку для перегляду", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Ви впевнені, що бажаєте змінити папку для зберігання?\nЦе видалить файли з вашої бібліотеки!", + "Manage Media Folders": "Керування медіа-папками", + "Are you sure you want to remove the watched folder?": "Ви впевнені, що хочете видалити переглянуту папку?", + "This path is currently not accessible.": "Цей шлях зараз недоступний.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s.", + "Connected to the streaming server": "Підключено до потокового сервера", + "The stream is disabled": "Потік вимкнено", + "Getting information from the server...": "Отримання інформації з сервера...", + "Can not connect to the streaming server": "Не вдається підключитися до потокового сервера", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151.", + "For more details, please read the %s%s Manual%s": "Щоб дізнатися більше, прочитайте %s%s Мануал%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів.", + "Warning: You cannot change this field while the show is currently playing": "Попередження: Ви не можете змінити це поле під час відтворення програми", + "No result found": "Результатів не знайдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися.", + "Specify custom authentication which will work only for this show.": "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми.", + "The show instance doesn't exist anymore!": "Екземпляр програми більше не існує!", + "Warning: Shows cannot be re-linked": "Застереження: програму не можна повторно пов’язати", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача.", + "Show": "Програма", + "Show is empty": "Програма порожня", + "1m": "1хв", + "5m": "5хв", + "10m": "10хв", + "15m": "15хв", + "30m": "30хв", + "60m": "60хв", + "Retreiving data from the server...": "Отримання даних із сервера...", + "This show has no scheduled content.": "Це програма не має запланованого вмісту.", + "This show is not completely filled with content.": "Це програма не повністю наповнена контентом.", + "January": "Січень", + "February": "Лютий", + "March": "Березень", + "April": "Квітень", + "May": "Травень", + "June": "Червень", + "July": "Липень", + "August": "Серпень", + "September": "Вересень", + "October": "Жовтень", + "November": "Листопад", + "December": "Грудень", + "Jan": "Січ", + "Feb": "Лют", + "Mar": "Бер", + "Apr": "Квіт", + "Jun": "Черв", + "Jul": "Лип", + "Aug": "Серп", + "Sep": "Вер", + "Oct": "Жовт", + "Nov": "Лист", + "Dec": "Груд", + "Today": "Сьогодні", + "Day": "День", + "Week": "Тиждень", + "Month": "Місяць", + "Sunday": "Неділя", + "Monday": "Понеділок", + "Tuesday": "Вівторок", + "Wednesday": "Середа", + "Thursday": "Четвер", + "Friday": "П'ятниця", + "Saturday": "Субота", + "Sun": "Нд", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Програма, яка триває довше запланованого часу, буде перервана наступною програмою.", + "Cancel Current Show?": "Скасувати поточну програму?", + "Stop recording current show?": "Зупинити запис поточної програми?", + "Ok": "Ok", + "Contents of Show": "Зміст програми", + "Remove all content?": "Видалити весь вміст?", + "Delete selected item(s)?": "Видалити вибрані елементи?", + "Start": "Старт", + "End": "Кінець", + "Duration": "Тривалість", + "Filtering out ": "Фільтрація ", + " of ": " з ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "На зазначений період часу не заплановано жодної програми.", + "Cue In": "Початок звучання", + "Cue Out": "Закінчення звучання", + "Fade In": "Зведення", + "Fade Out": "Затухання", + "Show Empty": "Програма порожня", + "Recording From Line In": "Запис з лінійного входу", + "Track preview": "Попередній перегляд треку", + "Cannot schedule outside a show.": "Не можна планувати поза програмою.", + "Moving 1 Item": "Переміщення 1 елементу", + "Moving %s Items": "Переміщення %s елементів", + "Save": "Зберегти", + "Cancel": "Відміна", + "Fade Editor": "Редактор Fade", + "Cue Editor": "Редактор Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Функції Waveform доступні в браузері, який підтримує API Web Audio", + "Select all": "Вибрати все", + "Select none": "Зняти виділення", + "Trim overbooked shows": "Обрізати переповнені програми", + "Remove selected scheduled items": "Видалити вибрані заплановані елементи", + "Jump to the current playing track": "Перехід до поточного треку", + "Jump to Current": "Перейти до поточного", + "Cancel current show": "Скасувати поточну програму", + "Open library to add or remove content": "Відкрийте бібліотеку, щоб додати або видалити вміст", + "Add / Remove Content": "Додати / видалити вміст", + "in use": "у вживанні", + "Disk": "Диск", + "Look in": "Подивитись", + "Open": "Відкрити", + "Admin": "Адмін", + "DJ": "DJ", + "Program Manager": "Менеджер програми", + "Guest": "Гість", + "Guests can do the following:": "Гості можуть зробити наступне:", + "View schedule": "Переглянути розклад", + "View show content": "Переглянути вміст програм", + "DJs can do the following:": "DJs можуть робити наступне:", + "Manage assigned show content": "Керуйте призначеним вмістом програм", + "Import media files": "Імпорт медіафайлів", + "Create playlists, smart blocks, and webstreams": "Створюйте списки відтворення, смарт-блоки та веб-потоки", + "Manage their own library content": "Керувати вмістом власної бібліотеки", + "Program Managers can do the following:": "Керівники програм можуть робити наступне:", + "View and manage show content": "Перегляд вмісту програм та керування ними", + "Schedule shows": "Розклад програм", + "Manage all library content": "Керуйте всім вмістом бібліотеки", + "Admins can do the following:": "Адміністратори можуть робити наступне:", + "Manage preferences": "Керувати налаштуваннями", + "Manage users": "Керувати користувачами", + "Manage watched folders": "Керування папками, які переглядаються", + "Send support feedback": "Надіслати відгук у службу підтримки", + "View system status": "Переглянути стан системи", + "Access playout history": "Доступ до історії відтворення", + "View listener stats": "Переглянути статистику слухачів", + "Show / hide columns": "Показати/сховати стовпці", + "Columns": "Стовпці", + "From {from} to {to}": "З {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "рррр-мм-дд", + "hh:mm:ss.t": "гг:хх:ss.t", + "kHz": "кГц", + "Su": "Нд", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрити", + "Hour": "Година", + "Minute": "Хвилина", + "Done": "Готово", + "Select files": "Виберіть файли", + "Add files to the upload queue and click the start button.": "Додайте файли до черги завантаження та натисніть кнопку «Пуск».", + "Filename": "Назва файлу", + "Size": "Розмір", + "Add Files": "Додати файли", + "Stop Upload": "Зупинити завантаження", + "Start upload": "Почати завантаження", + "Start Upload": "Розпочати вивантаження", + "Add files": "Додати файли", + "Stop current upload": "Припинити поточне вивантаження", + "Start uploading queue": "Почати вивантаження черги", + "Uploaded %d/%d files": "Завантажено %d/%d файлів", + "N/A": "N/A", + "Drag files here.": "Перетягніть файли сюди.", + "File extension error.": "Помилка розширення файлу.", + "File size error.": "Помилка розміру файлу.", + "File count error.": "Помилка підрахунку файлів.", + "Init error.": "Помилка ініціалізації.", + "HTTP Error.": "HTTP помилка.", + "Security error.": "Помилка безпеки.", + "Generic error.": "Загальна помилка.", + "IO error.": "IO помилка.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлів у черзі", + "File: %f, size: %s, max file size: %m": "Файл: %f, розмір: %s, макс. розмір файлу: %m", + "Upload URL might be wrong or doesn't exist": "URL-адреса завантаження може бути неправильною або не існує", + "Error: File too large: ": "Помилка: Файл завеликий: ", + "Error: Invalid file extension: ": "Помилка: Недійсне розширення файлу: ", + "Set Default": "Встановити за замовчуванням", + "Create Entry": "Створити запис", + "Edit History Record": "Редагувати запис історії", + "No Show": "Немає програми", + "Copied %s row%s to the clipboard": "Скопійовано %s рядок%s у буфер обміну", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape.", + "New Show": "Нова програма", + "New Log Entry": "Новий запис журналу", + "No data available in table": "Дані в таблиці відсутні", + "(filtered from _MAX_ total entries)": "(відфільтровано з _MAX_ всього записів)", + "First": "Спочатку", + "Last": "Останній", + "Next": "Наступний", + "Previous": "Попередній", + "Search:": "Пошук:", + "No matching records found": "Відповідних записів не знайдено", + "Drag tracks here from the library": "Перетягніть треки сюди з бібліотеки", + "No tracks were played during the selected time period.": "Жоден трек не відтворювався протягом вибраного періоду часу.", + "Unpublish": "Зняти з публікації", + "No matching results found.": "Відповідних результатів не знайдено.", + "Author": "Автор", + "Description": "Опис", + "Link": "Посилання", + "Publication Date": "Дата публікації", + "Import Status": "Статус імпорту", + "Actions": "Дії", + "Delete from Library": "Видалити з бібліотеки", + "Successfully imported": "Успішно імпортовано", + "Show _MENU_": "Показати _MENU_", + "Show _MENU_ entries": "Показати _MENU_ записів", + "Showing _START_ to _END_ of _TOTAL_ entries": "Показано від _START_ to _END_ of _TOTAL_ записів", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано від _START_ to _END_ of _TOTAL_ треків", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано від _START_ to _END_ of _TOTAL_типів треків", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано від _START_ to _END_ of _TOTAL_ користувачів", + "Showing 0 to 0 of 0 entries": "Показано від 0 до 0 із 0 записів", + "Showing 0 to 0 of 0 tracks": "Показано від 0 до 0 із 0 треків", + "Showing 0 to 0 of 0 track types": "Показано від 0 до 0 із 0 типів треків", + "(filtered from _MAX_ total track types)": "(відфільтровано з _MAX_ загальних типів доріжок)", + "Are you sure you want to delete this tracktype?": "Ви впевнені, що хочете видалити цей тип треку?", + "No track types were found.": "Типи треків не знайдено.", + "No track types found": "Типи треків не знайдено", + "No matching track types found": "Відповідних типів треків не знайдено", + "Enabled": "Увімкнено", + "Disabled": "Вимкнено", + "Cancel upload": "Скасувати завантаження", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", + "Podcast settings saved": "Налаштування подкасту збережено", + "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", + "Can't delete yourself!": "Неможливо видалити себе!", + "You haven't published any episodes!": "Ви не опублікували жодного випуску!", + "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", + "Try it now": "Спробуй зараз", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

", + "Playlist preview": "Попередній перегляд плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Попередній перегляд веб-потоку", + "You don't have permission to view the library.": "Ви не маєте дозволу переглядати бібліотеку.", + "Now": "Зараз", + "Click 'New' to create one now.": "Натисніть «Новий», щоб створити.", + "Click 'Upload' to add some now.": "Натисніть «Завантажити», щоб додати.", + "Feed URL": "URL стрічки", + "Import Date": "Дата імпорту", + "Add New Podcast": "Додати новий подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Не можна планувати за межами програми.\nСпочатку створіть програму.", + "No files have been uploaded yet.": "Файли ще не завантажено.", + "On Air": "В ефірі", + "Off Air": "Не в ефірі", + "Offline": "Offline", + "Nothing scheduled": "Нічого не заплановано", + "Click 'Add' to create one now.": "Натисніть «Додати», щоб створити зараз.", + "Please enter your username and password.": "Будь ласка, введіть своє ім'я користувача та пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином.", + "That username or email address could not be found.": "Не вдалося знайти це ім’я користувача чи електронну адресу.", + "There was a problem with the username or email address you entered.": "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели.", + "Wrong username or password provided. Please try again.": "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз.", + "You are viewing an older version of %s": "Ви переглядаєте старішу версію %s", + "You cannot add tracks to dynamic blocks.": "До динамічних блоків не можна додавати треки.", + "You don't have permission to delete selected %s(s).": "Ви не маєте дозволу на видалення вибраного %s(х).", + "You can only add tracks to smart block.": "Ви можете додавати треки лише в смарт-блок.", + "Untitled Playlist": "Плейлист без назви", + "Untitled Smart Block": "Смарт-блок без назви", + "Unknown Playlist": "Невідомий плейлист", + "Preferences updated.": "Налаштування оновлено.", + "Stream Setting Updated.": "Налаштування потоку оновлено.", + "path should be specified": "слід вказати шлях", + "Problem with Liquidsoap...": "Проблема з Liquidsoap...", + "Request method not accepted": "Метод запиту не прийнято", + "Rebroadcast of show %s from %s at %s": "Ретрансяція програми %s від %s в %s", + "Select cursor": "Вибрати курсор", + "Remove cursor": "Видалити курсор", + "show does not exist": "програми не існує", + "Track Type added successfully!": "Тип треку успішно додано!", + "Track Type updated successfully!": "Тип треку успішно оновлено!", + "User added successfully!": "Користувача успішно додано!", + "User updated successfully!": "Користувача успішно оновлено!", + "Settings updated successfully!": "Налаштування успішно оновлено!", + "Untitled Webstream": "Веб-потік без назви", + "Webstream saved.": "Веб-потік збережено.", + "Invalid form values.": "Недійсні значення форми.", + "Invalid character entered": "Введено недійсний символ", + "Day must be specified": "Необхідно вказати день", + "Time must be specified": "Необхідно вказати час", + "Must wait at least 1 hour to rebroadcast": "Для повторної трансляції потрібно зачекати принаймні 1 годину", + "Add Autoloading Playlist ?": "Додати плейлист з автозавантаженням?", + "Select Playlist": "Вибір плейлиста", + "Repeat Playlist Until Show is Full ?": "Повторювати список відтворення до заповнення програми?", + "Use %s Authentication:": "Використовувати %s Аутентифікацію:", + "Use Custom Authentication:": "Використовувати спеціальну автентифікацію:", + "Custom Username": "Спеціальне ім'я користувача", + "Custom Password": "Користувацький пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтування:", + "Username field cannot be empty.": "Поле імені користувача не може бути порожнім.", + "Password field cannot be empty.": "Поле пароля не може бути порожнім.", + "Record from Line In?": "Записувати з лінійного входу?", + "Rebroadcast?": "Повторна трансляція?", + "days": "днів", + "Link:": "Посилання:", + "Repeat Type:": "Тип повтору:", + "weekly": "щотижня", + "every 2 weeks": "кожні 2 тижні", + "every 3 weeks": "кожні 3 тижні", + "every 4 weeks": "кожні 4 тижні", + "monthly": "щомісяця", + "Select Days:": "Оберіть дні:", + "Repeat By:": "Повторити:", + "day of the month": "день місяця", + "day of the week": "день тижня", + "Date End:": "Кінцева дата:", + "No End?": "Немає кінця?", + "End date must be after start date": "Дата завершення має бути після дати початку", + "Please select a repeat day": "Виберіть день повторення", + "Background Colour:": "Колір фону:", + "Text Colour:": "Колір тексту:", + "Current Logo:": "Поточний логотип:", + "Show Logo:": "Показати логотип:", + "Logo Preview:": "Попередній перегляд логотипу:", + "Name:": "Ім'я:", + "Untitled Show": "Програма без назви", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "Опис екземпляру:", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' не відповідає часовому формату 'HH:mm'", + "Start Time:": "Час початку:", + "In the Future:": "У майбутньому:", + "End Time:": "Час закінчення:", + "Duration:": "Тривалість:", + "Timezone:": "Часовий пояс:", + "Repeats?": "Повторювати?", + "Cannot create show in the past": "Неможливо створити програму в минулому часі", + "Cannot modify start date/time of the show that is already started": "Неможливо змінити дату/час початку програми, яка вже розпочата", + "End date/time cannot be in the past": "Дата/час завершення не можуть бути в минулому", + "Cannot have duration < 0m": "Не може мати тривалість < 0хв", + "Cannot have duration 00h 00m": "Не може мати тривалість 00год 00хв", + "Cannot have duration greater than 24h": "Тривалість не може перевищувати 24 год", + "Cannot schedule overlapping shows": "Неможливо запланувати накладені програми", + "Search Users:": "Пошук користувачів:", + "DJs:": "Діджеї:", + "Type Name:": "Назва типу:", + "Code:": "Код:", + "Visibility:": "Видимість:", + "Analyze cue points:": "Проаналізуйте контрольні точки:", + "Code is not unique.": "Код не унікальний.", + "Username:": "Ім'я користувача:", + "Password:": "Пароль:", + "Verify Password:": "Підтвердіть пароль:", + "Firstname:": "Ім'я:", + "Lastname:": "Прізвище:", + "Email:": "Email:", + "Mobile Phone:": "Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Тип користувача:", + "Login name is not unique.": "Логін не є унікальним.", + "Delete All Tracks in Library": "Видалити всі треки з бібліотеки", + "Date Start:": "Дата початку:", + "Title:": "Назва:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Власник:", + "Select a Type": "Виберіть тип", + "Track Type:": "Тип треку:", + "Year:": "Рік:", + "Label:": "Label:", + "Composer:": "Композитор:", + "Conductor:": "Виконавець:", + "Mood:": "Настрій:", + "BPM:": "BPM:", + "Copyright:": "Авторське право:", + "ISRC Number:": "Номер ISRC:", + "Website:": "Веб-сайт:", + "Language:": "Мова:", + "Publish...": "Опублікувати...", + "Start Time": "Час початку", + "End Time": "Час закінчення", + "Interface Timezone:": "Часовий пояс інтерфейсу:", + "Station Name": "Назва станції", + "Station Description": "Опис Станції", + "Station Logo:": "Лого Станції:", + "Note: Anything larger than 600x600 will be resized.": "Примітка: все, що перевищує 600x600, буде змінено.", + "Default Crossfade Duration (s):": "Тривалість переходу за замовчуванням (с):", + "Please enter a time in seconds (eg. 0.5)": "Будь ласка, введіть час у секундах (наприклад, 0,5)", + "Default Fade In (s):": "За замовчуванням Fade In (s):", + "Default Fade Out (s):": "За замовчуванням Fade Out (s):", + "Track Type Upload Default": "Тип доріжки Завантаження за замовчуванням", + "Intro Autoloading Playlist": "Вступний автозавантажуваний плейлист (Intro)", + "Outro Autoloading Playlist": "Завершальний автозавантажувальний плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезаписати метатеги епізоду подкасту", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Створіть смартблок і список відтворення після створення нового подкасту", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди.", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Потрібний для вбудованого віджета розкладу.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт.", + "Default Language": "Мова за замовчуванням", + "Station Timezone": "Часовий пояс станції", + "Week Starts On": "Тиждень починається з", + "Display login button on your Radio Page?": "Відображати кнопку входу на сторінці радіо?", + "Feature Previews": "Попередній перегляд функцій", + "Enable this to opt-in to test new features.": "Увімкніть це, щоб тестувати нові функції.", + "Auto Switch Off:": "Автоматичне вимкнення:", + "Auto Switch On:": "Автоматичне ввімкнення:", + "Switch Transition Fade (s):": "Перемикання переходу Fade (s):", + "Master Source Host:": "Головний вихідний хост:", + "Master Source Port:": "Головний вихідний порт:", + "Master Source Mount:": "Головне джерело монтування:", + "Show Source Host:": "Показати вихідний хост:", + "Show Source Port:": "Показати вихідний порт:", + "Show Source Mount:": "Показати джерела монтування:", + "Login": "Логін", + "Password": "Пароль", + "Confirm new password": "Підтвердити новий пароль", + "Password confirmation does not match your password.": "Підтвердження пароля не збігається з вашим.", + "Email": "Email", + "Username": "Ім'я користувача", + "Reset password": "Скинути пароль", + "Back": "Назад", + "Now Playing": "Зараз грає", + "Select Stream:": "Виберіть потік:", + "Auto detect the most appropriate stream to use.": "Автоматичне визначення потоку, який найбільше підходить для використання.", + "Select a stream:": "Виберіть потік:", + " - Mobile friendly": " - Зручний для мобільних пристроїв", + " - The player does not support Opus streams.": " - Плеєр не підтримує потоки Opus.", + "Embeddable code:": "Код для вбудовування:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт.", + "Preview:": "Попередній перегляд:", + "Feed Privacy": "Конфіденційність стрічки", + "Public": "Публічний", + "Private": "Приватний", + "Station Language": "Мова станції", + "Filter by Show": "Фільтрувати мої програми", + "All My Shows:": "Усі мої програми:", + "My Shows": "Мої програми", + "Select criteria": "Виберіть критерії", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "Тип треку", + "Sample Rate (kHz)": "Частота дискретизації (kHz)", + "before": "раніше", + "after": "після", + "between": "між", + "Select unit of time": "Виберіть одиницю часу", + "minute(s)": "хвилина(и)", + "hour(s)": "година(и)", + "day(s)": "День(Дні)", + "week(s)": "Тиждень(і)", + "month(s)": "місяць(і)", + "year(s)": "Рік(и)", + "hours": "година(и)", + "minutes": "хвилина(и)", + "items": "елементи", + "time remaining in show": "час, що залишився у програмі", + "Randomly": "Довільно", + "Newest": "Найновіший(і)", + "Oldest": "Найстаріший(і)", + "Most recently played": "Нещодавно зіграно", + "Least recently played": "Нещодавно грали", + "Select Track Type": "Виберіть тип доріжки", + "Type:": "Тип:", + "Dynamic": "Динамічний", + "Static": "Статичний", + "Select track type": "Виберіть тип доріжки", + "Allow Repeated Tracks:": "Дозволити повторення треків:", + "Allow last track to exceed time limit:": "Дозволити останньому треку перевищити ліміт часу:", + "Sort Tracks:": "Сортування треків:", + "Limit to:": "Обмежити в:", + "Generate playlist content and save criteria": "Створення вмісту списку відтворення та збереження критеріїв", + "Shuffle playlist content": "Перемішати вміст плейлиста", + "Shuffle": "Перемішати", + "Limit cannot be empty or smaller than 0": "Ліміт не може бути порожнім або меншим за 0", + "Limit cannot be more than 24 hrs": "Ліміт не може перевищувати 24 год", + "The value should be an integer": "Значення має бути цілим числом", + "500 is the max item limit value you can set": "500 максимальне граничне значення", + "You must select Criteria and Modifier": "Ви повинні вибрати Критерії і Модифікатор", + "'Length' should be in '00:00:00' format": "'Довжина має бути введена у '00:00:00' форматі", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)", + "You must select a time unit for a relative datetime.": "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа", + "The value has to be numeric": "Значення має бути числовим", + "The value should be less then 2147483648": "Значення має бути меншим, ніж 2147483648", + "The value cannot be empty": "Значення не може бути порожнім", + "The value should be less than %s characters": "Значення має бути менше ніж %s символів", + "Value cannot be empty": "Значення не може бути порожнім", + "Stream Label:": "Метадані потоку:", + "Artist - Title": "Виконавець - Назва", + "Show - Artist - Title": "Програма - Виконавець - Назва", + "Station name - Show name": "Назва станції - Показати назву", + "Off Air Metadata": "Метадані при вимкненому ефірі", + "Enable Replay Gain": "Вмикнути Replay Gain", + "Replay Gain Modifier": "Змінити Replay Gain", + "Hardware Audio Output:": "Апаратний аудіовихід:", + "Output Type": "Тип виходу", + "Enabled:": "Увімкнено:", + "Mobile:": "Телефон:", + "Stream Type:": "Тип потоку:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Тип сервіса:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтування", + "Name": "Ім'я", + "URL": "URL", + "Stream URL": "URL-адреса трансляції", + "Push metadata to your station on TuneIn?": "Надішлати метадані на свою станцію в TuneIn?", + "Station ID:": "ID Станції:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "ID партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу.", + "Import Folder:": "Імпорт папки:", + "Watched Folders:": "Переглянути папки:", + "Not a valid Directory": "Недійсний каталог", + "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не є дійсною електронною адресою в форматі local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' не відповідає формату дати '%format%'", + "'%value%' is less than %min% characters long": "'%value%' є меншим ніж %min% довжина символів", + "'%value%' is more than %max% characters long": "'%value%' це більше ніж %max% довжина символів", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не знаходиться між '%min%' і '%max%', включно", + "Passwords do not match": "Паролі не співпадають", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", + "\n\nThank you,\nThe %s Team": "\n\nДякую Вам,\nThe %s Team", + "%s Password Reset": "%s Скидання паролю", + "Cue in and cue out are null.": "Час початку та закінчення звучання треку не заповнені.", + "Can't set cue out to be greater than file length.": "Час закінчення звучання не може перевищувати довжину треку.", + "Can't set cue in to be larger than cue out.": "Час початку звучання може бути пізніше часу закінчення.", + "Can't set cue out to be smaller than cue in.": "Час закінчення звучання не може бути раніше початку.", + "Upload Time": "Час завантаження", + "None": "Жодного", + "Powered by %s": "На основі %s", + "Select Country": "Оберіть Країну", + "livestream": "Наживо", + "Cannot move items out of linked shows": "Неможливо перемістити елементи з пов’язаних програм", + "The schedule you're viewing is out of date! (sched mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)", + "The schedule you're viewing is out of date! (instance mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)", + "The schedule you're viewing is out of date!": "Розклад, який ви переглядаєте, застарів!", + "You are not allowed to schedule show %s.": "Вам не дозволено планувати програму %s.", + "You cannot add files to recording shows.": "Ви не можете додавати файли до Програми, що записується.", + "The show %s is over and cannot be scheduled.": "Програма %s закінчилась, її не можливо запланувати.", + "The show %s has been previously updated!": "Програма %s була оновлена раніше!", + "Content in linked shows cannot be changed while on air!": "Вміст пов’язаних програм не можна змінювати під час трансляції!", + "Cannot schedule a playlist that contains missing files.": "Неможливо запланувати плейлист, який містить відсутні файли.", + "A selected File does not exist!": "Вибраний файл не існує!", + "Shows can have a max length of 24 hours.": "Програма може тривати не більше 24 годин.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не можна планувати Програми, що перетинаються.\nПримітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники.", + "Rebroadcast of %s from %s": "Ретрансляція %s від %s", + "Length needs to be greater than 0 minutes": "Довжина повинна бути більше ніж 0 хвилин", + "Length should be of form \"00h 00m\"": "Довжина повинна відповідати формі \"00год 00хв\"", + "URL should be of form \"https://example.org\"": "URL має бути форми \"https://example.org\"", + "URL should be 512 characters or less": "URL-адреса має містити не більше 512 символів", + "No MIME type found for webstream.": "Для веб-потоку не знайдено тип MIME.", + "Webstream name cannot be empty": "Назва веб-потоку не може бути пустою", + "Could not parse XSPF playlist": "Не вдалося проаналізувати XSPF плейлист", + "Could not parse PLS playlist": "Не вдалося проаналізувати PLS плейлист", + "Could not parse M3U playlist": "Не вдалося проаналізувати M3U плейлист", + "Invalid webstream - This appears to be a file download.": "Недійсний веб-потік. Здається, це завантажений файл.", + "Unrecognized stream type: %s": "Нерозпізнаний тип потоку: %s", + "Record file doesn't exist": "Файл запису не існує", + "View Recorded File Metadata": "Перегляд метаданих записаного файлу", + "Schedule Tracks": "Заплановані треки", + "Clear Show": "Очистити програму", + "Cancel Show": "Відміна програми", + "Edit Instance": "Редагувати екземпляр", + "Edit Show": "Редагування програми", + "Delete Instance": "Видалити екземпляр", + "Delete Instance and All Following": "Видалити екземпляр і все наступне", + "Permission denied": "У дозволі відмовлено", + "Can't drag and drop repeating shows": "Не можна перетягувати повторювані програми", + "Can't move a past show": "Неможливо перемістити минулу програму", + "Can't move show into past": "Неможливо перенести програму в минуле", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції.", + "Show was deleted because recorded show does not exist!": "Програму видалено, оскільки записаної програми не існує!", + "Must wait 1 hour to rebroadcast.": "Для повторної трансляції потрібно почекати 1 годину.", + "Track": "Трек", + "Played": "Програно", + "Auto-generated smartblock for podcast": "Автоматично створений смарт-блок для подкасту", + "Webstreams": "Веб-потоки" +} diff --git a/webapp/src/locale/zh_CN.json b/webapp/src/locale/zh_CN.json index 16a5826314..a29afff7c6 100644 --- a/webapp/src/locale/zh_CN.json +++ b/webapp/src/locale/zh_CN.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "1753 - 9999 是可以接受的年代值,而不是“%s”", - "%s-%s-%s is not a valid date": "%s-%s-%s采用了错误的日期格式", - "%s:%s:%s is not a valid time": "%s:%s:%s 采用了错误的时间格式", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "节目日程", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "用户管理", - "Track Types": "", - "Streams": "媒体流设置", - "Status": "系统状态", - "Analytics": "", - "Playout History": "播出历史", - "History Templates": "历史记录模板", - "Listener Stats": "收听状态", - "Show Listener Stats": "", - "Help": "帮助", - "Getting Started": "基本用法", - "User Manual": "用户手册", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "你没有访问该资源的权限", - "You are not allowed to access this resource. ": "你没有访问该资源的权限", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "请求错误。没有提供‘模式’参数。", - "Bad request. 'mode' parameter is invalid": "请求错误。提供的‘模式’参数无效。", - "You don't have permission to disconnect source.": "你没有断开输入源的权限。", - "There is no source connected to this input.": "没有连接上的输入源。", - "You don't have permission to switch source.": "你没有切换的权限。", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s不存在", - "Something went wrong.": "未知错误。", - "Preview": "预览", - "Add to Playlist": "添加到播放列表", - "Add to Smart Block": "添加到智能模块", - "Delete": "删除", - "Edit...": "", - "Download": "下载", - "Duplicate Playlist": "复制播放列表", - "Duplicate Smartblock": "", - "No action available": "没有操作选择", - "You don't have permission to delete selected items.": "你没有删除选定项目的权限。", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%s的副本", - "Please make sure admin user/password is correct on Settings->Streams page.": "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。", - "Audio Player": "音频播放器", - "Something went wrong!": "", - "Recording:": "录制:", - "Master Stream": "主输入源", - "Live Stream": "节目定制输入源", - "Nothing Scheduled": "没有安排节目内容", - "Current Show:": "当前节目:", - "Current": "当前的", - "You are running the latest version": "你已经在使用最新版", - "New version available: ": "版本有更新:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "添加到播放列表", - "Add to current smart block": "添加到只能模块", - "Adding 1 Item": "添加1项", - "Adding %s Items": "添加%s项", - "You can only add tracks to smart blocks.": "智能模块只能添加声音文件。", - "You can only add tracks, smart blocks, and webstreams to playlists.": "播放列表只能添加声音文件,只能模块和网络流媒体。", - "Please select a cursor position on timeline.": "请在右部的时间表视图中选择一个游标位置。", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "添加", - "New": "", - "Edit": "编辑", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "移除", - "Edit Metadata": "编辑元数据", - "Add to selected show": "添加到所选的节目", - "Select": "选择", - "Select this page": "选择此页", - "Deselect this page": "取消整页", - "Deselect all": "全部取消", - "Are you sure you want to delete the selected item(s)?": "确定删除选择的项?", - "Scheduled": "已安排进日程", - "Tracks": "", - "Playlist": "", - "Title": "标题", - "Creator": "作者", - "Album": "专辑", - "Bit Rate": "比特率", - "BPM": "每分钟拍子数", - "Composer": "作曲", - "Conductor": "指挥", - "Copyright": "版权", - "Encoded By": "编曲", - "Genre": "风格", - "ISRC": "ISRC码", - "Label": "标签", - "Language": "语种", - "Last Modified": "最近更新于", - "Last Played": "上次播放于", - "Length": "时长", - "Mime": "MIME信息", - "Mood": "风格", - "Owner": "所有者", - "Replay Gain": "回放增益", - "Sample Rate": "样本率", - "Track Number": "曲目", - "Uploaded": "上传于", - "Website": "网址", - "Year": "年代", - "Loading...": "加载中...", - "All": "全部", - "Files": "文件", - "Playlists": "播放列表", - "Smart Blocks": "智能模块", - "Web Streams": "网络流媒体", - "Unknown type: ": "位置类型:", - "Are you sure you want to delete the selected item?": "确定删除所选项?", - "Uploading in progress...": "正在上传...", - "Retrieving data from the server...": "数据正在从服务器下载中...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "错误代码:", - "Error msg: ": "错误信息:", - "Input must be a positive number": "输入只能为正数", - "Input must be a number": "只允许数字输入", - "Input must be in the format: yyyy-mm-dd": "输入格式应为:年-月-日(yyyy-mm-dd)", - "Input must be in the format: hh:mm:ss.t": "输入格式应为:时:分:秒 (hh:mm:ss.t)", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?", - "Open Media Builder": "打开媒体编辑器", - "please put in a time '00:00:00 (.0)'": "请输入时间‘00:00:00(.0)’", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "你的浏览器不支持这种文件类型:", - "Dynamic block is not previewable": "动态智能模块无法预览", - "Limit to: ": "限制在:", - "Playlist saved": "播放列表已存储", - "Playlist shuffled": "播放列表已经随机化", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。", - "Listener Count on %s: %s": "听众统计%s:%s", - "Remind me in 1 week": "一周以后再提醒我", - "Remind me never": "不再提醒", - "Yes, help Airtime": "是的,帮助Airtime", - "Image must be one of jpg, jpeg, png, or gif": "图像文件格式只能是jpg,jpeg,png或者gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "智能模块已经随机排列", - "Smart block generated and criteria saved": "智能模块已经生成,条件设置已经保存", - "Smart block saved": "智能模块已经保存", - "Processing...": "加载中...", - "Select modifier": "选择操作符", - "contains": "包含", - "does not contain": "不包含", - "is": "是", - "is not": "不是", - "starts with": "起始于", - "ends with": "结束于", - "is greater than": "大于", - "is less than": "小于", - "is in the range": "处于", - "Generate": "开始生成", - "Choose Storage Folder": "选择存储文件夹", - "Choose Folder to Watch": "选择监控的文件夹", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "确定更改存储路径?\n这项操作将从媒体库中删除所有文件!", - "Manage Media Folders": "管理媒体文件夹", - "Are you sure you want to remove the watched folder?": "确定取消该文件夹的监控?", - "This path is currently not accessible.": "指定的路径无法访问。", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。", - "Connected to the streaming server": "流服务器已连接", - "The stream is disabled": "输出流已禁用", - "Getting information from the server...": "从服务器加载中...", - "Can not connect to the streaming server": "无法连接流服务器", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。", - "Check this box to automatically switch on Master/Show source upon source connection.": "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。", - "If your Icecast server expects a username of 'source', this field can be left blank.": "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。", - "If your live streaming client does not ask for a username, this field should be 'source'.": "如果你的流客户端不需要用户名,那么当前项可以留空", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "搜索无结果", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。", - "Specify custom authentication which will work only for this show.": "所设置的自定义认证设置只对当前的节目有效。", - "The show instance doesn't exist anymore!": "此节目已不存在", - "Warning: Shows cannot be re-linked": "注意:节目取消绑定后无法再次绑定", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。", - "Show": "节目", - "Show is empty": "节目内容为空", - "1m": "1分钟", - "5m": "5分钟", - "10m": "10分钟", - "15m": "15分钟", - "30m": "30分钟", - "60m": "60分钟", - "Retreiving data from the server...": "从服务器下载数据中...", - "This show has no scheduled content.": "此节目没有安排内容。", - "This show is not completely filled with content.": "节目内容只填充了一部分。", - "January": "一月", - "February": "二月", - "March": "三月", - "April": "四月", - "May": "五月", - "June": "六月", - "July": "七月", - "August": "八月", - "September": "九月", - "October": "十月", - "November": "十一月", - "December": "十二月", - "Jan": "一月", - "Feb": "二月", - "Mar": "三月", - "Apr": "四月", - "Jun": "六月", - "Jul": "七月", - "Aug": "八月", - "Sep": "九月", - "Oct": "十月", - "Nov": "十一月", - "Dec": "十二月", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "周日", - "Monday": "周一", - "Tuesday": "周二", - "Wednesday": "周三", - "Thursday": "周四", - "Friday": "周五", - "Saturday": "周六", - "Sun": "周日", - "Mon": "周一", - "Tue": "周二", - "Wed": "周三", - "Thu": "周四", - "Fri": "周五", - "Sat": "周六", - "Shows longer than their scheduled time will be cut off by a following show.": "超出的节目内容将被随后的节目所取代。", - "Cancel Current Show?": "取消当前的节目?", - "Stop recording current show?": "停止录制当前的节目?", - "Ok": "确定", - "Contents of Show": "浏览节目内容", - "Remove all content?": "清空全部内容?", - "Delete selected item(s)?": "删除选定的项目?", - "Start": "开始", - "End": "结束", - "Duration": "时长", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "切入", - "Cue Out": "切出", - "Fade In": "淡入", - "Fade Out": "淡出", - "Show Empty": "节目无内容", - "Recording From Line In": "从线路输入录制", - "Track preview": "试听媒体", - "Cannot schedule outside a show.": "没有指定节目,无法凭空安排内容。", - "Moving 1 Item": "移动1个项目", - "Moving %s Items": "移动%s个项目", - "Save": "保存", - "Cancel": "取消", - "Fade Editor": "淡入淡出编辑器", - "Cue Editor": "切入切出编辑器", - "Waveform features are available in a browser supporting the Web Audio API": "想要启用波形图功能,需要支持Web Audio API的浏览器。", - "Select all": "全选", - "Select none": "全不选", - "Trim overbooked shows": "", - "Remove selected scheduled items": "移除所选的项目", - "Jump to the current playing track": "跳转到当前播放的项目", - "Jump to Current": "", - "Cancel current show": "取消当前的节目", - "Open library to add or remove content": "打开媒体库,添加或者删除节目内容", - "Add / Remove Content": "添加 / 删除内容", - "in use": "使用中", - "Disk": "磁盘", - "Look in": "查询", - "Open": "打开", - "Admin": "系统管理员", - "DJ": "节目编辑", - "Program Manager": "节目主管", - "Guest": "游客", - "Guests can do the following:": "游客的权限包括:", - "View schedule": "显示节目日程", - "View show content": "显示节目内容", - "DJs can do the following:": "节目编辑的权限包括:", - "Manage assigned show content": "为指派的节目管理节目内容", - "Import media files": "导入媒体文件", - "Create playlists, smart blocks, and webstreams": "创建播放列表,智能模块和网络流媒体", - "Manage their own library content": "管理媒体库中属于自己的内容", - "Program Managers can do the following:": "", - "View and manage show content": "查看和管理节目内容", - "Schedule shows": "安排节目日程", - "Manage all library content": "管理媒体库的所有内容", - "Admins can do the following:": "管理员的权限包括:", - "Manage preferences": "属性管理", - "Manage users": "管理用户", - "Manage watched folders": "管理监控文件夹", - "Send support feedback": "提交反馈意见", - "View system status": "显示系统状态", - "Access playout history": "查看播放历史", - "View listener stats": "显示收听统计数据", - "Show / hide columns": "显示/隐藏栏", - "Columns": "", - "From {from} to {to}": "从{from}到{to}", - "kbps": "千比特每秒", - "yyyy-mm-dd": "年-月-日", - "hh:mm:ss.t": "时:分:秒", - "kHz": "千赫兹", - "Su": "周天", - "Mo": "周一", - "Tu": "周二", - "We": "周三", - "Th": "周四", - "Fr": "周五", - "Sa": "周六", - "Close": "关闭", - "Hour": "小时", - "Minute": "分钟", - "Done": "设定", - "Select files": "选择文件", - "Add files to the upload queue and click the start button.": "添加需要上传的文件到传输队列中,然后点击开始上传。", - "Filename": "", - "Size": "", - "Add Files": "添加文件", - "Stop Upload": "停止上传", - "Start upload": "开始上传", - "Start Upload": "", - "Add files": "添加文件", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "已经上传%d/%d个文件", - "N/A": "未知", - "Drag files here.": "拖拽文件到此处。", - "File extension error.": "文件后缀名出错。", - "File size error.": "文件大小出错。", - "File count error.": "发生文件统计错误。", - "Init error.": "发生初始化错误。", - "HTTP Error.": "发生HTTP类型的错误", - "Security error.": "发生安全性错误。", - "Generic error.": "发生通用类型的错误。", - "IO error.": "输入输出错误。", - "File: %s": "文件:%s", - "%d files queued": "队列中有%d个文件", - "File: %f, size: %s, max file size: %m": "文件:%f,大小:%s,最大的文件大小:%m", - "Upload URL might be wrong or doesn't exist": "用于上传的地址有误或者不存在", - "Error: File too large: ": "错误:文件过大:", - "Error: Invalid file extension: ": "错误:无效的文件后缀名:", - "Set Default": "设为默认", - "Create Entry": "创建项目", - "Edit History Record": "编辑历史记录", - "No Show": "无节目", - "Copied %s row%s to the clipboard": "复制%s行%s到剪贴板", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "描述", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "启用", - "Disabled": "禁用", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "邮件发送失败。请检查邮件服务器设置,并确定设置无误。", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "用户名或密码错误,请重试。", - "You are viewing an older version of %s": "你所查看的%s已更改", - "You cannot add tracks to dynamic blocks.": "动态智能模块不能添加声音文件。", - "You don't have permission to delete selected %s(s).": "你没有删除所选%s的权限。", - "You can only add tracks to smart block.": "智能模块只能添加媒体文件。", - "Untitled Playlist": "未命名的播放列表", - "Untitled Smart Block": "未命名的智能模块", - "Unknown Playlist": "位置播放列表", - "Preferences updated.": "属性已更新。", - "Stream Setting Updated.": "流设置已更新。", - "path should be specified": "请指定路径", - "Problem with Liquidsoap...": "Liquidsoap出错...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "节目%s是节目%s的重播,时间是%s", - "Select cursor": "选择游标", - "Remove cursor": "删除游标", - "show does not exist": "节目不存在", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "用户已添加成功!", - "User updated successfully!": "用于已成功更新!", - "Settings updated successfully!": "设置更新成功!", - "Untitled Webstream": "未命名的网络流媒体", - "Webstream saved.": "网络流媒体已保存。", - "Invalid form values.": "无效的表格内容。", - "Invalid character entered": "输入的字符不合要求", - "Day must be specified": "请指定天", - "Time must be specified": "请指定时间", - "Must wait at least 1 hour to rebroadcast": "至少间隔一个小时", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "使用自定义的用户认证:", - "Custom Username": "自定义用户名", - "Custom Password": "自定义密码", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "请填写用户名", - "Password field cannot be empty.": "请填写密码", - "Record from Line In?": "从线路输入录制?", - "Rebroadcast?": "重播?", - "days": "天", - "Link:": "绑定:", - "Repeat Type:": "类型:", - "weekly": "每周", - "every 2 weeks": "每隔2周", - "every 3 weeks": "每隔3周", - "every 4 weeks": "每隔4周", - "monthly": "每月", - "Select Days:": "选择天数:", - "Repeat By:": "重复类型:", - "day of the month": "按月的同一日期", - "day of the week": "一个星期的同一日子", - "Date End:": "结束日期:", - "No End?": "无休止?", - "End date must be after start date": "结束日期应晚于开始日期", - "Please select a repeat day": "请选择在哪一天重复", - "Background Colour:": "背景色:", - "Text Colour:": "文字颜色:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "名字:", - "Untitled Show": "未命名节目", - "URL:": "链接地址:", - "Genre:": "风格:", - "Description:": "描述:", - "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "时长:", - "Timezone:": "时区", - "Repeats?": "是否设置为系列节目?", - "Cannot create show in the past": "节目不能设置为过去的时间", - "Cannot modify start date/time of the show that is already started": "节目已经启动,无法修改开始时间/日期", - "End date/time cannot be in the past": "节目结束的时间或日期不能设置为过去的时间", - "Cannot have duration < 0m": "节目时长不能小于0", - "Cannot have duration 00h 00m": "节目时长不能为0", - "Cannot have duration greater than 24h": "节目时长不能超过24小时", - "Cannot schedule overlapping shows": "节目时间设置与其他节目有冲突", - "Search Users:": "查找用户:", - "DJs:": "选择节目编辑:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "用户名:", - "Password:": "密码:", - "Verify Password:": "再次输入密码:", - "Firstname:": "名:", - "Lastname:": "姓:", - "Email:": "电邮:", - "Mobile Phone:": "手机:", - "Skype:": "Skype帐号:", - "Jabber:": "Jabber帐号:", - "User Type:": "用户类型:", - "Login name is not unique.": "帐号重名。", - "Delete All Tracks in Library": "", - "Date Start:": "开始日期:", - "Title:": "歌曲名:", - "Creator:": "作者:", - "Album:": "专辑名:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "年份:", - "Label:": "标签:", - "Composer:": "编曲:", - "Conductor:": "制作:", - "Mood:": "情怀:", - "BPM:": "拍子(BPM):", - "Copyright:": "版权:", - "ISRC Number:": "ISRC编号:", - "Website:": "网站:", - "Language:": "语言:", - "Publish...": "", - "Start Time": "开始时间", - "End Time": "结束时间", - "Interface Timezone:": "用户界面使用的时区:", - "Station Name": "电台名称", - "Station Description": "", - "Station Logo:": "电台标志:", - "Note: Anything larger than 600x600 will be resized.": "注意:大于600x600的图片将会被缩放", - "Default Crossfade Duration (s):": "默认混合淡入淡出效果(秒):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "默认淡入效果(秒):", - "Default Fade Out (s):": "默认淡出效果(秒):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "系统使用的时区", - "Week Starts On": "一周开始于", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "登录", - "Password": "密码", - "Confirm new password": "确认新密码", - "Password confirmation does not match your password.": "新密码不匹配", - "Email": "", - "Username": "用户名", - "Reset password": "重置密码", - "Back": "", - "Now Playing": "直播室", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "我的全部节目:", - "My Shows": "", - "Select criteria": "选择属性", - "Bit Rate (Kbps)": "比特率(Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "样本率(KHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "小时", - "minutes": "分钟", - "items": "个数", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "动态", - "Static": "静态", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "保存条件设置并生成播放列表内容", - "Shuffle playlist content": "随机打乱歌曲次序", - "Shuffle": "随机", - "Limit cannot be empty or smaller than 0": "限制的设置不能比0小", - "Limit cannot be more than 24 hrs": "限制的设置不能大于24小时", - "The value should be an integer": "值只能为整数", - "500 is the max item limit value you can set": "最多只能允许500条内容", - "You must select Criteria and Modifier": "条件和操作符不能为空", - "'Length' should be in '00:00:00' format": "‘长度’格式应该为‘00:00:00’", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "应该为数字", - "The value should be less then 2147483648": "不能大于2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "不能小于%s个字符", - "Value cannot be empty": "不能为空", - "Stream Label:": "流标签:", - "Artist - Title": "歌手 - 歌名", - "Show - Artist - Title": "节目 - 歌手 - 歌名", - "Station name - Show name": "电台名 - 节目名", - "Off Air Metadata": "非直播状态下的输出流元数据", - "Enable Replay Gain": "启用回放增益", - "Replay Gain Modifier": "回放增益调整", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "启用:", - "Mobile:": "", - "Stream Type:": "流格式:", - "Bit Rate:": "比特率:", - "Service Type:": "服务类型:", - "Channels:": "声道:", - "Server": "服务器", - "Port": "端口号", - "Mount Point": "加载点", - "Name": "名字", - "URL": "链接地址", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "导入文件夹:", - "Watched Folders:": "监控文件夹:", - "Not a valid Directory": "无效的路径", - "Value is required and can't be empty": "不能为空", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' 不符合格式要求: '%format%'", - "'%value%' is less than %min% characters long": "'%value%' 小于最小长度要求 %min% ", - "'%value%' is more than %max% characters long": "'%value%' 大于最大长度要求 %max%", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' 应该介于 '%min%' 和 '%max%'之间", - "Passwords do not match": "两次密码输入不匹配", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "切入点和切出点均为空", - "Can't set cue out to be greater than file length.": "切出点不能超出文件原长度", - "Can't set cue in to be larger than cue out.": "切入点不能晚于切出点", - "Can't set cue out to be smaller than cue in.": "切出点不能早于切入点", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "选择国家", - "livestream": "", - "Cannot move items out of linked shows": "不能从绑定的节目系列里移出项目", - "The schedule you're viewing is out of date! (sched mismatch)": "当前节目内容表(内容部分)需要刷新", - "The schedule you're viewing is out of date! (instance mismatch)": "当前节目内容表(节目已更改)需要刷新", - "The schedule you're viewing is out of date!": "当前节目内容需要刷新!", - "You are not allowed to schedule show %s.": "没有赋予修改节目 %s 的权限。", - "You cannot add files to recording shows.": "录音节目不能添加别的内容。", - "The show %s is over and cannot be scheduled.": "节目%s已结束,不能在添加任何内容。", - "The show %s has been previously updated!": "节目%s已经更改,需要刷新后再尝试。", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "某个选中的文件不存在。", - "Shows can have a max length of 24 hours.": "节目时长只能设置在24小时以内", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "节目时间设置于其他的节目有冲突。\n提示:修改系列节目中的一个,将影响整个节目系列", - "Rebroadcast of %s from %s": "%s是%s的重播", - "Length needs to be greater than 0 minutes": "节目时长必须大于0分钟", - "Length should be of form \"00h 00m\"": "时间的格式应该是 \"00h 00m\"", - "URL should be of form \"https://example.org\"": "地址的格式应该是 \"https://example.org\"", - "URL should be 512 characters or less": "地址的最大长度不能超过512字节", - "No MIME type found for webstream.": "这个媒体流不存在MIME属性,无法添加", - "Webstream name cannot be empty": "媒体流的名字不能为空", - "Could not parse XSPF playlist": "发现XSPF格式的播放列表,但是格式错误", - "Could not parse PLS playlist": "发现PLS格式的播放列表,但是格式错误", - "Could not parse M3U playlist": "发现M3U格式的播放列表,但是格式错误", - "Invalid webstream - This appears to be a file download.": "媒体流格式错误,当前“媒体流”只是一个可下载的文件", - "Unrecognized stream type: %s": "未知的媒体流格式: %s", - "Record file doesn't exist": "录制文件不存在", - "View Recorded File Metadata": "查看录制文件的元数据", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "编辑节目", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "没有编辑权限", - "Can't drag and drop repeating shows": "系列中的节目无法拖拽", - "Can't move a past show": "已经结束的节目无法更改时间", - "Can't move show into past": "节目不能设置到已过去的时间点", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "录音和重播节目之间的间隔必须大于等于1小时。", - "Show was deleted because recorded show does not exist!": "录音节目不存在,节目已删除!", - "Must wait 1 hour to rebroadcast.": "重播节目必须设置于1小时之后。", - "Track": "曲目", - "Played": "已播放", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" -} \ No newline at end of file + "The year %s must be within the range of 1753 - 9999": "1753 - 9999 是可以接受的年代值,而不是“%s”", + "%s-%s-%s is not a valid date": "%s-%s-%s采用了错误的日期格式", + "%s:%s:%s is not a valid time": "%s:%s:%s 采用了错误的时间格式", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "节目日程", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "用户管理", + "Track Types": "", + "Streams": "媒体流设置", + "Status": "系统状态", + "Analytics": "", + "Playout History": "播出历史", + "History Templates": "历史记录模板", + "Listener Stats": "收听状态", + "Show Listener Stats": "", + "Help": "帮助", + "Getting Started": "基本用法", + "User Manual": "用户手册", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "你没有访问该资源的权限", + "You are not allowed to access this resource. ": "你没有访问该资源的权限", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "请求错误。没有提供‘模式’参数。", + "Bad request. 'mode' parameter is invalid": "请求错误。提供的‘模式’参数无效。", + "You don't have permission to disconnect source.": "你没有断开输入源的权限。", + "There is no source connected to this input.": "没有连接上的输入源。", + "You don't have permission to switch source.": "你没有切换的权限。", + "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s不存在", + "Something went wrong.": "未知错误。", + "Preview": "预览", + "Add to Playlist": "添加到播放列表", + "Add to Smart Block": "添加到智能模块", + "Delete": "删除", + "Edit...": "", + "Download": "下载", + "Duplicate Playlist": "复制播放列表", + "Duplicate Smartblock": "", + "No action available": "没有操作选择", + "You don't have permission to delete selected items.": "你没有删除选定项目的权限。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s的副本", + "Please make sure admin user/password is correct on Settings->Streams page.": "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。", + "Audio Player": "音频播放器", + "Something went wrong!": "", + "Recording:": "录制:", + "Master Stream": "主输入源", + "Live Stream": "节目定制输入源", + "Nothing Scheduled": "没有安排节目内容", + "Current Show:": "当前节目:", + "Current": "当前的", + "You are running the latest version": "你已经在使用最新版", + "New version available: ": "版本有更新:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "添加到播放列表", + "Add to current smart block": "添加到只能模块", + "Adding 1 Item": "添加1项", + "Adding %s Items": "添加%s项", + "You can only add tracks to smart blocks.": "智能模块只能添加声音文件。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "播放列表只能添加声音文件,只能模块和网络流媒体。", + "Please select a cursor position on timeline.": "请在右部的时间表视图中选择一个游标位置。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "添加", + "New": "", + "Edit": "编辑", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "移除", + "Edit Metadata": "编辑元数据", + "Add to selected show": "添加到所选的节目", + "Select": "选择", + "Select this page": "选择此页", + "Deselect this page": "取消整页", + "Deselect all": "全部取消", + "Are you sure you want to delete the selected item(s)?": "确定删除选择的项?", + "Scheduled": "已安排进日程", + "Tracks": "", + "Playlist": "", + "Title": "标题", + "Creator": "作者", + "Album": "专辑", + "Bit Rate": "比特率", + "BPM": "每分钟拍子数", + "Composer": "作曲", + "Conductor": "指挥", + "Copyright": "版权", + "Encoded By": "编曲", + "Genre": "风格", + "ISRC": "ISRC码", + "Label": "标签", + "Language": "语种", + "Last Modified": "最近更新于", + "Last Played": "上次播放于", + "Length": "时长", + "Mime": "MIME信息", + "Mood": "风格", + "Owner": "所有者", + "Replay Gain": "回放增益", + "Sample Rate": "样本率", + "Track Number": "曲目", + "Uploaded": "上传于", + "Website": "网址", + "Year": "年代", + "Loading...": "加载中...", + "All": "全部", + "Files": "文件", + "Playlists": "播放列表", + "Smart Blocks": "智能模块", + "Web Streams": "网络流媒体", + "Unknown type: ": "位置类型:", + "Are you sure you want to delete the selected item?": "确定删除所选项?", + "Uploading in progress...": "正在上传...", + "Retrieving data from the server...": "数据正在从服务器下载中...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "错误代码:", + "Error msg: ": "错误信息:", + "Input must be a positive number": "输入只能为正数", + "Input must be a number": "只允许数字输入", + "Input must be in the format: yyyy-mm-dd": "输入格式应为:年-月-日(yyyy-mm-dd)", + "Input must be in the format: hh:mm:ss.t": "输入格式应为:时:分:秒 (hh:mm:ss.t)", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?", + "Open Media Builder": "打开媒体编辑器", + "please put in a time '00:00:00 (.0)'": "请输入时间‘00:00:00(.0)’", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "你的浏览器不支持这种文件类型:", + "Dynamic block is not previewable": "动态智能模块无法预览", + "Limit to: ": "限制在:", + "Playlist saved": "播放列表已存储", + "Playlist shuffled": "播放列表已经随机化", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。", + "Listener Count on %s: %s": "听众统计%s:%s", + "Remind me in 1 week": "一周以后再提醒我", + "Remind me never": "不再提醒", + "Yes, help Airtime": "是的,帮助Airtime", + "Image must be one of jpg, jpeg, png, or gif": "图像文件格式只能是jpg,jpeg,png或者gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "智能模块已经随机排列", + "Smart block generated and criteria saved": "智能模块已经生成,条件设置已经保存", + "Smart block saved": "智能模块已经保存", + "Processing...": "加载中...", + "Select modifier": "选择操作符", + "contains": "包含", + "does not contain": "不包含", + "is": "是", + "is not": "不是", + "starts with": "起始于", + "ends with": "结束于", + "is greater than": "大于", + "is less than": "小于", + "is in the range": "处于", + "Generate": "开始生成", + "Choose Storage Folder": "选择存储文件夹", + "Choose Folder to Watch": "选择监控的文件夹", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "确定更改存储路径?\n这项操作将从媒体库中删除所有文件!", + "Manage Media Folders": "管理媒体文件夹", + "Are you sure you want to remove the watched folder?": "确定取消该文件夹的监控?", + "This path is currently not accessible.": "指定的路径无法访问。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。", + "Connected to the streaming server": "流服务器已连接", + "The stream is disabled": "输出流已禁用", + "Getting information from the server...": "从服务器加载中...", + "Can not connect to the streaming server": "无法连接流服务器", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。", + "Check this box to automatically switch on Master/Show source upon source connection.": "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。", + "If your Icecast server expects a username of 'source', this field can be left blank.": "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "如果你的流客户端不需要用户名,那么当前项可以留空", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "搜索无结果", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。", + "Specify custom authentication which will work only for this show.": "所设置的自定义认证设置只对当前的节目有效。", + "The show instance doesn't exist anymore!": "此节目已不存在", + "Warning: Shows cannot be re-linked": "注意:节目取消绑定后无法再次绑定", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。", + "Show": "节目", + "Show is empty": "节目内容为空", + "1m": "1分钟", + "5m": "5分钟", + "10m": "10分钟", + "15m": "15分钟", + "30m": "30分钟", + "60m": "60分钟", + "Retreiving data from the server...": "从服务器下载数据中...", + "This show has no scheduled content.": "此节目没有安排内容。", + "This show is not completely filled with content.": "节目内容只填充了一部分。", + "January": "一月", + "February": "二月", + "March": "三月", + "April": "四月", + "May": "五月", + "June": "六月", + "July": "七月", + "August": "八月", + "September": "九月", + "October": "十月", + "November": "十一月", + "December": "十二月", + "Jan": "一月", + "Feb": "二月", + "Mar": "三月", + "Apr": "四月", + "Jun": "六月", + "Jul": "七月", + "Aug": "八月", + "Sep": "九月", + "Oct": "十月", + "Nov": "十一月", + "Dec": "十二月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "周日", + "Monday": "周一", + "Tuesday": "周二", + "Wednesday": "周三", + "Thursday": "周四", + "Friday": "周五", + "Saturday": "周六", + "Sun": "周日", + "Mon": "周一", + "Tue": "周二", + "Wed": "周三", + "Thu": "周四", + "Fri": "周五", + "Sat": "周六", + "Shows longer than their scheduled time will be cut off by a following show.": "超出的节目内容将被随后的节目所取代。", + "Cancel Current Show?": "取消当前的节目?", + "Stop recording current show?": "停止录制当前的节目?", + "Ok": "确定", + "Contents of Show": "浏览节目内容", + "Remove all content?": "清空全部内容?", + "Delete selected item(s)?": "删除选定的项目?", + "Start": "开始", + "End": "结束", + "Duration": "时长", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "切入", + "Cue Out": "切出", + "Fade In": "淡入", + "Fade Out": "淡出", + "Show Empty": "节目无内容", + "Recording From Line In": "从线路输入录制", + "Track preview": "试听媒体", + "Cannot schedule outside a show.": "没有指定节目,无法凭空安排内容。", + "Moving 1 Item": "移动1个项目", + "Moving %s Items": "移动%s个项目", + "Save": "保存", + "Cancel": "取消", + "Fade Editor": "淡入淡出编辑器", + "Cue Editor": "切入切出编辑器", + "Waveform features are available in a browser supporting the Web Audio API": "想要启用波形图功能,需要支持Web Audio API的浏览器。", + "Select all": "全选", + "Select none": "全不选", + "Trim overbooked shows": "", + "Remove selected scheduled items": "移除所选的项目", + "Jump to the current playing track": "跳转到当前播放的项目", + "Jump to Current": "", + "Cancel current show": "取消当前的节目", + "Open library to add or remove content": "打开媒体库,添加或者删除节目内容", + "Add / Remove Content": "添加 / 删除内容", + "in use": "使用中", + "Disk": "磁盘", + "Look in": "查询", + "Open": "打开", + "Admin": "系统管理员", + "DJ": "节目编辑", + "Program Manager": "节目主管", + "Guest": "游客", + "Guests can do the following:": "游客的权限包括:", + "View schedule": "显示节目日程", + "View show content": "显示节目内容", + "DJs can do the following:": "节目编辑的权限包括:", + "Manage assigned show content": "为指派的节目管理节目内容", + "Import media files": "导入媒体文件", + "Create playlists, smart blocks, and webstreams": "创建播放列表,智能模块和网络流媒体", + "Manage their own library content": "管理媒体库中属于自己的内容", + "Program Managers can do the following:": "", + "View and manage show content": "查看和管理节目内容", + "Schedule shows": "安排节目日程", + "Manage all library content": "管理媒体库的所有内容", + "Admins can do the following:": "管理员的权限包括:", + "Manage preferences": "属性管理", + "Manage users": "管理用户", + "Manage watched folders": "管理监控文件夹", + "Send support feedback": "提交反馈意见", + "View system status": "显示系统状态", + "Access playout history": "查看播放历史", + "View listener stats": "显示收听统计数据", + "Show / hide columns": "显示/隐藏栏", + "Columns": "", + "From {from} to {to}": "从{from}到{to}", + "kbps": "千比特每秒", + "yyyy-mm-dd": "年-月-日", + "hh:mm:ss.t": "时:分:秒", + "kHz": "千赫兹", + "Su": "周天", + "Mo": "周一", + "Tu": "周二", + "We": "周三", + "Th": "周四", + "Fr": "周五", + "Sa": "周六", + "Close": "关闭", + "Hour": "小时", + "Minute": "分钟", + "Done": "设定", + "Select files": "选择文件", + "Add files to the upload queue and click the start button.": "添加需要上传的文件到传输队列中,然后点击开始上传。", + "Filename": "", + "Size": "", + "Add Files": "添加文件", + "Stop Upload": "停止上传", + "Start upload": "开始上传", + "Start Upload": "", + "Add files": "添加文件", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "已经上传%d/%d个文件", + "N/A": "未知", + "Drag files here.": "拖拽文件到此处。", + "File extension error.": "文件后缀名出错。", + "File size error.": "文件大小出错。", + "File count error.": "发生文件统计错误。", + "Init error.": "发生初始化错误。", + "HTTP Error.": "发生HTTP类型的错误", + "Security error.": "发生安全性错误。", + "Generic error.": "发生通用类型的错误。", + "IO error.": "输入输出错误。", + "File: %s": "文件:%s", + "%d files queued": "队列中有%d个文件", + "File: %f, size: %s, max file size: %m": "文件:%f,大小:%s,最大的文件大小:%m", + "Upload URL might be wrong or doesn't exist": "用于上传的地址有误或者不存在", + "Error: File too large: ": "错误:文件过大:", + "Error: Invalid file extension: ": "错误:无效的文件后缀名:", + "Set Default": "设为默认", + "Create Entry": "创建项目", + "Edit History Record": "编辑历史记录", + "No Show": "无节目", + "Copied %s row%s to the clipboard": "复制%s行%s到剪贴板", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "描述", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "启用", + "Disabled": "禁用", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "邮件发送失败。请检查邮件服务器设置,并确定设置无误。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "用户名或密码错误,请重试。", + "You are viewing an older version of %s": "你所查看的%s已更改", + "You cannot add tracks to dynamic blocks.": "动态智能模块不能添加声音文件。", + "You don't have permission to delete selected %s(s).": "你没有删除所选%s的权限。", + "You can only add tracks to smart block.": "智能模块只能添加媒体文件。", + "Untitled Playlist": "未命名的播放列表", + "Untitled Smart Block": "未命名的智能模块", + "Unknown Playlist": "位置播放列表", + "Preferences updated.": "属性已更新。", + "Stream Setting Updated.": "流设置已更新。", + "path should be specified": "请指定路径", + "Problem with Liquidsoap...": "Liquidsoap出错...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "节目%s是节目%s的重播,时间是%s", + "Select cursor": "选择游标", + "Remove cursor": "删除游标", + "show does not exist": "节目不存在", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "用户已添加成功!", + "User updated successfully!": "用于已成功更新!", + "Settings updated successfully!": "设置更新成功!", + "Untitled Webstream": "未命名的网络流媒体", + "Webstream saved.": "网络流媒体已保存。", + "Invalid form values.": "无效的表格内容。", + "Invalid character entered": "输入的字符不合要求", + "Day must be specified": "请指定天", + "Time must be specified": "请指定时间", + "Must wait at least 1 hour to rebroadcast": "至少间隔一个小时", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "使用自定义的用户认证:", + "Custom Username": "自定义用户名", + "Custom Password": "自定义密码", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "请填写用户名", + "Password field cannot be empty.": "请填写密码", + "Record from Line In?": "从线路输入录制?", + "Rebroadcast?": "重播?", + "days": "天", + "Link:": "绑定:", + "Repeat Type:": "类型:", + "weekly": "每周", + "every 2 weeks": "每隔2周", + "every 3 weeks": "每隔3周", + "every 4 weeks": "每隔4周", + "monthly": "每月", + "Select Days:": "选择天数:", + "Repeat By:": "重复类型:", + "day of the month": "按月的同一日期", + "day of the week": "一个星期的同一日子", + "Date End:": "结束日期:", + "No End?": "无休止?", + "End date must be after start date": "结束日期应晚于开始日期", + "Please select a repeat day": "请选择在哪一天重复", + "Background Colour:": "背景色:", + "Text Colour:": "文字颜色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名字:", + "Untitled Show": "未命名节目", + "URL:": "链接地址:", + "Genre:": "风格:", + "Description:": "描述:", + "Instance Description:": "", + "'%value%' does not fit the time format 'HH:mm'": "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "时长:", + "Timezone:": "时区", + "Repeats?": "是否设置为系列节目?", + "Cannot create show in the past": "节目不能设置为过去的时间", + "Cannot modify start date/time of the show that is already started": "节目已经启动,无法修改开始时间/日期", + "End date/time cannot be in the past": "节目结束的时间或日期不能设置为过去的时间", + "Cannot have duration < 0m": "节目时长不能小于0", + "Cannot have duration 00h 00m": "节目时长不能为0", + "Cannot have duration greater than 24h": "节目时长不能超过24小时", + "Cannot schedule overlapping shows": "节目时间设置与其他节目有冲突", + "Search Users:": "查找用户:", + "DJs:": "选择节目编辑:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "用户名:", + "Password:": "密码:", + "Verify Password:": "再次输入密码:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "电邮:", + "Mobile Phone:": "手机:", + "Skype:": "Skype帐号:", + "Jabber:": "Jabber帐号:", + "User Type:": "用户类型:", + "Login name is not unique.": "帐号重名。", + "Delete All Tracks in Library": "", + "Date Start:": "开始日期:", + "Title:": "歌曲名:", + "Creator:": "作者:", + "Album:": "专辑名:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年份:", + "Label:": "标签:", + "Composer:": "编曲:", + "Conductor:": "制作:", + "Mood:": "情怀:", + "BPM:": "拍子(BPM):", + "Copyright:": "版权:", + "ISRC Number:": "ISRC编号:", + "Website:": "网站:", + "Language:": "语言:", + "Publish...": "", + "Start Time": "开始时间", + "End Time": "结束时间", + "Interface Timezone:": "用户界面使用的时区:", + "Station Name": "电台名称", + "Station Description": "", + "Station Logo:": "电台标志:", + "Note: Anything larger than 600x600 will be resized.": "注意:大于600x600的图片将会被缩放", + "Default Crossfade Duration (s):": "默认混合淡入淡出效果(秒):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "默认淡入效果(秒):", + "Default Fade Out (s):": "默认淡出效果(秒):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "系统使用的时区", + "Week Starts On": "一周开始于", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "登录", + "Password": "密码", + "Confirm new password": "确认新密码", + "Password confirmation does not match your password.": "新密码不匹配", + "Email": "", + "Username": "用户名", + "Reset password": "重置密码", + "Back": "", + "Now Playing": "直播室", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "我的全部节目:", + "My Shows": "", + "Select criteria": "选择属性", + "Bit Rate (Kbps)": "比特率(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "样本率(KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "小时", + "minutes": "分钟", + "items": "个数", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "动态", + "Static": "静态", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "保存条件设置并生成播放列表内容", + "Shuffle playlist content": "随机打乱歌曲次序", + "Shuffle": "随机", + "Limit cannot be empty or smaller than 0": "限制的设置不能比0小", + "Limit cannot be more than 24 hrs": "限制的设置不能大于24小时", + "The value should be an integer": "值只能为整数", + "500 is the max item limit value you can set": "最多只能允许500条内容", + "You must select Criteria and Modifier": "条件和操作符不能为空", + "'Length' should be in '00:00:00' format": "‘长度’格式应该为‘00:00:00’", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "应该为数字", + "The value should be less then 2147483648": "不能大于2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "不能小于%s个字符", + "Value cannot be empty": "不能为空", + "Stream Label:": "流标签:", + "Artist - Title": "歌手 - 歌名", + "Show - Artist - Title": "节目 - 歌手 - 歌名", + "Station name - Show name": "电台名 - 节目名", + "Off Air Metadata": "非直播状态下的输出流元数据", + "Enable Replay Gain": "启用回放增益", + "Replay Gain Modifier": "回放增益调整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "启用:", + "Mobile:": "", + "Stream Type:": "流格式:", + "Bit Rate:": "比特率:", + "Service Type:": "服务类型:", + "Channels:": "声道:", + "Server": "服务器", + "Port": "端口号", + "Mount Point": "加载点", + "Name": "名字", + "URL": "链接地址", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "导入文件夹:", + "Watched Folders:": "监控文件夹:", + "Not a valid Directory": "无效的路径", + "Value is required and can't be empty": "不能为空", + "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname", + "'%value%' does not fit the date format '%format%'": "'%value%' 不符合格式要求: '%format%'", + "'%value%' is less than %min% characters long": "'%value%' 小于最小长度要求 %min% ", + "'%value%' is more than %max% characters long": "'%value%' 大于最大长度要求 %max%", + "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' 应该介于 '%min%' 和 '%max%'之间", + "Passwords do not match": "两次密码输入不匹配", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "切入点和切出点均为空", + "Can't set cue out to be greater than file length.": "切出点不能超出文件原长度", + "Can't set cue in to be larger than cue out.": "切入点不能晚于切出点", + "Can't set cue out to be smaller than cue in.": "切出点不能早于切入点", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "选择国家", + "livestream": "", + "Cannot move items out of linked shows": "不能从绑定的节目系列里移出项目", + "The schedule you're viewing is out of date! (sched mismatch)": "当前节目内容表(内容部分)需要刷新", + "The schedule you're viewing is out of date! (instance mismatch)": "当前节目内容表(节目已更改)需要刷新", + "The schedule you're viewing is out of date!": "当前节目内容需要刷新!", + "You are not allowed to schedule show %s.": "没有赋予修改节目 %s 的权限。", + "You cannot add files to recording shows.": "录音节目不能添加别的内容。", + "The show %s is over and cannot be scheduled.": "节目%s已结束,不能在添加任何内容。", + "The show %s has been previously updated!": "节目%s已经更改,需要刷新后再尝试。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "某个选中的文件不存在。", + "Shows can have a max length of 24 hours.": "节目时长只能设置在24小时以内", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "节目时间设置于其他的节目有冲突。\n提示:修改系列节目中的一个,将影响整个节目系列", + "Rebroadcast of %s from %s": "%s是%s的重播", + "Length needs to be greater than 0 minutes": "节目时长必须大于0分钟", + "Length should be of form \"00h 00m\"": "时间的格式应该是 \"00h 00m\"", + "URL should be of form \"https://example.org\"": "地址的格式应该是 \"https://example.org\"", + "URL should be 512 characters or less": "地址的最大长度不能超过512字节", + "No MIME type found for webstream.": "这个媒体流不存在MIME属性,无法添加", + "Webstream name cannot be empty": "媒体流的名字不能为空", + "Could not parse XSPF playlist": "发现XSPF格式的播放列表,但是格式错误", + "Could not parse PLS playlist": "发现PLS格式的播放列表,但是格式错误", + "Could not parse M3U playlist": "发现M3U格式的播放列表,但是格式错误", + "Invalid webstream - This appears to be a file download.": "媒体流格式错误,当前“媒体流”只是一个可下载的文件", + "Unrecognized stream type: %s": "未知的媒体流格式: %s", + "Record file doesn't exist": "录制文件不存在", + "View Recorded File Metadata": "查看录制文件的元数据", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "编辑节目", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "没有编辑权限", + "Can't drag and drop repeating shows": "系列中的节目无法拖拽", + "Can't move a past show": "已经结束的节目无法更改时间", + "Can't move show into past": "节目不能设置到已过去的时间点", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "录音和重播节目之间的间隔必须大于等于1小时。", + "Show was deleted because recorded show does not exist!": "录音节目不存在,节目已删除!", + "Must wait 1 hour to rebroadcast.": "重播节目必须设置于1小时之后。", + "Track": "曲目", + "Played": "已播放", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" +} diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index deafb17b90..7ea7603932 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -8,11 +8,12 @@ import { loadFonts } from "./webfontloader"; import vuetify from "./vuetify"; import router from "../router"; +import i18n from "./vuei18n"; // Types import type { App } from "vue"; export function registerPlugins(app: App) { loadFonts(); - app.use(vuetify).use(router); + app.use(vuetify).use(router).use(i18n); } diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts new file mode 100644 index 0000000000..1151d26649 --- /dev/null +++ b/webapp/src/plugins/vuei18n.ts @@ -0,0 +1,56 @@ +import { createI18n } from "vue-i18n"; + +import csCZ from "../locale/cs_CZ.json"; +import deAT from "../locale/de_AT.json"; +import deDE from "../locale/de_DE.json"; +import elGR from "../locale/el_GR.json"; +import enCA from "../locale/en_CA.json"; +import enGB from "../locale/en_GB.json"; +import enUS from "../locale/en_US.json"; +import esES from "../locale/es_ES.json"; +import frFR from "../locale/fr_FR.json"; +import hrHR from "../locale/hr_HR.json"; +import huHU from "../locale/hu_HU.json"; +import itIT from "../locale/it_IT.json"; +import jaJP from "../locale/ja_JP.json"; +import koKR from "../locale/ko_KR.json"; +import nlNL from "../locale/nl_NL.json"; +import plPL from "../locale/nl_NL.json"; +import ptBR from "../locale/pt_BR.json"; +import ruRU from "../locale/ru_RU.json"; +import srRS from "../locale/sr_RS.json"; +import trTR from "../locale/tr_TR.json"; +import ukUA from "../locale/uk_UA.json"; +import zhCN from "../locale/zh_CN.json"; + +const i18n = createI18n({ + legacy: false, + locale: "en_US", + fallbackLocale: "en_US", + messages: { + csCZ, + deAT, + deDE, + elGR, + enCA, + enGB, + enUS, + esES, + frFR, + hrHR, + huHU, + itIT, + jaJP, + koKR, + nlNL, + plPL, + ptBR, + ruRU, + srRS, + trTR, + ukUA, + zhCN, + }, +}); + +export default i18n; From 906a99a37773c081dbee744bbf97c97122c0b043 Mon Sep 17 00:00:00 2001 From: zklosko Date: Mon, 22 May 2023 21:56:51 -0400 Subject: [PATCH 27/70] !broken chore: config vite for vue-i18n --- webapp/package.json | 1 + webapp/tsconfig.json | 1 + webapp/vite.config.ts | 5 + webapp/yarn.lock | 245 ++++++++++++++++++++++++++++++++++++++++-- 4 files changed, 241 insertions(+), 11 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index bc3a00a38d..5516e929ea 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -25,6 +25,7 @@ }, "devDependencies": { "@babel/types": "^7.21.4", + "@intlify/unplugin-vue-i18n": "^0.10.0", "@storybook/addon-essentials": "^7.0.11", "@storybook/addon-interactions": "^7.0.11", "@storybook/addon-links": "^7.0.11", diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json index aa6f0fddef..8bb3298e59 100644 --- a/webapp/tsconfig.json +++ b/webapp/tsconfig.json @@ -13,6 +13,7 @@ "lib": ["ESNext", "DOM"], "skipLibCheck": true, "noEmit": true, + "types": ["@intlify/unplugin-vue-i18n/messages"], "paths": { "@/*": [ "src/*" diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 17bac022bd..1d8f557828 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -1,10 +1,12 @@ // Plugins import vue from '@vitejs/plugin-vue' import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' +import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'; // Utilities import { defineConfig } from 'vite' import { fileURLToPath, URL } from 'node:url' +import path from 'path' // https://vitejs.dev/config/ export default defineConfig({ @@ -16,6 +18,9 @@ export default defineConfig({ vuetify({ autoImport: true, }), + VueI18nPlugin({ + include: [path.resolve(__dirname, './src/locale/*.json')], + }) ], define: { 'process.env': {} }, resolve: { diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 22469cffd7..0942d94742 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -1213,6 +1213,21 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@intlify/bundle-utils@^5.4.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@intlify/bundle-utils/-/bundle-utils-5.5.0.tgz#ae69f2cc319aa19dd22a5e758753ee72208de06d" + integrity sha512-k5xe8oAoPXiH6unXvyyyCRbq+LtLn1tSi/6r5f6mF+MsX7mcOMtgYbyAQINsjFrf7EDu5Pg4BY00VWSt8bI9XQ== + dependencies: + "@intlify/message-compiler" "9.3.0-beta.17" + "@intlify/shared" "9.3.0-beta.17" + acorn "^8.8.2" + escodegen "^2.0.0" + estree-walker "^2.0.2" + jsonc-eslint-parser "^1.0.1" + magic-string "^0.30.0" + source-map "0.6.1" + yaml-eslint-parser "^0.3.2" + "@intlify/core-base@9.2.2": version "9.2.2" resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz#5353369b05cc9fe35cab95fe20afeb8a4481f939" @@ -1238,11 +1253,42 @@ "@intlify/shared" "9.2.2" source-map "0.6.1" +"@intlify/message-compiler@9.3.0-beta.17": + version "9.3.0-beta.17" + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.3.0-beta.17.tgz#be9ca3a617926b3bbd8ab80dd354a1bb57969ef1" + integrity sha512-i7hvVIRk1Ax2uKa9xLRJCT57to08OhFMhFXXjWN07rmx5pWQYQ23MfX1xgggv9drnWTNhqEiD+u4EJeHoS5+Ww== + dependencies: + "@intlify/shared" "9.3.0-beta.17" + source-map "0.6.1" + "@intlify/shared@9.2.2": version "9.2.2" resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz#5011be9ca2b4ab86f8660739286e2707f9abb4a5" integrity sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q== +"@intlify/shared@9.3.0-beta.17": + version "9.3.0-beta.17" + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.3.0-beta.17.tgz#1180dcb0b30741555fad0b62e4621802e8272ee5" + integrity sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ== + +"@intlify/unplugin-vue-i18n@^0.10.0": + version "0.10.0" + resolved "https://registry.yarnpkg.com/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.10.0.tgz#28a05a7b9e0a7cc35e91e6762e5e6e57f954a45c" + integrity sha512-Sf8fe26/d8rBNcg+zBSb7RA1uyhrG9zhIM+CRX6lqcznMDjLRr/1tuVaJ9E6xqJkzjfPgRzNcCqwMt6rpNkL7Q== + dependencies: + "@intlify/bundle-utils" "^5.4.0" + "@intlify/shared" "9.3.0-beta.17" + "@rollup/pluginutils" "^5.0.2" + "@vue/compiler-sfc" "^3.2.47" + debug "^4.3.3" + fast-glob "^3.2.12" + js-yaml "^4.1.0" + json5 "^2.2.3" + pathe "^1.0.0" + picocolors "^1.0.0" + source-map "0.6.1" + unplugin "^1.1.0" + "@intlify/vue-devtools@9.2.2": version "9.2.2" resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz#b95701556daf7ebb3a2d45aa3ae9e6415aed8317" @@ -1403,6 +1449,15 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@rollup/pluginutils@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz#012b8f53c71e4f6f9cb317e311df1404f56e7a33" + integrity sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^2.3.1" + "@sinclair/typebox@^0.25.16": version "0.25.24" resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" @@ -2197,6 +2252,11 @@ resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9" integrity sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g== +"@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== + "@types/express-serve-static-core@^4.17.33": version "4.17.34" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz#c119e85b75215178bc127de588e93100698ab4cc" @@ -2662,6 +2722,16 @@ estree-walker "^2.0.2" source-map-js "^1.0.2" +"@vue/compiler-core@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz#7fbf591c1c19e1acd28ffd284526e98b4f581128" + integrity sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g== + dependencies: + "@babel/parser" "^7.21.3" + "@vue/shared" "3.3.4" + estree-walker "^2.0.2" + source-map-js "^1.0.2" + "@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.2.0", "@vue/compiler-dom@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz#2012ef4879375a4ca4ee68012a9256398b848af2" @@ -2670,6 +2740,14 @@ "@vue/compiler-core" "3.3.2" "@vue/shared" "3.3.2" +"@vue/compiler-dom@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" + integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== + dependencies: + "@vue/compiler-core" "3.3.4" + "@vue/shared" "3.3.4" + "@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.2.0", "@vue/compiler-sfc@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz#d6467acba8446655bcee7e751441232e5ddebcbf" @@ -2686,6 +2764,22 @@ postcss "^8.1.10" source-map-js "^1.0.2" +"@vue/compiler-sfc@^3.2.47": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" + integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== + dependencies: + "@babel/parser" "^7.20.15" + "@vue/compiler-core" "3.3.4" + "@vue/compiler-dom" "3.3.4" + "@vue/compiler-ssr" "3.3.4" + "@vue/reactivity-transform" "3.3.4" + "@vue/shared" "3.3.4" + estree-walker "^2.0.2" + magic-string "^0.30.0" + postcss "^8.1.10" + source-map-js "^1.0.2" + "@vue/compiler-ssr@3.3.2": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.2.tgz#75ac4ccafa2d78c91d2e257ad243c86409493cc4" @@ -2694,6 +2788,14 @@ "@vue/compiler-dom" "3.3.2" "@vue/shared" "3.3.2" +"@vue/compiler-ssr@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz#9d1379abffa4f2b0cd844174ceec4a9721138777" + integrity sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ== + dependencies: + "@vue/compiler-dom" "3.3.4" + "@vue/shared" "3.3.4" + "@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.5.0": version "6.5.0" resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" @@ -2719,6 +2821,17 @@ estree-walker "^2.0.2" magic-string "^0.30.0" +"@vue/reactivity-transform@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz#52908476e34d6a65c6c21cd2722d41ed8ae51929" + integrity sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw== + dependencies: + "@babel/parser" "^7.20.15" + "@vue/compiler-core" "3.3.4" + "@vue/shared" "3.3.4" + estree-walker "^2.0.2" + magic-string "^0.30.0" + "@vue/reactivity@3.3.2", "@vue/reactivity@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.2.tgz#c4ddc5087039070c0c11810f6bc1aa59c99f0cb5" @@ -2756,6 +2869,11 @@ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.2.tgz#774cd9b4635ce801b70a3fc3713779a5ef5d77c3" integrity sha512-0rFu3h8JbclbnvvKrs7Fe5FNGV9/5X2rPD7KmOzhLSUAiQH5//Hq437Gv0fR5Mev3u/nbtvmLl8XgwCU20/ZfQ== +"@vue/shared@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" + integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== + "@vuetify/loader-shared@^1.7.1": version "1.7.1" resolved "https://registry.yarnpkg.com/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz#0f63a3d41b6df29a2db1ff438aa1819b237c37a3" @@ -2779,17 +2897,17 @@ accepts@~1.3.5, accepts@~1.3.8: mime-types "~2.1.34" negotiator "0.6.3" -acorn-jsx@^5.3.2: +acorn-jsx@^5.2.0, acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@^7.1.1: +acorn@^7.1.1, acorn@^7.4.1: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.8.0: +acorn@^8.8.0, acorn@^8.8.2: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== @@ -3685,7 +3803,7 @@ deep-equal@^2.0.5: which-collection "^1.0.1" which-typed-array "^1.1.9" -deep-is@^0.1.3: +deep-is@^0.1.3, deep-is@~0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== @@ -3965,6 +4083,18 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +escodegen@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" + integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + dependencies: + esprima "^4.0.1" + estraverse "^5.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + eslint-plugin-storybook@^0.6.12: version "0.6.12" resolved "https://registry.yarnpkg.com/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.12.tgz#7bdb3392bb03bebde40ed19accfd61246e9d6301" @@ -4012,6 +4142,18 @@ eslint-scope@^7.1.1, eslint-scope@^7.2.0: esrecurse "^4.3.0" estraverse "^5.2.0" +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" @@ -4063,6 +4205,15 @@ eslint@^8.0.0: strip-json-comments "^3.1.0" text-table "^0.2.0" +espree@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + espree@^9.3.1, espree@^9.5.2: version "9.5.2" resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" @@ -4072,7 +4223,7 @@ espree@^9.3.1, espree@^9.5.2: acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" -esprima@^4.0.0, esprima@~4.0.0: +esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== @@ -4236,7 +4387,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.2.9: +fast-glob@^3.2.12, fast-glob@^3.2.9: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== @@ -4252,7 +4403,7 @@ fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@^2.0.6: +fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== @@ -5354,11 +5505,22 @@ json-stringify-safe@~5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.2: +json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jsonc-eslint-parser@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz#8cbe99f6f5199acbc5a823c4c0b6135411027fa6" + integrity sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg== + dependencies: + acorn "^7.4.1" + eslint-utils "^2.1.0" + eslint-visitor-keys "^1.3.0" + espree "^6.0.0" + semver "^6.3.0" + jsonfile@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" @@ -5423,6 +5585,14 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" @@ -5479,7 +5649,7 @@ lodash.once@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== -lodash@^4.17.15, lodash@^4.17.21: +lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -5920,6 +6090,18 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" +optionator@^0.8.1: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -6046,7 +6228,7 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pathe@^1.1.0: +pathe@^1.0.0, pathe@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== @@ -6145,6 +6327,11 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + prettier@^2.8.0, prettier@^2.8.8: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" @@ -7238,6 +7425,13 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + type-fest@2.19.0, type-fest@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" @@ -7368,6 +7562,16 @@ unplugin@^0.10.2: webpack-sources "^3.2.3" webpack-virtual-modules "^0.4.5" +unplugin@^1.1.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.3.1.tgz#7af993ba8695d17d61b0845718380caf6af5109f" + integrity sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw== + dependencies: + acorn "^8.8.2" + chokidar "^3.5.3" + webpack-sources "^3.2.3" + webpack-virtual-modules "^0.5.0" + untildify@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" @@ -7611,6 +7815,11 @@ webpack-virtual-modules@^0.4.5: resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== +webpack-virtual-modules@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz#362f14738a56dae107937ab98ea7062e8bdd3b6c" + integrity sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" @@ -7683,7 +7892,7 @@ with@^7.0.0: assert-never "^1.2.1" babel-walk "3.0.0-canary-5" -word-wrap@^1.2.3: +word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== @@ -7765,6 +7974,20 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml-eslint-parser@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-0.3.2.tgz#c7f5f3904f1c06ad55dc7131a731b018426b4898" + integrity sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg== + dependencies: + eslint-visitor-keys "^1.3.0" + lodash "^4.17.20" + yaml "^1.10.0" + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From 9b90b3d9910b3311050aacd6ed6c901b2706f837 Mon Sep 17 00:00:00 2001 From: zklosko Date: Mon, 22 May 2023 22:12:38 -0400 Subject: [PATCH 28/70] !broken chore: cleaning up translation formatting --- webapp/src/locale/cs_CZ.json | 12 ++++++------ webapp/src/locale/de_AT.json | 12 ++++++------ webapp/src/locale/de_DE.json | 12 ++++++------ webapp/src/locale/el_GR.json | 12 ++++++------ webapp/src/locale/en_CA.json | 12 ++++++------ webapp/src/locale/en_GB.json | 12 ++++++------ webapp/src/locale/en_US.json | 12 ++++++------ webapp/src/locale/es_ES.json | 12 ++++++------ webapp/src/locale/fr_FR.json | 12 ++++++------ webapp/src/locale/hr_HR.json | 12 ++++++------ webapp/src/locale/hu_HU.json | 12 ++++++------ webapp/src/locale/it_IT.json | 12 ++++++------ webapp/src/locale/ja_JP.json | 12 ++++++------ webapp/src/locale/ko_KR.json | 12 ++++++------ webapp/src/locale/nl_NL.json | 12 ++++++------ webapp/src/locale/pl_PL.json | 12 ++++++------ webapp/src/locale/pt_BR.json | 12 ++++++------ webapp/src/locale/ru_RU.json | 12 ++++++------ webapp/src/locale/sr_RS.json | 12 ++++++------ webapp/src/locale/tr_TR.json | 12 ++++++------ webapp/src/locale/uk_UA.json | 12 ++++++------ webapp/src/locale/zh_CN.json | 12 ++++++------ 22 files changed, 132 insertions(+), 132 deletions(-) diff --git a/webapp/src/locale/cs_CZ.json b/webapp/src/locale/cs_CZ.json index fc674ae73f..9fc1665cea 100644 --- a/webapp/src/locale/cs_CZ.json +++ b/webapp/src/locale/cs_CZ.json @@ -683,7 +683,7 @@ "Genre:": "Žánr:", "Description:": "Popis:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Sledované složky:", "Not a valid Directory": "Neplatný adresář", "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", - "'%value%' is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", - "'%value%' is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", + "{msg} is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", + "{msg} is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", + "{msg} is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", "Passwords do not match": "Hesla se neshodují", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/de_AT.json b/webapp/src/locale/de_AT.json index d36f11bc65..d05e3a23a1 100644 --- a/webapp/src/locale/de_AT.json +++ b/webapp/src/locale/de_AT.json @@ -683,7 +683,7 @@ "Genre:": "Genre:", "Description:": "Beschreibung:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Überwachte Verzeichnisse:", "Not a valid Directory": "Kein gültiges Verzeichnis", "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", - "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", - "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Standardformat local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", + "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", + "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", "Passwords do not match": "Passwörter stimmen nicht überein", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/de_DE.json b/webapp/src/locale/de_DE.json index 967277da98..3ac6693ea6 100644 --- a/webapp/src/locale/de_DE.json +++ b/webapp/src/locale/de_DE.json @@ -683,7 +683,7 @@ "Genre:": "Genre:", "Description:": "Beschreibung:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ist nicht im Format 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Überwachte Verzeichnisse:", "Not a valid Directory": "Kein gültiges Verzeichnis", "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'", - "'%value%' is less than %min% characters long": "'%value%' ist kürzer als %min% Zeichen lang", - "'%value%' is more than %max% characters long": "'%value%' ist mehr als %max% Zeichen lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' liegt nicht zwischen '%min%' und '%max%'", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} entspricht nicht dem erforderlichen Datumsformat '%format%'", + "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", + "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", "Passwords do not match": "Passwörter stimmen nicht überein", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/el_GR.json b/webapp/src/locale/el_GR.json index c50d83d4c7..68d7f81fd8 100644 --- a/webapp/src/locale/el_GR.json +++ b/webapp/src/locale/el_GR.json @@ -683,7 +683,7 @@ "Genre:": "Είδος:", "Description:": "Περιγραφή:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", + "{msg} does not fit the time format 'HH:mm'": "{msg} δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", "Not a valid Directory": "Μη έγκυρο Ευρετήριο", "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", - "'%value%' is less than %min% characters long": "'%value%' είναι λιγότερο από %min% χαρακτήρες ", - "'%value%' is more than %max% characters long": "'%value%' είναι περισσότερο από %max% χαρακτήρες ", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", + "{msg} is less than %min% characters long": "{msg} είναι λιγότερο από %min% χαρακτήρες ", + "{msg} is more than %max% characters long": "{msg} είναι περισσότερο από %max% χαρακτήρες ", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} δεν είναι μεταξύ '%min%' και '%max%', συνολικά", "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/en_CA.json b/webapp/src/locale/en_CA.json index a67c36986d..8399b91aa1 100644 --- a/webapp/src/locale/en_CA.json +++ b/webapp/src/locale/en_CA.json @@ -683,7 +683,7 @@ "Genre:": "Genre:", "Description:": "Description:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Watched Folders:", "Not a valid Directory": "Not a valid Directory", "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", "Passwords do not match": "Passwords do not match", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/en_GB.json b/webapp/src/locale/en_GB.json index ff92eec3af..0ae64ab10e 100644 --- a/webapp/src/locale/en_GB.json +++ b/webapp/src/locale/en_GB.json @@ -683,7 +683,7 @@ "Genre:": "Genre:", "Description:": "Description:", "Instance Description:": "Instance Description:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", "Start Time:": "Start Time:", "In the Future:": "In the Future:", "End Time:": "End Time:", @@ -874,11 +874,11 @@ "Watched Folders:": "Watched Folders:", "Not a valid Directory": "Not a valid Directory", "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", "Passwords do not match": "Passwords do not match", "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", diff --git a/webapp/src/locale/en_US.json b/webapp/src/locale/en_US.json index e0ec5d34c3..b2e7f5594c 100644 --- a/webapp/src/locale/en_US.json +++ b/webapp/src/locale/en_US.json @@ -683,7 +683,7 @@ "Genre:": "Genre:", "Description:": "Description:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' does not fit the time format 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Watched Folders:", "Not a valid Directory": "Not a valid Directory", "Value is required and can't be empty": "Value is required and can't be empty", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is no valid email address in the basic format local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' does not fit the date format '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is less than %min% characters long", - "'%value%' is more than %max% characters long": "'%value%' is more than %max% characters long", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is not between '%min%' and '%max%', inclusively", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", "Passwords do not match": "Passwords do not match", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/es_ES.json b/webapp/src/locale/es_ES.json index 56a9827cf9..e6128c3ff6 100644 --- a/webapp/src/locale/es_ES.json +++ b/webapp/src/locale/es_ES.json @@ -683,7 +683,7 @@ "Genre:": "Género:", "Description:": "Descripción:", "Instance Description:": "Descripcin de instancia:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' no concuerda con el formato de tiempo 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} no concuerda con el formato de tiempo 'HH:mm'", "Start Time:": "Hora de inicio:", "In the Future:": "En el Futuro:", "End Time:": "Hora de fin:", @@ -874,11 +874,11 @@ "Watched Folders:": "Carpetas monitorizadas:", "Not a valid Directory": "No es un directorio válido", "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' no se ajusta al formato de fecha '%format%'", - "'%value%' is less than %min% characters long": "'%value%' tiene menos de %min% caracteres", - "'%value%' is more than %max% characters long": "'%value%' tiene más de %max% caracteres", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' no está entre '%min%' y '%max%', inclusive", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} no es una dirección de correo electrónico válida en el formato básico local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} no se ajusta al formato de fecha '%format%'", + "{msg} is less than %min% characters long": "{msg} tiene menos de %min% caracteres", + "{msg} is more than %max% characters long": "{msg} tiene más de %max% caracteres", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} no está entre '%min%' y '%max%', inclusive", "Passwords do not match": "Las contraseñas no coinciden", "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", diff --git a/webapp/src/locale/fr_FR.json b/webapp/src/locale/fr_FR.json index 0b6ccdaa4b..1075ae1a05 100644 --- a/webapp/src/locale/fr_FR.json +++ b/webapp/src/locale/fr_FR.json @@ -683,7 +683,7 @@ "Genre:": "Genre :", "Description:": "Description :", "Instance Description:": "Description de l'instance :", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' ne correspond pas au format de durée 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} ne correspond pas au format de durée 'HH:mm'", "Start Time:": "Heure de début :", "In the Future:": "À venir :", "End Time:": "Temps de fin :", @@ -874,11 +874,11 @@ "Watched Folders:": "Répertoires Surveillés :", "Not a valid Directory": "N'est pas un Répertoire valide", "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", - "'%value%' is no valid email address in the basic format local-part@hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine", - "'%value%' does not fit the date format '%format%'": "'%value%' ne correspond pas au format de la date '%format%'", - "'%value%' is less than %min% characters long": "'%value%' est inférieur à %min% charactères", - "'%value%' is more than %max% characters long": "'%value%' est plus grand de %min% charactères", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' n'est pas entre '%min%' et '%max%', inclusivement", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale{'@'}nomdedomaine", + "{msg} does not fit the date format '%format%'": "{msg} ne correspond pas au format de la date '%format%'", + "{msg} is less than %min% characters long": "{msg} est inférieur à %min% charactères", + "{msg} is more than %max% characters long": "{msg} est plus grand de %min% charactères", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} n'est pas entre '%min%' et '%max%', inclusivement", "Passwords do not match": "Les mots de passe ne correspondent pas", "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", diff --git a/webapp/src/locale/hr_HR.json b/webapp/src/locale/hr_HR.json index 7847c3c1b0..7acc48489c 100644 --- a/webapp/src/locale/hr_HR.json +++ b/webapp/src/locale/hr_HR.json @@ -683,7 +683,7 @@ "Genre:": "Žanr:", "Description:": "Opis:", "Instance Description:": "Opis instance:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} se ne uklapa u vremenskom formatu 'HH:mm'", "Start Time:": "Vrijeme početka:", "In the Future:": "Ubuduće:", "End Time:": "Vrijeme završetka:", @@ -874,11 +874,11 @@ "Watched Folders:": "Mape praćenja:", "Not a valid Directory": "Nije ispravan direktorij", "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' ne odgovara po obliku datuma '%format%'", - "'%value%' is less than %min% characters long": "'%value%' je manji od %min% dugačko znakova", - "'%value%' is more than %max% characters long": "'%value%' je više od %max% dugačko znakova", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nije između '%min%' i '%max%', uključivo", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nije valjana e-mail adresa u osnovnom obliku local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} ne odgovara po obliku datuma '%format%'", + "{msg} is less than %min% characters long": "{msg} je manji od %min% dugačko znakova", + "{msg} is more than %max% characters long": "{msg} je više od %max% dugačko znakova", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nije između '%min%' i '%max%', uključivo", "Passwords do not match": "Lozinke se ne podudaraju", "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/hu_HU.json b/webapp/src/locale/hu_HU.json index 4a39fe9429..7be6d9948d 100644 --- a/webapp/src/locale/hu_HU.json +++ b/webapp/src/locale/hu_HU.json @@ -683,7 +683,7 @@ "Genre:": "Műfaj:", "Description:": "Leírás:", "Instance Description:": "Példány leírása:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' nem illeszkedik „ÓÓ:pp” formátumra", + "{msg} does not fit the time format 'HH:mm'": "{msg} nem illeszkedik „ÓÓ:pp” formátumra", "Start Time:": "Kezdési Idő:", "In the Future:": "A jövőben:", "End Time:": "Befejezési idő:", @@ -874,11 +874,11 @@ "Watched Folders:": "Figyelt Mappák:", "Not a valid Directory": "Érvénytelen könyvtár", "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)", - "'%value%' does not fit the date format '%format%'": "'%value%' nem illeszkedik '%format%' dátumformátumra", - "'%value%' is less than %min% characters long": "'%value%' rövidebb, mint %min% karakter", - "'%value%' is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' értéknek '%min%' és '%max%' között kell lennie", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nem felel meg az email címek alapvető formátumának (név{'@'}hosztnév)", + "{msg} does not fit the date format '%format%'": "{msg} nem illeszkedik '%format%' dátumformátumra", + "{msg} is less than %min% characters long": "{msg} rövidebb, mint %min% karakter", + "{msg} is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} értéknek '%min%' és '%max%' között kell lennie", "Passwords do not match": "A jelszavak nem egyeznek meg", "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", diff --git a/webapp/src/locale/it_IT.json b/webapp/src/locale/it_IT.json index b49b8c8e16..d5a642f1ef 100644 --- a/webapp/src/locale/it_IT.json +++ b/webapp/src/locale/it_IT.json @@ -683,7 +683,7 @@ "Genre:": "Genere:", "Description:": "Descrizione:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' non si adatta al formato dell'ora 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} non si adatta al formato dell'ora 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Folder visionati:", "Not a valid Directory": "Catalogo non valido", "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' non va bene con il formato data '%formato%'", - "'%value%' is less than %min% characters long": "'%value%' è più corto di %min% caratteri", - "'%value%' is more than %max% characters long": "'%value%' è più lungo di %max% caratteri", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' non è tra '%min%' e '%max%' compresi", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} non è valido l'indirizzo e-mail nella forma base local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} non va bene con il formato data '%formato%'", + "{msg} is less than %min% characters long": "{msg} è più corto di %min% caratteri", + "{msg} is more than %max% characters long": "{msg} è più lungo di %max% caratteri", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} non è tra '%min%' e '%max%' compresi", "Passwords do not match": "", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/ja_JP.json b/webapp/src/locale/ja_JP.json index 06b2ae8a2d..9676bef32b 100644 --- a/webapp/src/locale/ja_JP.json +++ b/webapp/src/locale/ja_JP.json @@ -683,7 +683,7 @@ "Genre:": "ジャンル:", "Description:": "説明:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%'は、'01:22'の形式に適合していません", + "{msg} does not fit the time format 'HH:mm'": "{msg}は、'01:22'の形式に適合していません", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "同期フォルダ:", "Not a valid Directory": "正しいディレクトリではありません。", "Value is required and can't be empty": "値を入力してください", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。", - "'%value%' does not fit the date format '%format%'": "'%value%'は、'%format%'の日付形式に一致しません。", - "'%value%' is less than %min% characters long": "'%value%'は、%min%文字より短くなっています。", - "'%value%' is more than %max% characters long": "'%value%'は、%max%文字を越えています。", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}は無効なEメールアドレスです。local-part{'@'}hostnameの形式に沿ったEメールアドレスを登録してください。", + "{msg} does not fit the date format '%format%'": "{msg}は、'%format%'の日付形式に一致しません。", + "{msg} is less than %min% characters long": "{msg}は、%min%文字より短くなっています。", + "{msg} is more than %max% characters long": "{msg}は、%max%文字を越えています。", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg}は、'%min%'以上'%max%'以下の条件に一致しません。", "Passwords do not match": "パスワードが一致しません。", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/ko_KR.json b/webapp/src/locale/ko_KR.json index d9bf741f60..59d02187a3 100644 --- a/webapp/src/locale/ko_KR.json +++ b/webapp/src/locale/ko_KR.json @@ -683,7 +683,7 @@ "Genre:": "장르:", "Description:": "설명:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다.", + "{msg} does not fit the time format 'HH:mm'": "{msg}은 시간 형식('HH:mm')에 맞지 않습니다.", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "모니터중인 폴더", "Not a valid Directory": "옳치 않은 폴더 입니다", "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%'은 맞지 않는 이메일 형식 입니다.", - "'%value%' does not fit the date format '%format%'": "'%value%'은 날짜 형식('%format%')에 맞지 않습니다.", - "'%value%' is less than %min% characters long": "'%value%'는 %min%글자 보다 짧을수 없습니다", - "'%value%' is more than %max% characters long": "'%value%'는 %max%글자 보다 길수 없습니다", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다.", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}은 맞지 않는 이메일 형식 입니다.", + "{msg} does not fit the date format '%format%'": "{msg}은 날짜 형식('%format%')에 맞지 않습니다.", + "{msg} is less than %min% characters long": "{msg}는 %min%글자 보다 짧을수 없습니다", + "{msg} is more than %max% characters long": "{msg}는 %max%글자 보다 길수 없습니다", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg}은 '%min%'와 '%max%' 사이에 있지 않습니다.", "Passwords do not match": "암호가 맞지 않습니다", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/nl_NL.json b/webapp/src/locale/nl_NL.json index 2d6766c4e7..eb7ba785dc 100644 --- a/webapp/src/locale/nl_NL.json +++ b/webapp/src/locale/nl_NL.json @@ -683,7 +683,7 @@ "Genre:": "genre:", "Description:": "Omschrijving:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' past niet de tijdnotatie 'UU:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} past niet de tijdnotatie 'UU:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Gecontroleerde mappen:", "Not a valid Directory": "Niet een geldige map", "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam", - "'%value%' does not fit the date format '%format%'": "'%value%' past niet in de datumnotatie '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is minder dan %min% tekens lang", - "'%value%' is more than %max% characters long": "'%value%' is meer dan %max% karakters lang", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' is niet tussen '%min%' en '%max%', inclusief", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is geen geldig e-mailadres in de basis formaat lokale-onderdeel {'@'} hostnaam", + "{msg} does not fit the date format '%format%'": "{msg} past niet in de datumnotatie '%format%'", + "{msg} is less than %min% characters long": "{msg} is minder dan %min% tekens lang", + "{msg} is more than %max% characters long": "{msg} is meer dan %max% karakters lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is niet tussen '%min%' en '%max%', inclusief", "Passwords do not match": "Wachtwoorden komen niet overeen.", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/pl_PL.json b/webapp/src/locale/pl_PL.json index 390bfa45c8..41a4c1b33d 100644 --- a/webapp/src/locale/pl_PL.json +++ b/webapp/src/locale/pl_PL.json @@ -683,7 +683,7 @@ "Genre:": "Rodzaj:", "Description:": "Opis:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Katalogi obserwowane:", "Not a valid Directory": "Nieprawidłowy katalog", "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' nie pasuje do formatu daty '%format%'", - "'%value%' is less than %min% characters long": "'%value%' zawiera mniej niż %min% znaków", - "'%value%' is more than %max% characters long": "'%value%' zawiera więcej niż %max% znaków", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nie jest poprawnym adresem email w podstawowym formacie local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} nie pasuje do formatu daty '%format%'", + "{msg} is less than %min% characters long": "{msg} zawiera mniej niż %min% znaków", + "{msg} is more than %max% characters long": "{msg} zawiera więcej niż %max% znaków", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nie zawiera się w przedziale od '%min%' do '%max%'", "Passwords do not match": "Hasła muszą się zgadzać", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/pt_BR.json b/webapp/src/locale/pt_BR.json index 48ec734853..4a364df781 100644 --- a/webapp/src/locale/pt_BR.json +++ b/webapp/src/locale/pt_BR.json @@ -683,7 +683,7 @@ "Genre:": "Gênero:", "Description:": "Descrição:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' não corresponde ao formato 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} não corresponde ao formato 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Diretórios Monitorados: ", "Not a valid Directory": "Não é um diretório válido", "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", - "'%value%' is no valid email address in the basic format local-part@hostname": "%value%' não é um enderçeo de email válido", - "'%value%' does not fit the date format '%format%'": "'%value%' não corresponde a uma data válida '%format%'", - "'%value%' is less than %min% characters long": "'%value%' is menor que comprimento mínimo %min% de caracteres", - "'%value%' is more than %max% characters long": "'%value%' is maior que o número máximo %max% de caracteres", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' não está compreendido entre '%min%' e '%max%', inclusive", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "%value%' não é um enderçeo de email válido", + "{msg} does not fit the date format '%format%'": "{msg} não corresponde a uma data válida '%format%'", + "{msg} is less than %min% characters long": "{msg} is menor que comprimento mínimo %min% de caracteres", + "{msg} is more than %max% characters long": "{msg} is maior que o número máximo %max% de caracteres", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} não está compreendido entre '%min%' e '%max%', inclusive", "Passwords do not match": "Senhas não conferem", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/ru_RU.json b/webapp/src/locale/ru_RU.json index eff689b515..9932c7b617 100644 --- a/webapp/src/locale/ru_RU.json +++ b/webapp/src/locale/ru_RU.json @@ -683,7 +683,7 @@ "Genre:": "Жанр:", "Description:": "Описание:", "Instance Description:": "Описание экземпляра:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' не соответствует формату времени 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} не соответствует формату времени 'HH:mm'", "Start Time:": "Время начала:", "In the Future:": "В будущем:", "End Time:": "Время завершения:", @@ -874,11 +874,11 @@ "Watched Folders:": "Просматриваемые папки:", "Not a valid Directory": "Не является допустимой папкой", "Value is required and can't be empty": "Поля не могут быть пустыми", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не является действительным адресом электронной почты в формате local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не соответствует формату даты '%format%'", - "'%value%' is less than %min% characters long": "'%value%' имеет менее %min% символов", - "'%value%' is more than %max% characters long": "'%value%' имеет более %max% символов", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не входит в промежуток '%min%' и '%max%', включительно", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не является действительным адресом электронной почты в формате local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не соответствует формату даты '%format%'", + "{msg} is less than %min% characters long": "{msg} имеет менее %min% символов", + "{msg} is more than %max% characters long": "{msg} имеет более %max% символов", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не входит в промежуток '%min%' и '%max%', включительно", "Passwords do not match": "Пароли не совпадают", "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", diff --git a/webapp/src/locale/sr_RS.json b/webapp/src/locale/sr_RS.json index 95b31f0f25..3715bf614a 100644 --- a/webapp/src/locale/sr_RS.json +++ b/webapp/src/locale/sr_RS.json @@ -683,7 +683,7 @@ "Genre:": "Жанр:", "Description:": "Опис:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' се не уклапа у временском формату 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} се не уклапа у временском формату 'HH:mm'", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "Мапе Под Надзором:", "Not a valid Directory": "Не важећи Директоријум", "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не одговара по облику датума '%format%'", - "'%value%' is less than %min% characters long": "'%value%' је мањи од %min% дугачко знакова", - "'%value%' is more than %max% characters long": "'%value%' је више од %max% дугачко знакова", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' није између '%min%' и '%max%', укључиво", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} није ваљана е-маил адреса у основном облику local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не одговара по облику датума '%format%'", + "{msg} is less than %min% characters long": "{msg} је мањи од %min% дугачко знакова", + "{msg} is more than %max% characters long": "{msg} је више од %max% дугачко знакова", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} није између '%min%' и '%max%', укључиво", "Passwords do not match": "Лозинке се не подударају", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/tr_TR.json b/webapp/src/locale/tr_TR.json index 661c5a353c..e98f802261 100644 --- a/webapp/src/locale/tr_TR.json +++ b/webapp/src/locale/tr_TR.json @@ -683,7 +683,7 @@ "Genre:": "Tür:", "Description:": "Açıklama:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' değeri 'HH:mm' saat formatına uymuyor", + "{msg} does not fit the time format 'HH:mm'": "{msg} değeri 'HH:mm' saat formatına uymuyor", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "İzlenen Klasörler:", "Not a valid Directory": "Geçerli bir Klasör değil.", "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres", - "'%value%' does not fit the date format '%format%'": "'%value%' değeri '%format%' zaman formatına uymuyor", - "'%value%' is less than %min% characters long": "'%value%' değeri olması gereken '%min%' karakterden daha az", - "'%value%' is more than %max% characters long": "'%value%' değeri olması gereken '%max%' karakterden daha fazla", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} kullanici{'@'}site.com yapısına uymayan geçersiz bir adres", + "{msg} does not fit the date format '%format%'": "{msg} değeri '%format%' zaman formatına uymuyor", + "{msg} is less than %min% characters long": "{msg} değeri olması gereken '%min%' karakterden daha az", + "{msg} is more than %max% characters long": "{msg} değeri olması gereken '%max%' karakterden daha fazla", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} değeri '%min%' ve '%max%' değerleri arasında değil", "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", diff --git a/webapp/src/locale/uk_UA.json b/webapp/src/locale/uk_UA.json index 6b0aa933ee..3491f145c3 100644 --- a/webapp/src/locale/uk_UA.json +++ b/webapp/src/locale/uk_UA.json @@ -683,7 +683,7 @@ "Genre:": "Жанр:", "Description:": "Опис:", "Instance Description:": "Опис екземпляру:", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' не відповідає часовому формату 'HH:mm'", + "{msg} does not fit the time format 'HH:mm'": "{msg} не відповідає часовому формату 'HH:mm'", "Start Time:": "Час початку:", "In the Future:": "У майбутньому:", "End Time:": "Час закінчення:", @@ -874,11 +874,11 @@ "Watched Folders:": "Переглянути папки:", "Not a valid Directory": "Недійсний каталог", "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' не є дійсною електронною адресою в форматі local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' не відповідає формату дати '%format%'", - "'%value%' is less than %min% characters long": "'%value%' є меншим ніж %min% довжина символів", - "'%value%' is more than %max% characters long": "'%value%' це більше ніж %max% довжина символів", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' не знаходиться між '%min%' і '%max%', включно", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не є дійсною електронною адресою в форматі local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не відповідає формату дати '%format%'", + "{msg} is less than %min% characters long": "{msg} є меншим ніж %min% довжина символів", + "{msg} is more than %max% characters long": "{msg} це більше ніж %max% довжина символів", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не знаходиться між '%min%' і '%max%', включно", "Passwords do not match": "Паролі не співпадають", "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", diff --git a/webapp/src/locale/zh_CN.json b/webapp/src/locale/zh_CN.json index a29afff7c6..b4d8b0ed9f 100644 --- a/webapp/src/locale/zh_CN.json +++ b/webapp/src/locale/zh_CN.json @@ -683,7 +683,7 @@ "Genre:": "风格:", "Description:": "描述:", "Instance Description:": "", - "'%value%' does not fit the time format 'HH:mm'": "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’", + "{msg} does not fit the time format 'HH:mm'": "{msg} 不符合形如 '小时:分'的格式要求,例如,‘01:59’", "Start Time:": "", "In the Future:": "", "End Time:": "", @@ -874,11 +874,11 @@ "Watched Folders:": "监控文件夹:", "Not a valid Directory": "无效的路径", "Value is required and can't be empty": "不能为空", - "'%value%' is no valid email address in the basic format local-part@hostname": "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname", - "'%value%' does not fit the date format '%format%'": "'%value%' 不符合格式要求: '%format%'", - "'%value%' is less than %min% characters long": "'%value%' 小于最小长度要求 %min% ", - "'%value%' is more than %max% characters long": "'%value%' 大于最大长度要求 %max%", - "'%value%' is not between '%min%' and '%max%', inclusively": "'%value%' 应该介于 '%min%' 和 '%max%'之间", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} 不是合法的电邮地址,应该类似于 local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} 不符合格式要求: '%format%'", + "{msg} is less than %min% characters long": "{msg} 小于最小长度要求 %min% ", + "{msg} is more than %max% characters long": "{msg} 大于最大长度要求 %max%", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} 应该介于 '%min%' 和 '%max%'之间", "Passwords do not match": "两次密码输入不匹配", "Hi %s, \n\nPlease click this link to reset your password: ": "", "\n\nIf you have any problems, please contact our support team: %s": "", From 07b08b81fde6836041a5aa094a6458dd1029a59c Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 09:39:29 -0400 Subject: [PATCH 29/70] chore: adding eslintignore --- webapp/.eslintignore | 26 ++++++++++++++++++++++++++ webapp/package.json | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 webapp/.eslintignore diff --git a/webapp/.eslintignore b/webapp/.eslintignore new file mode 100644 index 0000000000..3e71f86772 --- /dev/null +++ b/webapp/.eslintignore @@ -0,0 +1,26 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +.eslintrc.js +src/vite-env.d.ts \ No newline at end of file diff --git a/webapp/package.json b/webapp/package.json index 5516e929ea..ddfe892fb4 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -5,7 +5,7 @@ "dev": "vite", "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", - "lint": "eslint . --fix --ignore-path .gitignore", + "lint": "eslint . --fix --ignore-path .eslintignore", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "prettier": "prettier --write src", From 42ca1c98c76036f881d760a8bad0f68bc71766e6 Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 09:56:45 -0400 Subject: [PATCH 30/70] chore: config eslint, run linter --- webapp/.eslintrc.js | 6 ++ webapp/cypress.config.ts | 2 +- webapp/src/main.ts | 8 +-- webapp/src/plugins/index.ts | 14 ++-- webapp/src/plugins/vuei18n.ts | 100 +++++++++++++-------------- webapp/src/plugins/vuetify.ts | 22 +++--- webapp/src/plugins/webfontloader.ts | 16 ++--- webapp/src/router/index.ts | 36 +++++----- webapp/src/stories/Button.stories.ts | 56 +++++++-------- webapp/src/stories/Header.stories.ts | 48 ++++++------- webapp/src/stories/Page.stories.ts | 44 ++++++------ webapp/vite.config.ts | 28 ++++---- 12 files changed, 189 insertions(+), 191 deletions(-) diff --git a/webapp/.eslintrc.js b/webapp/.eslintrc.js index 69af297b51..ea86ef7537 100644 --- a/webapp/.eslintrc.js +++ b/webapp/.eslintrc.js @@ -21,5 +21,11 @@ module.exports = { "@typescript-eslint" ], "rules": { + "quotes": ["error", "single"], + "array-bracket-spacing": ["error", "never"], + "array-bracket-newline": ["error", "never"], + "no-mixed-spaces-and-tabs": "error", + "no-trailing-spaces": "error", + "indent": ["error", 2] } } diff --git a/webapp/cypress.config.ts b/webapp/cypress.config.ts index 17161e32e0..aecc0dd24d 100644 --- a/webapp/cypress.config.ts +++ b/webapp/cypress.config.ts @@ -1,4 +1,4 @@ -import { defineConfig } from "cypress"; +import { defineConfig } from 'cypress'; export default defineConfig({ e2e: { diff --git a/webapp/src/main.ts b/webapp/src/main.ts index 27e2d0cefd..62278a32f3 100644 --- a/webapp/src/main.ts +++ b/webapp/src/main.ts @@ -5,16 +5,16 @@ */ // Components -import App from "./App.vue"; +import App from './App.vue'; // Composables -import { createApp } from "vue"; +import { createApp } from 'vue'; // Plugins -import { registerPlugins } from "@/plugins"; +import { registerPlugins } from '@/plugins'; const app = createApp(App); registerPlugins(app); -app.mount("#app"); +app.mount('#app'); diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index 7ea7603932..08560bb399 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -5,15 +5,15 @@ */ // Plugins -import { loadFonts } from "./webfontloader"; -import vuetify from "./vuetify"; -import router from "../router"; -import i18n from "./vuei18n"; +import { loadFonts } from './webfontloader'; +import vuetify from './vuetify'; +import router from '../router'; +import i18n from './vuei18n'; // Types -import type { App } from "vue"; +import type { App } from 'vue'; export function registerPlugins(app: App) { - loadFonts(); - app.use(vuetify).use(router).use(i18n); + loadFonts(); + app.use(vuetify).use(router).use(i18n); } diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts index 1151d26649..8516925b91 100644 --- a/webapp/src/plugins/vuei18n.ts +++ b/webapp/src/plugins/vuei18n.ts @@ -1,56 +1,56 @@ -import { createI18n } from "vue-i18n"; +import { createI18n } from 'vue-i18n'; -import csCZ from "../locale/cs_CZ.json"; -import deAT from "../locale/de_AT.json"; -import deDE from "../locale/de_DE.json"; -import elGR from "../locale/el_GR.json"; -import enCA from "../locale/en_CA.json"; -import enGB from "../locale/en_GB.json"; -import enUS from "../locale/en_US.json"; -import esES from "../locale/es_ES.json"; -import frFR from "../locale/fr_FR.json"; -import hrHR from "../locale/hr_HR.json"; -import huHU from "../locale/hu_HU.json"; -import itIT from "../locale/it_IT.json"; -import jaJP from "../locale/ja_JP.json"; -import koKR from "../locale/ko_KR.json"; -import nlNL from "../locale/nl_NL.json"; -import plPL from "../locale/nl_NL.json"; -import ptBR from "../locale/pt_BR.json"; -import ruRU from "../locale/ru_RU.json"; -import srRS from "../locale/sr_RS.json"; -import trTR from "../locale/tr_TR.json"; -import ukUA from "../locale/uk_UA.json"; -import zhCN from "../locale/zh_CN.json"; +import csCZ from '../locale/cs_CZ.json'; +import deAT from '../locale/de_AT.json'; +import deDE from '../locale/de_DE.json'; +import elGR from '../locale/el_GR.json'; +import enCA from '../locale/en_CA.json'; +import enGB from '../locale/en_GB.json'; +import enUS from '../locale/en_US.json'; +import esES from '../locale/es_ES.json'; +import frFR from '../locale/fr_FR.json'; +import hrHR from '../locale/hr_HR.json'; +import huHU from '../locale/hu_HU.json'; +import itIT from '../locale/it_IT.json'; +import jaJP from '../locale/ja_JP.json'; +import koKR from '../locale/ko_KR.json'; +import nlNL from '../locale/nl_NL.json'; +import plPL from '../locale/nl_NL.json'; +import ptBR from '../locale/pt_BR.json'; +import ruRU from '../locale/ru_RU.json'; +import srRS from '../locale/sr_RS.json'; +import trTR from '../locale/tr_TR.json'; +import ukUA from '../locale/uk_UA.json'; +import zhCN from '../locale/zh_CN.json'; const i18n = createI18n({ - legacy: false, - locale: "en_US", - fallbackLocale: "en_US", - messages: { - csCZ, - deAT, - deDE, - elGR, - enCA, - enGB, - enUS, - esES, - frFR, - hrHR, - huHU, - itIT, - jaJP, - koKR, - nlNL, - plPL, - ptBR, - ruRU, - srRS, - trTR, - ukUA, - zhCN, - }, + legacy: false, + locale: 'en_US', + fallbackLocale: 'en_US', + messages: { + csCZ, + deAT, + deDE, + elGR, + enCA, + enGB, + enUS, + esES, + frFR, + hrHR, + huHU, + itIT, + jaJP, + koKR, + nlNL, + plPL, + ptBR, + ruRU, + srRS, + trTR, + ukUA, + zhCN, + }, }); export default i18n; diff --git a/webapp/src/plugins/vuetify.ts b/webapp/src/plugins/vuetify.ts index 50ab328af4..ee9d432528 100644 --- a/webapp/src/plugins/vuetify.ts +++ b/webapp/src/plugins/vuetify.ts @@ -5,22 +5,22 @@ */ // Styles -import "@mdi/font/css/materialdesignicons.css"; -import "vuetify/styles"; +import '@mdi/font/css/materialdesignicons.css'; +import 'vuetify/styles'; // Composables -import { createVuetify } from "vuetify"; +import { createVuetify } from 'vuetify'; // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides export default createVuetify({ - theme: { - themes: { - light: { - colors: { - primary: "#1867C0", - secondary: "#5CBBF6", - }, - }, + theme: { + themes: { + light: { + colors: { + primary: '#1867C0', + secondary: '#5CBBF6', }, + }, }, + }, }); diff --git a/webapp/src/plugins/webfontloader.ts b/webapp/src/plugins/webfontloader.ts index e88214bd71..ff9a74d917 100644 --- a/webapp/src/plugins/webfontloader.ts +++ b/webapp/src/plugins/webfontloader.ts @@ -5,13 +5,13 @@ */ export async function loadFonts() { - const webFontLoader = await import( - /* webpackChunkName: "webfontloader" */ "webfontloader" - ); + const webFontLoader = await import( + /* webpackChunkName: "webfontloader" */ 'webfontloader' + ); - webFontLoader.load({ - google: { - families: ["Roboto:100,300,400,500,700,900&display=swap"], - }, - }); + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }); } diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index edf8ddb88b..69334f70da 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -1,27 +1,23 @@ // Composables -import { createRouter, createWebHistory } from "vue-router"; +import { createRouter, createWebHistory } from 'vue-router'; -const routes = [ - { - path: "/", - component: () => import("@/layouts/default/Default.vue"), - children: [ - { - path: "", - name: "Home", - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => - import(/* webpackChunkName: "home" */ "@/views/Home.vue"), - }, - ], - }, -]; +const routes = [{ + path: '/', + component: () => import('@/layouts/default/Default.vue'), + children: [{ + path: '', + name: 'Home', + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => + import(/* webpackChunkName: "home" */ '@/views/Home.vue'), + },], +},]; const router = createRouter({ - history: createWebHistory(process.env.BASE_URL), - routes, + history: createWebHistory(process.env.BASE_URL), + routes, }); export default router; diff --git a/webapp/src/stories/Button.stories.ts b/webapp/src/stories/Button.stories.ts index 7c9fb6e17a..c414d4a7b0 100644 --- a/webapp/src/stories/Button.stories.ts +++ b/webapp/src/stories/Button.stories.ts @@ -1,19 +1,19 @@ -import type { Meta, StoryObj } from "@storybook/vue3"; +import type { Meta, StoryObj } from '@storybook/vue3'; -import Button from "./Button.vue"; +import Button from './Button.vue'; // More on how to set up stories at: https://storybook.js.org/docs/vue/writing-stories/introduction const meta = { - title: "Example/Button", - component: Button, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ["autodocs"], - argTypes: { - size: { control: "select", options: ["small", "medium", "large"] }, - backgroundColor: { control: "color" }, - onClick: { action: "clicked" }, - }, - args: { primary: false }, // default value + title: 'Example/Button', + component: Button, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], + argTypes: { + size: { control: 'select', options: ['small', 'medium', 'large'] }, + backgroundColor: { control: 'color' }, + onClick: { action: 'clicked' }, + }, + args: { primary: false }, // default value } satisfies Meta; export default meta; @@ -24,29 +24,29 @@ type Story = StoryObj; * to learn how to use render functions. */ export const Primary: Story = { - args: { - primary: true, - label: "Button", - }, + args: { + primary: true, + label: 'Button', + }, }; export const Secondary: Story = { - args: { - primary: false, - label: "Button", - }, + args: { + primary: false, + label: 'Button', + }, }; export const Large: Story = { - args: { - label: "Button", - size: "large", - }, + args: { + label: 'Button', + size: 'large', + }, }; export const Small: Story = { - args: { - label: "Button", - size: "small", - }, + args: { + label: 'Button', + size: 'small', + }, }; diff --git a/webapp/src/stories/Header.stories.ts b/webapp/src/stories/Header.stories.ts index 2449cc1d59..7a65e2dfb7 100644 --- a/webapp/src/stories/Header.stories.ts +++ b/webapp/src/stories/Header.stories.ts @@ -1,42 +1,42 @@ -import type { Meta, StoryObj } from "@storybook/vue3"; +import type { Meta, StoryObj } from '@storybook/vue3'; -import MyHeader from "./Header.vue"; +import MyHeader from './Header.vue'; const meta = { - /* 👇 The title prop is optional. + /* 👇 The title prop is optional. * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading * to learn how to generate automatic titles */ - title: "Example/Header", - component: MyHeader, - render: (args: any) => ({ - components: { MyHeader }, - setup() { - return { args }; - }, - template: '', - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout - layout: "fullscreen", + title: 'Example/Header', + component: MyHeader, + render: (args: any) => ({ + components: { MyHeader }, + setup() { + return { args }; }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ["autodocs"], + template: '', + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout + layout: 'fullscreen', + }, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], } satisfies Meta; export default meta; type Story = StoryObj; export const LoggedIn: Story = { - args: { - user: { - name: "Jane Doe", - }, + args: { + user: { + name: 'Jane Doe', }, + }, }; export const LoggedOut: Story = { - args: { - user: null, - }, + args: { + user: null, + }, }; diff --git a/webapp/src/stories/Page.stories.ts b/webapp/src/stories/Page.stories.ts index f8b63823ef..e998801581 100644 --- a/webapp/src/stories/Page.stories.ts +++ b/webapp/src/stories/Page.stories.ts @@ -1,20 +1,20 @@ -import type { Meta, StoryObj } from "@storybook/vue3"; -import { within, userEvent } from "@storybook/testing-library"; -import MyPage from "./Page.vue"; +import type { Meta, StoryObj } from '@storybook/vue3'; +import { within, userEvent } from '@storybook/testing-library'; +import MyPage from './Page.vue'; const meta = { - title: "Example/Page", - component: MyPage, - render: () => ({ - components: { MyPage }, - template: "", - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout - layout: "fullscreen", - }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ["autodocs"], + title: 'Example/Page', + component: MyPage, + render: () => ({ + components: { MyPage }, + template: '', + }), + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout + layout: 'fullscreen', + }, + // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs + tags: ['autodocs'], } satisfies Meta; export default meta; @@ -22,13 +22,13 @@ type Story = StoryObj; // More on interaction testing: https://storybook.js.org/docs/vue/writing-tests/interaction-testing export const LoggedIn: Story = { - play: async ({ canvasElement }: any) => { - const canvas = within(canvasElement); - const loginButton = await canvas.getByRole("button", { - name: /Log in/i, - }); - await userEvent.click(loginButton); - }, + play: async ({ canvasElement }: any) => { + const canvas = within(canvasElement); + const loginButton = await canvas.getByRole('button', { + name: /Log in/i, + }); + await userEvent.click(loginButton); + }, }; export const LoggedOut: Story = {}; diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 1d8f557828..9074d22346 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -10,32 +10,28 @@ import path from 'path' // https://vitejs.dev/config/ export default defineConfig({ - plugins: [ - vue({ - template: { transformAssetUrls } - }), - // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin - vuetify({ - autoImport: true, - }), - VueI18nPlugin({ - include: [path.resolve(__dirname, './src/locale/*.json')], - }) - ], + plugins: [vue({ + template: { transformAssetUrls } + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + VueI18nPlugin({ + include: [path.resolve(__dirname, './src/locale/*.json')], + })], define: { 'process.env': {} }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) }, - extensions: [ - '.js', + extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', - '.vue', - ], + '.vue',], }, server: { port: 3000, From c03ef61258d5032704881d8a00206d349db8b562 Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 10:06:00 -0400 Subject: [PATCH 31/70] chore: remove prettier package, cache deps for github actions --- webapp/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/package.json b/webapp/package.json index ddfe892fb4..761438143f 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -44,7 +44,6 @@ "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.13.0", "eslint-plugin-vuetify": "^2.0.0-beta.4", - "prettier": "^2.8.8", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.0.11", From 4590d74779fb4be5519834ef9cf10eb7a5decdaf Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 10:06:33 -0400 Subject: [PATCH 32/70] chore: remove prettier, cache deps for ci --- .github/workflows/webapp.yml | 27 ++++++++------------------- webapp/.prettierignore | 4 ---- webapp/.prettierrc.json | 1 - webapp/prettier.config.js | 6 ------ webapp/yarn.lock | 2 +- 5 files changed, 9 insertions(+), 31 deletions(-) delete mode 100644 webapp/.prettierignore delete mode 100644 webapp/.prettierrc.json delete mode 100644 webapp/prettier.config.js diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index ace7badad7..040779b9f0 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -29,31 +29,16 @@ jobs: - uses: actions/setup-node@v3 with: node-version: "18" + cache: "yarn" + cache-dependency-path: "webapp/yarn.lock" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp - name: Lint run: yarn lint working-directory: webapp - - prettier: - runs-on: ubuntu-latest - strategy: - fail-fast: false - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: "18" - - name: Install packages - run: yarn install --frozen-lockfile - working-directory: webapp - - name: Check code with Prettier - run: yarn prettier:check - working-directory: webapp - - cypress: + + test: runs-on: ubuntu-latest strategy: fail-fast: false @@ -63,6 +48,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: "18" + cache: "yarn" + cache-dependency-path: "webapp/yarn.lock" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp @@ -80,6 +67,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: "18" + cache: "yarn" + cache-dependency-path: "webapp/yarn.lock" - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp diff --git a/webapp/.prettierignore b/webapp/.prettierignore deleted file mode 100644 index 8fd28f8775..0000000000 --- a/webapp/.prettierignore +++ /dev/null @@ -1,4 +0,0 @@ -.storybook -node_modules -dist -public \ No newline at end of file diff --git a/webapp/.prettierrc.json b/webapp/.prettierrc.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/webapp/.prettierrc.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/webapp/prettier.config.js b/webapp/prettier.config.js deleted file mode 100644 index 64bc26083b..0000000000 --- a/webapp/prettier.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - tabWidth: 4, - singleQuote: true, - bracketLine: true, - bracketSpacing: true -} \ No newline at end of file diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 0942d94742..b121d7e4df 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -6332,7 +6332,7 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -prettier@^2.8.0, prettier@^2.8.8: +prettier@^2.8.0: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== From e38eb19a6ea19d77379098c6c29ba1ccdab02057 Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 10:59:34 -0400 Subject: [PATCH 33/70] Update readme.md --- webapp/README.md | 45 ++++++++++++++++----------------------------- 1 file changed, 16 insertions(+), 29 deletions(-) diff --git a/webapp/README.md b/webapp/README.md index 50b30e02e3..1cd5d3c67f 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -1,44 +1,31 @@ -# default +# Libretime Vue UI Development ## Project setup -``` -# yarn -yarn - -# npm -npm install +We use yarn for package management for this Node.js project. If you don't have yarn, install it with -# pnpm -pnpm install ``` - -### Compiles and hot-reloads for development - +npm i -g yarn ``` -# yarn -yarn dev -# npm -npm run dev +## Project commands -# pnpm -pnpm dev ``` +# install all packages +yarn -### Compiles and minifies for production +# start dev enviornment +yarn dev -``` -# yarn +# build yarn build -# npm -npm run build +# run Eslint +yarn lint -# pnpm -pnpm build -``` - -### Customize configuration +# start Storybook runtime +yarn storybook -See [Configuration Reference](https://vitejs.dev/config/). +# run tests with Cypress +yarn cypress:run +``` From 89ca615a009c70a01c6d3acb342f64214e3d58b9 Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 11:01:01 -0400 Subject: [PATCH 34/70] ci: fixing names in github actions runner --- .github/workflows/webapp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index 040779b9f0..29c574fd8d 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -19,7 +19,7 @@ concurrency: cancel-in-progress: true jobs: - lint: + eslint-lint: runs-on: ubuntu-latest strategy: fail-fast: false @@ -38,7 +38,7 @@ jobs: run: yarn lint working-directory: webapp - test: + cypress-test: runs-on: ubuntu-latest strategy: fail-fast: false @@ -72,6 +72,6 @@ jobs: - name: Install packages run: yarn install --frozen-lockfile working-directory: webapp - - name: Lint + - name: Build run: yarn build working-directory: webapp \ No newline at end of file From ef55ac3f646b388332d599a839e3cd81e1daa300 Mon Sep 17 00:00:00 2001 From: zklosko Date: Sat, 27 May 2023 11:04:11 -0400 Subject: [PATCH 35/70] chore: disable video recording in cypress --- webapp/cypress.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/cypress.config.ts b/webapp/cypress.config.ts index aecc0dd24d..b61f69b776 100644 --- a/webapp/cypress.config.ts +++ b/webapp/cypress.config.ts @@ -6,4 +6,5 @@ export default defineConfig({ // implement node event listeners here }, }, + video: false }); From 3cade486140290361faea03fa018929000a91a53 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 11:35:05 -0400 Subject: [PATCH 36/70] feat: global vue-i18n injection --- webapp/src/components/HelloWorld.vue | 8 +-- webapp/src/plugins/vuei18n.ts | 85 ++++++++++++++-------------- 2 files changed, 47 insertions(+), 46 deletions(-) diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index 07431b7952..963da40d9a 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -36,7 +36,7 @@ > - {{ t("Track Types") }} + {{ $t("Track Types") }} @@ -59,7 +59,7 @@ diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts index 8516925b91..69bfc1d1ee 100644 --- a/webapp/src/plugins/vuei18n.ts +++ b/webapp/src/plugins/vuei18n.ts @@ -1,55 +1,56 @@ import { createI18n } from 'vue-i18n'; -import csCZ from '../locale/cs_CZ.json'; -import deAT from '../locale/de_AT.json'; -import deDE from '../locale/de_DE.json'; -import elGR from '../locale/el_GR.json'; -import enCA from '../locale/en_CA.json'; -import enGB from '../locale/en_GB.json'; +// import csCZ from '../locale/cs_CZ.json'; +// import deAT from '../locale/de_AT.json'; +// import deDE from '../locale/de_DE.json'; +// import elGR from '../locale/el_GR.json'; +// import enCA from '../locale/en_CA.json'; +// import enGB from '../locale/en_GB.json'; import enUS from '../locale/en_US.json'; -import esES from '../locale/es_ES.json'; -import frFR from '../locale/fr_FR.json'; -import hrHR from '../locale/hr_HR.json'; -import huHU from '../locale/hu_HU.json'; -import itIT from '../locale/it_IT.json'; -import jaJP from '../locale/ja_JP.json'; -import koKR from '../locale/ko_KR.json'; -import nlNL from '../locale/nl_NL.json'; -import plPL from '../locale/nl_NL.json'; -import ptBR from '../locale/pt_BR.json'; -import ruRU from '../locale/ru_RU.json'; -import srRS from '../locale/sr_RS.json'; -import trTR from '../locale/tr_TR.json'; -import ukUA from '../locale/uk_UA.json'; -import zhCN from '../locale/zh_CN.json'; +// import esES from '../locale/es_ES.json'; +// import frFR from '../locale/fr_FR.json'; +// import hrHR from '../locale/hr_HR.json'; +// import huHU from '../locale/hu_HU.json'; +// import itIT from '../locale/it_IT.json'; +// import jaJP from '../locale/ja_JP.json'; +// import koKR from '../locale/ko_KR.json'; +// import nlNL from '../locale/nl_NL.json'; +// import plPL from '../locale/nl_NL.json'; +// import ptBR from '../locale/pt_BR.json'; +// import ruRU from '../locale/ru_RU.json'; +// import srRS from '../locale/sr_RS.json'; +// import trTR from '../locale/tr_TR.json'; +// import ukUA from '../locale/uk_UA.json'; +// import zhCN from '../locale/zh_CN.json'; const i18n = createI18n({ legacy: false, locale: 'en_US', fallbackLocale: 'en_US', + globalInjection: true, messages: { - csCZ, - deAT, - deDE, - elGR, - enCA, - enGB, + // csCZ, + // deAT, + // deDE, + // elGR, + // enCA, + // enGB, enUS, - esES, - frFR, - hrHR, - huHU, - itIT, - jaJP, - koKR, - nlNL, - plPL, - ptBR, - ruRU, - srRS, - trTR, - ukUA, - zhCN, + // esES, + // frFR, + // hrHR, + // huHU, + // itIT, + // jaJP, + // koKR, + // nlNL, + // plPL, + // ptBR, + // ruRU, + // srRS, + // trTR, + // ukUA, + // zhCN, }, }); From ec8b2d462d4e44606aa09eb90e2f34bfdf7b176b Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 11:35:59 -0400 Subject: [PATCH 37/70] chore: remove legacy po files from webapp --- webapp/src/locale/po/Makefile | 41 - webapp/src/locale/po/README.md | 10 - .../locale/po/cs_CZ/LC_MESSAGES/libretime.po | 4643 --------------- .../locale/po/de_AT/LC_MESSAGES/libretime.po | 4624 --------------- .../locale/po/de_DE/LC_MESSAGES/libretime.po | 4671 --------------- .../locale/po/el_GR/LC_MESSAGES/libretime.po | 4611 --------------- .../locale/po/en_CA/LC_MESSAGES/libretime.po | 4610 --------------- .../locale/po/en_GB/LC_MESSAGES/libretime.po | 4875 ---------------- .../locale/po/en_US/LC_MESSAGES/libretime.po | 4610 --------------- .../locale/po/es_ES/LC_MESSAGES/libretime.po | 5060 ---------------- .../locale/po/fr_FR/LC_MESSAGES/libretime.po | 5151 ----------------- .../locale/po/hr_HR/LC_MESSAGES/libretime.po | 4643 --------------- .../locale/po/hu_HU/LC_MESSAGES/libretime.po | 5030 ---------------- .../locale/po/it_IT/LC_MESSAGES/libretime.po | 4513 --------------- .../locale/po/ja_JP/LC_MESSAGES/libretime.po | 4610 --------------- .../locale/po/ko_KR/LC_MESSAGES/libretime.po | 4517 --------------- webapp/src/locale/po/locale.gen | 21 - .../locale/po/nl_NL/LC_MESSAGES/libretime.po | 4671 --------------- .../locale/po/pl_PL/LC_MESSAGES/libretime.po | 4529 --------------- .../locale/po/pt_BR/LC_MESSAGES/libretime.po | 4529 --------------- .../locale/po/ru_RU/LC_MESSAGES/libretime.po | 5135 ---------------- .../locale/po/sr_RS/LC_MESSAGES/libretime.po | 4609 --------------- .../po/sr_RS@latin/LC_MESSAGES/libretime.po | 4606 --------------- .../locale/po/tr_TR/LC_MESSAGES/libretime.po | 4235 -------------- .../locale/po/uk_UA/LC_MESSAGES/libretime.po | 4669 --------------- .../locale/po/zh_CN/LC_MESSAGES/libretime.po | 4609 --------------- 26 files changed, 107832 deletions(-) delete mode 100644 webapp/src/locale/po/Makefile delete mode 100644 webapp/src/locale/po/README.md delete mode 100644 webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/locale.gen delete mode 100644 webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po delete mode 100644 webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po diff --git a/webapp/src/locale/po/Makefile b/webapp/src/locale/po/Makefile deleted file mode 100644 index 13a33033dc..0000000000 --- a/webapp/src/locale/po/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -.PHONY: .locale-update build -.ONESHELL: - -all: clean build - -SHELL = bash - -DOMAIN = libretime -ISSUE_TRACKER = https://github.com/libretime/libretime/issues -PO_FILE = $(DOMAIN).po -PO_FILES = $(wildcard */LC_MESSAGES/$(PO_FILE)) -MO_FILES = $(PO_FILES:.po=.mo) - -SRC = application build public - -XGETTEXT_ARGS = --default-domain=$(DOMAIN) \ - --msgid-bugs-address=$(ISSUE_TRACKER) \ - --language=php \ - --from-code=UTF-8 \ - --no-wrap \ - --sort-by-file - -MSGMERGE_ARGS = --no-fuzzy-matching \ - --update \ - --no-wrap \ - --sort-by-file - -update: - cd .. - find $(SRC) -name "*.phtml" -o -name "*.php" -type f -print0 | xargs -0 xgettext $(XGETTEXT_ARGS) - sed -i 's/CHARSET/UTF-8/g' $(PO_FILE) - find ./locale -name $(PO_FILE) -exec msgmerge $(MSGMERGE_ARGS) "{}" $(PO_FILE) \; - rm $(PO_FILE) - -%.mo: %.po - msgfmt $< -o $@ - -build: $(MO_FILES) - -clean: - @rm -f $(MO_FILES) diff --git a/webapp/src/locale/po/README.md b/webapp/src/locale/po/README.md deleted file mode 100644 index 34b7649e82..0000000000 --- a/webapp/src/locale/po/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Legacy locales - -To add a new locale, make sure to add/edit the following files: - -- `legacy/application/models/Locale.php` -- `legacy/locale//LC_MESSAGES/libretime.po` -- `legacy/public/js/datatables/i18n/.txt` -- `legacy/public/js/plupload/i18n/.js` - -The `legacy/application/controllers/LocaleController.php` contains additional translations loaded by jquery i18n `$.i18n` and used with `$.i18n._`. diff --git a/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po b/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po deleted file mode 100644 index 9db1dc4436..0000000000 --- a/webapp/src/locale/po/cs_CZ/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4643 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Iva Heilova , 2015 -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Czech (Czech Republic)\n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Rok %s musí být v rozmezí 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s - %s - %s není platné datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s není platný čas" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalendář" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Uživatelé" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streamy" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Stav" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Historie odvysílaného" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Historie nastavení" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Statistiky poslechovost" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Nápověda" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Začínáme" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Návod k obsluze" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Nemáte udělen přístup k tomuto zdroji." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Nemáte udělen přístup k tomuto zdroji. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Soubor neexistuje v %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Špatný požadavek. Žádný 'mode' parametr neprošel." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Špatný požadavek. 'Mode' parametr je neplatný." - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Nemáte oprávnění k odpojení zdroje." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Neexistuje zdroj připojený k tomuto vstupu." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Nemáte oprávnění ke změně zdroje." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nenalezen" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Něco je špatně." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Náhled" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Přidat do Playlistu" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Přidat do chytrého bloku" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Smazat" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Stáhnout" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplikátní Playlist" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Žádná akce není k dispozici" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Nemáte oprávnění odstranit vybrané položky." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopie %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio přehrávač" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Nahrávání:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Mastr stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nic není naplánované" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Stávající vysílání:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Stávající" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Používáte nejnovější verzi" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nová verze k dispozici: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Přidat do aktuálního playlistu" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Přidat do aktuálního chytrého bloku" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Přidat 1 položku" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Přidat %s položek" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Můžete přidat skladby pouze do chytrých bloků." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Prosím vyberte si pozici kurzoru na časové ose." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Přidat" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Upravit" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Odstranit" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Upravit metadata" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Přidat k vybranému vysílání" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Vyberte" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Vyberte tuto stránku" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Zrušte označení této stránky" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Zrušte zaškrtnutí všech" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Jste si jisti, že chcete smazat vybranou položku(y)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Naplánováno" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Název" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Tvůrce" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Rychlost přenosu" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Skladatel" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Autorská práva" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Zakódováno" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Žánr" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Označení " - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Jazyk" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Naposledy změněno" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Naposledy vysíláno" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Délka" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Nálada" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Vlastník" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Opakovat Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Vzorkovací rychlost" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Číslo stopy" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Nahráno" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Internetové stránky" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Rok " - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Nahrávání ..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Vše" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Soubory" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlisty" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Chytré bloky" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Webové streamy" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Neznámý typ: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Jste si jisti, že chcete smazat vybranou položku?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Probíhá nahrávání..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Získávání dat ze serveru..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Chybný kód: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Chyba msg: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Vstup musí být kladné číslo" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Vstup musí být číslo" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Vstup musí být ve formátu: rrrr-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Vstup musí být ve formátu: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Otevřít Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "prosím nastavte čas '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dynamický blok není možno ukázat předem" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Omezeno na: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist uložen" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist zamíchán" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Počítat posluchače %s : %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Připomenout za 1 týden" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Nikdy nepřipomínat" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ano, pomoc Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Obrázek musí být buď jpg, jpeg, png nebo gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Chytré bloky promíchány" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Chytrý blok generován a kritéria uložena" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Chytrý blok uložen" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Zpracovává se..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Vyberte modifikátor" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "obsahuje" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "neobsahuje" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "je" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "není" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "začíná s" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "končí s" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "je větší než" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "je menší než" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "se pohybuje v rozmezí" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generovat" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Vyberte složku k uložení" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Vyberte složku ke sledování" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Jste si jisti, že chcete změnit složku úložiště ?\n" -"Tímto odstraníte soubry z vaší Airtime knihovny!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Správa složek médií" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Jste si jisti, že chcete odstranit sledovanou složku?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Tato cesta není v současné době dostupná." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Připojeno k streamovacímu serveru" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Stream je vypnut" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Získávání informací ze serveru..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Nelze se připojit k streamovacímu serveru" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Upozornění: Nelze změnit toto pole v průběhu vysílání programu" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Žádný výsledek nenalezen" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Ukázka vysílání již neexistuje!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Varování: Vysílání nemohou být znovu linkována." - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show." - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. " - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Vysílání" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Vysílání je prázdné" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Získávání dat ze serveru ..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Toto vysílání nemá naplánovaný obsah." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Toto vysílání není zcela vyplněno." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Leden" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Únor" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Březen" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Duben" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Květen" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Červen" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Červenec" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Srpen" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Září" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Říjen" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Listopad" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Prosinec" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Leden" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Únor" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Březen" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Duben" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Červen" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Červenec" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Srpen" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Září" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Říjen" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Listopad" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Prosinec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Neděle" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Pondělí" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Úterý" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Středa" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Čtvrtek" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Pátek" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Sobota" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Ne" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Po" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Út" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "St" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Čt" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Pá" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "So" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Zrušit aktuální vysílání?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Zastavit nahrávání aktuálního vysílání?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "OK" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Obsah vysílání" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Odstranit veškerý obsah?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Odstranit vybranou položku(y)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Začátek" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Konec" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Trvání" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue in" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Pozvolné zesilování " - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Pozvolné zeslabování" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Vysílání prázdné" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Nahrávání z Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Náhled stopy" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Nelze naplánovat mimo vysílání." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Posunutí 1 položky" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Posunutí %s položek" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Uložit" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Zrušit" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Vybrat vše" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Nic nevybrat" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Odebrat vybrané naplánované položky" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Přejít na aktuálně přehrávanou skladbu" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Zrušit aktuální vysílání" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Otevřít knihovnu pro přidání nebo odebrání obsahu" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Přidat / Odebrat obsah" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "používá se" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Podívat se" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Otevřít" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrátor" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Program manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Host" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Hosté mohou dělat následující:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Zobrazit plán" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Zobrazit obsah vysílání" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJ může dělat následující:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Spravovat přidělený obsah vysílání" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Import media souborů" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Vytvořit playlisty, smart bloky a webstreamy" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Spravovat obsah vlastní knihovny" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Zobrazit a spravovat obsah vysílání" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Plán ukazuje" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Spravovat celý obsah knihovny" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Správci mohou provést následující:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Správa předvoleb" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Správa uživatelů" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Správa sledovaných složek" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Odeslat zpětnou vazbu" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Zobrazit stav systému" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Přístup playout historii" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Zobrazit posluchače statistiky" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Zobrazit / skrýt sloupce" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Z {z} do {do}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "rrrr-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Ne" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Po" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Út" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "St" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Čt" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Pá" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "So" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Zavřít" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hodina" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuta" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Hotovo" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Vyberte soubory" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Přidat soubory." - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Zastavit Nahrávání" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Začít nahrávat" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Přidat soubory" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Nahráno %d / %d souborů" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "Nedostupné" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Soubory přetáhněte zde." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Chybná přípona souboru" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Chybná velikost souboru." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Chybný součet souborů." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Chyba Init." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Chyba HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Chyba zabezpečení." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Obecná chyba. " - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "CHyba IO." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Soubor: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d souborů ve frontě" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Soubor: %f , velikost: %s , max. velikost souboru:% m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Přidané URL může být špatné nebo neexistuje" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Chyba: Soubor je příliš velký: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Chyba: Neplatná přípona souboru: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Nastavit jako default" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Vytvořit vstup" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Editovat historii nahrávky" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Žádné vysílání" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Kopírovat %s řádků %s do schránky" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Popis" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Povoleno" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Vypnuto" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Prohlížíte si starší verzi %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nemůžete přidávat skladby do dynamických bloků." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemáte oprávnění odstranit vybrané %s (s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Můžete pouze přidat skladby do chytrého bloku." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Playlist bez názvu" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Chytrý block bez názvu" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Neznámý Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preference aktualizovány." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Nastavení streamu aktualizováno." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "cesta by měla být specifikována" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problém s Liquidsoap ..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Znovu spustit vysílaní %s od %s na %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Vybrat kurzor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Odstranit kurzor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "vysílání neexistuje" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Uživatel byl úspěšně přidán!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Uživatel byl úspěšně aktualizován!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Nastavení úspěšně aktualizováno!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Webstream bez názvu" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream uložen." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Neplatná forma hodnot." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Zadán neplatný znak " - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Den musí být zadán" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Čas musí být zadán" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Použij %s ověření pravosti:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Použít ověření uživatele:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Uživatelské jméno" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Uživatelské heslo" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Uživatelské jméno musí být zadáno." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Heslo musí být zadáno." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Nahráno z Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Vysílat znovu?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dny" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Typ opakování:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "týdně" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "každé 2 týdny" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "každé 3 týdny" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "každé 4 týdny" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "měsíčně" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Vyberte dny:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Opakovat:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "den v měsíci" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "den v týdnu" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Datum ukončení:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nekončí?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Datum ukončení musí být po počátečním datumu" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Prosím vyberte den opakování" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Barva pozadí:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Barva textu:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Název:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Pořad bez názvu" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Žánr:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Popis:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%hodnota%' nesedí formát času 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Doba trvání:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Časová zó" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Opakovat?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Nelze vytvořit vysílání v minulosti" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Datum/čas ukončení nemůže být v minulosti" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Nelze mít dobu trvání < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Nelze nastavit dobu trvání 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Nelze mít dobu trvání delší než 24 hodin" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Nelze nastavit překrývající se vysílání." - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Hledat uživatele:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Uživatelské jméno:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Heslo:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Ověřit heslo:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Jméno:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Příjmení:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobilní telefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Typ uživatele:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Přihlašovací jméno není jedinečné." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Datum zahájení:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Název:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvůrce:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Rok:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Označení:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Skladatel:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dirigent:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Nálada:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorská práva:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC číslo:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Internetová stránka:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Jazyk:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Čas začátku" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Čas konce" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Časové pásmo uživatelského rozhraní" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Název stanice" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo stanice:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Defoltní nastavení doby plynulého přechodu" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Přednastavení Fade In:" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Přednastavení Fade Out:" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Časové pásmo stanice" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Týden začíná" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Přihlásit" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Heslo" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Potvrďte nové heslo" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Potvrzené heslo neodpovídá vašemu heslu." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Uživatelské jméno" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Obnovit heslo" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Právě se přehrává" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Všechna má vysílání:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Vyberte kritéria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Kvalita (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Vzorkovací frekvence (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "hodiny" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minuty" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "položka" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamický" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statický" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generovat obsah playlistu a uložit kritéria" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Promíchat obsah playlistu" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Promíchat" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nemůže být prázdný nebo menší než 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nemůže být větší než 24 hodin" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Hodnota by měla být celé číslo" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je max hodnota položky, kterou lze nastavit" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Musíte vybrat kritéria a modifikátor" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Délka' by měla být ve formátu '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Hodnota musí být číslo" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Hodnota by měla být menší než 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Hodnota by měla mít méně znaků než %s" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Hodnota nemůže být prázdná" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Označení streamu:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Umělec - Název" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Vysílání - Umělec - Název" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Název stanice - Název vysílání" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Povolit Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifikátor" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Povoleno:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Typ streamu:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit frekvence:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Typ služby:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanály:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Přípojný bod" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Jméno" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Importovaná složka:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Sledované složky:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Neplatný adresář" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Hodnota je požadována a nemůže zůstat prázdná" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%hodnota%' je více než %max% znaků dlouhá" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Hesla se neshodují" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Heslo onboveno" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in a cue out jsou prázné." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Nelze nastavit delší cue out než je délka souboru." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Nelze nastavit větší cue in než cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Nelze nastavit menší cue out než je cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Vyberte zemi" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Nemůže přesunout položky z linkovaných vysílání" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Program, který si prohlížíte, je zastaralý!" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Program který si prohlížíte je zastaralý!" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Program který si prohlížíte je zastaralý! " - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nemáte povoleno plánovat vysílání %s ." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nemůžete přidávat soubory do nahrávaného vysílání." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Vysílání %s skončilo a nemůže být nasazeno." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Vysílání %s bylo již dříve aktualizováno!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Vybraný soubor neexistuje!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Vysílání může mít max. délku 24 hodin." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Nelze naplánovat překrývající se vysílání.\n" -"Poznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Znovu odvysílat %s od %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Délka musí být větší než 0 minut" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Délka by měla mít tvar \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL by měla mít tvar \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL by měla mít 512 znaků nebo méně" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Nenalezen žádný MIME typ pro webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Název webstreamu nemůže být prázdný" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Nelze zpracovat XSPF playlist" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Nelze zpracovat PLS playlist" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Nelze zpracovat M3U playlist" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Neplatný webstream - tento vypadá jako stažení souboru." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Neznámý typ streamu: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Soubor s nahrávkou neexistuje" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Zobrazit nahraný soubor metadat" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Upravit vysílání" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Přístup odepřen" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Nelze přetáhnout opakujícící se vysílání" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Nelze přesunout vysílání z minulosti" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Nelze přesunout vysílání do minulosti" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Musíte počkat 1 hodinu před dalším vysíláním." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Stopa" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Přehráno" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " do " - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s je distribuován pod %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s obsahuje vložený sledovaný adresář: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s neexistuje v seznamu sledovaných." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s je již sledován." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s je vložený do stávajícího sledovaného adresáře: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s není platný adresář." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')." - -#~ msgid "(Required)" -#~ msgstr "(Požadováno)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Webová stránka vaší rádiové stanice)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(pouze pro ověřovací účely, nebude zveřejněno)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "O aplikaci" - -#~ msgid "Add New Field" -#~ msgstr "Přidat nové pole" - -#~ msgid "Add more elements" -#~ msgstr "Přidat elementy" - -#~ msgid "Add this show" -#~ msgstr "Přidat toto vysílání" - -#~ msgid "Additional Options" -#~ msgstr "Dodatečné možnosti" - -#~ msgid "Admin Password" -#~ msgstr "Administrátorské heslo" - -#~ msgid "Admin User" -#~ msgstr "Administrátorské jméno" - -#~ msgid "Advanced Search Options" -#~ msgstr "Rozšířené možnosti hledání" - -#~ msgid "All rights are reserved" -#~ msgstr "Všechna práva jsou vyhrazena" - -#~ msgid "Audio Track" -#~ msgstr "Audio stopa" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s." - -#~ msgid "Choose Days:" -#~ msgstr "Vyberte dny:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Vybrat instanci show" - -#~ msgid "Choose folder" -#~ msgstr "Vyberte soubor" - -#~ msgid "City:" -#~ msgstr "Město:" - -#~ msgid "Clear" -#~ msgstr "Vymazat" - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Klikněte na box níže pro podporu vaší stanice na %s." - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný " - -#~ msgid "Country:" -#~ msgstr "Stát:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Vytvořit soubor přehledu nastavení" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Vytvořit vzor přehledu logů" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons označení" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Nezasahujte do díla" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons nekomerční" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons nekomerční Nezasahujte do díla" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons nekomerční Zachovejte licenci" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Zachovejte licenci" - -#~ msgid "Cue In: " -#~ msgstr "Cue in: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktuálně importovaný soubor:" - -#~ msgid "Cursor" -#~ msgstr "Kurzor" - -#~ msgid "Default Length:" -#~ msgstr "Defaultní délka:" - -#~ msgid "Default License:" -#~ msgstr "Výchozí licence:" - -#~ msgid "Disk Space" -#~ msgstr "Velikost disku" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamický Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Kritéria dynamickeho Smart Blocku: " - -#~ msgid "Empty playlist content" -#~ msgstr "Prázdný playlist" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Rozšířit dynamický blok" - -#~ msgid "Expand Static Block" -#~ msgstr "Rozšířit statický blok" - -#~ msgid "Fade in: " -#~ msgstr "Zesílit: " - -#~ msgid "Fade out: " -#~ msgstr "Zeslabit: " - -#~ msgid "File Path:" -#~ msgstr "Cesta souboru:" - -#~ msgid "File Summary" -#~ msgstr "Shrnutí souboru" - -#~ msgid "File Summary Templates" -#~ msgstr "Vzory přehledu souboru" - -#~ msgid "File import in progress..." -#~ msgstr "Probíhá importování souboru ..." - -#~ msgid "Filter History" -#~ msgstr "Filtrovat historii" - -#~ msgid "Find" -#~ msgstr "Najdi" - -#~ msgid "Find Shows" -#~ msgstr "Najít vysílání" - -#~ msgid "First Name" -#~ msgstr "Jméno" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Pro více informací si prosím přečtěte %s Airtime manuál %s" - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Metadata Icecast Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Pokud je Airtime za routerem nebo firewall, budete možná muset nastavit přesměrování portu a tato informace pole budou nesprávná. V tomto případě budete muset ručně aktualizovat pole tak, aby ukazovalo správně host/port/mount, do kterých se Váš DJ potřebuje připojit. Povolené rozpětí je mezi 1024 a 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC číslo" - -#~ msgid "Last Name" -#~ msgstr "Příjmení" - -#~ msgid "Length:" -#~ msgstr "Délka:" - -#~ msgid "Limit to " -#~ msgstr "Omezit na " - -#~ msgid "Listen" -#~ msgstr "Poslech" - -#~ msgid "Live Stream Input" -#~ msgstr "Vložení Live Streamu" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Přehled logu" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Vzory přehledu logů" - -#~ msgid "Logout" -#~ msgstr "Odhlásit " - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Stránka, kterou hledáte, neexistuje!" - -#~ msgid "Manage Users" -#~ msgstr "Správa uživatelů" - -#~ msgid "Master Source" -#~ msgstr "Hlavní zdroj" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount nemůže být prázdný s Icecast serverem." - -#~ msgid "New File Summary Template" -#~ msgstr "Nový vzor přehledu souboru" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Nový vzor přehledu logů" - -#~ msgid "New User" -#~ msgstr "Nový uživatel" - -#~ msgid "New password" -#~ msgstr "Nové heslo" - -#~ msgid "Next:" -#~ msgstr "Další:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Nový vzor přehledu souboru" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Vzory přehledu logů nejsou" - -#~ msgid "No open playlist" -#~ msgstr "Neotevřený playlist" - -#~ msgid "No webstream" -#~ msgstr "Žádný webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Jsou povolena pouze čísla." - -#~ msgid "Original Length:" -#~ msgstr "Původní délka:" - -#~ msgid "Page not found!" -#~ msgstr "Stránka nebyla nalezena!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Přehrát" - -#~ msgid "Playlist Contents: " -#~ msgstr "Obsah Playlistu: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže." - -#~ msgid "Please upgrade to " -#~ msgstr "Prosím aktualizujte na " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port nemůže být prázdný." - -#~ msgid "Previous:" -#~ msgstr "Předchozí:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Manažeři může dělat následující:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Podpořit mou stanici na %s" - -#~ msgid "Register Airtime" -#~ msgstr "Registrovat Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Odebrat sledovaný adresář" - -#~ msgid "Repeat Days:" -#~ msgstr "Opakovat dny:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)" - -#~ msgid "Sample Rate:" -#~ msgstr "Vzorová frekvence:" - -#~ msgid "Save playlist" -#~ msgstr "Uložit playlist" - -#~ msgid "Select stream:" -#~ msgstr "Vyberte stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server nemůže být prázdný." - -#~ msgid "Set" -#~ msgstr "Nastavit" - -#~ msgid "Set Cue In" -#~ msgstr "Nastavit Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Nstavit Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Nastavit defolní šablnu" - -#~ msgid "Share" -#~ msgstr "Sdílet" - -#~ msgid "Show Source" -#~ msgstr "Zobrazit zdroj" - -#~ msgid "Show Summary" -#~ msgstr "Shrnutí show" - -#~ msgid "Show Waveform" -#~ msgstr "UKázat Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Zobrazit co posílám " - -#~ msgid "Shuffle playlist" -#~ msgstr "Promíchat Playlist" - -#~ msgid "Source Streams" -#~ msgstr "Zdrojové Streamy" - -#~ msgid "Static Smart Block" -#~ msgstr "Statický Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Obsah statistického Smart Blocku: " - -#~ msgid "Station Description:" -#~ msgstr "Popis stanice:" - -#~ msgid "Station Web Site:" -#~ msgstr "Webová stránka stanice:" - -#~ msgid "Stop" -#~ msgstr "Zastavit" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Nastavení Streamu" - -#~ msgid "Stream URL:" -#~ msgstr "URL streamu:" - -#~ msgid "Stream URL: " -#~ msgstr "URL streamu: " - -#~ msgid "Style" -#~ msgstr "Styl" - -#~ msgid "Support Feedback" -#~ msgstr "Technická podpora" - -#~ msgid "Support setting updated." -#~ msgstr "Podpora nastavení aktualizována." - -#~ msgid "Terms and Conditions" -#~ msgstr "Pravidla a podmínky" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Požadované délky bloku nebude dosaženo pokud Airtime nenalezne dostatek unikátních skladeb, které odpovídají vašim kritériím. Povolte tuto možnost, pokud chcete, aby byly skladby přidány do chytrého bloku vícekrát." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Práce je ve veřejné doméně" - -#~ msgid "This version is no longer supported." -#~ msgstr "Tato verze již není podporována." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Tato verze bude brzy zastaralá." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Skladba:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Opište znaky, které vidíte na obrázku níže." - -#~ msgid "Update Required" -#~ msgstr "Nutná aktualizace" - -#~ msgid "Update show" -#~ msgstr "Aktualizace vysílání" - -#~ msgid "User Type" -#~ msgstr "Typ uživatele" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Vítejte v %s!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'." - -#~ msgid "What" -#~ msgstr "Co" - -#~ msgid "When" -#~ msgstr "Kdy" - -#~ msgid "Who" -#~ msgstr "Kdo" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Nesledujete žádné mediální soubory." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Musíte souhlasit se zásadami ochrany osobních údajů." - -#~ msgid "Your trial expires in" -#~ msgstr "Váše zkušební období vyprší " - -#~ msgid "and" -#~ msgstr "a" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "soubory splňují kritéria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max. hlasitost" - -#~ msgid "mute" -#~ msgstr "vypnout zvuk" - -#~ msgid "next" -#~ msgstr "další" - -#~ msgid "or" -#~ msgstr "nebo" - -#~ msgid "pause" -#~ msgstr "pauza" - -#~ msgid "play" -#~ msgstr "přehrát" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "prosím nastavte čas v sekundách '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "předchozí" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "zapnout zvuk" diff --git a/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po b/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po deleted file mode 100644 index 4a0d52cfc1..0000000000 --- a/webapp/src/locale/po/de_AT/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4624 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# hoerich , 2014 -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-10-17 08:09+0000\n" -"Last-Translator: Kyle Robbertze \n" -"Language-Team: German (Austria) \n" -"Language: de_AT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s ist kein gültiges Datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s-%s-%s ist kein gültiger Zeitpunkt" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalender" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Benutzer" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout Verlauf" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Verlaufsvorlagen" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Hörerstatistiken" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Hilfe" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Kurzanleitung" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Benutzerhandbuch" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig." - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Mit diesem Eingang ist keine Quelle verbunden." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nicht gefunden" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Etwas ist falsch gelaufen." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Vorschau" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Zu Playlist hinzufügen" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Hinzufügen zu Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Löschen" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Herunterladen" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Playlist duplizieren" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Keine Aktion verfügbar" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopie von %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Aufzeichnung:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nichts geplant" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Aktuelle Sendung:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Aktuell" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Sie verwenden die aktuellste Version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Neue Version verfügbar:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Zu aktueller Playlist hinzufügen" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Zu aktuellem Smart Block hinzufügen" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Füge 1 Objekt hinzu" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Füge %s Objekte hinzu" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Hinzufügen" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Bearbeiten" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Entfernen" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Metadaten bearbeiten" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Zu gewählter Sendung hinzufügen" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Auswahl" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Ganze Seite markieren" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Ganze Seite nicht markieren" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Keines Markieren" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Wollen sie die gewählten Objekte wirklich löschen?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Geplant" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Titel" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Interpret" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bitrate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Komponist" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded By" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Sprache" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Zuletzt geändert" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Zuletzt gespielt" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Dauer" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Stimmung" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Besitzer" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Samplerate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Titelnummer" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Hochgeladen" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Webseite" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Jahr" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "wird geladen..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Alle" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Dateien" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlisten" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blöcke" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Unbekannter Typ:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Wollen sie das gewählte Objekt wirklich löschen?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Hochladen wird durchgeführt..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Daten werden vom Server abgerufen..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Fehler Code:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Fehlermeldung:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Der eingegeben Wert muß eine positive Zahl sein" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Der eingegebene Wert muß eine Zahl sein" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Beschränkung auf:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist gespeichert" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist durchgemischt" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" -"Airtime kann den Status dieser Datei nicht bestimmen.\n" -"Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Hörerzahl %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "In einer Woche erinnern" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Niemals erinnern" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ja, Airtime helfen" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein." - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" -"Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" -"Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" -"Ein Dynamischer Smart Block speichert nur die Kriterien.\n" -"Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart Block durchgemischt" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart Block erstellt und Kriterien gespeichert" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart Block gespeichert" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "In Bearbeitung..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Wähle Modifikator" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "enthält" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "enthält nicht" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "ist" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "ist nicht" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "beginnt mit" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "endet mit" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "ist größer als" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "ist kleiner als" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "ist im Bereich" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Erstellen" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Wähle Storage-Verzeichnis" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Wähle zu überwachendes Verzeichnis" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Wollen sie wirklich das Storage-Verzeichnis ändern?\n" -"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Verwalte Medienverzeichnisse" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Wollen sie den überwachten Ordner wirklich entfernen?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Dieser Pfad ist derzeit nicht erreichbar." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Mit Streaming-Server verbunden" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Der Stream ist deaktiviert" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Erhalte Information vom Server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" -"Diese Option aktiviert Metadaten für Ogg-Streams.\n" -"(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" -"VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Kein Ergebnis gefunden" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Die Sendungsinstanz existiert nicht mehr!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warnung: Sendungen können nicht erneut verknüpft werden." - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Sendung" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Sendung ist leer" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Daten werden vom Server abgerufen..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Diese Sendung hat keinen geplanten Inhalt." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Januar" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Februar" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "März" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Mai" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Juni" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Juli" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "August" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "September" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Oktober" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Dezember" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mär" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Mai" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Okt" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dez" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Sonntag" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Montag" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Dienstag" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Mittwoch" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Donnerstag" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Freitag" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Samstag" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "SO" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "MO" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "DI" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "MI" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "DO" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "FR" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "SA" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Aktuelle Sendung abbrechen?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Aufzeichnung der aktuellen Sendung stoppen?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "OK" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Sendungsinhalt" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Gesamten Inhalt entfernen?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Gewählte Objekte löschen?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Beginn" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Ende" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Dauer" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Sendung leer" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Aufzeichnen von Line-In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Titelvorschau" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Es ist keine Planung außerhalb einer Sendung möglich." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Verschiebe 1 Objekt" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Verschiebe %s Objekte" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Speichern" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Abbrechen" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Alle markieren" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Nichts Markieren" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Gewähltes Objekt entfernen" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Springe zu aktuellem Titel" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Aktuelle Sendung abbrechen" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Inhalt hinzufügen / entfernen" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "In Verwendung" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Suchen in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Öffnen" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programm Manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Gast" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Gäste können folgendes tun:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Kalender betrachten" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Sendungsinhalt betrachten" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJ's können folgendes tun:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Verwalten zugewiesener Sendungsinhalte" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Mediendateien importieren" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Verwalten eigener Bibliotheksinhalte" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Sendungsinhalte betrachten und verwalten" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Sendungen festlegen" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Verwalten der gesamten Bibliothek" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Admins können folgendes tun:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Einstellungen verwalten" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Benutzer verwalten" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Verwalten überwachter Ordner" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Support Feedback senden" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "System Status betrachten" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Zugriff auf Playout Verlauf" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Hörerstatistiken betrachten" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Spalten zeigen / verbergen" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Von {from} bis {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "So" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Mo" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Di" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Mi" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Do" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Fr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Schließen" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Stunde" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Fertig" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Dateien wählen" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Dateien hinzufügen" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Hochladen stoppen" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Hochladen starten" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Dateien hinzufügen" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d Dateien hochgeladen" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "Nicht Verfügbar" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Dateien hierher ziehen" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Dateierweiterungsfehler" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Dateigrößenfehler" - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Dateianzahlfehler" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init Fehler" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP-Fehler" - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Sicherheitsfehler" - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Allgemeiner Fehler" - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO-Fehler" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Datei: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d Dateien in der Warteschlange" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Fehler: Datei zu groß" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Fehler: Ungültige Dateierweiterung:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Standard festlegen" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Eintrag erstellen" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Verlaufsprotokoll bearbeiten" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Keine Sendung" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s Reihen%s in die Zwischenablage kopiert" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Beschreibung" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Aktiviert" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Deaktiviert" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. " - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Unbenannte Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert" - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Wiederholung der Sendung % s vom %s um %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Cursor wählen" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Cursor entfernen" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "Sendung existiert nicht." - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream gespeichert" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Ungültiger Eingabewert" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingeben" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Benutzerdefinierte Authentifizierung:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Benutzerdefinierter Benutzername" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Benutzerdefiniertes Passwort" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Das Feld Benutzername darf nicht leer sein." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Das Feld Passwort darf nicht leer sein." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "Tage" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Verknüpfen:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Wiederholungstyp:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "Wöchentlich" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "jede Zweite Woche" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "jede Dritte Woche" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "jede Vierte Woche" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "Monatlich" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Tage wählen:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Wiederholung am:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "Tag des Monats" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "Tag der Woche" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Zeitpunkt Ende:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Kein Enddatum?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Enddatum muß nach Startdatum liegen." - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Bitte Tag zum Wiederholen wählen" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Hintergrundfarbe:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Textfarbe:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Unbenannte Sendung" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Beschreibung:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ist nicht im Format 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Dauer:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Zeitzone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Wiederholungen?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen." - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Benutzer suchen:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Benutzername:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Passwort:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Passwort bestätigen:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vorname:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nachname:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-Mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Benutzertyp:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Benutzername ist nicht einmalig." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Zeitpunkt Start:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Interpret:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Jahr:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Komponist:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dirigent:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Stimmung:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Nummer:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Webseite:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Sprache:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Beginn" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Ende" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zeitzone Interface" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Sendername" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Sender Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Standarddauer Crossfade (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Standard Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Standard Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Zeitzone Radiostation" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Woche startet mit " - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Anmeldung" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Passwort" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Neues Passwort bestätigen" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Passwortbestätigung stimmt nicht mit Passwort überein" - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Benutzername" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Jetzt" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Kriterien wählen" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (KHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "Stunden" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "Minuten" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "Objekte" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamisch" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statisch" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Shuffle Playlist-Inhalt (Durchmischen)" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein." - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Wert kann nicht leer sein" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Streambezeichnung:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artist - Titel" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Sendung - Interpret - Titel" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Radiostation - Sendung" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Replay Gain aktivieren" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifikator" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Typ:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanäle:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Name" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Wert erforderlich. Feld darf nicht leer sein." - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue In und Cue Out sind Null." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Cue In darf nicht größer als Cue Out sein." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Cue Out darf nicht kleiner als Cue In sein." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Land wählen" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden." - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell." - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Die Sendung %s wurde bereits aktualisiert." - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Eine der gewählten Dateien existiert nicht!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Sendungen können nicht überlappend geplant werden.\n" -"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Wiederholung von %s am %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dauer muß länger als 0 Minuten sein." - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dauer im Format \"00h 00m\" eingeben." - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL im Format \"https://example.org\" eingeben." - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL darf aus höchstens 512 Zeichen bestehen." - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden." - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden." - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden." - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unbekannter Stream-Typ: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Aufeichnung existiert nicht" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Metadaten der aufgezeichneten Datei ansehen" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Sendung bearbeiten" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert." - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Titel" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Abgespielt" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " bis " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s wird bereits überwacht." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s ist kein gültiges Verzeichnis." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" - -#~ msgid "(Required)" -#~ msgstr "(Erforderlich)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Webseite ihrer Radiostation)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Über" - -#~ msgid "Add New Field" -#~ msgstr "Neues Feld hinzufügen" - -#~ msgid "Add more elements" -#~ msgstr "Weitere Elemente hinzufügen" - -#~ msgid "Add this show" -#~ msgstr "Sendung hinzufügen" - -#~ msgid "Additional Options" -#~ msgstr "Erweiterte Optionen" - -#~ msgid "Admin Password" -#~ msgstr "Admin Passwort" - -#~ msgid "Admin User" -#~ msgstr "Admin Benutzer" - -#~ msgid "Advanced Search Options" -#~ msgstr "Erweiterte Suchoptionen" - -#~ msgid "All rights are reserved" -#~ msgstr "Alle Rechte vorbehalten" - -#~ msgid "Audio Track" -#~ msgstr "Titel" - -#~ msgid "Choose Days:" -#~ msgstr "Tag wählen:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Folge wählen" - -#~ msgid "Choose folder" -#~ msgstr "Verzeichnis wählen" - -#~ msgid "City:" -#~ msgstr "Stadt:" - -#~ msgid "Clear" -#~ msgstr "Leeren" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird." - -#~ msgid "Country:" -#~ msgstr "Land:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Erstelle Dateiübersichtsvorlage" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Erstelle Protokollvorlage" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Zuordnung" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Zuordnung No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Zuordnung Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Zuordnung Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Zuordnung Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In:" - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktuelles Import-Verzeichnis:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default Length:" -#~ msgstr "Standard Dauer:" - -#~ msgid "Default License:" -#~ msgstr "Standard Lizenz:" - -#~ msgid "Disk Space" -#~ msgstr "Speicherplatz" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamischer Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamische Smart Block Kriterien:" - -#~ msgid "Empty playlist content" -#~ msgstr "Playlist leeren" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Dynamischen Block erweitern" - -#~ msgid "Expand Static Block" -#~ msgstr "Statischen Block erweitern" - -#~ msgid "Fade in: " -#~ msgstr "Fade In:" - -#~ msgid "Fade out: " -#~ msgstr "Fade Out:" - -#~ msgid "File Path:" -#~ msgstr "Dateipfad:" - -#~ msgid "File Summary" -#~ msgstr "Dateiübersicht" - -#~ msgid "File Summary Templates" -#~ msgstr "Dateiübersichtsvorlagen" - -#~ msgid "File import in progress..." -#~ msgstr "Datei-Import in Bearbeitung..." - -#~ msgid "Filter History" -#~ msgstr "Filter Verlauf" - -#~ msgid "Find" -#~ msgstr "Finden" - -#~ msgid "Find Shows" -#~ msgstr "Sendungen suchen" - -#~ msgid "First Name" -#~ msgstr "Vorname" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "" -#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" -#~ "Der Wert sollte so geändert werden, daß host/port/mount den Zugangsdaten der DJ's entspricht. Der erlaubte Bereich liegt zwischen 1024 und 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC Number:" - -#~ msgid "Last Name" -#~ msgstr "Nachname" - -#~ msgid "Length:" -#~ msgstr "Dauer:" - -#~ msgid "Limit to " -#~ msgstr "Begrenzt auf " - -#~ msgid "Listen" -#~ msgstr "Hören" - -#~ msgid "Live Stream Input" -#~ msgstr "Live-Stream Eingang" - -#~ msgid "Live stream" -#~ msgstr "Live Stream" - -#~ msgid "Log Sheet" -#~ msgstr "Protokoll" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Protokollvorlagen" - -#~ msgid "Logout" -#~ msgstr "Abmelden" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" - -#~ msgid "Manage Users" -#~ msgstr "Benutzer verwalten" - -#~ msgid "Master Source" -#~ msgstr "Master Quelle" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#~ msgid "New File Summary Template" -#~ msgstr "Neue Dateiübersichtsvorlage" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Neue Protokollvorlage" - -#~ msgid "New User" -#~ msgstr "Neuer Benutzer" - -#~ msgid "New password" -#~ msgstr "Neues Passwort" - -#~ msgid "Next:" -#~ msgstr "Danach:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Keine Dateiübersichtsvorlagen" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Keine Protokollvorlagen" - -#~ msgid "No open playlist" -#~ msgstr "Keine Playlist geöffnet" - -#~ msgid "No webstream" -#~ msgstr "Kein Webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Es sind nur Zahlen erlaubt" - -#~ msgid "Original Length:" -#~ msgstr "Original Dauer:" - -#~ msgid "Page not found!" -#~ msgstr "Seite nicht gefunden!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Abspielen" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Inhalt:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist Crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen." - -#~ msgid "Please upgrade to " -#~ msgstr "Bitte aktualisieren sie auf " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port darf nicht leer sein." - -#~ msgid "Previous:" -#~ msgstr "Vorher:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programm Manager können folgendes tun:" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime registrieren" - -#~ msgid "Remove watched directory" -#~ msgstr "Überwachten Ordner entfernen" - -#~ msgid "Repeat Days:" -#~ msgstr "Wiederholungstage:" - -#~ msgid "Sample Rate:" -#~ msgstr "Samplerate:" - -#~ msgid "Save playlist" -#~ msgstr "Playlist speichern" - -#~ msgid "Select stream:" -#~ msgstr "Stream wählen:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server darf nicht leer sein." - -#~ msgid "Set" -#~ msgstr "Wählen" - -#~ msgid "Set Cue In" -#~ msgstr "Cue In setzen" - -#~ msgid "Set Cue Out" -#~ msgstr "Cue Out setzen" - -#~ msgid "Set Default Template" -#~ msgstr "Standardvorlage festlegen" - -#~ msgid "Share" -#~ msgstr "Teilen" - -#~ msgid "Show Source" -#~ msgstr "Show Quelle" - -#~ msgid "Show Summary" -#~ msgstr "Sendungsübersicht" - -#~ msgid "Show Waveform" -#~ msgstr "Wellenform anzeigen" - -#~ msgid "Show me what I am sending " -#~ msgstr "Zeige mir was ich sende" - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle Playlist" - -#~ msgid "Source Streams" -#~ msgstr "Stream-Quellen" - -#~ msgid "Static Smart Block" -#~ msgstr "Statischer Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statischer Smart Block Inhalt:" - -#~ msgid "Station Description:" -#~ msgstr "Sender Beschreibung:" - -#~ msgid "Station Web Site:" -#~ msgstr "Sender-Webseite:" - -#~ msgid "Stop" -#~ msgstr "Stopp" - -#~ msgid "Stream " -#~ msgstr "Stream" - -#~ msgid "Stream Settings" -#~ msgstr "Stream Einstellungen" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL:" - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support-Einstellungen aktualisiert." - -#~ msgid "Terms and Conditions" -#~ msgstr "Geschäftsbedingungen und Rahmenverhältnisse" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "" -#~ "Wenn Airtime nicht genug einzigartige Titel findet, kann die gewünschte Dauer des Smart Blocks nicht erreicht werden.\n" -#~ "Aktivieren sie diese Option um das mehrfache Hinzufügen von Titel zum Smart Block zu erlauben." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Das Werk ist in der öffentlichen Domäne" - -#~ msgid "This version is no longer supported." -#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Diese Version wird in Kürze veraltet sein." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden." - -#~ msgid "Track:" -#~ msgstr "Titelnummer:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind." - -#~ msgid "Update Required" -#~ msgstr "Aktualisierung erforderlich" - -#~ msgid "Update show" -#~ msgstr "Sendung aktualisieren" - -#~ msgid "User Type" -#~ msgstr "Benutzertyp" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "Was" - -#~ msgid "When" -#~ msgstr "Wann" - -#~ msgid "Who" -#~ msgstr "Wer" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Sie überwachen keine Medienverzeichnisse." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." - -#~ msgid "Your trial expires in" -#~ msgstr "Die Probelaufzeit läuft ab in" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "Dateien entsprechen den Kriterien" - -#~ msgid "id" -#~ msgstr "ID" - -#~ msgid "max volume" -#~ msgstr "Maximale Lautstärke" - -#~ msgid "mute" -#~ msgstr "Stumm schalten" - -#~ msgid "next" -#~ msgstr "Nächster" - -#~ msgid "or" -#~ msgstr "oder" - -#~ msgid "pause" -#~ msgstr "Pause" - -#~ msgid "play" -#~ msgstr "Abspielen" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "Bitte geben sie eine Zeit in Sekunden ein '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "Zurück" - -#~ msgid "stop" -#~ msgstr "Stopp" - -#~ msgid "unmute" -#~ msgstr "Laut schalten" diff --git a/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po b/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po deleted file mode 100644 index aed8c8fc96..0000000000 --- a/webapp/src/locale/po/de_DE/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4671 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Daniel James , 2014 -# Darius Kellermann , 2015 -# hoerich , 2014 -# Sourcefabric , 2013 -# Lucas Bickel , 2017. #zanata -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2022-07-30 21:18+0000\n" -"Last-Translator: Domenik Töfflinger \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s ist kein gültiges Datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s-%s-%s ist kein gültiger Zeitpunkt" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Englisch" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Afar" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abchasisch" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amharisch" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Arabisch" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Assamesisch" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aymarisch" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Bashkirisch" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Belarussisch" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Bulgarisch" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Biharisch" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bislamisch" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengalisch" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibetanisch" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Bretonisch" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Katalanisch" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Korsisch" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Tschechisch" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Walisisch" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Dänisch" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Deutsch" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Dzongkha" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Griechisch" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Esperanto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Spanisch" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estnisch" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Baskisch" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persisch" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Finnisch" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fijianisch" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Färöisch" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Französisch" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Friesisch" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Irisch" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Schottisches Gälisch" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galizisch" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guarani" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Gujaratisch" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Haussa" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hindi" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Kroatisch" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Ungarisch" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Armenisch" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Interlingua" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Interlingue" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Inupiak" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Indonesisch" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Isländisch" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italienisch" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hebräisch" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japanisch" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Jiddisch" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Javanisch" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Georgisch" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kasachisch" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Kalaallisut" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Kambodschanisch" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Kannada" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Koreanisch" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Kaschmirisch" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kurdisch" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kirgisisch" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latein" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Lingala" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Laotisch" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Litauisch" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Lettisch" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Madagassisch" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maorisch" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Mazedonisch" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayalam" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Mongolisch" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldavisch" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Marathi" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malaysisch" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltesisch" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Burmesisch" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Nauruisch" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Nepalesisch" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Niederländisch" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Norwegisch" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Okzitanisch" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "Oriya" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Pandschabi" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Polnisch" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Paschtu" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Portugiesisch" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Quechua" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Rätoromanisch" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Kirundisch" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Rumänisch" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Russisch" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Kijarwanda" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Sindhi" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Sango" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Serbokroatisch" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Singhalesisch" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Slowakisch" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Slowenisch" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Samoanisch" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Schonisch" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Somalisch" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Albanisch" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Serbisch" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Swasiländisch" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Sesothisch" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Sundanesisch" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Schwedisch" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Swahili" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Tamilisch" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Tegulu" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Tadschikisch" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Thai" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Tigrinja" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Türkmenisch" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Tagalog" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Sezuan" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Tongaisch" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Türkisch" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Tsongaisch" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Tatarisch" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Twi" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Ukrainisch" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Urdu" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Usbekisch" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "Vietnamesisch" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Volapük" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Wolof" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Xhosa" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Yoruba" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Chinesisch" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Zulu" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen." - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "LibreTime Playout Service" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "LibreTime Liquidsoap Service" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "LibreTime API Service" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Radio Seite" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalender" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Widgets" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Player" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Wochenprogramm" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Einstellungen" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Allgemein" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Mein Profil" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Benutzer" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Track-Typ" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Statistiken" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout Verlauf" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Verlaufsvorlagen" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Hörerstatistiken" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Zuhörer:innen Statistik anzeigen" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Hilfe" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Kurzanleitung" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Benutzerhandbuch" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Bei LibreTime mitmachen" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Was ist neu?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Datei existiert nicht in %s." - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Mit diesem Eingang ist kein Signal verbunden." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "Die angefragte Aktion wird nicht unterstützt." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Ein interner Fehler ist aufgetreten." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "Es wurden noch keine Tracks veröffentlicht." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nicht gefunden" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Etwas ist falsch gelaufen." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Vorschau" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Zur Playlist hinzufügen" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Zum Smart Block hinzufügen" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Löschen" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Bearbeiten …" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Herunterladen" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplizierte Playlist" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Smartblock duplizieren" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Keine Aktion verfügbar" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Datei(en) konnten nicht gelöscht werden." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopie von %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Etwas ist falsch gelaufen!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Aufnahme:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Es ist nichts geplant" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Aktuelle Sendung:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Jetzt" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Sie verwenden die neueste Version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Neue Version verfügbar: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Es ist ein Patch für deine LibreTime Installation verfügbar." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Es ist ein Feature-Update für deine LibreTime Installation verfügbar." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Zu aktueller Playlist hinzufügen" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Zu aktuellem Smart Block hinzufügen" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "1 Objekt hinzufügen" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "%s Objekte hinzufügen" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Bitte wählen sie eine Cursor-Position auf der Zeitleiste." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "Keine Tracks hinzugefügt" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Keine Playlisten hinzugefügt" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "Keine Smart Blöcke hinzugefügt" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "Keine Webstreams hinzugefügt" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Erfahre mehr über Tracks" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Erfahre mehr über Playlisten" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "Erfahre mehr über Podcasts" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Erfahre mehr über Smart Blöcke" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Erfahre mehr über Webstreams" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Hinzufüg." - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Ändern" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Veröffentlichen" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Entfernen" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Metadaten ändern" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Zur ausgewählten Sendungen hinzufügen" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Auswählen" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Wählen sie diese Seite" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Wählen sie diese Seite ab" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Alle Abwählen" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Wollen sie die gewählten Objekte wirklich löschen?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Geplant" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Tracks" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Playliste" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Titel" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Interpret" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bitrate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Komponist" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded By" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Sprache" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "geändert am" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Zuletzt gespielt" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Länge" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Stimmung" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Besitzer" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Samplerate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Titelnummer" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Hochgeladen" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Webseite" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Jahr" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "wird geladen..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Alle" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Dateien" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlisten" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blöcke" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Unbekannter Typ: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Wollen sie das gewählte Objekt wirklich löschen?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Upload wird durchgeführt..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Daten werden vom Server abgerufen..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Fehlercode: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Fehlermeldung: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Der eingegeben Wert muß eine positive Zahl sein" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Der eingegebene Wert muß eine Zahl sein" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Mein Podcast" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Medienordner" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Beschränken auf: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist gespeichert" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playliste gemischt" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" -"Airtime kann den Status dieser Datei nicht bestimmen.\n" -"Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Hörerzahl %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "In einer Woche erinnern" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Niemals erinnern" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ja, Airtime helfen" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" -"Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" -"Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" -"Ein Dynamischer Smart Block speichert nur die Kriterien.\n" -"Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart Block gemischt" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart Block erstellt und Kriterien gespeichert" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart Block gespeichert" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "In Bearbeitung..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr " - Attribut - " - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "enthält" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "enthält nicht" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "ist" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "ist nicht" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "beginnt mit" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "endet mit" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "ist größer als" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "ist kleiner als" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "ist im Bereich" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Erstellen" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Wähle Speicher-Verzeichnis" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Wähle zu überwachendes Verzeichnis" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\n" -"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Medienverzeichnisse verwalten" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Dieser Pfad ist derzeit nicht erreichbar." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Mit dem Streaming-Server verbunden" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Der Stream ist deaktiviert" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Erhalte Information vom Server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" -"Diese Option aktiviert Metadaten für Ogg-Streams.\n" -"(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" -"VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Kein Ergebnis gefunden" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Die Sendungsinstanz existiert nicht mehr!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Sendung" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Sendung ist leer" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Daten werden vom Server abgerufen..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Diese Sendung hat keinen festgelegten Inhalt." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Januar" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Februar" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "März" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Mai" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Juni" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Juli" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "August" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "September" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Oktober" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Dezember" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan." - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb." - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mrz." - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr." - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun." - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul." - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug." - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep." - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Okt." - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov." - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dez." - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Sonntag" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Montag" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Dienstag" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Mittwoch" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Donnerstag" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Freitag" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Samstag" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "So." - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Mo." - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Di." - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Mi." - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Do." - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Fr." - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sa." - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Aktuelle Sendung abbrechen?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Aufnahme der aktuellen Sendung stoppen?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Speichern" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Sendungsinhalt" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Gesamten Inhalt entfernen?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Gewählte Objekte löschen?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Beginn" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Ende" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Dauer" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Sendung ist leer" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Aufnehmen über Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Titel Vorschau" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Es ist keine Planung außerhalb einer Sendung möglich." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Verschiebe 1 Objekt" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Verschiebe %s Objekte" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Speichern" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Abbrechen" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Alles auswählen" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Nichts auswählen" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Ausgewählte Elemente aus dem Programm entfernen" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Springe zu aktuellem Titel" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Aktuelle Sendung abbrechen" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Inhalt hinzufügen / entfernen" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "In Verwendung" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Suchen in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Öffnen" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programm Manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Gast" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Gäste können folgendes tun:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Kalender betrachten" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Sendungsinhalt betrachten" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs können folgendes tun:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Verwalten zugewiesener Sendungsinhalte" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Mediendateien importieren" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Verwalten eigener Bibliotheksinhalte" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Sendungsinhalte betrachten und verwalten" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Sendungen festlegen" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Verwalten der gesamten Bibliothek" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Admins können folgendes tun:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Einstellungen verwalten" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Benutzer verwalten" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Verwalten überwachter Verzeichnisse" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Support Feedback senden" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "System Status betrachten" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Zugriff auf Playlist Verlauf" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Hörerstatistiken betrachten" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Spalten auswählen" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Von {from} bis {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "So" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Mo" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Di" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Mi" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Do" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Fr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Schließen" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Stunde" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Fertig" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Dateien auswählen" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Dateien zur Uploadliste hinzufügen und den Startbutton klicken." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Dateien hinzufügen" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Upload stoppen" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Upload starten" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Dateien hinzufügen" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d Dateien hochgeladen" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Dateien in dieses Feld ziehen.(Drag & Drop)" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Fehler in der Dateierweiterung." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Fehler in der Dateigröße." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Fehler in der Dateianzahl" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init Fehler." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Fehler." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Sicherheitsfehler." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Allgemeiner Fehler." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO Fehler." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Datei: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d Dateien in der Warteschlange" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Fehler: Datei zu groß: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Fehler: ungültige Dateierweiterung: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Standard festlegen" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Eintrag erstellen" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Verlaufsprotokoll bearbeiten" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Keine Sendung" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s Reihen%s in die Zwischenablage kopiert" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Autor" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Beschreibung" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Link" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Aktiviert" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Deaktiviert" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Unbekannte Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap ..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Wiederholung der Sendung %s vom %s um %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Cursor wählen" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Cursor entfernen" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "Sendung existiert nicht" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream gespeichert." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Ungültige Formularwerte." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingegeben" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Benutzerdefiniertes Login:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Benutzerdefinierter Benutzername" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Benutzerdefiniertes Passwort" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Das Feld Benutzername darf nicht leer sein." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Das Feld Passwort darf nicht leer sein." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "Tage" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Verknüpfen:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Wiederholungstyp:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "wöchentlich" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "jede zweite Woche" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "jede dritte Woche" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "jede vierte Woche" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "monatlich" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Tage wählen:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Wiederholung von:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "Tag des Monats" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "Tag der Woche" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Zeitpunkt Ende:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Kein Enddatum?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Enddatum muß nach dem Startdatum liegen" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Bitte einen Tag zum Wiederholen wählen" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Hintergrundfarbe:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Textfarbe:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Unbenannte Sendung" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Beschreibung:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ist nicht im Format 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Dauer:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Zeitzone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Wiederholungen?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat." - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Suche Benutzer:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Benutzername:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Passwort:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Passwort bestätigen:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vorname:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nachname:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-Mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Benutzertyp:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Benutzername ist bereits vorhanden." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Zeitpunkt Beginn:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Interpret:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Jahr:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Komponist:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dirigent:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Stimmung:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC-Nr.:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Webseite:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Sprache:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Veröffentlichen..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Startzeit" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Endzeit" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Zeitzone:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Sendername" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Sender Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Standard Crossfade Dauer (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Standard Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Standard Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Sendestation Zeitzone" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Woche beginnt am" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Anmeldung" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Passwort" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Neues Passwort bestätigen" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Passwortbestätigung stimmt nicht mit Passwort überein." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Benutzername" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Jetzt" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr " - Kriterien - " - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "Stunden" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "Minuten" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "Titel" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamisch" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statisch" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Inhalt der Playlist Mischen" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Mischen" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Der Wert darf nicht leer sein" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Streambezeichnung:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artist - Titel" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Sendung - Artist - Titel" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Sender - Sendung" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadaten" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Replay Gain aktivieren" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifikator" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Typ:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanäle:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Name" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Wert ist erforderlich und darf nicht leer sein" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue In und Cue Out sind Null." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Cue In darf nicht größer als Cue Out sein." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Cue Out darf nicht kleiner als Cue In sein." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Land wählen" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Die Sendung %s wurde bereits aktualisiert!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Eine der gewählten Dateien existiert nicht!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Sendungen können nicht überlappend geplant werden.\n" -"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Wiederholung der Sendung %s von %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dauer muß länger als 0 Minuten sein." - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dauer im Format \"00h 00m\" eingeben." - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL im Format \"https://example.org\" eingeben." - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL darf aus höchstens 512 Zeichen bestehen." - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Die XSPF Playlist konnte nicht eingelesen werden" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Die PLS Playlist konnte nicht eingelesen werden" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Die M3U Playlist konnte nicht eingelesen werden" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unbekannter Stream-Typ: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Aufzeichnung existiert nicht" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Metadaten der aufgezeichneten Datei anzeigen" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Sendungsinhalte verwalten" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Sendung ändern" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Titel" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Abgespielt" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " bis " - -#, php-format -#~ msgid "%s Version" -#~ msgstr "%s Version" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s wird bereits überwacht." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s ist kein gültiges Verzeichnis." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" - -#~ msgid "(Required)" -#~ msgstr "(Erforderlich)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Webseite Ihres Radiosenders)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Über" - -#~ msgid "Add New Field" -#~ msgstr "Neues Feld hinzufügen" - -#~ msgid "Add more elements" -#~ msgstr "Weitere Elemente hinzufügen" - -#~ msgid "Add this show" -#~ msgstr "Sendung hinzufügen" - -#~ msgid "Additional Options" -#~ msgstr "Erweiterte Optionen" - -#~ msgid "Admin Password" -#~ msgstr "Admin Passwort" - -#~ msgid "Admin User" -#~ msgstr "Admin Benutzer" - -#~ msgid "Advanced Search Options" -#~ msgstr "Erweiterte Suchoptionen" - -#~ msgid "All rights are reserved" -#~ msgstr "Alle Rechte vorbehalten" - -#~ msgid "Audio Track" -#~ msgstr "Titel-Nr." - -#~ msgid "Autoloading Playlist" -#~ msgstr "Automatische Playlist" - -#~ msgid "Category" -#~ msgstr "Kategorie" - -#~ msgid "Choose Days:" -#~ msgstr "Tage wählen:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Folge wählen" - -#~ msgid "Choose folder" -#~ msgstr "Ordner wählen" - -#~ msgid "City:" -#~ msgstr "Stadt:" - -#~ msgid "Clear" -#~ msgstr "Leeren" - -#~ msgid "Country:" -#~ msgstr "Land:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Erstelle Dateiübersichtsvorlage" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Erstelle Protokollvorlage" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "[CC-BY] Creative Commons Namensnennung" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktueller Import Ordner:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Dangerous Options" -#~ msgstr "Gefährliche Einstellungen" - -#~ msgid "Default Length:" -#~ msgstr "Standard Dauer:" - -#~ msgid "Default License:" -#~ msgstr "Standard Lizenz:" - -#~ msgid "Disk Space" -#~ msgstr "Speicherplatz" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamischer Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamische Smart Block Kriterien: " - -#~ msgid "Editing " -#~ msgstr "Bearbeiten" - -#~ msgid "Empty playlist content" -#~ msgstr "Playlist leeren" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Dynamischen Block erweitern" - -#~ msgid "Expand Static Block" -#~ msgstr "Statischen Block erweitern" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Fade in: " -#~ msgstr "Fade In: " - -#~ msgid "Fade out: " -#~ msgstr "Fade Out: " - -#~ msgid "File Path:" -#~ msgstr "Dateipfad:" - -#~ msgid "File Summary" -#~ msgstr "Dateiübersicht" - -#~ msgid "File Summary Templates" -#~ msgstr "Dateiübersichtsvorlagen" - -#~ msgid "File import in progress..." -#~ msgstr "Datei-Import in Bearbeitung..." - -#~ msgid "Filter History" -#~ msgstr "Filter Verlauf" - -#~ msgid "Find" -#~ msgstr "Finden" - -#~ msgid "Find Shows" -#~ msgstr "Suche Sendungen" - -#~ msgid "First Name" -#~ msgstr "Vorname" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" - -#~ msgid "Forgot your password?" -#~ msgstr "Passwort vergessen?" - -#~ msgid "General Fields" -#~ msgstr "Allgemeine Felder" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "" -#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" -#~ "In diesem Fall müssen sie die URL manuell eintragen, damit Ihren DJs der richtige Host/Port/Mount zur verbindung anzeigt wird. Der erlaubte Port-Bereich liegt zwischen 1024 und 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC-Nr.:" - -#~ msgid "Keywords" -#~ msgstr "Stichwörter" - -#~ msgid "Last Name" -#~ msgstr "Nachname" - -#~ msgid "Length:" -#~ msgstr "Länge:" - -#~ msgid "Limit to " -#~ msgstr "Beschränken auf " - -#~ msgid "Listen" -#~ msgstr "Anhören" - -#~ msgid "Listeners" -#~ msgstr "Zuhörer" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live Stream" - -#~ msgid "Log Sheet" -#~ msgstr "Protokoll" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Protokollvorlagen" - -#~ msgid "Logout" -#~ msgstr "Abmelden" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" - -#~ msgid "Manage Users" -#~ msgstr "Benutzer verwalten" - -#~ msgid "Master Source" -#~ msgstr "Master Source" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#~ msgid "New File Summary Template" -#~ msgstr "Neue Dateiübersichtsvorlage" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Neue Protokollvorlage" - -#~ msgid "New User" -#~ msgstr "Neuer Benutzer" - -#~ msgid "New password" -#~ msgstr "Neues Passwort" - -#~ msgid "Next:" -#~ msgstr "Danach:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Keine Dateiübersichtsvorlagen" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Keine Protokollvorlagen" - -#~ msgid "No open playlist" -#~ msgstr "Keine Playlist geöffnet" - -#~ msgid "No webstream" -#~ msgstr "Kein Webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Es sind nur Zahlen erlaubt" - -#~ msgid "Original Length:" -#~ msgstr "Originallänge:" - -#~ msgid "Page not found!" -#~ msgstr "Seite nicht gefunden!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Inhalt: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist Crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld." - -#~ msgid "Please upgrade to " -#~ msgstr "Bitte aktualisieren sie auf " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port darf nicht leer sein." - -#~ msgid "Previous:" -#~ msgstr "Zuvor:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programm Manager können folgendes tun:" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime registrieren" - -#~ msgid "Remove watched directory" -#~ msgstr "Überwachten Ordner entfernen" - -#~ msgid "Repeat Days:" -#~ msgstr "Wiederholen Tage:" - -#~ msgid "Sample Rate:" -#~ msgstr "Samplerate:" - -#~ msgid "Save playlist" -#~ msgstr "Playlist speichern" - -#~ msgid "Search Criteria:" -#~ msgstr "Such-Kriterien:" - -#~ msgid "Select stream:" -#~ msgstr "Stream wählen:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server darf nicht leer sein." - -#~ msgid "Set" -#~ msgstr "Festlegen" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Standardvorlage wählen" - -#~ msgid "Share" -#~ msgstr "Teilen" - -#~ msgid "Show Source" -#~ msgstr "Show Source" - -#~ msgid "Show Summary" -#~ msgstr "Sendungsübersicht" - -#~ msgid "Show Waveform" -#~ msgstr "Wellenform anzeigen" - -#~ msgid "Show me what I am sending " -#~ msgstr "Zeige mir was ich sende " - -#~ msgid "Shuffle playlist" -#~ msgstr "Playlist mischen" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Statischer Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statischer Smart Block Inhalt: " - -#~ msgid "Station Description:" -#~ msgstr "Sender Beschreibung:" - -#~ msgid "Station Web Site:" -#~ msgstr "Sender-Webseite:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Stream Einstellungen" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL: " - -#~ msgid "Style" -#~ msgstr "Farbe" - -#~ msgid "Subtitle" -#~ msgstr "Untertitel" - -#~ msgid "Summary" -#~ msgstr "Zusammenfassung" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support-Einstellungen aktualisiert." - -#~ msgid "Terms and Conditions" -#~ msgstr "Allgemeine Geschäftsbedingungen" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Wenn Airtime nicht genug einzigartige Titel findet, die Ihren Kriterien entsprechen, kann die gewünschte Länge des Smart Blocks nicht erreicht werden. Wenn sie möchten, dass Titel mehrfach zum Smart Block hinzugefügt werden können, aktivieren sie diese Option." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Die Rechte an dieser Arbeit sind gemeinfrei" - -#~ msgid "This version is no longer supported." -#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Diese Version wird in Kürze veraltet sein." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren." - -#~ msgid "Track:" -#~ msgstr "Titel-Nr.:" - -#~ msgid "TuneIn Settings" -#~ msgstr "TuneIn Einstellungen" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Geben sie die Zeichen aus dem Bild unten ein." - -#~ msgid "Update Required" -#~ msgstr "Update erforderlich" - -#~ msgid "Update show" -#~ msgstr "Sendung aktualisieren" - -#~ msgid "Update track" -#~ msgstr "Track aktualisieren" - -#~ msgid "User Type" -#~ msgstr "Benutzertyp" - -#~ msgid "View track" -#~ msgstr "Track anzeigen" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "Was" - -#~ msgid "When" -#~ msgstr "Wann" - -#~ msgid "Who" -#~ msgstr "Wer" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Sie überwachen keine Medienordner." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." - -#~ msgid "Your trial expires in" -#~ msgstr "Ihre Testperiode endet in" - -#~ msgid "and" -#~ msgstr "und" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "Dateien entsprechen den Kriterien" - -#~ msgid "iTunes Fields" -#~ msgstr "iTunes Felder" - -#~ msgid "id" -#~ msgstr "ID" - -#~ msgid "max volume" -#~ msgstr "Maximale Lautstärke" - -#~ msgid "mute" -#~ msgstr "Stummschalten" - -#~ msgid "next" -#~ msgstr "weiter" - -#~ msgid "or" -#~ msgstr "oder" - -#~ msgid "pause" -#~ msgstr "Pause" - -#~ msgid "play" -#~ msgstr "Wiedergabe" - -#~ msgid "previous" -#~ msgstr "zurück" - -#~ msgid "stop" -#~ msgstr "Stop" - -#~ msgid "unmute" -#~ msgstr "Lautschalten" diff --git a/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po deleted file mode 100644 index a054402f7b..0000000000 --- a/webapp/src/locale/po/el_GR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4611 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Katerina Michailidi , 2014 -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-10-17 08:09+0000\n" -"Last-Translator: Kyle Robbertze \n" -"Language-Team: Greek \n" -"Language: el_GR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Xρήστες" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Κατάσταση" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Ιστορικό Playout" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Ιστορικό Template" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Στατιστικές Ακροατών" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Βοήθεια" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Έναρξη" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Εγχειρίδιο Χρήστη" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Δεν έχετε άδεια για αλλαγή πηγής." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s δεν βρέθηκε" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Κάτι πήγε στραβά." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Προεπισκόπηση" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Προσθήκη στη λίστα αναπαραγωγής" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Προσθήκη στο Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Διαγραφή" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Λήψη" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Αντιγραφή Λίστας Αναπαραγωγής" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Καμία διαθέσιμη δράση" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Αντιγραφή από %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Αναπαραγωγή ήχου" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Εγγραφή" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Κύριο Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Τίποτα δεν έχει προγραμματιστεί" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Τρέχουσα Εκπομπή:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Τρέχουσα" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Χρησιμοποιείτε την τελευταία έκδοση" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Νέα έκδοση διαθέσιμη: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Προσθήκη στο τρέχον smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Προσθήκη 1 Στοιχείου" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Προσθήκη %s στοιχείου/ων" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Προσθήκη" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Επεξεργασία" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Αφαίρεση" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Επεξεργασία Μεταδεδομένων" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Προσθήκη στην επιλεγμένη εκπομπή" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Επιλογή" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Επιλέξτε αυτή τη σελίδα" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Καταργήστε αυτήν την σελίδα" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Κατάργηση όλων" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Προγραμματισμένο" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Τίτλος" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Δημιουργός" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Ρυθμός Bit" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Συνθέτης" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Ενορχήστρωση" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Κωδικοποιήθηκε από" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Είδος" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Εταιρεία" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Γλώσσα" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Τελευταία τροποποίηση" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Τελευταία αναπαραγωγή" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Διάρκεια" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Μίμος" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Διάθεση" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Ιδιοκτήτης" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Κέρδος Επανάληψης" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Ρυθμός δειγματοληψίας" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Αριθμός Κομματιού" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Φορτώθηκε" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Ιστοσελίδα" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Έτος" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Φόρτωση..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Όλα" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Αρχεία" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Λίστες αναπαραγωγής" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Άγνωστος τύπος: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Ανέβασμα σε εξέλιξη..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Ανάκτηση δεδομένων από τον διακομιστή..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Κωδικός σφάλματος: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Μήνυμα σφάλματος: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Το input πρέπει να είναι θετικός αριθμός" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Το input πρέπει να είναι αριθμός" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Άνοιγμα Δημιουργού Πολυμέσων" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Αδύνατη η προεπισκόπιση του δυναμικού block" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Όριο για: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Οι λίστες αναπαραγωγής αποθηκεύτηκαν" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Ανασχηματισμός λίστας αναπαραγωγής" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Καταμέτρηση Ακροατών για %s : %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Υπενθύμιση σε 1 εβδομάδα" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Καμία υπενθύμιση" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ναι, βοηθώ το Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif " - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Το Smart block αποθηκεύτηκε" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Επεξεργασία..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Επιλέξτε τροποποιητή" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "περιέχει" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "δεν περιέχει" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "είναι" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "δεν είναι" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "ξεκινά με" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "τελειώνει με" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "είναι μεγαλύτερος από" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "είναι μικρότερος από" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "είναι στην κλίμακα" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Δημιουργία" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Επιλογή Φακέλου Αποθήκευσης" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Επιλογή Φακέλου για Προβολή" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\n" -"Αυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Διαχείριση Φακέλων Πολυμέσων" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Συνδέθηκε με τον διακομιστή streaming " - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Το stream είναι απενεργοποιημένο" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Λήψη πληροφοριών από το διακομιστή..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Αδύνατη η σύνδεση με τον διακομιστή streaming " - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή»." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής " - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Δεν βρέθηκαν αποτελέσματα" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Η εκπομπή δεν υπάρχει πια!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη " - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Εκπομπή" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Η εκπομπή είναι άδεια" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1λ" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5λ" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10λ" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15λ" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30λ" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60λ" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Ανάκτηση δεδομένων από το διακομιστή..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο " - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Ιανουάριος" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Φεβρουάριος" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Μάρτιος" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Απρίλης" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Μάιος" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Ιούνιος" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Ιούλιος" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Αύγουστος" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Σεπτέμβριος" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Οκτώβριος" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Νοέμβριος" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Δεκέμβριος" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Ιαν" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Φεβ" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Μαρ" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Απρ" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Ιουν" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Ιουλ" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Αυγ" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Σεπ" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Οκτ" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Νοε" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Δεκ" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Κυριακή" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Δευτέρα" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Τρίτη" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Τετάρτη" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Πέμπτη" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Παρασκευή" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Σάββατο" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Κυρ" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Δευ" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Τρι" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Τετ" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Πεμ" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Παρ" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Σαβ" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Ακύρωση Τρέχουσας Εκπομπής;" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Πάυση ηχογράφησης τρέχουσας εκπομπής;" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Οκ" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Περιεχόμενα Εκπομπής" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Αφαίρεση όλου του περιεχομένου;" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Διαγραφή επιλεγμένου στοιχείου/ων;" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Έναρξη" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Τέλος" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Διάρκεια" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Η εκπομπή είναι άδεια" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Ηχογράφηση Από Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Προεπισκόπηση κομματιού" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Μετακίνηση 1 Στοιχείου" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Μετακίνηση Στοιχείων %s" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Αποθήκευση" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Ακύρωση" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Επεξεργαστής Fade" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Επεξεργαστής Cue" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Επιλογή όλων" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Καμία Επιλογή" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων " - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Μετάβαση στο τρέχον κομμάτι " - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Ακύρωση τρέχουσας εκπομπής" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Προσθήκη / Αφαίρεση Περιεχομένου" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "σε χρήση" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Δίσκος" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Κοιτάξτε σε" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Άνοιγμα" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Διαχειριστής" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Διευθυντής Προγράμματος" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Επισκέπτης" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Προβολή Προγράμματος" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Προβολή περιεχομένου εκπομπής" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Οι DJ μπορούν να κάνουν τα παρακάτω" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Διαχείριση ανατεθημένου περιεχομένου εκπομπής" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Εισαγωγή αρχείων πολυμέσων" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams " - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Προβολή και διαχείριση περιεχομένου εκπομπής" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Πρόγραμμα εκπομπών" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Διαχείριση όλου του περιεχομένου βιβλιοθήκης" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Διαχείριση προτιμήσεων" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Διαχείριση Χρηστών" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Διαχείριση προβεβλημένων φακέλων " - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Αποστολή Σχολίων Υποστήριξης" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Προβολή κατάστασης συστήματος" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Πρόσβαση στην ιστορία playout" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Προβολή στατιστικών των ακροατών" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Εμφάνιση / απόκρυψη στηλών" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Από {από} σε {σε}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "Kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "εεεε-μμ-ηη" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "ωω:λλ:δδ.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Κυ" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Δε" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Τρ" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Τε" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Πε" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Πα" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Σα" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Κλείσιμο" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Ώρα" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Λεπτό" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Ολοκληρώθηκε" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Επιλογή αρχείων" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Προσθήκη Αρχείων" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Στάση Ανεβάσματος" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Έναρξη ανεβάσματος" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Προσθήκη αρχείων" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Ανέβηκαν %d/%d αρχεία" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Σύρετε αρχεία εδώ." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Σφάλμα επέκτασης αρχείου." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Σφάλμα μεγέθους αρχείου." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Σφάλμα μέτρησης αρχείων." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Σφάλμα αρχικοποίησης." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Σφάλμα HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Σφάλμα ασφάλειας." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Γενικό σφάλμα." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Σφάλμα IO" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Αρχείο: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d αρχεία σε αναμονή" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Το URL είτε είναι λάθος ή δεν υφίσταται" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Σφάλμα: Πολύ μεγάλο αρχείο: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Σφάλμα: Μη έγκυρη προέκταση αρχείου: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Ως Προεπιλογή" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Δημιουργία Εισόδου" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Επεξεργασία Ιστορικού" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Καμία Εκπομπή" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Αντιγράφηκαν %s σειρές%s στο πρόχειρο" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Περιγραφή" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Ενεργοποιημένο" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Απενεργοποιημένο" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Βλέπετε μια παλαιότερη έκδοση του %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Λίστα Αναπαραγωγής χωρίς Τίτλο" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Smart Block χωρίς Τίτλο" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Άγνωστη λίστα αναπαραγωγής" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Οι προτιμήσεις ενημερώθηκαν." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Η Ρύθμιση Stream Ενημερώθηκε." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "η διαδρομή πρέπει να καθοριστεί" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Πρόβλημα με Liquidsoap ..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Επιλέξτε cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Αφαίρεση cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "η εκπομπή δεν υπάρχει" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Ο χρήστης προστέθηκε επιτυχώς!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Webstream χωρίς Τίτλο" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Το Webstream αποθηκεύτηκε." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Άκυρες μορφές αξίας." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Εισαγωγή άκυρου χαρακτήρα" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Η μέρα πρέπει να προσδιοριστεί" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Η ώρα πρέπει να προσδιοριστεί" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Προσαρμοσμένο Όνομα Χρήστη" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Ηχογράφηση από Line In;" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Αναμετάδοση;" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "ημέρες" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Σύνδεσμος" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Τύπος Επανάληψης:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "εβδομαδιαία" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "κάθε 2 εβδομάδες" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "κάθε 3 εβδομάδες" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "κάθε 4 εβδομάδες" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "μηνιαία" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Επιλέξτε Ημέρες:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Επανάληψη από:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "ημέρα του μήνα" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "ημέρα της εβδομάδας" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Ημερομηνία Λήξης:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Χωρίς Τέλος;" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Επιλέξτε ημέρα επανάληψης" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Χρώμα Φόντου:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Χρώμα Κειμένου:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Όνομα:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Εκπομπή χωρίς Τίτλο" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "Διεύθυνση URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Είδος:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Περιγραφή:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Διάρκεια:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Ζώνη Ώρας" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Επαναλήψεις;" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Δεν μπορεί να έχει διάρκεια < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Αναζήτηση Χρηστών:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Όνομα Χρήστη:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Κωδικός πρόσβασης:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Επαλήθευση κωδικού πρόσβασης" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Όνομα:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Επώνυμο:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Κινητό Τηλέφωνο:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Τύπος Χρήστη:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Το όνομα εισόδου δεν είναι μοναδικό." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Ημερομηνία Έναρξης:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Τίτλος:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Δημιουργός:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Έτος" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Δισκογραφική:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Συνθέτης:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Μαέστρος:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Διάθεση:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Αριθμός ISRC:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Ιστοσελίδα:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Γλώσσα:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Ώρα Έναρξης" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Ώρα Τέλους" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Ζώνης ώρας:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Όνομα Σταθμού" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Λογότυπο Σταθμού:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Προεπιλεγμένη Διάρκεια Crossfade (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Προεπιλεγμένο Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Προεπιλεγμένο Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Ζώνη Ώρας Σταθμού" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Η Εβδομάδα αρχίζει " - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Σύνδεση" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Κωδικός πρόσβασης" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Όνομα Χρήστη" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Επαναφορά κωδικού πρόσβασης" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Αναπαραγωγή σε Εξέλιξη" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Όλες οι Εκπομπές μου:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Επιλέξτε κριτήρια" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Ρυθμός Δειγματοληψίας (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "ώρες" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "λεπτά" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "στοιχεία" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Δυναμικό" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Στατικό" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Περιεχόμενο λίστας Shuffle " - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Η τιμή πρέπει να είναι αριθμός" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Η αξία δεν μπορεί να είναι κενή" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Καλλιτέχνης - Τίτλος" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Εκπομπή - Καλλιτέχνης - Τίτλος" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Όνομα Σταθμού - Όνομα Εκπομπής" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Μεταδεδομένα Off Air" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Ενεργοποίηση Επανάληψη Κέρδους" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Τροποποιητής Επανάληψης Κέρδους" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Ενεργοποιημένο" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Τύπος Stream:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Ρυθμός Δεδομένων:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Τύπος Υπηρεσίας:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Κανάλια" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Διακομιστής" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Θύρα" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Σημείο Προσάρτησης" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Ονομασία" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "Διεύθυνση URL:" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Εισαγωγή Φακέλου:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Παροβεβλημμένοι Φάκελοι:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Μη έγκυρο Ευρετήριο" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in και cue out είναι μηδέν." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Επιλέξτε Χώρα" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη." - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n" -" Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Αναμετάδοση του %s από %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες " - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Δεν βρέθηκε τύπος MIME για webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF " - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Άγνωστος τύπος stream: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Το αρχείο δεν υπάρχει" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων " - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Επεξεργασία Εκπομπής" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Δεν έχετε δικαίωμα πρόσβασης" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Κομμάτι" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Παίχτηκε" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " να " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s έχει ήδη προβληθεί." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s μη έγκυρο ευρετήριο." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)." - -#~ msgid "(Required)" -#~ msgstr "(Απαιτείται)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(ωω:λλ:δδ.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(Ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Σχετικά" - -#~ msgid "Add New Field" -#~ msgstr "Προσθήκη Νέου Πεδίου" - -#~ msgid "Add more elements" -#~ msgstr "Προσθήκη περισσότερων στοιχείων" - -#~ msgid "Add this show" -#~ msgstr "Προσθήκη αυτής της εκπομπής " - -#~ msgid "Additional Options" -#~ msgstr "Πρόσθετες επιλογές" - -#~ msgid "Admin Password" -#~ msgstr "Κωδικός πρόσβασης Διαχειριστή" - -#~ msgid "Admin User" -#~ msgstr "Διαχειριστής Χρήστης" - -#~ msgid "Advanced Search Options" -#~ msgstr "Προηγμένες Επιλογές Αναζήτησης" - -#~ msgid "All rights are reserved" -#~ msgstr "Διατήρηση όλων των δικαιωμάτων" - -#~ msgid "Audio Track" -#~ msgstr "Κομμάτι Ήχου" - -#~ msgid "Choose Days:" -#~ msgstr "Επιλέξτε Ημέρες:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Επιλογή Παρουσίας Εκπομπής" - -#~ msgid "Choose folder" -#~ msgstr "Επιλέξτε φάκελο" - -#~ msgid "City:" -#~ msgstr "Πόλη" - -#~ msgid "Clear" -#~ msgstr "Εκκαθάριση" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους" - -#~ msgid "Country:" -#~ msgstr "Χώρα" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Δημιουργία Αρχείου Περίληψης Template " - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Δημιουργία Template Φόρμας Σύνδεσης" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Απόδοση Creative Commons" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Απόδοση Creative Commons Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Τρέχων Φάκελος Εισαγωγής:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default Length:" -#~ msgstr "Προεπιλεγμένη Διάρκεια:" - -#~ msgid "Default License:" -#~ msgstr "Προεπιλεγμένη Άδεια :" - -#~ msgid "Disk Space" -#~ msgstr "Χώρος δίσκου" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Δυναμικά Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Κριτήρια Δυναμικών Smart Block: " - -#~ msgid "Empty playlist content" -#~ msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Επέκταση Δυναμικών Block" - -#~ msgid "Expand Static Block" -#~ msgstr "Επέκταση Στατικών Block" - -#~ msgid "Fade in: " -#~ msgstr "Fade in: " - -#~ msgid "Fade out: " -#~ msgstr "Fade out: " - -#~ msgid "File Path:" -#~ msgstr "Διαδρομή Αρχείου" - -#~ msgid "File Summary" -#~ msgstr "Περίληψη Αρχείων" - -#~ msgid "File Summary Templates" -#~ msgstr "Template Περίληψης Αρχείου" - -#~ msgid "File import in progress..." -#~ msgstr "Εισαγωγή αρχείου σε εξέλιξη..." - -#~ msgid "Filter History" -#~ msgstr "Φιλτράρισμα Ιστορίας" - -#~ msgid "Find" -#~ msgstr "Εύρεση" - -#~ msgid "Find Shows" -#~ msgstr "Εύρεση Εκπομπών" - -#~ msgid "First Name" -#~ msgstr "Όνομα" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Για περισσότερες λεπτομέρειες, παρακαλούμε διαβάστε το %sAirtime Εγχειρίδιο%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Μεταδεδομένα Icecast Vorbis " - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Αν το Airtime είναι πίσω από ένα τείχος προστασίας ή router, ίσως χρειαστεί να ρυθμίσετε την προώθηση port και οι πληροφορίες πεδίου θα είναι λανθασμένες. Σε αυτή την περίπτωση θα πρέπει να ενημερώσετε αυτό το πεδίο, ώστε να δείχνει το σωστό host/port/mount που χρειάζονται οι DJ σας για να συνδεθούν. Το επιτρεπόμενο εύρος είναι μεταξύ 1024 και 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Αριθμός ISRC:" - -#~ msgid "Last Name" -#~ msgstr "Επώνυμο" - -#~ msgid "Length:" -#~ msgstr "Διάρκεια:" - -#~ msgid "Limit to " -#~ msgstr "Όριο για " - -#~ msgid "Listen" -#~ msgstr "Ακούστε!" - -#~ msgid "Live Stream Input" -#~ msgstr "Είσοδος Live Stream " - -#~ msgid "Live stream" -#~ msgstr "Ζωντανό Stream" - -#~ msgid "Log Sheet" -#~ msgstr "Σελίδα Σύνδεσης" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Template Φόρμας Σύνδεσης" - -#~ msgid "Logout" -#~ msgstr "Έξοδος" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!" - -#~ msgid "Manage Users" -#~ msgstr "Διαχείριση Χρηστών" - -#~ msgid "Master Source" -#~ msgstr "Κύρια Πηγή " - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." - -#~ msgid "New File Summary Template" -#~ msgstr "Νέο Template Περίληψης Αρχείου" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Νέο Template Φόρμας Σύνδεσης" - -#~ msgid "New User" -#~ msgstr "Νέος Χρήστης" - -#~ msgid "New password" -#~ msgstr "Νέος κωδικός πρόσβασης" - -#~ msgid "Next:" -#~ msgstr "Επόμενο" - -#~ msgid "No File Summary Templates" -#~ msgstr "Κανένα Template Περίληψης Αρχείου" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Κανένα Template Φόρμας Σύνδεσης" - -#~ msgid "No open playlist" -#~ msgstr "Καμία ανοικτή λίστα αναπαραγωγής" - -#~ msgid "No webstream" -#~ msgstr "Κανένα webstream" - -#~ msgid "OK" -#~ msgstr "ΟΚ" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Επιτρέπονται μόνο αριθμοί." - -#~ msgid "Original Length:" -#~ msgstr "Αρχική Διάρκεια:" - -#~ msgid "Page not found!" -#~ msgstr "Η σελίδα δεν βρέθηκε!" - -#~ msgid "Phone:" -#~ msgstr "Τηλέφωνο:" - -#~ msgid "Play" -#~ msgstr "Αναπαραγωγή" - -#~ msgid "Playlist Contents: " -#~ msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Crossfade λίστας αναπαραγωγής" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. " - -#~ msgid "Please upgrade to " -#~ msgstr "Παρακαλούμε να αναβαθμίσετε σε " - -#~ msgid "Port cannot be empty." -#~ msgstr "Το Port δεν μπορεί να είναι κενό." - -#~ msgid "Previous:" -#~ msgstr "Προηγούμενο" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Οι Μάνατζερ Προγράμματος μπορούν να κάνουν τα παρακάτω:" - -#~ msgid "Register Airtime" -#~ msgstr "Εγγραφή σε Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου" - -#~ msgid "Repeat Days:" -#~ msgstr "Επανάληψη Ημερών:" - -#~ msgid "Sample Rate:" -#~ msgstr "Ρυθμός δειγματοληψίας:" - -#~ msgid "Save playlist" -#~ msgstr "Αποθήκευση λίστας αναπαραγωγής" - -#~ msgid "Select stream:" -#~ msgstr "Επιλέξτε stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." - -#~ msgid "Set" -#~ msgstr "Ορισμός" - -#~ msgid "Set Cue In" -#~ msgstr "Ρύθμιση Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Ρύθμιση Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Ορισμός Προεπιλεγμένου Template " - -#~ msgid "Share" -#~ msgstr "Μοιραστείτε" - -#~ msgid "Show Source" -#~ msgstr "Εμφάνιση Πηγής " - -#~ msgid "Show Summary" -#~ msgstr "Προβολή Περίληψης" - -#~ msgid "Show Waveform" -#~ msgstr "Εμφάνιση κυμματοειδούς μορφής" - -#~ msgid "Show me what I am sending " -#~ msgstr "Δείξε μου τι στέλνω " - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle λίστα αναπαραγωγής" - -#~ msgid "Source Streams" -#~ msgstr "Πηγή Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Στατικά Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Περιεχόμενα Στατικών Smart Block : " - -#~ msgid "Station Description:" -#~ msgstr "Περιγραφή Σταθμού:" - -#~ msgid "Station Web Site:" -#~ msgstr "Ιστοσελίδα Σταθμού:" - -#~ msgid "Stop" -#~ msgstr "Παύση" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Ρυθμίσεις Stream" - -#~ msgid "Stream URL:" -#~ msgstr "URL Stream:" - -#~ msgid "Stream URL: " -#~ msgstr "URL Stream: " - -#~ msgid "Style" -#~ msgstr "Στυλ" - -#~ msgid "Support Feedback" -#~ msgstr "Σχόλια Υποστήριξης" - -#~ msgid "Support setting updated." -#~ msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε." - -#~ msgid "Terms and Conditions" -#~ msgstr "Όροι και Προϋποθέσεις" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Η επιθυμητή διάρκεια του block δεν θα επιτευχθεί αν το Airtime δεν μπορέσει να βρεί αρκετά μοναδικά κομμάτια που να ταιριάζουν στα κριτήριά σας. Ενεργοποιήστε αυτή την επιλογή αν θέλετε να επιτρέψετε την πολλαπλή προσθήκη κομματιών στο smart block." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Εργασία δημόσιας χρήσης" - -#~ msgid "This version is no longer supported." -#~ msgstr "Αυτή η έκδοση δεν υποστηρίζεται πλέον." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Αυτή η έκδοση θα παρωχηθεί σύντομα." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας." - -#~ msgid "Track:" -#~ msgstr "Κομμάτι:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα." - -#~ msgid "Update Required" -#~ msgstr "Απαιτείται Ενημέρωση " - -#~ msgid "Update show" -#~ msgstr "Ενημέρωση εκπομπής" - -#~ msgid "User Type" -#~ msgstr "Τύπος Χρήστη" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "Τι" - -#~ msgid "When" -#~ msgstr "Πότε" - -#~ msgid "Who" -#~ msgstr "Ποιός" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων." - -#~ msgid "Your trial expires in" -#~ msgstr "Το δοκιμαστικό λήγει σε" - -#~ msgid "and" -#~ msgstr "και" - -#~ msgid "dB" -#~ msgstr "βΔ" - -#~ msgid "files meet the criteria" -#~ msgstr "τα αρχεία πληρούν τα κριτήρια" - -#~ msgid "id" -#~ msgstr "ταυτότητα" - -#~ msgid "max volume" -#~ msgstr "μέγιστη ένταση" - -#~ msgid "mute" -#~ msgstr "Σίγαση" - -#~ msgid "next" -#~ msgstr "επόμενο" - -#~ msgid "or" -#~ msgstr "ή" - -#~ msgid "pause" -#~ msgstr "παύση" - -#~ msgid "play" -#~ msgstr "αναπαραγωγή" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "παρακαλούμε εισάγετε τιμή ώρας σε δευτερόλεπτα '00 (0,0)'" - -#~ msgid "previous" -#~ msgstr "προηγούμενο" - -#~ msgid "stop" -#~ msgstr "στάση" - -#~ msgid "unmute" -#~ msgstr "Κατάργηση σίγασης" diff --git a/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po deleted file mode 100644 index 6831a4756b..0000000000 --- a/webapp/src/locale/po/en_CA/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4610 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Daniel James , 2014 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: English (Canada)\n" -"Language: en_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "The year %s must be within the range of 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s is not a valid date" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s is not a valid time" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendar" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Users" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout History" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "History Templates" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Listener Stats" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Help" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Getting Started" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "User Manual" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Preview" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Delete" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Download" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "No action available" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Recording:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Current Show:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Current" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "New version available: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Add" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edit" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Remove" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Select" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Select this page" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Deselect all" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Scheduled" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Title" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Creator" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Composer" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Conductor" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded By" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Language" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Last Modified" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Last Played" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Length" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Mood" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Owner" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Track Number" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Uploaded" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Year" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Loading..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "All" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Files" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlists" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Error code: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Error msg: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limit to: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Processing..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Select modifier" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contains" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "does not contain" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "is" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "is not" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "starts with" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "ends with" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "is greater than" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "is less than" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "is in the range" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generate" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "No result found" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Show" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Show is empty" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "January" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "February" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "March" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "May" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "June" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "July" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "August" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "September" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "October" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "December" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Oct" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Sunday" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Monday" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Tuesday" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Wednesday" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Thursday" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Friday" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Saturday" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Sun" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Mon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Tue" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Wed" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Thu" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Fri" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sat" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Start" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "End" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duration" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show Empty" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Track preview" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Save" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Select all" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Select none" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "in use" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Look in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Open" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Program Manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Guest" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "View schedule" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "View show content" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Import media files" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Manage users" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "View system status" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Access playout history" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "View listener stats" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Su" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Mo" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Tu" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "We" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Th" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Fr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Close" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hour" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Done" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Select files" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Add Files" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Start upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Add files" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Drag files here." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "File extension error." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "File size error." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "File count error." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init error." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Security error." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Generic error." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO error." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Set Default" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Create Entry" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Description" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Enabled" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Disabled" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "path should be specified" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Select cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "show does not exist" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Custom Username" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "days" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "weekly" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "monthly" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Select Days:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "day of the month" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "day of the week" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Date End:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Description:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Duration:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Timezone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Repeats?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Search Users:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Username:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Password:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "First name:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Last name:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "User Type:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Date Start:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Year:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Composer:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conductor:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Mood:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Language:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Start Time" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "End Time" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Station Name" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Login" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Password" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Username" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Reset password" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Select criteria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "hours" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutes" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "items" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamic" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Static" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Enabled:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Type:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Channels:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Name" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Select Country" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Shows can have a max length of 24 hours." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL should be of form \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognized stream type: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Edit Show" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Permission denied" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Track" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Played" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " to " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contains nested watched directory: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s doesn't exist in the watched list." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s is already set as the current storage dir or in the watched folders list" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s is already set as the current storage dir or in the watched folders list." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s is already watched." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s is nested within existing watched directory: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s is not a valid directory." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." - -#~ msgid "(Required)" -#~ msgstr "(Required)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Your radio station website)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "About" - -#~ msgid "Add New Field" -#~ msgstr "Add New Field" - -#~ msgid "Add more elements" -#~ msgstr "Add more elements" - -#~ msgid "Add this show" -#~ msgstr "Add this show" - -#~ msgid "Additional Options" -#~ msgstr "Additional Options" - -#~ msgid "Admin Password" -#~ msgstr "Admin Password" - -#~ msgid "Admin User" -#~ msgstr "Admin User" - -#~ msgid "Advanced Search Options" -#~ msgstr "Advanced Search Options" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "Audio Track" -#~ msgstr "Audio Track" - -#~ msgid "Choose Days:" -#~ msgstr "Choose Days:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Choose Show Instance" - -#~ msgid "Choose folder" -#~ msgstr "Choose folder" - -#~ msgid "City:" -#~ msgstr "City:" - -#~ msgid "Clear" -#~ msgstr "Clear" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" - -#~ msgid "Country:" -#~ msgstr "Country:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Creating File Summary Template" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Creating Log Sheet Template" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Current Import Folder:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default Length:" -#~ msgstr "Default Length:" - -#~ msgid "Default License:" -#~ msgstr "Default License:" - -#~ msgid "Disk Space" -#~ msgstr "Disk Space" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamic Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamic Smart Block Criteria: " - -#~ msgid "Empty playlist content" -#~ msgstr "Empty playlist content" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expand Dynamic Block" - -#~ msgid "Expand Static Block" -#~ msgstr "Expand Static Block" - -#~ msgid "Fade in: " -#~ msgstr "Fade in: " - -#~ msgid "Fade out: " -#~ msgstr "Fade out: " - -#~ msgid "File Path:" -#~ msgstr "File Path:" - -#~ msgid "File Summary" -#~ msgstr "File Summary" - -#~ msgid "File Summary Templates" -#~ msgstr "File Summary Templates" - -#~ msgid "File import in progress..." -#~ msgstr "File import in progress..." - -#~ msgid "Filter History" -#~ msgstr "Filter History" - -#~ msgid "Find" -#~ msgstr "Find" - -#~ msgid "Find Shows" -#~ msgstr "Find Shows" - -#~ msgid "First Name" -#~ msgstr "First Name" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "For more detailed help, read the %suser manual%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Number:" - -#~ msgid "Last Name" -#~ msgstr "Last Name" - -#~ msgid "Length:" -#~ msgstr "Length:" - -#~ msgid "Limit to " -#~ msgstr "Limit to " - -#~ msgid "Listen" -#~ msgstr "Listen" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Log Sheet" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Log Sheet Templates" - -#~ msgid "Logout" -#~ msgstr "Logout" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Looks like the page you were looking for doesn't exist!" - -#~ msgid "Manage Users" -#~ msgstr "Manage Users" - -#~ msgid "Master Source" -#~ msgstr "Master Source" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount cannot be empty with Icecast server." - -#~ msgid "New File Summary Template" -#~ msgstr "New File Summary Template" - -#~ msgid "New Log Sheet Template" -#~ msgstr "New Log Sheet Template" - -#~ msgid "New User" -#~ msgstr "New User" - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "Next:" -#~ msgstr "Next:" - -#~ msgid "No File Summary Templates" -#~ msgstr "No File Summary Templates" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "No Log Sheet Templates" - -#~ msgid "No open playlist" -#~ msgstr "No open playlist" - -#~ msgid "No webstream" -#~ msgstr "No webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Only numbers are allowed." - -#~ msgid "Original Length:" -#~ msgstr "Original Length:" - -#~ msgid "Page not found!" -#~ msgstr "Page not found!" - -#~ msgid "Phone:" -#~ msgstr "Phone:" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Contents: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Please enter and confirm your new password in the fields below." - -#~ msgid "Please upgrade to " -#~ msgstr "Please upgrade to " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port cannot be empty." - -#~ msgid "Previous:" -#~ msgstr "Previous:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" - -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Remove watched directory" - -#~ msgid "Repeat Days:" -#~ msgstr "Repeat Days:" - -#~ msgid "Sample Rate:" -#~ msgstr "Sample Rate:" - -#~ msgid "Save playlist" -#~ msgstr "Save playlist" - -#~ msgid "Select stream:" -#~ msgstr "Select stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server cannot be empty." - -#~ msgid "Set" -#~ msgstr "Set" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Set Default Template" - -#~ msgid "Share" -#~ msgstr "Share" - -#~ msgid "Show Source" -#~ msgstr "Show Source" - -#~ msgid "Show Summary" -#~ msgstr "Show Summary" - -#~ msgid "Show Waveform" -#~ msgstr "Show Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle playlist" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Static Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Static Smart Block Contents: " - -#~ msgid "Station Description:" -#~ msgstr "Station Description:" - -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Stream Settings" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL: " - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." - -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "The following info will be displayed to listeners in their media player:" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Track:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." - -#~ msgid "Update Required" -#~ msgstr "Update Required" - -#~ msgid "Update show" -#~ msgstr "Update show" - -#~ msgid "User Type" -#~ msgstr "User Type" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "What" - -#~ msgid "When" -#~ msgstr "When" - -#~ msgid "Who" -#~ msgstr "Who" - -#~ msgid "You are not watching any media folders." -#~ msgstr "You are not watching any media folders." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max volume" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "next" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "please put in a time in seconds '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "previous" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "unmute" diff --git a/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po deleted file mode 100644 index b052ea706f..0000000000 --- a/webapp/src/locale/po/en_GB/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4875 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Daniel James , 2014-2015 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2022-07-14 09:18+0000\n" -"Last-Translator: Kyle Robbertze \n" -"Language-Team: English (United Kingdom) \n" -"Language: en_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "The year %s must be within the range of 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s is not a valid date" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s is not a valid time" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "English (United Kingdom)" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Afar" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abkhazian" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amharic" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Arabic" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Assamese" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aymara" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Bashkir" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Bashkir" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Bulgarian" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Bihari" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bislama" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengali" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibetan" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Breton" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Catalan" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Corsican" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Czech" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Welsh" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Danish" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "German" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Bhutani" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Greek" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Esperanto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Spanish" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estonian" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Basque" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persian" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Finnish" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fiji" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Faeroese" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "French" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Frisian" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Irish" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Scots/Gaelic" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galician" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guarani" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Gujarati" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Hausa" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hindi" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Croatian" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Hungarian" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Armenian" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Interlingua" - -#: application/common/LocaleHelper.php:67 -#, fuzzy -msgid "Interlingue" -msgstr "Interlingue" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Inupiak" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Indonesian" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Icelandic" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italian" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hebrew" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japanese" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Yiddish" - -#: application/common/LocaleHelper.php:75 -#, fuzzy -msgid "Javanese" -msgstr "Javanese" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Georgian" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kazakh" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Greenlandic" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Cambodian" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Kannada" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Korean" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Kashmiri" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kurdish" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kirghiz" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latin" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Lingala" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Laothian" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Lithuanian" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Latvian/Lettish" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Malagasy" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maori" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Macedonian" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayalam" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Mongolian" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldavian" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Marathi" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malay" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltese" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "Upload some tracks below to add them to your library!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Please click the 'New Show' button and fill out the required fields." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "It looks like you don't have any shows scheduled yet. %sCreate a show now%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "To start broadcasting, click on the current show and select 'Schedule Tracks'" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Click on the show starting next and select 'Schedule Tracks'" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "It looks like the next show is empty. %sAdd tracks to your show now%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Radio Page" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendar" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Widgets" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Player" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Weekly Schedule" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Settings" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "General" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "My Profile" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Users" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Analytics" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout History" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "History Templates" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Listener Stats" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Help" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Getting Started" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "User Manual" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Get Help Online" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "File does not exist in %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Page not found." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "The requested action is not supported." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "You do not have permission to access this resource." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "An internal application error has occurred." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Preview" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Delete" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Download" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "No action available" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Could not delete file because it is scheduled in the future." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Could not delete file(s)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure admin user/password is correct on Settings->Streams page." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Something went wrong!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Recording:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Current Show:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Current" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "New version available: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "You haven't added any tracks" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "You haven't added any playlists" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "You haven't added any smart blocks" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "You haven't added any webstreams" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Learn about tracks" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Learn about playlists" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Learn about smart blocks" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Learn about webstreams" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Click 'New' to create one." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Add" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edit" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Remove" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Select" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Select this page" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Deselect all" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Scheduled" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Tracks" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Playlist" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Title" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Creator" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Composer" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Conductor" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded By" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Language" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Last Modified" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Last Played" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Length" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Mood" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Owner" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Track Number" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Uploaded" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Year" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Loading..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "All" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Files" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlists" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "View" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Error code: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Error msg: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limit to: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Processing..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Select modifier" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contains" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "does not contain" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "is" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "is not" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "starts with" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "ends with" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "is greater than" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "is less than" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "is in the range" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generate" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "WARNING: This will restart your stream and may cause a short dropout for your listeners!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "No result found" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Show" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Show is empty" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "January" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "February" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "March" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "May" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "June" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "July" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "August" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "September" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "October" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "December" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Oct" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Today" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Day" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Week" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Month" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Sunday" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Monday" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Tuesday" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Wednesday" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Thursday" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Friday" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Saturday" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Sun" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Mon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Tue" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Wed" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Thu" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Fri" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sat" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Start" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "End" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duration" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Filtering out " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " of " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " records" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show Empty" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Track preview" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Save" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Select all" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Select none" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Trim overbooked shows" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "in use" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Look in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Open" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Program Manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Guest" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "View schedule" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "View show content" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Import media files" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Manage users" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "View system status" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Access playout history" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "View listener stats" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Su" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Mo" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Tu" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "We" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Th" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Fr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Close" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hour" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Done" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Select files" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Add Files" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Start upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Add files" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Drag files here." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "File extension error." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "File size error." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "File count error." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init error." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Security error." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Generic error." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO error." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Set Default" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Create Entry" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "New Show" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "New Log Entry" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Description" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Enabled" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Disabled" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Smart Block" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Please enter your username and password." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "There was a problem with the username or email address you entered." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "path should be specified" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Request method not accepted" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Select cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "show does not exist" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Use %s Authentication:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Custom Username" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Host:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Port:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Mount:" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "days" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "weekly" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "monthly" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Select Days:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "day of the month" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "day of the week" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Date End:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Current Logo:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Show Logo:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Logo Preview:" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Description:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Instance Description:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Start Time:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "In the Future:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "End Time:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Duration:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Timezone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Repeats?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Search Users:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Username:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Password:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Firstname:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Lastname:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "User Type:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Delete All Tracks in Library" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Date Start:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Year:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Composer:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conductor:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Mood:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Language:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Start Time" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "End Time" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Station Name" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Station Description" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Please enter a time in seconds (e.g. 0.5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "Public LibreTime API" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Required for embeddable schedule widget." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Default Language" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "Display login button on your Radio Page?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Auto Switch Off:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Auto Switch On:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Switch Transition Fade (s):" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Login" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Password" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Email" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Username" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Reset password" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Back" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Select Stream:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Auto-detect the most appropriate stream to use." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Select a stream:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Mobile friendly" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - The player does not support Opus streams." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Embeddable code:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Copy this code and paste it into your website's HTML to embed the player in your site." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Preview:" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Public" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Private" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Station Language" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Filter by Show" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Select criteria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "hours" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutes" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "items" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Randomly" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Newest" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Oldest" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "Select Track Type" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Type:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamic" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Static" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "Select track type" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Allow Repeated Tracks:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Allow last track to exceed time limit:" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Sort Tracks:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Limit to:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "You must select a time unit for a relative date and time." - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "Only non-negative integer numbers are allowed for a relative date time" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Hardware Audio Output:" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Output Type" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Enabled:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Mobile:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Type:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Channels:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Name" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Push metadata to your station on TuneIn?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Station ID:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partner Key:" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partner ID:" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Password Reset" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Upload Time" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "None" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "Powered by %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Select Country" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "livestream" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Cannot schedule a playlist that contains missing files." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Shows can have a max length of 24 hours." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL should be of form \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognised stream type: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Schedule Tracks" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Clear Show" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Cancel Show" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Edit Instance" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Edit Show" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Delete Instance" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Delete Instance and All Following" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Permission denied" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Track" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Played" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "Auto-generated smart-block for podcast" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Webstreams" - -#~ msgid " to " -#~ msgstr " to " - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s is distributed under the %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, the open radio software for scheduling and remote station management." - -#, php-format -#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -#~ msgstr "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contains nested watched directory: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s doesn't exist in the watched list." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s is already set as the current storage dir or in the watched folders list" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s is already set as the current storage dir or in the watched folders list." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s is already watched." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s is nested within existing watched directory: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s is not a valid directory." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." - -#~ msgid "(Required)" -#~ msgstr "(Required)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Your radio station website)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgstr "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" - -#~ msgid "A track list will be generated when you schedule this smart block into a show." -#~ msgstr "A track list will be generated when you schedule this smart block into a show." - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "About" - -#~ msgid "Access Denied!" -#~ msgstr "Access Denied!" - -#~ msgid "Add New Field" -#~ msgstr "Add New Field" - -#~ msgid "Add more elements" -#~ msgstr "Add more elements" - -#~ msgid "Add this show" -#~ msgstr "Add this show" - -#~ msgid "Add tracks to your show" -#~ msgstr "Add tracks to your show" - -#~ msgid "Additional Options" -#~ msgstr "Additional Options" - -#~ msgid "Admin Password" -#~ msgstr "Admin Password" - -#~ msgid "Admin User" -#~ msgstr "Admin User" - -#~ msgid "Advanced Search Options" -#~ msgstr "Advanced Search Options" - -#~ msgid "Airtime Pro Streaming" -#~ msgstr "Airtime Pro Streaming" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "An error has occurred." -#~ msgstr "An error has occurred." - -#~ msgid "Audio Track" -#~ msgstr "Audio Track" - -#~ msgid "Bad Request!" -#~ msgstr "Bad Request!" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "By checking this box, I agree to %s's %sprivacy policy%s." - -#~ msgid "Choose Days:" -#~ msgstr "Choose Days:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Choose Show Instance" - -#~ msgid "Choose folder" -#~ msgstr "Choose folder" - -#~ msgid "Choose some search criteria above and click Generate to create this playlist." -#~ msgstr "Choose some search criteria above and click Generate to create this playlist." - -#~ msgid "City:" -#~ msgstr "City:" - -#~ msgid "Clear" -#~ msgstr "Clear" - -#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -#~ msgstr "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." - -#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -#~ msgstr "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." - -#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -#~ msgstr "Click the 'Upload' button in the left corner to upload tracks to your library." - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Click the box below to promote your station on %s." - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" - -#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgstr "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." - -#~ msgid "Country:" -#~ msgstr "Country:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Creating File Summary Template" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Creating Log Sheet Template" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Current Import Folder:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Custom / 3rd Party Streaming" - -#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -#~ msgstr "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." - -#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -#~ msgstr "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." - -#~ msgid "Dangerous Options" -#~ msgstr "Dangerous Options" - -#~ msgid "Dashboard" -#~ msgstr "Dashboard" - -#~ msgid "Default Length:" -#~ msgstr "Default Length:" - -#~ msgid "Default License:" -#~ msgstr "Default License:" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Default Sharing Type:" - -#~ msgid "Default Streaming" -#~ msgstr "Default Streaming" - -#~ msgid "Disk Space" -#~ msgstr "Disk Space" - -#~ msgid "Drag tracks here from your library to add them to the playlist" -#~ msgstr "Drag tracks here from your library to add them to the playlist" - -#~ msgid "Drop files here or click to browse your computer." -#~ msgstr "Drop files here or click to browse your computer." - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamic Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamic Smart Block Criteria: " - -#~ msgid "Editing " -#~ msgstr "Editing " - -#~ msgid "Email Sent!" -#~ msgstr "Email Sent!" - -#~ msgid "Empty playlist content" -#~ msgstr "Empty playlist content" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expand Dynamic Block" - -#~ msgid "Expand Static Block" -#~ msgstr "Expand Static Block" - -#~ msgid "FAQ" -#~ msgstr "FAQ" - -#~ msgid "Fade in: " -#~ msgstr "Fade in: " - -#~ msgid "Fade out: " -#~ msgstr "Fade out: " - -#~ msgid "Failed" -#~ msgstr "Failed" - -#~ msgid "File Path:" -#~ msgstr "File Path:" - -#~ msgid "File Summary" -#~ msgstr "File Summary" - -#~ msgid "File Summary Templates" -#~ msgstr "File Summary Templates" - -#~ msgid "File import in progress..." -#~ msgstr "File import in progress..." - -#~ msgid "Filter History" -#~ msgstr "Filter History" - -#~ msgid "Find" -#~ msgstr "Find" - -#~ msgid "Find Shows" -#~ msgstr "Find Shows" - -#~ msgid "First Name" -#~ msgstr "First Name" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "For more detailed help, read the %suser manual%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" - -#~ msgid "Forgot your password?" -#~ msgstr "Forgot your password?" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Here's how you can get started using %s to automate your broadcasts: " - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Number:" - -#~ msgid "Jack" -#~ msgstr "Jack" - -#~ msgid "Last Name" -#~ msgstr "Last Name" - -#~ msgid "Length:" -#~ msgstr "Length:" - -#~ msgid "Limit to " -#~ msgstr "Limit to " - -#~ msgid "Listen" -#~ msgstr "Listen" - -#~ msgid "Listeners" -#~ msgstr "Listeners" - -#~ msgid "Live Broadcasting" -#~ msgstr "Live Broadcasting" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Log Sheet" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Log Sheet Templates" - -#~ msgid "Logout" -#~ msgstr "Logout" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Looks like the page you were looking for doesn't exist!" - -#~ msgid "Manage Users" -#~ msgstr "Manage Users" - -#~ msgid "Master Source" -#~ msgstr "Master Source" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount cannot be empty with Icecast server." - -#~ msgid "New Criteria" -#~ msgstr "New Criteria" - -#~ msgid "New File Summary Template" -#~ msgstr "New File Summary Template" - -#~ msgid "New Log Sheet Template" -#~ msgstr "New Log Sheet Template" - -#~ msgid "New Modifier" -#~ msgstr "New Modifier" - -#~ msgid "New User" -#~ msgstr "New User" - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "Next:" -#~ msgstr "Next:" - -#~ msgid "No File Summary Templates" -#~ msgstr "No File Summary Templates" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "No Log Sheet Templates" - -#~ msgid "No open playlist" -#~ msgstr "No open playlist" - -#~ msgid "No smart block currently open" -#~ msgstr "No smart block currently open" - -#~ msgid "No webstream" -#~ msgstr "No webstream" - -#~ msgid "Now you're good to go!" -#~ msgstr "Now you're good to go!" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Only numbers are allowed." - -#~ msgid "Oops!" -#~ msgstr "Oops!" - -#~ msgid "Original Length:" -#~ msgstr "Original Length:" - -#~ msgid "Output Streams" -#~ msgstr "Output Streams" - -#~ msgid "Page not found!" -#~ msgstr "Page not found!" - -#~ msgid "Password Reset" -#~ msgstr "Password Reset" - -#~ msgid "Pending" -#~ msgstr "Pending" - -#~ msgid "Phone:" -#~ msgstr "Phone:" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Contents: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Playout History Templates" -#~ msgstr "Playout History Templates" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Please enter and confirm your new password in the fields below." - -#~ msgid "Please upgrade to " -#~ msgstr "Please upgrade to " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port cannot be empty." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Previous:" -#~ msgstr "Previous:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Promote my station on %s" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "Recent Uploads" -#~ msgstr "Recent Uploads" - -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" - -#~ msgid "Remove all content from this smart block" -#~ msgstr "Remove all content from this smart block" - -#~ msgid "Remove track" -#~ msgstr "Remove track" - -#~ msgid "Remove watched directory" -#~ msgstr "Remove watched directory" - -#~ msgid "Repeat Days:" -#~ msgstr "Repeat Days:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)" - -#~ msgid "Sample Rate:" -#~ msgstr "Sample Rate:" - -#~ msgid "Save playlist" -#~ msgstr "Save playlist" - -#~ msgid "Schedule a show" -#~ msgstr "Schedule a show" - -#~ msgid "Search Criteria:" -#~ msgstr "Search Criteria:" - -#~ msgid "Select stream:" -#~ msgstr "Select stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server cannot be empty." - -#~ msgid "Set" -#~ msgstr "Set" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Set Default Template" - -#~ msgid "Share" -#~ msgstr "Share" - -#~ msgid "Show Source" -#~ msgstr "Show Source" - -#~ msgid "Show Summary" -#~ msgstr "Show Summary" - -#~ msgid "Show Waveform" -#~ msgstr "Show Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle playlist" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Static Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Static Smart Block Contents: " - -#~ msgid "Station Description:" -#~ msgstr "Station Description:" - -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Data Collection Status" -#~ msgstr "Stream Data Collection Status" - -#~ msgid "Stream Settings" -#~ msgstr "Stream Settings" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL: " - -#~ msgid "Streaming Server:" -#~ msgstr "Streaming Server:" - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." - -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "The following info will be displayed to listeners in their media player:" - -#~ msgid "The requested action is not supported!" -#~ msgstr "The requested action is not supported!" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." - -#~ msgid "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" -#~ " 2. Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" -#~ " 2. Enable the Public LibreTime API under System -> Preferences" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#~ msgid "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public LibreTime API under System -> Preferences" - -#~ msgid "Toggle Details" -#~ msgstr "Toggle Details" - -#~ msgid "Track:" -#~ msgstr "Track:" - -#~ msgid "TuneIn Settings" -#~ msgstr "TuneIn Settings" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." - -#~ msgid "Update Required" -#~ msgstr "Update Required" - -#~ msgid "Update show" -#~ msgstr "Update show" - -#~ msgid "Upload" -#~ msgstr "Upload" - -#~ msgid "Upload audio tracks" -#~ msgstr "Upload audio tracks" - -#~ msgid "Upload track" -#~ msgstr "Upload track" - -#~ msgid "Use these settings in your broadcasting software to stream live at any time." -#~ msgstr "Use these settings in your broadcasting software to stream live at any time." - -#~ msgid "User Type" -#~ msgstr "User Type" - -#~ msgid "View track" -#~ msgstr "View track" - -#~ msgid "Viewing " -#~ msgstr "Viewing " - -#~ msgid "We couldn't find the page you were looking for." -#~ msgstr "We couldn't find the page you were looking for." - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "Webstream" -#~ msgstr "Webstream" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Welcome to %s!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." - -#~ msgid "What" -#~ msgstr "What" - -#~ msgid "When" -#~ msgstr "When" - -#~ msgid "Who" -#~ msgstr "Who" - -#~ msgid "You are not watching any media folders." -#~ msgstr "You are not watching any media folders." - -#~ msgid "You do not have permission to access this page!" -#~ msgstr "You do not have permission to access this page!" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "file meets the criteria" -#~ msgstr "file meets the criteria" - -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max volume" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "next" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "please put in a time in seconds '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "previous" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "unmute" diff --git a/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po b/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po deleted file mode 100644 index 30a5dca537..0000000000 --- a/webapp/src/locale/po/en_US/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4610 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Daniel James , 2014 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: English (United States)\n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "The year %s must be within the range of 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s is not a valid date" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s is not a valid time" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendar" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Users" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout History" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "History Templates" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Listener Stats" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Help" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Getting Started" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "User Manual" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Preview" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Delete" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Download" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "No action available" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure admin user/password is correct on Settings->Streams page." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Recording:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Current Show:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Current" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "New version available: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Add" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edit" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Remove" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Select" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Select this page" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Deselect all" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Scheduled" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Title" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Creator" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Composer" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Conductor" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded By" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Language" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Last Modified" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Last Played" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Length" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Mood" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Owner" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Track Number" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Uploaded" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Year" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Loading..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "All" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Files" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlists" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Error code: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Error msg: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limit to: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Processing..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Select modifier" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contains" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "does not contain" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "is" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "is not" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "starts with" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "ends with" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "is greater than" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "is less than" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "is in the range" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generate" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "No result found" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Show" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Show is empty" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "January" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "February" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "March" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "May" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "June" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "July" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "August" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "September" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "October" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "December" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Oct" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Sunday" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Monday" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Tuesday" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Wednesday" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Thursday" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Friday" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Saturday" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Sun" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Mon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Tue" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Wed" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Thu" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Fri" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sat" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Start" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "End" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duration" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show Empty" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Track preview" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Save" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Select all" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Select none" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "in use" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Look in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Open" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Program Manager" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Guest" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "View schedule" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "View show content" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Import media files" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Manage users" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "View system status" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Access playout history" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "View listener stats" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Su" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Mo" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Tu" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "We" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Th" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Fr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Close" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hour" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Done" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Select files" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Add Files" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Start upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Add files" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Drag files here." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "File extension error." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "File size error." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "File count error." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init error." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Security error." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Generic error." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO error." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Set Default" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Create Entry" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Description" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Enabled" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Disabled" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "path should be specified" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Select cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "show does not exist" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Custom Username" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "days" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "weekly" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "monthly" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Select Days:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "day of the month" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "day of the week" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Date End:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Background Color:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Text Color:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Description:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Duration:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Timezone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Repeats?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Search Users:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Username:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Password:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Firstname:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Lastname:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "User Type:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Date Start:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Year:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Composer:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conductor:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Mood:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Language:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Start Time" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "End Time" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Station Name" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Login" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Password" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Username" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Reset password" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Select criteria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "hours" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutes" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "items" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamic" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Static" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Enabled:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Type:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Channels:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Name" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Select Country" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Shows can have a max length of 24 hours." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL should be of form \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognized stream type: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Edit Show" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Permission denied" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Track" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Played" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " to " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contains nested watched directory: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s doesn't exist in the watched list." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s is already set as the current storage dir or in the watched folders list" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s is already set as the current storage dir or in the watched folders list." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s is already watched." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s is nested within existing watched directory: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s is not a valid directory." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." - -#~ msgid "(Required)" -#~ msgstr "(Required)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Your radio station website)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "About" - -#~ msgid "Add New Field" -#~ msgstr "Add New Field" - -#~ msgid "Add more elements" -#~ msgstr "Add more elements" - -#~ msgid "Add this show" -#~ msgstr "Add this show" - -#~ msgid "Additional Options" -#~ msgstr "Additional Options" - -#~ msgid "Admin Password" -#~ msgstr "Admin Password" - -#~ msgid "Admin User" -#~ msgstr "Admin User" - -#~ msgid "Advanced Search Options" -#~ msgstr "Advanced Search Options" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "Audio Track" -#~ msgstr "Audio Track" - -#~ msgid "Choose Days:" -#~ msgstr "Choose Days:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Choose Show Instance" - -#~ msgid "Choose folder" -#~ msgstr "Choose folder" - -#~ msgid "City:" -#~ msgstr "City:" - -#~ msgid "Clear" -#~ msgstr "Clear" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" - -#~ msgid "Country:" -#~ msgstr "Country:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Creating File Summary Template" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Creating Log Sheet Template" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Current Import Folder:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default Length:" -#~ msgstr "Default Length:" - -#~ msgid "Default License:" -#~ msgstr "Default License:" - -#~ msgid "Disk Space" -#~ msgstr "Disk Space" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamic Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamic Smart Block Criteria: " - -#~ msgid "Empty playlist content" -#~ msgstr "Empty playlist content" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expand Dynamic Block" - -#~ msgid "Expand Static Block" -#~ msgstr "Expand Static Block" - -#~ msgid "Fade in: " -#~ msgstr "Fade in: " - -#~ msgid "Fade out: " -#~ msgstr "Fade out: " - -#~ msgid "File Path:" -#~ msgstr "File Path:" - -#~ msgid "File Summary" -#~ msgstr "File Summary" - -#~ msgid "File Summary Templates" -#~ msgstr "File Summary Templates" - -#~ msgid "File import in progress..." -#~ msgstr "File import in progress..." - -#~ msgid "Filter History" -#~ msgstr "Filter History" - -#~ msgid "Find" -#~ msgstr "Find" - -#~ msgid "Find Shows" -#~ msgstr "Find Shows" - -#~ msgid "First Name" -#~ msgstr "First Name" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "For more detailed help, read the %suser manual%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Number:" - -#~ msgid "Last Name" -#~ msgstr "Last Name" - -#~ msgid "Length:" -#~ msgstr "Length:" - -#~ msgid "Limit to " -#~ msgstr "Limit to " - -#~ msgid "Listen" -#~ msgstr "Listen" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Log Sheet" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Log Sheet Templates" - -#~ msgid "Logout" -#~ msgstr "Logout" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Looks like the page you were looking for doesn't exist!" - -#~ msgid "Manage Users" -#~ msgstr "Manage Users" - -#~ msgid "Master Source" -#~ msgstr "Master Source" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount cannot be empty with Icecast server." - -#~ msgid "New File Summary Template" -#~ msgstr "New File Summary Template" - -#~ msgid "New Log Sheet Template" -#~ msgstr "New Log Sheet Template" - -#~ msgid "New User" -#~ msgstr "New User" - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "Next:" -#~ msgstr "Next:" - -#~ msgid "No File Summary Templates" -#~ msgstr "No File Summary Templates" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "No Log Sheet Templates" - -#~ msgid "No open playlist" -#~ msgstr "No open playlist" - -#~ msgid "No webstream" -#~ msgstr "No webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Only numbers are allowed." - -#~ msgid "Original Length:" -#~ msgstr "Original Length:" - -#~ msgid "Page not found!" -#~ msgstr "Page not found!" - -#~ msgid "Phone:" -#~ msgstr "Phone:" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Contents: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Please enter and confirm your new password in the fields below." - -#~ msgid "Please upgrade to " -#~ msgstr "Please upgrade to " - -#~ msgid "Port cannot be empty." -#~ msgstr "Port cannot be empty." - -#~ msgid "Previous:" -#~ msgstr "Previous:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" - -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Remove watched directory" - -#~ msgid "Repeat Days:" -#~ msgstr "Repeat Days:" - -#~ msgid "Sample Rate:" -#~ msgstr "Sample Rate:" - -#~ msgid "Save playlist" -#~ msgstr "Save playlist" - -#~ msgid "Select stream:" -#~ msgstr "Select stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server cannot be empty." - -#~ msgid "Set" -#~ msgstr "Set" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Set Default Template" - -#~ msgid "Share" -#~ msgstr "Share" - -#~ msgid "Show Source" -#~ msgstr "Show Source" - -#~ msgid "Show Summary" -#~ msgstr "Show Summary" - -#~ msgid "Show Waveform" -#~ msgstr "Show Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle playlist" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Static Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Static Smart Block Contents: " - -#~ msgid "Station Description:" -#~ msgstr "Station Description:" - -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Stream Settings" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL: " - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." - -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "The following info will be displayed to listeners in their media player:" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Track:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." - -#~ msgid "Update Required" -#~ msgstr "Update Required" - -#~ msgid "Update show" -#~ msgstr "Update show" - -#~ msgid "User Type" -#~ msgstr "User Type" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "What" - -#~ msgid "When" -#~ msgstr "When" - -#~ msgid "Who" -#~ msgstr "Who" - -#~ msgid "You are not watching any media folders." -#~ msgstr "You are not watching any media folders." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max volume" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "next" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "please put in a time in seconds '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "previous" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "unmute" diff --git a/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po b/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po deleted file mode 100644 index dca47680c8..0000000000 --- a/webapp/src/locale/po/es_ES/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5060 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Xabier Arrabal , 2015 -# Maria Ituarte , 2015 -# Sourcefabric , 2012 -# Víctor Carranza , 2014 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2023-03-21 11:41+0000\n" -"Last-Translator: gallegonovato \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "El año %s debe estar dentro del rango de 1753-9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s no es una fecha válida" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s no es una hora válida" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Inglés" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Pueblo afar" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abjasia" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikáans" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amhárico" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Árabe" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Asamés" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aimara" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerbaiyano" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Idioma Bashkir" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Bielorruso" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Búlgaro" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Lenguas Bihari" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bichelamar" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengalí/Bangla" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibetano" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Bretón" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Catalán" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Corso" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Checo" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Galés" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Danés" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Alemán" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Butaní" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Griego" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Esperanto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Español" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estonia" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Vasco" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persa" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Finés" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fiyi" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Feroés" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Francés" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Frisón" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Irlandés" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Escocés/Gaelico" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galego" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guaraní" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Guyaratí" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Idioma Hausa" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hindú" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Croata" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Húngaro" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Armenio" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Interlingua" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Interlingue o Occidental" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Iñupiaq" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Indonesio" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Islandés" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italiano" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hebreo" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japonés" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Yidis" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Javanés" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Georgiano" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kazajo" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Groenlandés" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Camboyano" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Canarés" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Coreano" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Cachemir" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kurdo" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kirguís" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latín" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Lingala" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Laosiano" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Lituano" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Letón" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Malgache" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maorí" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Macedonio" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayo" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Mongol" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldavo" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Maratí" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malay" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltés" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Birmano" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Nauru o Naurú" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Nepalí" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Holandés" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Noruego" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Occitano o lengua de oc" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "Oriya" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Panyabí" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Polaco" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Pastún/Ushto" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Portugués" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Quechua" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Romanche" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Kirundi (Rundi)" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Rumano" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Ruso" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Kiñaruanda" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Sánscrito" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Sindi" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Sango" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Serbocroata" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Cingalés" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Eslovaco" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Esloveno" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Samoano" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Shona" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Somalí" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Albanés" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Serbio" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Suazi" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Sesoto" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Sundanés" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Sueco" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Suajili" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Tamil" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Télugu" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Tayiko" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Tailandés" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Tigriña" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Turkmeno o Turkeno" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Tagalo o tagálog" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Setsuana" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Tongano" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Turco" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Tsonga" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Tártaro" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Twi o Chuí" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Ucraniano" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Urdu" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Uzbeko" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "Vietnamita" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Volapük" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Wólof" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Xhosa" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Yoruba" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Chino" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Zulú" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Usar el predeterminado de la estación" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" -"Parece que aún no has subido ningún archivo de audio. %sSube un archivo " -"ahora%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Parece que no tienes shows programados. %sCrea un show ahora%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n" -" %sCrear un show no enlazado ahora%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" -"Parece que el programa actual necesita más pistas. %sAñade pistas a tu " -"programa ahora%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "Servicio de análisis multimedia LibreTime" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" -"Compruebe que el servicio libretime-analyzer está instalado correctamente en " - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr " y asegúrate de que se ejecuta con " - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "Si no, prueba " - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "Servicio de emisión de LibreTime" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" -"Compruebe que el servicio libretime-playout está instalado correctamente en " - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "Servicio LibreTime liquidsoap" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" -"Comprueba que el servicio libretime-liquidsoap está instalado correctamente " -"en " - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "Servicio de tareas LibreTime Celery" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" -"Compruebe que el servicio libretime-worker está instalado correctamente en " - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "Servicio API de LibreTime" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" -"Comprueba que el servicio libretime-api está instalado correctamente en " - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Radio Web" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendario" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Widgets" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Reproductor" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Calendario Semanal" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Ajustes" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "General" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Mi Perfil" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Usuarios" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Tipos de pista" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streamer" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Estado" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Estadísticas" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Historial de reproducción" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Plantillas Historial" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Estadísticas de oyentes" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Mostrar las estadísticas de los oyentes" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Ayuda" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Cómo iniciar" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Manual para el usuario" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Conseguir ayuda en línea" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Contribuir a LibreTime" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "¿Qué hay de nuevo?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "No tienes permiso para acceder a este recurso." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "No tienes permiso para acceder a este recurso. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "El archivo no existe en %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Solicitud incorrecta. No se pasa el parámetro 'mode'." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Solicitud incorrecta. El parámetro 'mode' pasado es inválido" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "No tienes permiso para desconectar la fuente." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "No hay fuente conectada a esta entrada." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "No tienes permiso para cambiar de fuente." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Para configurar y utilizar el reproductor integrado debe:

\n" -" 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> " -"Streamer
\n" -" 2. Active la API pública LibreTime en Configuración -> " -"Preferencias" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Para utilizar el widget de horario semanal incrustado debe:

\n" -" Habilitar la API pública LibreTime en Configuración -> " -"Preferencias" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Para añadir la pestaña Radio a tu página de Facebook, primero debes:

" -"\n" -" Habilitar la API pública LibreTime en Configuración -> " -"Preferencias" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Página no encontrada." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "No se admite la acción solicitada." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "No tiene permiso para acceder a este recurso." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Se ha producido un error interno de la aplicación." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "No se han publicado pistas todavía." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "No se encontró %s" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Algo salió mal." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Previsualizar" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Añadir a la lista de reproducción" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Agregar un bloque inteligente" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Eliminar" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Editar..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Descargar" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplicar lista de reproducción" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Bloque inteligente duplicado" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "No hay acción disponible" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "No tienes permiso para eliminar los elementos seleccionados." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" -"No se ha podido eliminar el archivo porque está programado para el futuro." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "No se pudo eliminar el archivo(s)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Copia de %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" -"Asegúrese de que el usuario/contraseña de administrador es correcto en la " -"página Configuración->Streams." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Reproductor de audio" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "¡Algo salió mal!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Grabando:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Stream maestro" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Stream en vivo" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nada programado" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Show actual:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Actual" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Estás usando la versión más reciente" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nueva versión disponible: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "Tienes una versión pre-lanzamiento de LibreTime instalada." - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Hay disponible una actualización de parche para la instalación de LibreTime." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Hay disponible una actualización de funcionalidad para su instalación de LibreTime." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Hay disponible una actualización importante para su instalación de LibreTime." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Añadir a la lista de reproducción actual" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Añadir al bloque inteligente actual" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Añadiendo 1 item" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Añadiendo %s elementos" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Solo puede agregar canciones a los bloques inteligentes." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Indica tu selección en la lista de reproducción actual." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "No ha añadido ninguna pista" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "No has añadido ninguna lista de reproducción" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "No has añadido ningún podcast" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "No has añadido ningún bloque inteligente" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "No has añadido ningún webstream" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Aprenda sobre pistas" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Aprenda sobre listas de reproducción" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "Aprenda sobre podcasts" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Aprenda sobre bloques inteligentes" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Aprenda sobre webstreams" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Clic 'Nuevo' para crear uno." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Añadir" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Nuevo" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Editar" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "Añadir al show próximo" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "Añadir al show próximo" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "Añadir al show actual" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "Añadir después de los elementos seleccionados" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Publicar" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Eliminar" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Editar metadatos" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Añadir al show seleccionado" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Seleccionar" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Seleccionar esta página" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Deseleccionar esta página" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Deseleccionar todo" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "¿De verdad quieres eliminar los ítems seleccionados?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Programado" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Pistas" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Listas de reproducción" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Título" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Creador" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Álbum" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Tasa de bits" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Compositor" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Director" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Derechos de autor" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Codificado por" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Género" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Sello" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Idioma" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Ult.Modificado" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Ult.Reproducido" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Duración" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Estilo (mood)" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Propietario" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Ganancia" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Tasa de muestreo" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Núm.Pista" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Subido" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Sitio web" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Año" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Cargando..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Todo" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Archivos" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Listas" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Bloques" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Tipo desconocido: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "¿De verdad deseas eliminar el ítem seleccionado?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Carga en progreso..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Recolectando data desde el servidor..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Importar" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "Importado?" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Ver" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Código del error: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Msg de error: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "La entrada debe ser un número positivo" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "La entrada debe ser un número" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "La entrada debe tener el formato: aaaa-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "La entrada debe tener el formato: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Mi Podcast" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" -"Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. " -"%s¿Estás seguro de que quieres salir de la página?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Abrir Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Por favor introduce un tiempo '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Por favor introduce un tiempo en segundos válido. Ej. 0.5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Tu navegador no soporta la reproducción de este tipo de archivos: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Los bloques dinámicos no se pueden previsualizar" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limitado a: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Se guardó la lista de reproducción" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Lista de reproducción mezclada" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" -"Airtime no está seguro del estado de este archivo. Esto puede suceder cuando " -"el archivo está en una unidad remota a la que no se puede acceder o el " -"archivo está en un directorio que ya no se 'vigila'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Número de oyentes en %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Recuérdame en 1 semana" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Nunca recordarme" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Sí, ayudar a Libretime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "La imagen debe ser jpg, jpeg, png, o gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" -"Un bloque inteligente estático guardará los criterios y generará el " -"contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la " -"Biblioteca antes de añadirlo a un programa." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" -"No se alcanzará la longitud de bloque deseada si %s no puede encontrar " -"suficientes pistas únicas que coincidan con sus criterios. Active esta " -"opción si desea permitir que las pistas se añadan varias veces al bloque " -"inteligente." - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Se reprodujo el bloque inteligente de forma aleatoria" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Bloque inteligente generado y criterios guardados" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Bloque inteligente guardado" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Procesando..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Elige modificador" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contiene" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "no contiene" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "es" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "no es" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "empieza con" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "termina con" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "es mayor que" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "es menor que" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "está en el rango de" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generar" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Elegir carpeta de almacenamiento" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Elegir carpeta a monitorizar" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n" -" ¡Esto eliminará los archivos de tu biblioteca de Airtime!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Administrar las Carpetas de Medios" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "¿Estás seguro de que quieres quitar la carpeta monitorizada?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Esta ruta es actualmente inaccesible." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Conectado al servidor de streaming" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Se desactivó el stream" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Obteniendo información desde el servidor..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "No es posible conectar el servidor de streaming" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" -"Si %s está detrás de un router o firewall, puede que necesites configurar el " -"reenvío de puertos y la información de este campo será incorrecta. En este " -"caso, tendrá que actualizar manualmente este campo para que muestre el host/" -"puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido " -"está entre 1024 y 49151." - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "Para más detalles, lea el %s%s Manual %s" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" -"Marque esta opción para activar los metadatos para los flujos OGG (los " -"metadatos del flujo son el título de la pista, el artista y el nombre del " -"programa que se muestran en un reproductor de audio). VLC y mplayer tienen " -"un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la " -"información de metadatos: se desconectarán del flujo después de cada " -"canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte " -"para estos reproductores de audio, entonces siéntete libre de habilitar esta " -"opción." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente)." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Sin resultados" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Especifique una autenticación personalizada que funcione solo para este show." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "¡La instancia de este show ya no existe!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Advertencia: Los shows no pueden re-enlazarse" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Mostrar" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "El show está vacío" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Recopilando información desde el servidor..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Este show no cuenta con contenido programado." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Este programa aún no está lleno de contenido." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Enero" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Febrero" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Marzo" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Abril" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Mayo" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Junio" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Julio" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Agosto" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Septiembre" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Octubre" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Noviembre" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Diciembre" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Ene" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Abr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Ago" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Oct" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dic" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Hoy" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Día" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Semana" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Mes" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Domingo" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Lunes" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Martes" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Miércoles" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Jueves" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Viernes" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Sábado" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Dom" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Lun" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Mar" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Mie" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Jue" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Vie" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sab" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Los shows más largos que su segmento programado serán cortados por el show que le sigue." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "¿Cancelar el show actual?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "¿Detener la grabación del show actual?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contenidos del show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "¿Eliminar todo el contenido?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "¿Eliminar los ítems seleccionados?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Inicio" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Final" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duración" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Filtrando " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " de " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " registros" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "No hay shows programados durante el período de tiempo especificado." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Señal de entrada" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Señal de salida" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Unirse" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Desaparecer" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show vacío" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Grabando desde la entrada" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Previsualización de la pista" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "No es posible programar un show externo." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Moviendo 1 ítem" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Moviendo %s elementos" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Guardar" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancelar" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Editor de desvanecimiento" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Editor de Cue" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Seleccionar todos" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Seleccionar uno" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Recortar exceso de shows" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Eliminar los ítems programados seleccionados" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Saltar a la pista en reproducción actual" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "Saltar a la pista actual" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancelar el show actual" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Abrir biblioteca para agregar o eliminar contenido" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Agregar / eliminar contenido" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "en uso" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disco" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Buscar en" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Abrir" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Administrador de programa" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Invitado" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Los invitados pueden hacer lo siguiente:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Ver programación" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Ver contenido del show" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Los DJ pueden hacer lo siguiente:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Administrar el contenido del show asignado" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Importar archivos de medios" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Crear listas de reproducción, bloques inteligentes y webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Administrar su propia biblioteca de contenido" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "Los administradores de programas pueden hacer lo siguiente:" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Ver y administrar contenido del show" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Programar shows" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Administrar el contenido de toda la biblioteca" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Los administradores pueden:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Administrar preferencias" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Administrar usuarios" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Administrar carpetas monitorizadas" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Enviar opinión de soporte" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Ver el estado del sistema" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Acceder al historial de reproducción" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Ver estadísticas de oyentes" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Mostrar / ocultar columnas" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "Columnas" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "De {from} para {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "dd-mm-yyyy" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Do" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Lu" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Ma" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Mi" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Ju" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Vi" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Cerrar" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hora" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuto" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Hecho" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Seleccione los archivos" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Añade los archivos a la cola de carga y haz clic en el botón de iniciar." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "Nombre del archivo" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "Tamaño" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Añadir archivos" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Detener carga" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Iniciar carga" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "Empezar a cargar" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Añadir archivos" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "Detener la carga en curso" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "Iniciar la carga en la cola" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Archivos %d/%d cargados" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "No disponible" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Arrastra los archivos a esta área." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Error de extensión del archivo." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Error de tamaño del archivo." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Error de cuenta del archivo." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Error de inicialización." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Error de HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Error de seguridad." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Error genérico." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Error IO." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Archivo: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d archivos en cola" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Puede que el URL de carga no esté funcionando o no exista" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Error: Fichero demasiado grande: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Error: Extensión de archivo no válida: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Establecer predeterminado" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Crear Entrada" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Editar historial" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No hay Show" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Se copiaron %s celda%s al portapapeles" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" -"%sImprimir vista%sPor favor, utilice la función de impresión de su navegador " -"para imprimir esta tabla. Pulse Escape cuando termine." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Nuevo Show" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Nueva entrada de registro" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "No hay datos en la tabla" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "(filtrado de _MAX_ entradas totales)" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "Primero" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "Último" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "Siguiente" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "Anterior" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "Buscar:" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "No se han encontrado coincidencias" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "Arrastre las pistas desde la biblioteca" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" -"No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado." - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Despublicar" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "No se ha encontrado ningún resultado." - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Autor" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Descripción" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Enlace" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "Fecha de publicación" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "Estado de la importación" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "Acciones" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "Eliminar de la biblioteca" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "Importado correctamente" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "Mostrar el _MENU_" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "Mostrar las entradas del _MENU_" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "Mostrando el _START_ a _END_ del _TOTAL_ las pistas" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "Mostrando 0 de 0 de 0 entradas" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "Mostrando 0 a 0 de 0 pistas" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "Mostrando 0 a 0 de 0 tipos de pistas" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "(filtrado de _MAX_ tipos de pistas totales)" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "¿Está seguro de que desea eliminar este tipo de pista?" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "No se encontró ningún tipo de pista." - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "No se han encontrado tipos de pista" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "No se ha encontrado ningún tipo de pista" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Activado" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Desactivado" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "Cancelar la carga" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "Tipo" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" -"El contenido de las listas de reproducción de la carga automática se agrega " -"a los programas una hora antes de que se transmita. Más información" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "Configuración del podcasts guardado" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "¿Está seguro de que desea eliminar este usuario?" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "¡No puedes borrarte a ti mismo!" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "¡No has publicado ningún episodio!" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "Puede publicar tu contenido cargado desde la vista 'Pistas'." - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "Pruebalo ahora" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" -"

Si esta opción no está marcada, el bloque inteligente programará tantas " -"pistas como puedan reproducirse en su totalidad dentro de " -"la duración especificada. Esto normalmente resultará en una reproducción de " -"audio ligeramente inferior a la duración especificada.

Si esta opción " -"está marcada, el smartblock también programará una pista final que " -"sobrepasará la duración especificada. Esta pista final puede cortarse a " -"mitad de camino si el programa al que se añade el smartblock termina.

" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "Vista previa de la lista de reproducción" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Bloque Inteligente" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "Vista previa de la transmisión web" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "No tienes permiso para ver la biblioteca." - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "Ahora" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "Haz clic en 'Nuevo' para crear uno ahora." - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "Haz clic en 'Cargar' para agregar algunos ahora." - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "URL para el canal" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "Fecha de importación" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "Agregar un nuevo podcast" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" -"No se puede programar fuera de un programa.\n" -"Intente crear primero un programa." - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "Aún no se han cargado archivos." - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "En directo" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Fuera de antena" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Sin conexión" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Nada programado" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "Haga clic en 'Agregar' para crear uno ahora." - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Por favor, introduzca su nombre de usuario y contraseña." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" -"No se ha podido encontrar ese nombre de usuario o dirección de correo " -"electrónico." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "" -"Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Estas viendo una versión antigua de %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "No puedes añadir pistas a los bloques dinámicos." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "No tienes permiso para eliminar los %s(s) seleccionados." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Solo puedes añadir pistas a los bloques inteligentes." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista de reproducción sin nombre" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloque inteligente sin nombre" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Lista de reproducción desconocida" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Se actualizaron las preferencias." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Se actualizaron las configuraciones del stream." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "se debe especificar la ruta" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Hay un problema con Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Método de solicitud no aceptado" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Retransmisión del programa %s de %s en %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Elegir cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Eliminar cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "El show no existe" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "¡Tipo de pista añadido con éxito!" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "¡Tipo de pista actualizado con éxito!" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "¡Usuario añadido correctamente!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "¡Usuario actualizado correctamente!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "¡Configuración actualizada correctamente!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Webstream sin título" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Transmisión web guardada." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Los valores en el formulario son inválidos." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Se introdujo un caracter inválido" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Se debe especificar un día" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Se debe especificar una hora" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Debes esperar al menos 1 hora para reprogramar" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "¿Programar Lista Auto-Cargada?" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Seleccionar Lista" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Repitir lista hasta que termine el programa?" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Usar la autenticación %s:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Usar la autenticación personalizada:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Usuario personalizado" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Contraseña personalizada" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Host:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Puerto:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Montaje:" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "El campo de usuario no puede estar vacío." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "El campo de contraseña no puede estar vacío." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "¿Grabar desde la entrada (line in)?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "¿Reprogramar?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "días" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Enlace:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Tipo de repetición:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "semanal" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "cada 2 semanas" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "cada 3 semanas" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "cada 4 semanas" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mensual" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Seleccione días:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Repetir por:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "día del mes" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "día de la semana" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Fecha de Finalización:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "¿Sin fin?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "La fecha de finalización debe ser posterior a la inicio" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Por favor, selecciona un día de repeticón" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Color de fondo:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Color del texto:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Loco actual:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Logo del Show:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Vista previa del Logo:" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nombre:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Show sin nombre" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Género:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Descripción:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Descripcin de instancia:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Hora de inicio:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "En el Futuro:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Hora de fin:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Duración:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Zona horaria:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "¿Se repite?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "No puedes crear un show en el pasado" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "La fecha/hora de finalización no puede ser anterior" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "No puede tener una duración < 0min" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "No puede tener una duración 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "No puede tener una duración mayor a 24 horas" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "No se pueden programar shows traslapados" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Buscar usuarios:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Disc-jockeys (DJs):" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "Escribe un nombre:" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "Código:" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "Visibilidad:" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "Analizar los puntos de referencia:" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "El código no es único." - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Usuario:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Contraseña:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verificar contraseña:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Nombre:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Apellido:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Correo electrónico:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Teléfono móvil:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Tipo de usuario:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "El nombre de usuario no es único." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Eliminar todas las pistas de la biblioteca" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Fecha de Inicio:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Título:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creador:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Álbum:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "Propietario:" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "Seleccionar un tipo" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "Tipo de pista:" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Año:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Sello:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Compositor:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conductor:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Ánimo (mood):" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Derechos de autor:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Número ISRC:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Sitio web:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Idioma:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Publicar..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Hora de Inicio" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Hora de Finalización" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zona horaria de la interfaz:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Nombre de la estación" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Descripción de la estación" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo de la estación:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Nota: Cualquiera mayor que 600x600 será redimensionada." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Duración predeterminada del Crossfade (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Por favor, escribe un valor en segundos (eg. 0.5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Fade In perdeterminado (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Fade Out preseterminado (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "Tipo de pista cargado predeterminado" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "Lista de reproducción automática" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "Lista de reproducción de salida automática" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Sobrescribir el álbum del podcast" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum." - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" -"Genere un bloque inteligente y una lista de reproducción al crear un nuevo " -"podcast" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" -"Si esta opción está activada, se generará un nuevo bloque inteligente y una " -"nueva lista de reproducción que coincidan con la pista más reciente de un " -"podcast inmediatamente después de la creación de un nuevo podcast. Tenga en " -"cuenta que la función \"Sobrescribir metatags de episodios de podcast\" " -"también debe estar activada para que los smartblocks encuentren episodios de " -"forma fiable." - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "API Pública de Libretime" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Requerido para el widget de programación." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" -"Habilitar esta función permite a Libretime proporcionar datos de programación\n" -" a widgets externos que se pueden integrar en tu sitio web." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Idioma predeterminado" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Zona horaria de la Estación" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "La semana empieza el" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "¿Mostrar el botón de inicio de sesión en su página de radio?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "Vistas previas de funciones" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "Active esta opción para probar nuevas funciones." - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Desconexión automática:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Encendido automático:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Transición de desvanecimiento (s):" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "Host Fuente Maestro:" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "Puerto Fuente Maestro:" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "Montaje Fuente Maestro:" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Host Fuente del Show:" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Puerto Fuente del Show:" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Montaje Fuente del Show:" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Iniciar sesión" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Contraseña" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirma nueva contraseña" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "La confirmación de la contraseña no coincide con tu contraseña." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Correo electrónico" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Usuario" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Restablecer contraseña" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Atrás" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Reproduciéndose ahora" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Seleccionar Stream:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Autodetectar el stream más apropiado a reproducir." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Selecciona un stream:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Apto para móviles" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - El reproductor no soporta streams Opus." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Código de inserción:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Vista previa:" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Privacidad del Feed" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Público" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Privado" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Idioma de la Estación" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Filtrar por Show" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Todos mis shows:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Mis Shows" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Seleccionar criterio" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Tasa de bits (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "Tipo de pista" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Tasa de muestreo (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "antes" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "después" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "entre" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "Seleccionar la unidad de tiempo" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "minuto(s)" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "hora(s)" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "día(s)" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "semana(s)" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "mes(es)" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "año(s)" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "horas" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutos" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elementos" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "tiempo restante del programa" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Aleatorio" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Más nuevo" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Más antiguo" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "Reproducido más recientemente" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "Último reproducido" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "Seleccione el tipo de pista" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Tipo:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinámico" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Estático" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "Selecciona el tipo de pista" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Permitir Pistas Repetidas:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Permitir que la última pista supere el límite de tiempo:" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Ordenar Pistas:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Limitar a:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generar contenido para la lista de reproducción y guardar criterios" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Reproducción aleatoria" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "El límite no puede estar vacío o ser menor que 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "El límite no puede ser mayor a 24 horas" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "El valor debe ser un número entero" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 es el valor máximo de ítems que se pueden configurar" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Debes elegir Criterios y Modificador" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Longitud' debe estar en formato '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" -"Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el " -"valor del texto" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "Debe seleccionar una unidad de tiempo para una fecha-hora relativa." - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" -"Sólo se permiten números enteros no negativos para una fecha-hora relativa" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "El valor debe ser numérico" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "El valor debe ser menor a 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "El valor no puede estar vacío" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "El valor debe ser menor que %s caracteres" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "El valor no puede estar vacío" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Etiqueta del stream:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artísta - Título" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artista - Título" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Nombre de la estación - nombre del show" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Metadatos Off Air" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Activar ajuste del volumen" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Modificar ajuste de volumen" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Salida Hardware Audio:" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Tipo de Salida" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Activado:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Móvil:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Tipo de stream:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Tasa de bits:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Tipo de servicio:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Canales:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Servidor" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Puerto" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Punto de montaje" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Nombre" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "URL de la transmisión" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "¿Actualizar metadatos de tu estación en TuneIn?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID Estación:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clave Socio:" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Id Socio:" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Carpeta de importación:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Carpetas monitorizadas:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "No es un directorio válido" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "El valor es necesario y no puede estar vacío" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' no se ajusta al formato de fecha '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' tiene menos de %min% caracteres" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' tiene más de %max% caracteres" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Hola %s, \n" -"\n" -"Haz clic en este enlace para restablecer tu contraseña: " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"Si tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Gracias,\n" -"El equipo %s" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Restablecimiento de Contraseña" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in y cue out son nulos." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "No se puede asignar un cue out mayor que la duración del archivo." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "No se puede asignar un cue in mayor al cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "No se puede asignar un cue out menor que el cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Hora de Subida" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Ninguno" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "Desarrollado por %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Seleccionar país" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "transmisión en directo" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "No se pueden mover elementos de los shows enlazados" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "¡La programación que estás viendo está desactualizada!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "No tienes permiso para programar el show %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "No puedes agregar pistas a shows en grabación." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "El show %s terminó y no puede ser programado." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "¡El show %s ha sido actualizado anteriormente!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "No se puede programar una lista de reproducción que contenga archivos perdidos." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "¡Un Archivo seleccionado no existe!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Los shows pueden tener una duración máxima de 24 horas." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"No se pueden programar shows solapados.\n" -"Nota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmisión de %s desde %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "La duración debe ser mayor de 0 minutos" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "La duración debe estar en el formato \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "El URL debe estar en el formato \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "El URL debe ser de 512 caracteres o menos" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "No se encontró ningún tipo MIME para el webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "El nombre del webstream no puede estar vacío" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "No se pudo procesar el XSPF de la lista de reproducción" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "No se pudo procesar el XSPF de la lista de reproducción" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "No se pudo procesar el M3U de la lista de reproducción" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Webstream inválido - Esto parece ser una descarga de archivo." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo de stream no reconocido: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "No existe el archivo" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Ver los metadatos del archivo grabado" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Programar pistas" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Vaciar Show" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Cancelar Show" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Editar instancia" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Editar Show" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Eliminar instancia" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Eliminar instancia y todas las siguientes" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "No es posible arrastrar y soltar shows que se repiten" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "No se puede mover un show pasado" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "No se puede mover un show al pasado" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "¡El show se eliminó porque el show grabado no existe!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Debe esperar 1 hora para retransmitir." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Pista" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Reproducido" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "Bloque inteligente autogenerado para el podcast" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Retransmisiones por Internet" - -#~ msgid " to " -#~ msgstr " para " - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s se distribuye bajo la %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, El software de radio abierto para la programación y gestión remota de estaciones." - -#, php-format -#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -#~ msgstr "%1$s copyright © %2$s Todos los derechos reservados.
Mantenido y distribuido bajo el %3$s por %4$s" - -#, php-format -#~ msgid "%s Version" -#~ msgstr "%s Versión" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contiene un directorio anidado monitorizado: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s no existe en la lista de monitorización." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s ya está siendo monitorizado." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s está anidado dentro de un directorio monitorizado existente: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s no es un directorio válido." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar opinión de soporte) debe estar activado)." - -#~ msgid "(Required)" -#~ msgstr "(Requerido)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(El sitio web de tu estación)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(únicamente para fines de verificación, no será publicado)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Estéreo" - -#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgstr "Se ha enviado un enlace de restablecimiento de contraseña a tu dirección de correo electrónico. Por favor, comprueba tu correo electrónico y sigue las instrucciones para restablecer tu contraseña. Si no ves el correo electrónico, comprueba tu carpeta de correo no deseado" - -#~ msgid "A track list will be generated when you schedule this smart block into a show." -#~ msgstr "Al programar este bloque inteligente en un programa se generará una lista de reproduccin " - -#~ msgid "About" -#~ msgstr "Acerca de" - -#~ msgid "Access Denied!" -#~ msgstr "¡Acceso Denegado!" - -#~ msgid "Add New Field" -#~ msgstr "Agregar Nuevo Campo" - -#~ msgid "Add more elements" -#~ msgstr "Agregar ms elementos" - -#~ msgid "Add this show" -#~ msgstr "Añadir este programa" - -#~ msgid "Add tracks to your show" -#~ msgstr "Añadir pistas a tu Show" - -#~ msgid "Additional Options" -#~ msgstr "Opciones adicionales" - -#~ msgid "Admin Password" -#~ msgstr "Contraseña administrativa" - -#~ msgid "Admin User" -#~ msgstr "Usuario administrativo" - -#~ msgid "Advanced Search Options" -#~ msgstr "Opciones de búsqueda avanzada" - -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "¡Airtime Pro has a new look!" - -#~ msgid "All rights are reserved" -#~ msgstr "Todos los derechos reservados" - -#~ msgid "Allowed CORS URLs" -#~ msgstr "URL CORS permitidas" - -#~ msgid "An error has occurred." -#~ msgstr "Ha ocurrido un error." - -#~ msgid "Audio Track" -#~ msgstr "Pista de audio" - -#~ msgid "Autoloading Playlist" -#~ msgstr "Lista Auto-Cargada" - -#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -#~ msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" - -#~ msgid "Bad Request!" -#~ msgstr "¡Solicitud incorrecta!" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Al marcar esta casilla, estoy de acuerdo con %s %spolítica de privacidad%s." - -#~ msgid "Category" -#~ msgstr "Categoría" - -#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -#~ msgstr "Marque las casillas de arriba y pulse 'Publicar' para publicar esta pista en las fuentes marcadas. " - -#~ msgid "Choose Days:" -#~ msgstr "Elige los días:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Selecciona Instancia del Show" - -#~ msgid "Choose folder" -#~ msgstr "Selecciona carpeta" - -#~ msgid "Choose some search criteria above and click Generate to create this playlist." -#~ msgstr "Selecciona algunos criterios de búsqueda y haz clic en Generar para crear esta lista de reproducción." - -#~ msgid "City:" -#~ msgstr "Ciudad:" - -#~ msgid "Clear" -#~ msgstr "Vaciar" - -#~ msgid "Click 'Add' to create one." -#~ msgstr "Clic 'Añadir' para crear uno." - -#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -#~ msgstr "Haz clic en 'Calendario' en la barra de navegación de la izquierda. Desde ahí, clic en el botón '+ Nuevo Show' y rellene los campos solicitados." - -#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -#~ msgstr "Haz clic en tu programa en el calendario y selecciona 'Programar Show'. En la ventana emergente, arrastra pistas a tu programa." - -#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -#~ msgstr "Haz clic en el botón 'Subir' en la esquina izquierda para subir pistas a tu librería." - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Haz clic en el cuadro de abajo para promocionar tu estación en %s." - -#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor se está ejecutando y tus credenciales son correctas." - -#~ msgid "Country:" -#~ msgstr "País:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Creando la Plantilla de Resumen de Archivos" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Creando la Plantilla de Hoja de Registro" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Atribución Creative Commons" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Atribución-sinDerivadas Creative Commons" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Atribución-NoComercial Creative Commons" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Atribución-NoComercial-SinDerivadas Creative Commons" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Atribución-NoComercial-CompartirIgual Creative Commons" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Atribución-CompartirIgual Creative Commons" - -#~ msgid "Current Import Folder:" -#~ msgstr "Carpeta actual de importación:" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Transmisión personalizada / de terceros" - -#~ msgid "" -#~ "Customize the player by configuring the options below. When you are done,\n" -#~ "copy the embeddable code below and paste it into your website's HTML." -#~ msgstr "" -#~ "Personaliza el reproductor configurando las opciones siguientes. Cuando hayas terminado,\n" -#~ " copia el código incrustado más abajo y pégalo en el HTML de tu sitio web." - -#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -#~ msgstr "Los DJs pueden usar estos ajustes en su software de difusión para transmitir en directo sólo durante los programas que se les asignan." - -#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -#~ msgstr "Los DJs pueden usar esta configuración para conectarse con software compatible y transmitir en directo durante este programa. Asigna un DJ a continuación" - -#~ msgid "Dangerous Options" -#~ msgstr "Opciones Peligrosas" - -#~ msgid "Default Length:" -#~ msgstr "Duración por defecto:" - -#~ msgid "Default License:" -#~ msgstr "Licencia por defecto:" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Tipo de Compartir predeterminada" - -#~ msgid "Default Streaming" -#~ msgstr "Streaming por defecto" - -#~ msgid "Disk Space" -#~ msgstr "Espacio en disco" - -#~ msgid "Download latest episodes:" -#~ msgstr "¿Descargar automáticamente los últimos episodios?" - -#~ msgid "Drag tracks here from your library to add them to the playlist" -#~ msgstr "Arrastra las pistas aquí desde tu biblioteca para agregarlas a la lista de reproducción" - -#~ msgid "Drop files here or click to browse your computer." -#~ msgstr "Arrastra archivos aquí o haz clic para seleccionarlos de tu equipo." - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Bloque inteligente dinámico" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Criterios del bloque inteligente dinámico: " - -#~ msgid "Edit Metadata..." -#~ msgstr "Editar Metadatos..." - -#~ msgid "Editing " -#~ msgstr "Editando " - -#~ msgid "Email Sent!" -#~ msgstr "¡Email enviado!" - -#~ msgid "Empty playlist content" -#~ msgstr "Lista de reproducción vacía" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expandir bloque dinámico" - -#~ msgid "Expand Static Block" -#~ msgstr "Expandir bloque estático" - -#~ msgid "Explicit" -#~ msgstr "Explícito" - -#~ msgid "FAQ" -#~ msgstr "PMF" - -#~ msgid "Facebook Radio Player" -#~ msgstr "Radio Reproductor de Facebook" - -#~ msgid "Failed" -#~ msgstr "Fallo" - -#~ msgid "File Path:" -#~ msgstr "Ruta del archivo:" - -#~ msgid "File Summary" -#~ msgstr "Resumen de Archivos" - -#~ msgid "File Summary Templates" -#~ msgstr "Plantillas de Resumen de Archivos" - -#~ msgid "File import in progress..." -#~ msgstr "Importación del archivo en progreso..." - -#~ msgid "Filter History" -#~ msgstr "Filtrar historial" - -#~ msgid "Find" -#~ msgstr "Buscar" - -#~ msgid "Find Shows" -#~ msgstr "Buscar Shows" - -#~ msgid "First Name" -#~ msgstr "Nombre" - -#~ msgid "" -#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -#~ " or %sApple's podcasting documentation%s." -#~ msgstr "" -#~ "Para informacin detallada sobre qué signifcan estos campos de metadatos, porfavor consulta la %sRSS specification%s\n" -#~ " o la documentación %sApple's podcasting%s." - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Para una ayuda más detallada, lee el manual%s del %susuario." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Para más detalles, por favor lee el %sManual de Airtime%s" - -#~ msgid "Forgot your password?" -#~ msgstr "¿Olvidaste tu contraseña?" - -#~ msgid "General Fields" -#~ msgstr "Campos Generales" - -#~ msgid "Generate Smartblock and Playlist" -#~ msgstr "Generar Bloque y Lista" - -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "¿Tienes una biblioteca de música enorme? ¡No hay problema! Con la nueva página de Subida, puedes arrastrar carpetas enteras a nuestra nube privada." - -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Ayuda a mejorar %s informándonos de cómo lo estás utilizando. Esta información se recopilará con regularidad para mejorar tu experiencia de usuario.
Haz clic en la casilla de abajo y nos aseguraremos de mejorar constantemente las funciones que utilizas." - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "A continuación, te indicamos cómo empezar a utilizar %s para automatizar tus emisiones: " - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Metadata Icecast Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Si Airtime está detrás de un router o firewall, posiblemente tengas que configurar una redirección en el puerto (port forwarding) y esta información de campo será incorrecta. En este caso necesitarás actualizar manualmente el campo pra que muestre el host/port/mount correcto al que tus DJs necesitan conectarse. El rango permitido es entre 1024 y 49151. " - -#~ msgid "Isrc Number:" -#~ msgstr "Número ISRC" - -#~ msgid "Keywords" -#~ msgstr "Palabras clave" - -#~ msgid "Last Name" -#~ msgstr "Apellido" - -#~ msgid "Length:" -#~ msgstr "Duración:" - -#~ msgid "Limit to " -#~ msgstr "Límite hasta " - -#~ msgid "Listen" -#~ msgstr "Escuchar" - -#~ msgid "Listeners" -#~ msgstr "Oyentes" - -#~ msgid "Live Broadcasting" -#~ msgstr "Transmisión en vivo" - -#~ msgid "Live Stream Input" -#~ msgstr "Entrada de stream en vivo" - -#~ msgid "Live stream" -#~ msgstr "Stream en directo" - -#~ msgid "Log Sheet" -#~ msgstr "Hoja de Registro" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Plantillas de Hoja de Registro" - -#~ msgid "Logout" -#~ msgstr "Salir" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "¡Parece que la página que buscas no existe!" - -#~ msgid "Looks like there are no shows scheduled on this day." -#~ msgstr "Parece que no hay shows programados en este día." - -#~ msgid "Manage Users" -#~ msgstr "Administrar usuarios" - -#~ msgid "Master Source" -#~ msgstr "Fuente maestra" - -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Uso mensual del ancho de banda del oyente" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "El montaje no puede estar vacío con el servidor Icecast." - -#~ msgid "New Criteria" -#~ msgstr "Nuevo criterio" - -#~ msgid "New File Summary Template" -#~ msgstr "Nueva Plantilla de Resumen de Archivos" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Nueva Plantilla de Hoja de Registro" - -#~ msgid "New Modifier" -#~ msgstr "Nuevo Modificador" - -#~ msgid "New User" -#~ msgstr "Nuevo usuario" - -#~ msgid "New password" -#~ msgstr "Nueva contraseña" - -#~ msgid "Next:" -#~ msgstr "Siguiente:" - -#~ msgid "No File Summary Templates" -#~ msgstr "No hay Plantillas de Resumen de Archivo" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "No hay Plantillas de Hoja de Registro" - -#~ msgid "No open playlist" -#~ msgstr "No hay listas de reproducción abiertas" - -#~ msgid "No smart block currently open" -#~ msgstr "Ningún bloque inteligente abierto actualmente" - -#~ msgid "No webstream" -#~ msgstr "No hay webstream" - -#~ msgid "Now you're good to go!" -#~ msgstr "¡Ya estás listo!" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Solo se permiten números." - -#~ msgid "Original Length:" -#~ msgstr "Duración original:" - -#~ msgid "" -#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -#~ " is easier than ever." -#~ msgstr "" -#~ "Nuestra nueva vista Dashboard tiene ahora una poderosa interfaz de edición por pestañas, por lo que la actualización de tus pistas y listas de reproducción\n" -#~ " es más sencillo que nunca." - -#~ msgid "Output Streams" -#~ msgstr "Streams de salida" - -#~ msgid "Override" -#~ msgstr "Sobrescribir" - -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento" - -#~ msgid "Page not found!" -#~ msgstr "¡Página no encontrada!" - -#~ msgid "Password Reset" -#~ msgstr "Restablecer Contraseña" - -#~ msgid "Pending" -#~ msgstr "Pendiente" - -#~ msgid "Phone:" -#~ msgstr "Teléfono:" - -#~ msgid "Playlist Contents: " -#~ msgstr "Contenido de la lista de reproducción: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Transición (crossfade) de la lista de reproducción" - -#~ msgid "Playout History Templates" -#~ msgstr "Plantillas de Historial de Reproducción" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Por favor entra y confirma tu nueva contraseña en los campos que aparecen a continuación." - -#~ msgid "Please upgrade to " -#~ msgstr "Por favor actualiza a" - -#~ msgid "Podcast Name: " -#~ msgstr "Nombre del Podcast: " - -#~ msgid "Podcast URL: " -#~ msgstr "URL del Podcast: " - -#~ msgid "Port cannot be empty." -#~ msgstr "El puerto no puede estar vacío." - -#~ msgid "Previous:" -#~ msgstr "Anterior:" - -#~ msgid "Privacy Settings" -#~ msgstr "Ajustes de privacidad" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Los encargados de programa pueden hacer lo siguiente:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Promocionar mi estacin en %s" - -#~ msgid "Publish to:" -#~ msgstr "Publicar a:" - -#~ msgid "Published on:" -#~ msgstr "Publicado en:" - -#~ msgid "Published tracks can be removed or updated below." -#~ msgstr "Las pistas publicadas se pueden quitar o actualizar a continuación." - -#~ msgid "Publishing" -#~ msgstr "Publicación" - -#~ msgid "RESET" -#~ msgstr "RESETEAR" - -#~ msgid "RSS Feed URL:" -#~ msgstr "URL del Feed RSS:" - -#~ msgid "Recent Uploads" -#~ msgstr "Subidas Recientes" - -#~ msgid "Record & Rebroadcast" -#~ msgstr "Grabar y retransmitir" - -#~ msgid "Register Airtime" -#~ msgstr "Registrar Airtime" - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -#~ msgstr "URL remotas a las que se les permite acceder a esta instancia de LibreTime en un navegador. Una URL por línea." - -#~ msgid "Remove all content from this smart block" -#~ msgstr "Eliminar todo el contenido de este bloque inteligente" - -#~ msgid "Remove watched directory" -#~ msgstr "Quitar el directorio monitorizado" - -#~ msgid "Repeat Days:" -#~ msgstr "Días de repetición:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Vuelva a analizar el directorio monitorizado (Esto es útil si es un montaje en red y pueda estar fuera de sincronización con %s)" - -#~ msgid "Sample Rate:" -#~ msgstr "Tasa de muestreo:" - -#~ msgid "Save playlist" -#~ msgstr "Guardar lista de reproducción" - -#~ msgid "Save podcast" -#~ msgstr "Guardar podcast" - -#~ msgid "Save station podcast" -#~ msgstr "Guardar podcast de la estación" - -#~ msgid "Schedule a show" -#~ msgstr "Programar un show" - -#~ msgid "Scheduled Shows" -#~ msgstr "Shows programados" - -#~ msgid "Scheduling:" -#~ msgstr "Programación:" - -#~ msgid "Search Criteria:" -#~ msgstr "Buscar criterio:" - -#~ msgid "Select stream:" -#~ msgstr "Selecciona stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "El servidor no puede estar vacío." - -#~ msgid "Service" -#~ msgstr "Servicio" - -#~ msgid "Set" -#~ msgstr "Establecer" - -#~ msgid "Set Cue In" -#~ msgstr "Establecer Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Establecer Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Establecer plantilla predeterminada" - -#~ msgid "Share" -#~ msgstr "Compartir" - -#~ msgid "Show Source" -#~ msgstr "Fuente del Show" - -#~ msgid "Show Summary" -#~ msgstr "Resumen de Shows" - -#~ msgid "Show Waveform" -#~ msgstr "Mostrar Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Muéstrame lo que estoy enviando" - -#~ msgid "Shuffle playlist" -#~ msgstr "Lista de reproducción aleatoria" - -#~ msgid "Source Streams" -#~ msgstr "Streams fuente" - -#~ msgid "Static Smart Block" -#~ msgstr "Bloque inteligente estático" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Contenido del bloque inteligente estático: " - -#~ msgid "Station Description:" -#~ msgstr "Descripción de la estación:" - -#~ msgid "Station Web Site:" -#~ msgstr "Sitio web de la estación:" - -#~ msgid "Storage" -#~ msgstr "Almacenamiento" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Data Collection Status" -#~ msgstr "Estado de la recogida de datos del Stream" - -#~ msgid "Stream Settings" -#~ msgstr "Configuración de stream" - -#~ msgid "Stream URL:" -#~ msgstr "URL del stream:" - -#~ msgid "Stream URL: " -#~ msgstr "URL del stream: " - -#~ msgid "Streaming Server:" -#~ msgstr "Servidor de Streaming:" - -#~ msgid "Style" -#~ msgstr "Estilo" - -#~ msgid "Subscribe" -#~ msgstr "Suscribirse" - -#~ msgid "Subtitle" -#~ msgstr "Subtítulo" - -#~ msgid "Summary" -#~ msgstr "Sumario" - -#~ msgid "Support Feedback" -#~ msgstr "Opinión de soporte" - -#~ msgid "Support setting updated." -#~ msgstr "Se actualizaron las configuraciones de soporte." - -#~ msgid "Table Test" -#~ msgstr "Prueba de Tabla" - -#~ msgid "Terms and Conditions" -#~ msgstr "Términos y condiciones" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "La duración deseada para el bloque no se alcanzará si Libretime no puede encontrar suficientes pistas únicas que se ajusten a tus criterios. Activa esta opción si deseas que se agreguen pistas varias veces al bloque inteligente." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:" - -#~ msgid "" -#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -#~ " experience, no matter how you're connected." -#~ msgstr "" -#~ "El nuevo Airtime es más suave, elegante y rápido, ¡incluso en más dispositivos! Estamos comprometidos a mejorar la experiencia\n" -#~ " con Airtime, sin importar cómo te conectes." - -#~ msgid "The requested action is not supported!" -#~ msgstr "¡No se admite la acción solicitada!" - -#~ msgid "The work is in the public domain" -#~ msgstr "El trabajo es de dominio público" - -#~ msgid "This version is no longer supported." -#~ msgstr "Esta versión ya no cuenta con soporte." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Esta versión pronto quedará obsoleta." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash" - -#~ msgid "Toggle Details" -#~ msgstr "Mostrar/Ocultar detalles" - -#~ msgid "Track:" -#~ msgstr "Pista:" - -#~ msgid "TuneIn Settings" -#~ msgstr "Configuración de TuneIn" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Escribe los caracteres que ves en la imagen que aparece a continuación." - -#~ msgid "Update Required" -#~ msgstr "Actualización Requerida" - -#~ msgid "Update show" -#~ msgstr "Actualizar programa" - -#~ msgid "Update track" -#~ msgstr "Actualizar pista" - -#~ msgid "Upload" -#~ msgstr "Subir" - -#~ msgid "Upload Audio Files" -#~ msgstr "Subir archivos de audio" - -#~ msgid "Upload audio tracks" -#~ msgstr "Subir pistas de audio" - -#~ msgid "Use these settings in your broadcasting software to stream live at any time." -#~ msgstr "Utiliza estos ajustes en tu software de difusión para transmitir en directo en cualquier momento." - -#~ msgid "User Type" -#~ msgstr "Tipo de usuario" - -#~ msgid "View Feed" -#~ msgstr "Ver Feed" - -#~ msgid "View track" -#~ msgstr "Ver pista" - -#~ msgid "Viewing " -#~ msgstr "Viendo " - -#~ msgid "We couldn't find the page you were looking for." -#~ msgstr "No pudimos encontrar la página que buscas." - -#~ msgid "" -#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -#~ " just a click away, you'll be on air and hands-free in no time." -#~ msgstr "" -#~ "Hemos simplificado la interfaz de Airtime para facilitar la navegación. Con las herramientas más importantes\n" -#~ " a un clic de distancia, estarás en el aire y manos libres en un momento." - -#~ msgid "Web Stream" -#~ msgstr "Stream web" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "¡Bienvenido a %s!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "¡Bienvenido a la demo de %s! Puedes iniciar sesión con el nombre de usuario 'admin' y la contraseña 'admin'." - -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Bienvenido al nuevo Airtime Pro!" - -#~ msgid "What" -#~ msgstr "Qué" - -#~ msgid "When" -#~ msgstr "Cuándo" - -#~ msgid "Who" -#~ msgstr "Quién" - -#~ msgid "You are not watching any media folders." -#~ msgstr "No estás monitorizando ninguna carpeta de medios." - -#~ msgid "You can change these later in your preferences and user settings." -#~ msgstr "Puedes cambiar estas opciones más adelante en tus preferencias y ajustes de usuario." - -#~ msgid "You do not have permission to access this page!" -#~ msgstr "¡No tienes permiso para acceder a esta página!" - -#~ msgid "You do not have permission to edit this track." -#~ msgstr "No tienes permiso para editar esta pista." - -#~ msgid "You have already published this track to all available sources!" -#~ msgstr "¡Ya has publicado esta pista en todas las fuentes disponibles!" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Debes aceptar las políticas de privacidad." - -#~ msgid "You haven't published this track to any sources!" -#~ msgstr "¡No has publicado esta pista en ninguna fuente!" - -#~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "" -#~ "Tus funciones favoritas son ahora aún más fáciles de usar - ¡e incluso hemos\n" -#~ " añadido algunas nuevas! Echa un vistazo al video de arriba o sigue leyendo para obtener más información." - -#~ msgid "Your trial expires in" -#~ msgstr "Tu periodo de prueba expira en" - -#~ msgid "and" -#~ msgstr "y" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "file meets the criteria" -#~ msgstr "el archivo cumple los criterios" - -#~ msgid "files meet the criteria" -#~ msgstr "los archivos cumplen los criterios" - -#~ msgid "iTunes Fields" -#~ msgstr "Campos de iTunes" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "volumen máximo" - -#~ msgid "mute" -#~ msgstr "silenciar" - -#~ msgid "next" -#~ msgstr "siguiente" - -#~ msgid "or" -#~ msgstr "o" - -#~ msgid "pause" -#~ msgstr "pausa" - -#~ msgid "play" -#~ msgstr "reproducir" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "por favor introduce un tiempo en segundos '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "anterior" - -#~ msgid "stop" -#~ msgstr "parar" - -#~ msgid "unmute" -#~ msgstr "desenmudecer" diff --git a/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po deleted file mode 100644 index 1f24a53689..0000000000 --- a/webapp/src/locale/po/fr_FR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5151 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Albert , 2014 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2023-03-06 23:45+0000\n" -"Last-Translator: \"Jonas L.\" \n" -"Language-Team: French \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "L'année %s doit être comprise entre 1753 et 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s n'est pas une date valide" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s n'est pas une durée valide" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Anglais" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Afar" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abkhaze" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amharique" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Arabe" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Assamais" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aymara" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerbaïdjanais" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Bachkir" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Biélorusse" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Bulgare" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Bihari" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bichelamar" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengali" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibétain" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Breton" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Catalan" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Corse" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Tchèque" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Gallois" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Danois" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Allemand" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Dzongkha" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Grec" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Espéranto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Espagnol" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estonien" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Basque" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persan" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Finnois" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fidjien" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Féroïen" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Français" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Frison" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Irlandais" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Gaélique écossais" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galicien" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guarani" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Goudjarati" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Haoussa" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hindi" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Croate" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Hongrois" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Arménien" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Interlingua" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Interlingue" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Inupiak" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Indonésien" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Islandais" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italien" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hébreu" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japonais" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Yiddish" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Javanais" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Géorgien" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kazakh" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Groenlandais" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Cambodgien" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Kannada" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Coréen" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Cachemire" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kurde" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kirghiz" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latin" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Lingala" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Lao" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Lituanien" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Letton" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Malgache" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maori" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Macédonien" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayalam" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Mongol" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldave" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Marathi" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malais" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltais" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Birman" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Nauru" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Népalais" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Néerlandais" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Norvégien" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Occitan" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Afan) / Oromoor / Oriya" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Pendjabi" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Polonais" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Pachto" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Portugais" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Quetchua" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Romanche" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Kirundi" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Roumain" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Russe" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Kinyarwanda" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Sindhi" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Sangro" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Serbo-croate" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Singhalais" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Slovaque" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Slovène" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Samoan" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Shona" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Somali" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Albanais" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Serbe" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Siswati" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Sesotho" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Soundanais" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Suédois" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Swahili" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Tamil" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Télougou" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Tadjik" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Thaï" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Tigrigna" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Turkmène" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Tagalog" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Setswana" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Tonguien" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Turc" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Tsonga" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Tatar" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Twi" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Ukrainien" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Ourdou" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Ouzbek" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "Vietnamien" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Volapük" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Wolof" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Xhosa" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Yoruba" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Chinois" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Zoulou" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Utiliser les réglages par défaut" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" -"Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" -"Cliquez sur le bouton « Nouvelle émission » et remplissez les " -"champs requis." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission »." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n" -" %sCréer une émission dé-liée%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "L'émission actuelle est vide. %sAjouter des pistes audio%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "La prochaine émission est vide. %sAjouter des pistes à cette émission%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "Service d'analyseur de médias LibreTime" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire " - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr " et assurez-vous qu'il fonctionne avec " - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "Sinon, essayez " - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "Service de diffusion LibreTime" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "Vérifiez que le service « libretime-playout » est installé correctement dans " - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "Service liquidsoap de LibreTime" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans " - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "Service Celery Task de LibreTime" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" -"Vérifiez que le service « libretime-worker » est installé correctement dans " - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "Service API LibreTime" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "Vérifiez que le service « libretime-api » est installé correctement dans " - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Page de la radio" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendrier" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Widgets" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Lecteur" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Grille hebdomadaire" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Paramètres" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Général" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Mon profil" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Utilisateurs" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Types de flux" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Flux" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Statut" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Statistiques" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Historique de diffusion" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Modèle d'historique" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Statistiques des auditeurs" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Afficher les statistiques des auditeurs" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Aide" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Mise en route" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Manuel Utilisateur" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Obtenir de l'aide en ligne" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Contribuer à LibreTime" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Qu'est-ce qui a changé ?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Vous n'avez pas le droit d'accéder à cette ressource." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Vous n'avez pas le droit d'accéder à cette ressource. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Le fichier n'existe pas dans %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Mauvaise requête. pas de « mode » paramètre passé." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Mauvaise requête. Le paramètre « mode » est invalide" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Vous n'avez pas la permission de déconnecter la source." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Il n'y a pas de source connectée à cette entrée." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Vous n'avez pas la permission de changer de source." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Pour configurer et utiliser le lecture intégré, vous devez :

\n" -" 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n" -" 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n" -" Activer l'API publique LibreTime dans Préférences -> Préférences" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n" -" Activer l'API publique LibreTime dans Préférences -> Préférences" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Page introuvable." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "L'action requise n'est pas implémentée." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Vous n'avez pas la permission d'accéder à cette ressource." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Une erreur interne est survenue." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "Aucune piste n'a encore été publiée." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s non trouvé" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Quelque chose s'est mal passé." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Prévisualisation" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Ajouter à la liste" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Ajouter un bloc intelligent" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Supprimer" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Modifier…" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Téléchargement" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Dupliquer la liste de lecture" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Dupliquer le bloc intelligent" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Aucune action disponible" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Impossible de supprimer ce fichier car il est dans la programmation." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Impossible de supprimer ce(s) fichier(s)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Copie de %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Lecteur Audio" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Quelque chose s'est mal passé !" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Enregistrement :" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Flux Maitre" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Flux en Direct" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Rien de Prévu" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Émission en cours :" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "En ce moment" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Vous exécutez la dernière version" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nouvelle version disponible : " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "Vous avez une version préliminaire de LibreTime intégrée." - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Une mise à jour du correctif pour votre installation LibreTime est disponible." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Une mise à jour majeure de votre installation LibreTime est disponible." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Ajouter à la liste de lecture" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Ajouter au bloc intelligent" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Ajouter 1 élément" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Ajout de %s Elements" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "S'il vous plaît sélectionner un curseur sur la timeline." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "Vous n'avez pas ajouté de pistes" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Vous n'avez pas ajouté de playlists" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "Vous n'avez pas ajouté de podcast" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "Vous n'avez ajouté aucun bloc intelligent" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "Vous n'avez ajouté aucun flux web" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "A propos des pistes" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "A propos des playlists" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "A propos des podcasts" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "A propos des blocs intelligents" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "A propos des flux webs" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Cliquez sur 'Nouveau' pour en créer un." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Ajouter" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Nouveau" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edition" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "Ajouter à la grille" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "Ajouter à la prochaine émission" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "Ajouter à l'émission actuelle" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "Ajouter après les éléments sélectionnés" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Publier" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Enlever" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Édition des Méta-Données" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Ajouter à l'émission sélectionnée" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Sélection" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Sélectionner cette page" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Dé-selectionner cette page" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Tous déselectioner" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Programmé" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Pistes" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Playlist" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Titre" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Créateur.ice" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Taux d'echantillonage" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Compositeur.ice" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Conducteur" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Droit d'Auteur.ice" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encodé Par" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Langue" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Dernier Modifié" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Dernier Joué" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Durée" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Humeur" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Propriétaire" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Taux d'échantillonnage" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Numéro de la Piste" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Téléversé" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Site Internet" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Année" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Chargement..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Tous" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Fichiers" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Listes de lecture" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Blocs Intelligents" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Flux Web" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Type inconnu : " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Téléversement en cours..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Récupération des données du serveur..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Importer" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "Importé ?" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Afficher" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Code d'erreur : " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Message d'erreur : " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "L'entrée doit être un nombre positif" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "L'entrée doit être un nombre" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "L'entrée doit être au format : aaaa-mm-jj" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "L'entrée doit être au format : hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Section Podcast" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Ouvrir le Constructeur de Média" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "veuillez mettre la durée '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Veuillez entrer un temps en secondes. Par exemple 0.5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Le Bloc dynamique n'est pas prévisualisable" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limiter à : " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Liste de Lecture sauvegardé" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlist en aléatoire" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé»." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Nombre d'auditeur·ice·s sur %s : %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Me le rappeler dans une semain" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Ne jamais me le rappeler" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Oui, aider Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "L'Image doit être du type jpg, jpeg, png, ou gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent." - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Bloc intelligent mélangé" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Bloc intelligent généré et critère(s) sauvegardé(s)" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Bloc intelligent sauvegardé" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Traitement en cours ..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Sélectionnez modification" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contient" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "ne contient pas" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "est" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "n'est pas" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "commence par" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "fini par" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "est plus grand que" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "est plus petit que" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "est dans le champ" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Générer" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Choisir un Répertoire de Stockage" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Choisir un Répertoire à Surveiller" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \n" -"Cela supprimera les fichiers de votre médiathèque Airtime !" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Gérer les Répertoires des Médias" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Ce chemin n'est pas accessible." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Connecté au serveur de flux" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Le flux est désactivé" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Obtention des informations à partir du serveur ..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Impossible de se connecter au serveur de flux" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151." - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "Pour plus d'informations, veuillez lire le manuel %s%s %s" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source»." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Aucun résultat trouvé" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "L'instance de l'émission n'existe plus !" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Attention : Les émissions ne peuvent pas être liées à nouveau" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Émission" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "L'émission est vide" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Récupération des données du serveur..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Cette émission n'a pas de contenu programmée." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Cette émission n'est pas complètement remplie avec ce contenu." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Janvier" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Fevrier" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Mars" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Avril" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Mai" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Juin" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Juillet" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Août" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Septembre" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Octobre" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Novembre" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Décembre" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Fev" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Avr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jui" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aou" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Oct" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Aujourd'hui" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Jour" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Semaine" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Mois" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Dimanche" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Lundi" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Mardi" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Mercredi" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Jeudi" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Vendredi" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Samedi" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Dim" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Lun" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Mar" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Mer" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Jeu" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Ven" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sam" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Annuler l'émission en cours ?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Arrêter l'enregistrement de l'émission en cours ?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contenu de l'émission" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Enlever tous les contenus ?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Supprimer le(s) élément(s) sélectionné(s) ?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Début" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Fin" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Durée" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Filtrage " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " de " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " enregistrements" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "Il n'y a pas d'émissions prévues durant cette période." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Point d'entrée" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Point de sortie" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fondu en entrée" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fondu en sortie" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Émission vide" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Enregistrement à partir de 'Line In'" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Pré-écoute de la piste" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Vous ne pouvez pas programmer en dehors d'une émission." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Déplacer 1 élément" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Déplacer %s éléments" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Sauvegarder" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Annuler" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Éditeur de fondu" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Éditeur de points d'E/S" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Tout Selectionner" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Ne Rien Selectionner" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Enlever les émissions surbookées" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Supprimer les éléments programmés sélectionnés" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Aller à la piste en cours de lecture" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "Aller à l'émission en cours" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Annuler l'émission en cours" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Ajouter/Supprimer Contenu" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "en cours d'utilisation" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disque" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Regarder à l'intérieur" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Ouvrir" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrateur·ice" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DeaJee" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programmateur·ice" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Invité·e" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Les Invité·e·s peuvent effectuer les opérations suivantes :" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Voir le calendrier" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Voir le contenu des émissions" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Les DJs peuvent effectuer les opérations suivantes :" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Gérer le contenu des émissions attribuées" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Importer des fichiers multimédias" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Créez des listes de lectures, des blocs intelligents et des flux web" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Gérer le contenu de leur propre audiothèque" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "Les gestionnaires de programmes peuvent faire ceci :" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Afficher et gérer le contenu des émissions" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Programmer des émissions" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Gérez tout le contenu de l'audiothèque" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Gérer les préférences" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Gérer les utilisateur·ice·s" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Gérer les dossiers surveillés" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Envoyez vos remarques au support" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Voir l'état du système" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Accédez à l'historique diffusion" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Voir les statistiques d'audience" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Montrer / cacher les colonnes" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "Colonnes" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "De {from} à {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "aaaa-mm-jj" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Di" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Lu" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Ma" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Me" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Je" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Ve" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Fermer" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Heure" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minute" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Fait" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Sélectionnez les fichiers" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "Nom du fichier" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "Taille" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Ajouter des fichiers" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Arrêter le Téléversement" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Démarrer le Téléversement" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "Démarrer le téléversement" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Ajouter des fichiers" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "Arrêter le téléversement en cours" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "Démarrer le téléversement de la file" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Téléversement de %d sur %d fichiers" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Faites glisser les fichiers ici." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Erreur d'extension du fichier." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Erreur de la Taille de Fichier." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Erreur de comptage des fichiers." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Erreur d'initialisation." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Erreur HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Erreur de sécurité." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Erreur générique." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Erreur d'E/S." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Fichier : %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d fichiers en file d'attente" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Fichier : %f, taille : %s, taille de fichier maximale : %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "L'URL de téléversement est peut être erronée ou inexistante" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Erreur : Fichier trop grand : " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Erreur : extension de fichier non valide : " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Définir par défaut" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Créer une entrée" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Éditer l'enregistrement de l'historique" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Pas d'émission" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copié %s ligne(s)%s dans le presse papier" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Nouvelle émission" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Nouvelle entrée de log" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "Aucune date disponible dans le tableau" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "(limité à _MAX_ entrées au total)" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "Premier" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "Dernier" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "Suivant" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "Précédent" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "Rechercher :" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "Aucun enregistrement correspondant trouvé" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "Glissez ici les pistes depuis la bibliothèque" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné." - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Annuler la publication" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "Aucun résultat correspondant trouvé." - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Auteur·ice" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Description" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Lien" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "Date de publication" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "Statuts d'importation" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "Actions" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "Supprimer de la bibliothèque" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "Succès de l'importation" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "Afficher _MENU_" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "Afficher les entrées du _MENU_" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "Affiche de _START_ à _END_ sur _TOTAL_ entrées" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "Affiche de _START_ à _END_ sur _TOTAL_ pistes" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "Affiche de _START_ à _END_ sur _TOTAL_ types de piste" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "Affiche de 0 à 0 sur 0 entrées" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "Affiche de 0 à 0 sur 0 pistes" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "Affiche de 0 à 0 sur 0 types de piste" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "(limité à _MAX_ types de piste au total)" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "Aucun type de piste trouvé." - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "Aucun type de piste trouvé" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "Aucun type de piste correspondant trouvé" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Activé" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Désactivé" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "Annuler le téléversement" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "Type" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" -"Le contenu des playlists automatiques est ajouté aux émissions une heure " -"avant le début de l'émission. Plus d'information" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "Préférences des podcasts enregistrées" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "Impossible de vous supprimer vous-même !" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "Vous n'avez pas publié d'épisode !" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes »." - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "Essayer maintenant" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "Aperçu de la liste de lecture" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Bloc intelligent" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "Aperçu du webstream" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "Vous n'avez pas l'autorisation de voir la bibliothèque." - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "Maintenant" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "Cliquez « Nouveau » pour en créer un nouveau." - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "Cliquez « Téléverser » pour en ajouter de nouveaux." - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "URL du flux" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "Date d'importation" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "Ajouter un nouveau podcast" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" -"Impossible de programmer en-dehors d'un épisode.\n" -"Veuillez d'abord créer un épisode." - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "Aucun fichier n'a encore été téléversé." - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "À l'antenne" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Hors antenne" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Éteint" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Aucun programme" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "Cliquez « Ajouter » pour en créer un nouveau maintenant." - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Veuillez entrer vos identifiants." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "Cet identifiant ou cette adresse courriel n'ont pu être trouvés." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e)." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Vous visualisez l'ancienne version de %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Liste de lecture sans titre" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloc intelligent sans titre" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Liste de lecture inconnue" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Préférences mises à jour." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Réglages du Flux mis à jour." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "le chemin doit être spécifié" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problème avec Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Cette méthode de requête ne peut aboutir" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rediffusion de l'émission %s de %s à %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Sélectionner le Curseur" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Enlever le Curseur" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "l'émission n'existe pas" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "Type de piste ajouté avec succès !" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "Type de piste mis à jour avec succès !" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Utilisateur·ice ajouté avec succès !" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Utilisateur·ice mis à jour avec succès !" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Paramètres mis à jour avec succès !" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Flux Web sans Titre" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Flux Web sauvegardé." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Valeurs du formulaire non valides." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Caractère Invalide saisi" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Le Jour doit être spécifié" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "La durée doit être spécifiée" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Vous devez attendre au moins 1 heure pour retransmettre" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "Ajouter une playlist automatique ?" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Sélectionner la playlist" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Répéter la playlist jusqu'à ce que l'émission soit pleine ?" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Utilisez l'authentification %s :" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Utiliser l'authentification personnalisée :" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Nom d'utilisateur·ice personnalisé" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Mot de Passe personnalisé" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Hôte :" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Port :" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Point de Montage :" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Le champ Nom d'Utilisateur·ice ne peut pas être vide." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Le champ Mot de Passe ne peut être vide." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Enregistrer à partir de « Line In » ?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Rediffusion ?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "jours" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Lien :" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Type de Répétition :" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "hebdomadaire" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "toutes les 2 semaines" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "toutes les 3 semaines" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "toutes les 4 semaines" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mensuel" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Sélection des jours :" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Répéter par :" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "jour du mois" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "jour de la semaine" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Date de fin :" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sans fin ?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "La Date de Fin doit être postérieure à la Date de Début" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Veuillez sélectionner un jour de répétition" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Couleur de fond :" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Couleur du texte :" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Logo actuel :" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Montrer le logo :" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Aperçu du logo :" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nom :" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Émission sans Titre" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL :" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genre :" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Description :" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Description de l'instance :" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Heure de début :" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "À venir :" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Temps de fin :" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Durée :" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Fuseau horaire :" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Répéter ?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Impossible de créer une émission dans le passé" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "La date/heure de Fin ne peut être dans le passé" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Ne peut pas avoir une durée < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Ne peut pas avoir une durée de 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Ne peut pas avoir une durée supérieure à 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Ne peut pas programmer des émissions qui se chevauchent" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Recherche d'utilisateur·ice·s :" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs :" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "Nom du type :" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "Code :" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "Visibilité :" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "Analyser les points d'entrée et de sortie :" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "Ce code n'est pas unique." - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Utilisateur·ice :" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Mot de Passe :" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Vérification du mot de Passe :" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Prénom :" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nom :" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Courriel :" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Numéro de mobile :" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype :" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber :" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Type d'utilisateur·ice :" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Le Nom de connexion n'est pas unique." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Supprimer toutes les pistes de la librairie" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Date de début :" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Titre :" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Créateur·ice :" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album :" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "Propriétaire :" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "Sélectionner un type" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "Type de piste :" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Année :" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Étiquette :" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Compositeur·ice :" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conducteur :" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Atmosphère :" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM :" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright :" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numéro ISRC :" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Site Internet :" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Langue :" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Publier..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Heure de Début" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Heure de Fin" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Fuseau horaire de l'interface :" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Nom de la Station" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Description de la station" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo de la Station :" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Durée du fondu enchaîné (en sec) :" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Veuillez entrer un temps en secondes (ex. 0.5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Fondu en Entrée par défaut (en sec) :" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Fondu en Sortie par défaut (en sec) :" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "Type de piste par défaut" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "Playlist automatique d'intro" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "Playlist automatique d'outro" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Remplacer les metatags de l'épisode" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents." - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "API publique LibreTime" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Requis pour le widget de programmation." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" -"L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n" -" à des widgets externes pouvant être intégrés à votre site Web." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Langage par défaut" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Fuseau horaire de la Station" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "La semaine commence le" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "Afficher le bouton de connexion sur votre page radio ?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "Aperçus de fonctionnalités" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités." - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Arrêt automatique :" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Mise en marche automatique :" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Changement de transition en fondu (en sec) :" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "Hôte source maître :" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "Port source maître :" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "Point de montage principal :" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Afficher l'hôte de la source :" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Afficher le port de la source :" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Afficher le point de montage de la source :" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Connexion" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Mot de Passe" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirmez le nouveau mot de passe" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "La confirmation du mot de passe ne correspond pas à votre mot de passe." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Courriel" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Utilisateur" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Réinitialisation du Mot de Passe" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Retour" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "En Lecture" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Sélectionnez un flux :" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Détecter automatiquement le flux le plus approprié à utiliser." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Sélectionnez un flux :" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Interface mobile" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - Le lecteur ne fonctionne pas avec des flux Opus." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Code à intégrer :" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Aperçu :" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Confidentialité du flux" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Publique" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Privé" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Langage de la station" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Filtrer par émissions" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Toutes mes émissions :" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Mes émissions" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Sélectionner le critère" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Taux d'échantillonage (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "Type de piste" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Taux d'échantillonage (Khz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "avant" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "après" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "entre" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "Sélectionner une unité de temps" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "minute(s)" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "heure(s)" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "jour(s)" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "semaine(s)" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "mois" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "année(s)" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "heures" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutes" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "éléments" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "temps restant de l'émission" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Aléatoirement" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Plus récent" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Plus vieux" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "Les plus joués récemment" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "Les moins jouées récemment" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "Sélectionner un type de piste" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Type :" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamique" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statique" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "Sélectionner un type de piste" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Autoriser la répétition de pistes :" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Autoriser la dernière piste à dépasser l'horaire :" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Trier les pistes :" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Limiter à :" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Génération de la liste de lecture et sauvegarde des critères" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Contenu de la liste de lecture alèatoire" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Aléatoire" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "La Limite ne peut être vide ou plus petite que 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "La Limite ne peut être supérieure à 24 heures" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "La valeur doit être un entier" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Vous devez sélectionner Critères et Modification" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "La 'Durée' doit être au format '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "Vous devez sélectionner une unité de temps pour une date relative." - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "Seuls les entiers positifs sont autorisés pour les dates relatives" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "La valeur doit être numérique" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "La valeur doit être inférieure à 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "La valeur ne peut pas être vide" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "La valeur doit être inférieure à %s caractères" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "La Valeur ne peut pas être vide" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Label du Flux :" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artiste - Titre" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Émission - Artiste - Titre" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Nom de la Station - Nom de l'émission" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Métadonnées Hors Antenne" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Activer" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Modifier le Niveau du Gain" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Sortie audio matérielle :" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Type de Sortie" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Activé :" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Mobile :" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Type de Flux :" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Débit :" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Type de service :" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Canaux :" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Serveur" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Point de Montage" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Nom" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "URL du flux" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Pousser les métadonnées sur votre station sur TuneIn ?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Identifiant de la station :" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clé partenaire :" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "ID partenaire :" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Répertoire d'importation :" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Répertoires Surveillés :" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "N'est pas un Répertoire valide" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Une valeur est requise, ne peut pas être vide" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne correspond pas au format de la date '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' est inférieur à %min% charactères" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' est plus grand de %min% charactères" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Les mots de passe ne correspondent pas" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Bonjour %s , \n" -"\n" -"Veuillez cliquer sur ce lien pour réinitialiser votre mot de passe : " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"En cas de problèmes, contactez notre équipe de support : %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Merci,\n" -"L'équipe %s" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Réinitialisation du mot de passe" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Le points d'entrée et de sortie sont indéfinis." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Temps de téléversement" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Vide" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "Propulsé par %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Selectionner le Pays" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "diffusion en direct" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Le calendrier que vous consultez n'est pas à jour !" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Vous n'êtes pas autorisé à programme l'émission %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "L émission %s est terminé et ne peut pas être programmé." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "L'émission %s a été précédemment mise à jour !" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Un fichier sélectionne n'existe pas !" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Les émissions peuvent avoir une durée maximale de 24 heures." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Ne peux pas programmer des émissions qui se chevauchent. \n" -"Remarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rediffusion de %s à %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "La durée doit être supérieure à 0 minute" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "La durée doit être de la forme \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL doit être de la forme \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "L'URL doit être de 512 caractères ou moins" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Aucun type MIME trouvé pour le Flux Web." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Le Nom du Flux Web ne peut être vide" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Impossible d'analyser la Sélection XSPF" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Impossible d'analyser la Sélection PLS" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Impossible d'analyser la Séléction M3U" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Type de flux non reconnu : %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "L'enregistrement du fichier n'existe pas" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Afficher les métadonnées du fichier enregistré" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Ajouter des pistes" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Vider le contenu de l'émission" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Annuler l'émission" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Modifier cet élément" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Édition de l'émission" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Supprimer cet élément" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Supprimer cet élément et tous les suivants" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Permission refusée" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Impossible de déplacer une émission déjà diffusée" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Impossible de déplacer une émission dans le passé" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Doit attendre 1 heure pour retransmettre." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Piste" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Joué" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "Playlist intelligente géré automatiquement pour le podcast" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Flux web" - -#~ msgid " to " -#~ msgstr " à " - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s est distribué sous %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes." - -#, php-format -#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -#~ msgstr "%1$s copyright © %2$s Tous droits réservés.
Maintenu et distribué sous les %3$s par %4$s" - -#, php-format -#~ msgid "%s Version" -#~ msgstr "Version %s" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contient un répertoire surveillé imbriqué : %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s n'existe pas dans la liste surveillée." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s déjà examiné(s)." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s est imbriqué avec un répertoire surveillé existant : %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s n'est pas un répertoire valide." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)." - -#~ msgid "(Required)" -#~ msgstr "(Requis)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Site Internet de la Station de Radio)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(à des fins de vérification uniquement, ne sera pas publié)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stéréo" - -#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -#~ msgstr "
Voici une pré-visualisation du contenu qui peut être généré par le bloc intelligent basé sur le critère ci-dessus." - -#~ msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead." -#~ msgstr " Remarque: Puisque vous êtes le propriétaire de la station, les informations de votre compte peuvent être modifiées dans les paramètres de facturation ." - -#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgstr "Un lien de réinitialisation du mot de passe a été envoyé à votre adresse e-mail. Veuillez vérifier votre email et suivez les instructions à l'intérieur pour réinitialiser votre mot de passe. Si vous ne voyez pas l'e-mail, veuillez vérifier votre dossier spam!" - -#~ msgid "A track list will be generated when you schedule this smart block into a show." -#~ msgstr "Une liste de pistes est générée lorsque vous programmez ce bloc intelligent dans une émission." - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "A propos" - -#~ msgid "Access Denied!" -#~ msgstr "Accès refusé !" - -#~ msgid "Account Details" -#~ msgstr "Détails du compte" - -#~ msgid "Account Plans" -#~ msgstr "Plan du compte" - -#~ msgid "Add New Field" -#~ msgstr "Ajouter un nouveau champ" - -#~ msgid "Add more elements" -#~ msgstr "Ajouter plus d'éléments" - -#~ msgid "Add this show" -#~ msgstr "Ajouter cette émission" - -#~ msgid "Add tracks to your show" -#~ msgstr "Ajouter des pistes à l'émission" - -#~ msgid "Additional Options" -#~ msgstr "Options supplémentaires" - -#~ msgid "Admin Password" -#~ msgstr "Mot de Passe Admin" - -#~ msgid "Admin User" -#~ msgstr "Utilisateur·ice Admin" - -#~ msgid "Advanced Search Options" -#~ msgstr "Options Avancées de Recherche" - -#~ msgid "Advanced options" -#~ msgstr "Options avancées" - -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "Airtime Pro fait peau neuve!" - -#~ msgid "All rights are reserved" -#~ msgstr "Tous droits réservés" - -#~ msgid "Allowed CORS URLs" -#~ msgstr "URLs CORS autorisées" - -#~ msgid "Allowed CORS URLs (DEPRECATED)" -#~ msgstr "Les URL CORS autorisés (OBSOLÈTE)" - -#~ msgid "An error has occurred." -#~ msgstr "Une erreur est survenue." - -#~ msgid "Audio Track" -#~ msgstr "Piste Audio" - -#~ msgid "Autoloading Playlist" -#~ msgstr "Playlist automatique" - -#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -#~ msgstr "Le contenu des playlists automatiques est ajouté aux émissions une heure avant leur départ. Plus d'informations" - -#~ msgid "Bad Request!" -#~ msgstr "Cette requête est incorrecte !" - -#~ msgid "Billing" -#~ msgstr "Facturation" - -#~ msgid "Billing cycle:" -#~ msgstr "Facturation:" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ." - -#~ msgid "Category" -#~ msgstr "Catégorie" - -#~ msgid "Check that the libretime-celery service is installed correctly in " -#~ msgstr "Vérifiez que le service « libretime-celery » est installé correctement dans " - -#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -#~ msgstr "Cochez les cases ci-dessus et cliquez sur 'Publier' pour publier cette piste sur les sources marquées." - -#~ msgid "Choose Days:" -#~ msgstr "Choisissez des jours:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Choisissez une instance" - -#~ msgid "Choose folder" -#~ msgstr "Choisir le répertoire" - -#~ msgid "Choose some search criteria above and click Generate to create this playlist." -#~ msgstr "Choisissez certains critères de recherche ci-dessus et cliquez sur Générer pour créer cette liste de lecture." - -#~ msgid "City:" -#~ msgstr "Ville:" - -#~ msgid "Clear" -#~ msgstr "Vider" - -#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -#~ msgstr "Cliquez sur 'Calendrier' dans la barre de navigation à gauche. Puis cliquez sur le bouton '+ Nouvelle émission' et remplissez les informations requises." - -#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -#~ msgstr "Cliquez sur une émission dans le calendrier et sélectionnez 'Programmer l'émission'. Dans la fenêtre qui s'affiche déplacez des pistes sur votre émission." - -#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -#~ msgstr "Cliquez sur le bouton 'Téléversement' dans le coin gauche pour ajouter des pistes à votre librairie." - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ." - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion" - -#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgstr "Impossible de se connecter au serveur RabbitMQ ! Veuillez vérifier si le serveur est en cours d'exécution et que vos informations d'identification sont correctes." - -#~ msgid "Country:" -#~ msgstr "Pays:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Création du fichier Modèle d'Historique" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Création du modèle de fichier de Log" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution Pas de Travaux Dérivés" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Non Commercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Distribution à l'Identique" - -#~ msgid "Credit Card via 2Checkout" -#~ msgstr "Carte de crédit via 2Checkout" - -#~ msgid "Cue In: " -#~ msgstr "Point d'entrée " - -#~ msgid "Cue Out: " -#~ msgstr "Point de Sortie: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Répertoire d'importation:" - -#~ msgid "Cursor" -#~ msgstr "Curseur" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Streaming personnalisé / tiers" - -#~ msgid "" -#~ "Customize the player by configuring the options below. When you are done,\n" -#~ " copy the embeddable code below and paste it into your website's HTML." -#~ msgstr "Personnalisez le lecteur en configurant les options ci-dessous. Lorsque vous avez terminé, \\ n copiez le code intégrable ci-dessous et collez-le dans le code HTML de votre site Web." - -#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -#~ msgstr "Les DJs peuvent utiliser ces paramètres dans leur logiciel de diffusion pour diffuser en direct les émissions qui leurs sont assignées." - -#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -#~ msgstr "Les DJs peuvent utiliser ces réglages pour se connecter à cette émission et la diffuser en direct. Assignez un DJ ci-dessous." - -#~ msgid "Dangerous Options" -#~ msgstr "Options dangereuses" - -#~ msgid "Dashboard" -#~ msgstr "Tableau de bord" - -#~ msgid "Default Length:" -#~ msgstr "Durée par Défaut:" - -#~ msgid "Default License:" -#~ msgstr "Licence par Défaut:" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Type de partage par défaut:" - -#~ msgid "Default Streaming" -#~ msgstr "Streaming par défaut" - -#~ msgid "Disk Space" -#~ msgstr "Espace Disque" - -#~ msgid "Download latest episodes:" -#~ msgstr "Télécharger les derniers épisodes:" - -#~ msgid "Drag tracks here from your library to add them to the playlist" -#~ msgstr "Faites glisser les pistes ici de votre bibliothèque pour les ajouter à la liste de lecture" - -#~ msgid "Drop files here or click to browse your computer." -#~ msgstr "Faites glisser les fichiers ici ou cliquez pour parcourir votre ordinateur." - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Bloc intelligent Dynamique" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Critère(s) du bloc intelligent Dynamique: " - -#~ msgid "Edit Metadata..." -#~ msgstr "Modifier les méta-données..." - -#~ msgid "Editing " -#~ msgstr "Edition " - -#~ msgid "Email Sent!" -#~ msgstr "Email envoyé!" - -#~ msgid "Empty playlist content" -#~ msgstr "Vider le contenu de la Liste de Lecture" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Ettendre le Bloc Dynamique" - -#~ msgid "Expand Static Block" -#~ msgstr "Ettendre le bloc Statique" - -#~ msgid "Explicit" -#~ msgstr "Explicite" - -#~ msgid "FAQ" -#~ msgstr "Questions - réponses" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Facebook Radio Player" -#~ msgstr "Lecteur Radio Facebook" - -#~ msgid "Fade in: " -#~ msgstr "Fondu en entrée: " - -#~ msgid "Fade in: " -#~ msgstr "Fondu dans: " - -#~ msgid "Fade out: " -#~ msgstr "Fondu en sortie: " - -#~ msgid "Failed" -#~ msgstr "Échoués" - -#~ msgid "File Path:" -#~ msgstr "Chemin du fichier:" - -#~ msgid "File Summary" -#~ msgstr "Résumé du fichier" - -#~ msgid "File Summary Templates" -#~ msgstr "Modèle de fichier d'historique" - -#~ msgid "File a Support Ticket" -#~ msgstr "Remplir un ticket au support" - -#~ msgid "File import in progress..." -#~ msgstr "Import du Fichier en cours..." - -#~ msgid "Filter History" -#~ msgstr "Filtre de l'historique" - -#~ msgid "Find" -#~ msgstr "Trouver" - -#~ msgid "Find Shows" -#~ msgstr "Trouver émissions" - -#~ msgid "First Name" -#~ msgstr "Prénom" - -#, php-format -#~ msgid "" -#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -#~ " or %sApple's podcasting documentation%s." -#~ msgstr "Pour plus d' informations sur ce que ces champs de métadonnées signifient, s'il vous plaît voir le %s RSS spécification %s \\ n ou %s la documentation de podcasting Apple %s ." - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Pour plus de détails, s'il vous plaît lire le %sManuel d'Airtime%s" - -#~ msgid "Forgot your password?" -#~ msgstr "Mot de passe oublié ?" - -#~ msgid "General Fields" -#~ msgstr "Champs généraux" - -#~ msgid "Generate Smartblock and Playlist" -#~ msgstr "Générer Bloc intelligent et Playlist" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "Vous avez une énorme bibliothèque de musique? Aucun problème! Avec la nouvelle page Téléverser, vous pouvez faire glisser des dossiers entiers dans notre cloud privé." - -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Aidez à améliorer %s en nous indiquant comment vous l'utilisez. Ces informations seront collectées régulièrement afin d'améliorer votre expérience utilisateur.
Cliquez sur la case ci-dessous pour nous assurer que les fonctionnalités que vous utilisez s'améliorent constamment." - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions: " - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Metadata Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Si Airtime est derrière un routeur ou un pare-feu, vous devrez peut-être configurer la redirection de port et ce champ d'information sera alors incorrect.Dans ce cas, vous devrez mettre à jour manuellement ce champ de sorte qu'il affiche l'hôte/le port /le point de montage correct dont le DJ a besoin pour s'y connecter. La plage autorisée est comprise entre 1024 et 49151." - -#~ msgid "In what city did you meet your spouse/significant other?" -#~ msgstr "Dans quelle ville avez-vous rencontré votre compagnon(ne) ?" - -#~ msgid "In what city or town was your first job?" -#~ msgstr "Dans quelle ville ou village avez-vous eu votre premier travail ?" - -#~ msgid "Isrc Number:" -#~ msgstr "Numéro ISRC:" - -#~ msgid "Jack" -#~ msgstr "Jack" - -#~ msgid "Keywords" -#~ msgstr "Mots-clés" - -#~ msgid "Last Name" -#~ msgstr "Nom" - -#~ msgid "Length:" -#~ msgstr "Durée:" - -#~ msgid "Limit to " -#~ msgstr "Limité à " - -#~ msgid "Listen" -#~ msgstr "Ecouter" - -#~ msgid "Listeners" -#~ msgstr "Les auditeurs" - -#~ msgid "Live Broadcasting" -#~ msgstr "Diffusion en direct" - -#~ msgid "Live Stream Input" -#~ msgstr "Entrée du Flux Direct" - -#~ msgid "Live stream" -#~ msgstr "Flux Live" - -#~ msgid "Log Sheet" -#~ msgstr "Fichier de Log" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Modèles de fichiers de Log" - -#~ msgid "Logout" -#~ msgstr "Déconnexion" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "On dirait que la page que vous cherchez n'existe pas !" - -#~ msgid "Looks like there are no shows scheduled on this day." -#~ msgstr "Il n'y a pas d'émissions prévues aujourd'hui." - -#~ msgid "Manage Users" -#~ msgstr "Gérer les Utilisateurs" - -#~ msgid "Master Source" -#~ msgstr "Source Maitre" - -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Utilisation mensuelle de la bande passante de l'auditeur" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." - -#~ msgid "New Criteria" -#~ msgstr "Nouveau critère" - -#~ msgid "New File Summary Template" -#~ msgstr "Nouveau modèle de fichier d'Historique" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Nouveau modèle de fichier de Log" - -#~ msgid "New Modifier" -#~ msgstr "Nouveau modificateur" - -#~ msgid "New User" -#~ msgstr "Nouvel Utilisateur" - -#~ msgid "New password" -#~ msgstr "Nouveau mot de passe" - -#~ msgid "Next:" -#~ msgstr "Prochain:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Aucun modèle de fichier d'historique" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Aucun modèles de fichiers de Log" - -#~ msgid "No open playlist" -#~ msgstr "Pas de Liste de Lecture Ouverte" - -#~ msgid "No smart block currently open" -#~ msgstr "Aucun bloc intelligent actuellement ouvert" - -#~ msgid "No webstream" -#~ msgstr "Aucun Flux Web" - -#~ msgid "Now you're good to go!" -#~ msgstr "Vous en savez assez à présent !" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "DIRECT" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Seuls les chiffres sont autorisés." - -#~ msgid "Oops!" -#~ msgstr "Mince !" - -#~ msgid "Original Length:" -#~ msgstr "Durée Originale:" - -#~ msgid "" -#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -#~ " is easier than ever." -#~ msgstr "Notre nouvelle vue Tableau de bord dispose désormais d'une puissante interface d'édition par onglets. La mise à jour de vos pistes et de vos listes de lecture est donc plus simple que jamais." - -#~ msgid "Output Streams" -#~ msgstr "Flux de sortie" - -#~ msgid "Override" -#~ msgstr "Ecraser" - -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Remplacer le nom de l'album par le nom du podcast durant le remplacement." - -#~ msgid "Page not found!" -#~ msgstr "Page non trouvée !" - -#~ msgid "Password Reset" -#~ msgstr "Réinitialisation du mot de passe" - -#~ msgid "PayPal" -#~ msgstr "PayPal" - -#~ msgid "Payment method:" -#~ msgstr "Méthode de paiement:" - -#~ msgid "Pending" -#~ msgstr "En attente" - -#~ msgid "Phone:" -#~ msgstr "Téléphone:" - -#~ msgid "Plan type:" -#~ msgstr "Type de plan:" - -#~ msgid "Play" -#~ msgstr "Lecture" - -#~ msgid "Playlist Contents: " -#~ msgstr "Contenus de la Liste de Lecture: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Fondu enchaîné de la Liste de Lecture" - -#~ msgid "Playout History Templates" -#~ msgstr "Modèles d'historique de diffusion" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous." - -#~ msgid "Please upgrade to " -#~ msgstr "SVP mettez vous à jour vers" - -#~ msgid "Podcast Name: " -#~ msgstr "Nom du podcast: " - -#~ msgid "Podcast URL: " -#~ msgstr "URL du podcast: " - -#~ msgid "Podcasts" -#~ msgstr "Podcasts" - -#~ msgid "Port cannot be empty." -#~ msgstr "Le Port ne peut être vide." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Previous:" -#~ msgstr "Précédent:" - -#~ msgid "Privacy Settings" -#~ msgstr "Paramètres de sécurité" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Les gestionnaires pouvent effectuer les opérations suivantes:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Promouvoir station sur %s" - -#~ msgid "Publish to:" -#~ msgstr "Publier vers:" - -#~ msgid "Published on:" -#~ msgstr "Publié le:" - -#~ msgid "Published tracks can be removed or updated below." -#~ msgstr "Les pistes publiées peuvent être supprimées ou mises à jour ci-dessous." - -#~ msgid "Publishing" -#~ msgstr "Publication" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "RESET" -#~ msgstr "Réinitialiser" - -#~ msgid "RSS Feed URL:" -#~ msgstr "URL du feed RSS:" - -#~ msgid "Recent Uploads" -#~ msgstr "Ajouts récents" - -#~ msgid "Record & Rebroadcast" -#~ msgstr "Enregistrement & Rediffusion" - -#~ msgid "Register Airtime" -#~ msgstr "Enregistrez Airtime" - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -#~ msgstr "URL distantes autorisées à accéder à cette instance LibreTime dans un navigateur. Une URL par ligne." - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line. (DEPRECATED: Allowed CORS origins configuration moved to the configuration file.)" -#~ msgstr "Les URL distantes qui sont autorisées pour accéder à cette instance de LibreTime depuis un navigation. Une URL par ligne. (OBSOLÈTE : La configuration des origines CORS a été déplacée dans le fichier de configuration.)" - -#~ msgid "Remove all content from this smart block" -#~ msgstr "Supprimer tout le contenu de ce bloc intelligent" - -#~ msgid "Remove watched directory" -#~ msgstr "Supprimer le répertoire surveillé" - -#~ msgid "Repeat Days:" -#~ msgstr "Jours de répétition:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)" - -#~ msgid "Sample Rate:" -#~ msgstr "Fréquence d'échantillonnage:" - -#~ msgid "Save playlist" -#~ msgstr "Sauvegarde de la Liste de Lecture" - -#~ msgid "Save podcast" -#~ msgstr "Sauvegarder le podcast" - -#~ msgid "Save station podcast" -#~ msgstr "Sauvegarder le podcast de la station" - -#~ msgid "Schedule a show" -#~ msgstr "Programmer une émission" - -#~ msgid "Scheduled Shows" -#~ msgstr "Émissions programmées" - -#~ msgid "Scheduling:" -#~ msgstr "Programmation:" - -#~ msgid "Search Criteria:" -#~ msgstr "Critères de recherche:" - -#~ msgid "Select stream:" -#~ msgstr "Selection du Flux:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Le Serveur ne peut être vide." - -#~ msgid "Service" -#~ msgstr "Un service" - -#~ msgid "Set" -#~ msgstr "Installer" - -#~ msgid "Set Cue In" -#~ msgstr "Placer le Point d'Entré" - -#~ msgid "Set Cue Out" -#~ msgstr "Placer le Point de Sortie" - -#~ msgid "Set Default Template" -#~ msgstr "Définir le modèle par défaut" - -#~ msgid "Share" -#~ msgstr "Partager" - -#~ msgid "Show Source" -#~ msgstr "Source de l'émission" - -#~ msgid "Show Summary" -#~ msgstr "Historique Emision" - -#~ msgid "Show Waveform" -#~ msgstr "Montrer la Forme d'Onde" - -#~ msgid "Show me what I am sending " -#~ msgstr "Montrez-moi ce que je vais envoyer " - -#~ msgid "Shuffle playlist" -#~ msgstr "Liste de Lecture Aléatoire" - -#~ msgid "Smartblock and Playlist Generated" -#~ msgstr "Bloc intelligent et playlist générés" - -#~ msgid "Source Streams" -#~ msgstr "Sources des Flux" - -#~ msgid "Static Smart Block" -#~ msgstr "Bloc intelligent Statique" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Contenus du bloc intelligent Statique: " - -#~ msgid "Station Description:" -#~ msgstr "Description de la Station:" - -#~ msgid "Station Web Site:" -#~ msgstr "Site Internet de la Station:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Flux " - -#~ msgid "Stream Data Collection Status" -#~ msgstr "Statut de collecte de données de flux" - -#~ msgid "Stream Settings" -#~ msgstr "Réglages des Flux" - -#~ msgid "Stream URL:" -#~ msgstr "URL du Flux:" - -#~ msgid "Stream URL: " -#~ msgstr "URL du Flux: " - -#~ msgid "Streaming Server:" -#~ msgstr "Serveur de Streaming :" - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Subscribe" -#~ msgstr "S'abonner" - -#~ msgid "Subtitle" -#~ msgstr "Sous-titre" - -#~ msgid "Summary" -#~ msgstr "Sommaire" - -#~ msgid "Super Admin details can be changed in your Billing Settings." -#~ msgstr "Les détails du super administrateur peuvent être modifiés dans vos paramètres de facturation ." - -#~ msgid "Support Feedback" -#~ msgstr "Remarques au support" - -#~ msgid "Support setting updated." -#~ msgstr "Réglages du Support mis à jour." - -#~ msgid "Table Test" -#~ msgstr "Test de table" - -#~ msgid "Terms and Conditions" -#~ msgstr "Termes et Conditions" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "La longueur du bloc souhaité ne sera pas atteint si de temps d'antenne ne peut pas trouver suffisamment de pistes uniques en fonction de vos critères. Activez cette option si vous souhaitez autoriser les pistes à s'ajouter plusieurs fois dans le bloc intelligent." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:" - -#~ msgid "" -#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -#~ " experience, no matter how you're connected." -#~ msgstr "" -#~ "Le nouveau temps d'antenne est plus fluide, plus élégant et plus rapide - sur encore plus d'appareils! Nous nous\n" -#~ " sommes engagés à améliorer l'expérience Airtime, quelle qu'en soit votre utilisation." - -#~ msgid "The requested action is not supported!" -#~ msgstr "L'action demandée n'est pas implémentée !" - -#~ msgid "The work is in the public domain" -#~ msgstr "Ce travail est dans le domaine public" - -#~ msgid "This version is no longer supported." -#~ msgstr "Cette version n'est plus supportée." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Cette version sera bientôt obsolête." - -#~ msgid "" -#~ "To add the Radio Tab to your Facebook Page, you must first:

\n" -#~ " Enable the Public Airtime API under Settings -> Preferences" -#~ msgstr "" -#~ "Pour ajouter l'onglet Radio à votre page Facebook, vous devez d'abord:

\n" -#~ "\t Activez l'API Publique Airtime sous Paramètres -> Préférences" - -#~ msgid "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -#~ " 2. Enable the Public Airtime API under Settings -> Preferences" -#~ msgstr "" -#~ "Pour configurer et utiliser le lecteur intégré vous devez:

\n" -#~ "\t 1. Activer au mois un flux MP3, AAC ou OGG dans Paramètres -> Flux
\n" -#~ "\t 2. Activer l'API publique de Airtime dans Paramètres -> Préférences" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s." - -#~ msgid "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public Airtime API under Settings -> Preferences" -#~ msgstr "" -#~ "Pour utiliser ce widget affichant la programmation hebdomadaire vous devez:

\n" -#~ "\t Activer l'API publique Airtime dans Paramètres -> Préférences" - -#~ msgid "Toggle Details" -#~ msgstr "Basculer les détails" - -#~ msgid "Track:" -#~ msgstr "Piste:" - -#~ msgid "TuneIn Settings" -#~ msgstr "Réglages TuneIn" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous." - -#~ msgid "Update Required" -#~ msgstr "Mise à Jour Requise" - -#~ msgid "Update show" -#~ msgstr "Mettre à jour l'émission" - -#~ msgid "Update track" -#~ msgstr "Mettre la piste à jour" - -#~ msgid "Upgrade" -#~ msgstr "Amélioration" - -#~ msgid "Upload" -#~ msgstr "Téléversement" - -#~ msgid "Upload audio tracks" -#~ msgstr "Téléverser des pistes sonores" - -#~ msgid "Use these settings in your broadcasting software to stream live at any time." -#~ msgstr "Utilisez ces paramètres dans votre logiciel de diffusion pour diffuser en direct à tout moment." - -#~ msgid "User Type" -#~ msgstr "Type d'Utilisateur" - -#~ msgid "View Feed" -#~ msgstr "Voir le feed" - -#~ msgid "View Invoices" -#~ msgstr "Voir factures" - -#~ msgid "View track" -#~ msgstr "Voir la piste" - -#~ msgid "Viewing " -#~ msgstr "Affichage " - -#~ msgid "We couldn't find the page you were looking for." -#~ msgstr "Nous n'avons pu trouver la page que vous cherchiez." - -#~ msgid "" -#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -#~ " just a click away, you'll be on air and hands-free in no time." -#~ msgstr "" -#~ "Nous avons rationalisé l'interface Airtime pour faciliter la navigation. Avec les outils les plus importants\n" -#~ " à portée de clic, vous serez en direct et les mains libres en un rien de temps." - -#~ msgid "Web Stream" -#~ msgstr "Flux Web" - -#~ msgid "Webstream" -#~ msgstr "Flux web" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Bienvenue à %s !" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ." - -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Bienvenue dans LibreTime !" - -#~ msgid "What" -#~ msgstr "Quoi" - -#~ msgid "What is the first name of the boy or girl that you first kissed?" -#~ msgstr "Comment s'appelait la première personne que vous avez embrassé ?" - -#~ msgid "What is the name of your favorite childhood friend?" -#~ msgstr "Quel est le nom de votre meilleur ami d'enfance ?" - -#~ msgid "What school did you attend for sixth grade?" -#~ msgstr "Où étiez-vous au collège ?" - -#~ msgid "What street did you live on in third grade?" -#~ msgstr "Dans quelle rue viviez-vous en classe de CE2 ?" - -#~ msgid "When" -#~ msgstr "Quand" - -#~ msgid "Who" -#~ msgstr "Qui" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Vous ne surveillez pas les dossiers médias." - -#~ msgid "You can change these later in your preferences and user settings." -#~ msgstr "Vous pouvez les changer plus tard dans vos préférences et réglages utilisateurs." - -#~ msgid "You do not have permission to access this page!" -#~ msgstr "Vous n'avez pas la permission d'accéder à cette page !" - -#~ msgid "You do not have permission to edit this track." -#~ msgstr "Vous n'avez pas la permission de modifier cette piste." - -#~ msgid "You have already published this track to all available sources!" -#~ msgstr "Vous avez déjà publié cette piste sur toutes les sources disponibles!" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Vous devez accepter la politique de confidentialité." - -#~ msgid "You haven't published this track to any sources!" -#~ msgstr "Vous n'avez pas publié cette piste à aucune source!" - -#~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "" -#~ "Vos fonctionnalités préférées sont encore plus faciles à utiliser - et nous en avons même \n" -#~ " ajouté quelques nouvelles! Regardez la vidéo ci-dessus ou lisez la suite pour en savoir plus." - -#~ msgid "Your trial expires in" -#~ msgstr "Votre période d'essai expire dans" - -#~ msgid "and" -#~ msgstr "et" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "file meets the criteria" -#~ msgstr "ce fichier correspond aux critères" - -#~ msgid "files meet the criteria" -#~ msgstr "ces fichiers correspondent aux critères" - -#~ msgid "iTunes Fields" -#~ msgstr "Champs pour iTunes" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "volume max" - -#~ msgid "mute" -#~ msgstr "sourdine" - -#~ msgid "next" -#~ msgstr "suivant" - -#~ msgid "or" -#~ msgstr "ou" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "jouer" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "s'il vous plaît mettez dans une durée en secondes '00 (.0) '" - -#~ msgid "previous" -#~ msgstr "précédent" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "désactiver" diff --git a/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po deleted file mode 100644 index aea6bcd8ea..0000000000 --- a/webapp/src/locale/po/hr_HR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4643 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2022-08-14 21:20+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" -"Language: hr_HR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.14-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Godina %s mora biti u rasponu od 1753. – 9999." - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nije ispravan datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nije ispravno vrijeme" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Koristi standardne podatke stanice" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Stranica radija" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalendar" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Programčići" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Player" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Tjedni raspored" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Postavke" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Opće" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Moj profil" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Korisnici" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Vrste snimaka" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Prijenosi" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Stanje" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Analitike" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Povijest reproduciranih pjesama" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Predlošci za povijest" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Statistika slušatelja" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Prikaži statistiku slušatelja" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Pomoć" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Prvi koraci" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Korisnički priručnik" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Pomoć na internetu" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Doprinesi projektu LibreTime" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Što je novo?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Ne smiješ pristupiti ovom izvoru." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Ne smiješ pristupiti ovom izvoru. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Datoteka ne postoji u %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Neispravan zahtjev. Prametar „mode” nije predan." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Neispravan zahtjev. Prametar „mode” je neispravan" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Nemaš dozvole za odspajanje izvora." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Nema spojenog izvora na ovaj unos." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Nemaš dozvole za mijenjanje izvora." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Stranica nije pronađena." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Nemaš dozvole za pristupanje ovom resursu." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nije pronađen" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Dogodila se greška." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Pregled" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Dodaj na Popis Pjesama" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Dodaj u pametni blok" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Izbriši" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Uredi …" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Preuzimanje" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Dupliciraj playlistu" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Dupliciraj pametni blok" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Nema dostupnih akcija" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Nemaš dozvole za brisanje odabrane stavke." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Nije bilo moguće izbrisati datoteku(e)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopiranje od %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Dogodila se greška!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Snimanje:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Prijenos mastera" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Prijenos uživo" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Ništa nije zakazano" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Trenutačna emisija:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Trenutačna" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Pokrećeš najnoviju verziju" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Dostupna je nova verzija: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Dodaj u trenutni popis pjesama" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Dodaj u trenutačni pametni blok" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Dodavanje 1 stavke" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Dodavanje %s stavki" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Možeš dodavati samo pjesme u pametne blokove." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Odaberi mjesto pokazivača na vremenskoj crti." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Dodaj" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Nova" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Uredi" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "Dodaj rasporedu" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "Dodaj sljedećoj emisiji" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "Dodaj trenutačnoj emisiji" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "Dodaj nakon odabranih stavki" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Objavi" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Ukloni" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Uredi metapodatke" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Dodaj odabranoj emisiji" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Odaberi" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Odaberi ovu stranicu" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Odznači ovu stranicu" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Odznači sve" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Stvarno želiš izbrisati odabranu(e) stavku(e)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Zakazano" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Snimke" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Playlista" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Naslov" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Tvorac" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Brzina prijenosa" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Kompozitor" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Autorsko pravo" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Kodirano je po" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Žanr" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Etiketa" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Jezik" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Zadnja promjena" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Zadnji put svirano" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Trajanje" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Vrsta" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Ugođaj" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Vlasnik" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Pojačanje reprodukcije" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Frekvencija" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Broj snimke" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Preneseno" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Web stranica" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Godina" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Učitavanje..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Sve" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Datoteke" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playliste" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Pametni blokovi" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Prijenosi" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Nepoznata vrsta: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Stvarno želiš izbrisati odabranu stavku?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Prijenos je u tijeku..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Preuzimanje podataka s poslužitelja …" - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Uvezi" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "Uvezeno?" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Prikaz" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Kod pogreške: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Poruka pogreške: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Unos mora biti pozitivan broj" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Unos mora biti broj" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Unos mora biti u obliku: gggg-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Unos mora biti u obliku: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Moj Podcast" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Otvori Media Builder" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "upiši vrijeme „00:00:00 (.0)”" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Upiši ispravno vrijeme u sekundama. Npr. 0,5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dinamički blok se ne može pregledati" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Ograniči na: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlista je spremljena" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlista je izmiješana" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Broj slušatelja %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Podsjeti me za 1 tjedan" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Nikada me nemoj podsjetiti" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Da, pomažem Airtime-u" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Slika mora biti jpg, jpeg, png, ili gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Pametni blok je izmiješan" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Pametni blok je generiran i kriteriji su spremljeni" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Pametni blok je spremljen" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Obrada..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Odaberi modifikator" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "sadrži" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "ne sadrži" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "je" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "nije" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "počinje sa" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "završava sa" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "je veći od" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "je manji od" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "je u rasponu" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generiraj" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Odaberi mapu za spremanje" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Odaberi mapu za praćenje" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Stvarno želiš promijeniti mapu za spremanje?\n" -"To će ukloniti datoteke iz tvoje Airtime medijateke!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Upravljanje Medijske Mape" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Stvarno želiš ukloniti nadzorsku mapu?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Ovaj put nije trenutno dostupan." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Priključen je na poslužitelju" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Prijenos je onemogućen" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Preuzimanje informacija s poslužitelja …" - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Ne može se povezati na poslužitelju" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nema pronađenih rezultata" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Emisija u ovom slučaju više ne postoji!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Upozorenje: Emisije ne može ponovno se povezati" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Emisija" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Emisija je prazna" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Preuzimanje podataka s poslužitelja …" - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Ova emisija nema zakazanog sadržaja." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Siječanj" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Veljača" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Ožujak" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Travanj" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Svibanj" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Lipanj" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Srpanj" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Kolovoz" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Rujan" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Listopad" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Studeni" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Prosinac" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Sij" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Vel" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Ožu" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Tra" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Lip" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Srp" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Kol" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Ruj" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Lis" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Stu" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Pro" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Danas" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Dan" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Tjedan" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Nedjelja" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Ponedjeljak" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Utorak" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Srijeda" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Četvrtak" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Petak" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Subota" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Ned" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Pon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Uto" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Sri" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Čet" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Pet" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sub" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Prekinuti trenutačnu emisiju?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Zaustaviti snimanje emisije?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "U redu" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Sadržaj emisije" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Ukloniti sav sadržaj?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Izbrisati odabranu(e) stavku(e)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Početak" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Završetak" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Trajanje" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Izdvjanje " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " od " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " snimaka" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "U navedenom vremenskom razdoblju nema zakazanih emisija." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Postupno pojačavanje glasnoće" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Postupno smanjivanje glasnoće" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Prazna emisija" - -#: application/controllers/LocaleController.php:294 -#, fuzzy -msgid "Recording From Line In" -msgstr "Snimanje sa Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Pregled snimaka" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Nije moguće zakazati izvan emisije." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Premještanje 1 stavke" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Premještanje %s stavki" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Spremi" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Odustani" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Uređivač prijelaza" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Uređivač" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Odaberi sve" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Odaberi ništa" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Ukloni odabrane zakazane stavke" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Skoči na trenutnu sviranu pjesmu" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "Skoči na trenutnu" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Prekini trenutačnu emisiju" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Dodaj / Ukloni Sadržaj" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "u upotrebi" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Pogledaj unutra" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Otvori" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrator" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "Disk-džokej" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Voditelj programa" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Gost" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Gosti mogu učiniti sljedeće:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Prikaži raspored" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Prikaži sadržaj emisije" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Disk-džokeji mogu učiniti sljedeće:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Upravljanje dodijeljen sadržaj emisije" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Uvezi medijske datoteke" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Izradi popise naslova, pametnih blokova, i prijenose" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Upravljanje svoje knjižničnog sadržaja" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "Voditelj programa može:" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Prikaži i upravljaj sadržajem emisije" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Zakaži emisije" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Upravljanje sve sadržaje knjižnica" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Administratori mogu učiniti sljedeće:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Upravljanje postavke" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Upravljanje korisnike" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Upravljanje nadziranih datoteke" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Pošalji povratne informacije" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Prikaži stanje sustava" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Pristup za povijest puštenih pjesama" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Prikaži statistiku slušatelja" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Prikaži/sakrij stupce" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "Stupci" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Od {from} do {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "gggg-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Ne" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Po" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Ut" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Sr" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Če" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Pe" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Su" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Zatvori" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Sat" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuta" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Gotovo" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Odaberi datoteke" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Dodaj Datoteke" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Prekini prijenos" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Započni prijenos" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Dodaj datoteke" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Preneseno %d/%d datoteka" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Povuci datoteke ovamo." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Pogrešan datotečni nastavak." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Pogrešna veličina datoteke." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Pogrešan broj datoteka." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init pogreška." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP pogreška." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Sigurnosna pogreška." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Opća pogreška." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO pogreška." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Datoteka: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d datoteka na čekanju" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "URL prijenosa možda nije ispravan ili ne postoji" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Pogreška: Datoteka je prevelika: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Pogreška: Nevažeći datotečni nastavak: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Postavi standardne postavke" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Stvaranje Unosa" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Uredi zapis povijesti" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nema Programa" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s red%s je kopiran u međumemoriju" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "Prvo" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "Prethodno" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "Traži:" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "Povuci snimke ovamo iz medijateke" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Poništi objavu" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Autor" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Opis" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "Datum objavljivanja" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "Uvezi stanje" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "Izbriši iz medijateke" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "Uspješno uvezeno" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "Prikaži _MENU_" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "Prikaži unose za _MENU_" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "Prikaz _START_ do _END_ od _TOTAL_ unosa" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "Prikaz _START_ do _END_ od _TOTAL_ snimaka" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "Prikaz _START_ do _END_ od _TOTAL_ korisnika" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "Prikaz 0 do 0 od 0 unosa" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "Prikaz 0 do 0 od 0 snimaka" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "Prikaz 0 do 0 od 0 vrsta snimaka" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "Stvarno želiš izbrisati ovu vrstu snimke?" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Aktivirano" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Deaktivirano" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "Prekini prijenos" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "Vrsta" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "Postavke podcasta su spremljene" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "Stvarno želiš izbrisati ovog korisnika?" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "Ne možeš sebe izbrisati!" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "Pregled playliste" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Pametni blok" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "Pregled internetskog prijenosa" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "Nemaš dozvole za prikaz medijateke." - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "Sada" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "URL feeda" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "Uvezi datum" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" -"Nije moguće zakazati izvan emisije.\n" -"Pokušaj najprije stvoriti emisiju." - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Upiši svoje korisničko ime i lozinku." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš dodavati pjesme u dinamične blokove." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dozvole za brisanje odabranih %s." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo dodati pjesme u pametni blok." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Neimenovana playlista" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Neimenovan pametni blok" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Nepoznata playlista" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Postavke su ažurirane." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Postavka prijenosa je ažurirana." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "put bi trebao biti specificiran" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem s Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Ponovo emitiraj emisiju %s od %s na %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Odaberi pokazivač" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "emisija ne postoji" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "Vrsta snimke uspješno dodana!" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "Vrsta snimke uspješno ažurirana!" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Korisnik je uspješno dodan!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Korisnik je uspješno ažuriran!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Postavke su uspješno ažurirane!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Neimenovan internetski prijenos" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Internetski prijenos je spremljen." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Nevažeće vrijednosti obrasca." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Dan se mora navesti" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Vrijeme mora biti navedeno" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Odaberi playlistu" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Ponavljati playlistu sve dok emisija nije potpuna?" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Koristi %s autentifikaciju:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Koristi prilagođenu autentifikaciju:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Prilagođeno korisničko Ime" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Prilagođena lozinka" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Host:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Priključak:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Polje korisničkog imena ne smije biti prazno." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "'Lozinka' polja ne smije ostati prazno." - -#: application/forms/AddShowRR.php:9 -#, fuzzy -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Ponovo emitirati?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dani" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Vrsta ponavljanja:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "tjedno" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "svaka 2 tjedna" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "svaka 3 tjedna" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "svaka 4 tjedna" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mjesečno" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Odaberi dane:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Ponavljaj po:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "dan u mjesecu" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "dan u tjednu" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Datum završetka:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nema Kraja?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Datum završetka mora biti nakon datuma početka" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Odaberi dan ponavljanja" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Boja pozadine:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Boja teksta:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Trenutačni logotip:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Prikaži logotip:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Naziv:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Neimenovana emisija" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Žanr:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Opis:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Opis instance:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Vrijeme početka:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "Ubuduće:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Vrijeme završetka:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Trajanje:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Vremenska zona:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Ponavljanje?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Ne može se stvoriti emisija u prošlosti" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Datum završetka i vrijeme ne može biti u prošlosti" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Ne može trajati kraće od 0 min" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Ne može trajati 00 h 00 min" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Ne može trajati duže od 24 h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Nije moguće zakazati preklapajuće emisije" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Traži korisnike:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Disk-džokeji:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "Ime vrste:" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "Kod:" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "Vidljivost:" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "Kod nije jedinstven." - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Korisničko ime:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Lozinka:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potvrdi lozinku:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Ime:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Prezime:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobitel:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Vrsta korisnika:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Ime prijave nije jedinstveno." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Izbriši sve snimke u medijateci" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Datum početka:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Naslov:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvorac:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "Odaberi jednu vrstu" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "Vrsta snimke:" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Godina:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Naljepnica:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Kompozitor:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dirigent:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Raspoloženje:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorsko pravo:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Broj:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Web stranica:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Jezik:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Objavi …" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Vrijeme početka" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Vrijeme završetka" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska zona sučelja:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Ime stanice" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Opis stanice" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logotip stanice:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Napomena: Sve veća od 600x600 će se mijenjati." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Standardno trajanje međuprijelaza (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Upiši vrijeme u sekundama (npr. 0,5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Standardno postupno pojačavanje glasnoće (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Standardno postupno smanjivanje glasnoće (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "Standard za prijenos vrsta snimaka" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "Javni LibreTime API" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Standardni jezik" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Vremenska zona stanice" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Prvi dan tjedna" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "Pregledi funkcija" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "Aktiviraj ovo za testiranje novih funkcija." - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Automatsko isključivanje:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Automatsko uključivanje:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Promijeni postupni prijelaz (s):" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Prikaži host izvora:" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Prikaži priključak izvora:" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Prikaži pogon izvora:" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Prijava" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Lozinka" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Potvrdi novu lozinku" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Lozinke koje ste unijeli ne podudaraju se." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "E-mail" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Korisničko ime" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Resetuj lozinku" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Natrag" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Trenutno Izvođena" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Odaberi emisiju:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Odaberi jednu emisiju:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Ugradiv kod:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Pregled:" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Privatnost feeda" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Javni" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Privatni" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Jezik stanice" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Filtriraj po emisijama" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Sve moje emisije:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Odaberi kriterije" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Brzina prijenosa (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "Vrsta snimke" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Frekvencija (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "prije" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "nakon" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "između" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "Odaberi vremensku jedinicu" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "minute" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "sati" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "dani" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "tjedni" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "mjeseci" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "godine" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "sati" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minute" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elementi" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "preostalo vrijeme u emisiji" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Slučajno" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Najnovije" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Najstarije" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "Zadnje reproducirane" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "Najstarije reproducirane" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "Odaberi vrstu snimke" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Vrsta:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinamički" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statični" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "Odaberi vrstu snimke" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Dozvoli ponavljanje snimaka:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Dozvoli da zadnji zapis prekorači vremensko ograničenje:" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Redoslijed snimaka:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Ograniči na:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generiraj sadržaj playliste i spremi kriterije" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Promiješaj sadržaj playliste" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Promiješaj" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može biti prazan ili manji od 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može biti više od 24 sati" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Vrijednost bi trebala biti cijeli broj" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Moraš odabrati Kriteriju i Modifikaciju" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala biti u '00:00:00' obliku" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Vrijednost mora biti numerička" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Vrijednost bi trebala biti manja od 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrijednost bi trebala biti manja od %s znakova" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Vrijednost ne može biti prazna" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Oznaka prijenosa:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Izvođač – Naslov" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Emisija – Izvođač – Naslov" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Ime stanice – Ime emisije" - -#: application/forms/StreamSetting.php:38 -#, fuzzy -msgid "Off Air Metadata" -msgstr "Off Air metapodaci" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Aktiviraj pojačanje glasnoće" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Modifikator pojačanje glasnoće" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Aktivirano:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Mobitel:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Vrsta prijenosa:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Brzina prijenosa:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Vrsta usluge:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanali:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Poslužitelj" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Priključak" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Točka Montiranja" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Ime" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID stanice:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Mapa uvoza:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Mape praćenja:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Nije ispravan direktorij" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Vrijednost je potrebna i ne može biti prazna" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Bok %s,\n" -"\n" -"Pritisni ovu poveznicu za resetiranje lozinke: " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Hvala,\n" -"Tim %s" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "Resetiranje lozinke za %s" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in i cue out su nule." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Vrijeme prijenosa" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Ništa" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Odaberi zemlju" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "prijenos uživo" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Nije moguće premjestiti stavke iz povezanih emisija" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Raspored koji gledaš nije aktualan! (neusklađenost instance)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Raspored koji gledaš nije aktualan!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Ne smijes zakazati rasporednu emisiju %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Ne možeš dodavati datoteke za snimljene emisije." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Emisija %s je gotova i ne mogu biti zakazana." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Emisija %s je već prije bila ažurirana!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Odabrana Datoteka ne postoji!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Emisija može trajati maksimalno 24 sata." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Nije moguće zakazati preklapajuće emisije.\n" -"Napomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ponovo emitiraj emisiju %s od %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Duljina mora biti veća od 0 minuta" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Duljina mora biti u obliku „00h 00m”" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL mora biti u obliku „https://example.org”" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL mora sadržati 512 znakova ili manje" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Ne postoji MIME tip za prijenos." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Ime internetskog prijenosa ne može biti prazno" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Nije bilo moguće analizirati XSPF playlistu" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Nije bilo moguće analizirati PLS playlistu" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Nije bilo moguće analizirati M3U playlistu" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nepepoznata vrsta prijenosa: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Datoteka snimke ne postoji" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Prikaži metapodatke snimljene datoteke" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Zakaži snimke" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Izbriši emisiju" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Prekini emisiju" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Uredi instancu" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Uredi emisiju" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Izbriši instancu" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Izbriši instancu i sva praćenja" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Dozvola odbijena" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Ne možeš premjestiti događane emisije" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Ne možeš premjestiti emisiju u prošlosti" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Emisija je izbrisana jer snimljena emisija ne postoji!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moraš pričekati jedan sat za ponovno emitiranje." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Snimka" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Reproducirano" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Internetski prijenosi" - -#~ msgid " to " -#~ msgstr "do" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s sadržava ugniježđene nadzirane direktorije: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s ne postoji u popisu nadziranih lokacija." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s je već nadziran." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s nije valjana direktorija." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)." - -#~ msgid "(Required)" -#~ msgstr "(Obavezno)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Tvoja radijska postaja web stranice)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(služi samo za provjeru, neće biti objavljena)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 – Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 – Stereo" - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "O projektu" - -#~ msgid "Add New Field" -#~ msgstr "Dodaj Novo Polje" - -#~ msgid "Add more elements" -#~ msgstr "Dodaj više elemenata" - -#~ msgid "Add this show" -#~ msgstr "Dodaj ovu emisiju" - -#~ msgid "Additional Options" -#~ msgstr "Dodatne Opcije" - -#~ msgid "Admin Password" -#~ msgstr "Administratorska lozinka" - -#~ msgid "Admin User" -#~ msgstr "Administratorski korisnik" - -#~ msgid "Advanced Search Options" -#~ msgstr "Napredne Opcije Pretraživanja" - -#~ msgid "All rights are reserved" -#~ msgstr "Sva prava pridržana" - -#~ msgid "Audio Track" -#~ msgstr "Zvučni Zapis" - -#~ msgid "Choose Days:" -#~ msgstr "Odaberi Dane:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Odaberi Emisijsku Stupnju" - -#~ msgid "Choose folder" -#~ msgstr "Odaberi mapu" - -#~ msgid "City:" -#~ msgstr "Grad:" - -#~ msgid "Clear" -#~ msgstr "Očisti" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije" - -#~ msgid "Country:" -#~ msgstr "Država:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Stvaranje Predložaka za Datotečni Sažeci" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Stvaranje Popis Predložaka" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Imenovanje" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Imenovanje Bez Izvedenih Djela" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktualna Uvozna Mapa:" - -#~ msgid "Cursor" -#~ msgstr "Pokazivač" - -#~ msgid "Default Length:" -#~ msgstr "Zadana Dužina:" - -#~ msgid "Default License:" -#~ msgstr "Zadana Dozvola:" - -#~ msgid "Disk Space" -#~ msgstr "Diskovni Prostor" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dinamički Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dinamički Smart Block Kriteriji:" - -#~ msgid "Empty playlist content" -#~ msgstr "Prazan sadržaj popis pjesama" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Proširenje Dinamičkog Bloka" - -#~ msgid "Expand Static Block" -#~ msgstr "Proširenje Statičkog Bloka" - -#~ msgid "Fade in: " -#~ msgstr "Odtamnjenje:" - -#~ msgid "Fade out: " -#~ msgstr "Zatamnjenje:" - -#~ msgid "File Path:" -#~ msgstr "Staža Datoteka:" - -#~ msgid "File Summary" -#~ msgstr "Datotečni Sažetak" - -#~ msgid "File Summary Templates" -#~ msgstr "Predlošci za Datotečni Sažeci" - -#~ msgid "File import in progress..." -#~ msgstr "Uvoz datoteke je u tijeku..." - -#~ msgid "Filter History" -#~ msgstr "Filtriraj Povijesti" - -#~ msgid "Find" -#~ msgstr "Nađi" - -#~ msgid "Find Shows" -#~ msgstr "Nađi Emisije" - -#~ msgid "First Name" -#~ msgstr "Ime" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Za više detalja, pročitaj %sPriručniku za korisnike%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis metapodaci" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ako je iza Airtime-a usmjerivač ili vatrozid, možda ćeš morati konfigurirati polje porta prosljeđivanje i ovo informacijsko polje će biti netočan. U tom slučaju morat ćeš ručno ažurirati ovo polje, da bi pokazao točno host/port/mount da se mogu povezati tvoji Disk Džokeji. Dopušteni raspon je između 1024 i 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Broj:" - -#~ msgid "Jack" -#~ msgstr "Jack" - -#~ msgid "Last Name" -#~ msgstr "Prezime" - -#~ msgid "Length:" -#~ msgstr "Dužina:" - -#~ msgid "Limit to " -#~ msgstr "Ograničeno za" - -#~ msgid "Listen" -#~ msgstr "Slušaj" - -#~ msgid "Live Stream Input" -#~ msgstr "Ulaz Uživnog Prijenosa" - -#~ msgid "Live stream" -#~ msgstr "Prijenos uživo" - -#~ msgid "Log Sheet" -#~ msgstr "Popis Prijava" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Predlošci Popis Prijave" - -#~ msgid "Logout" -#~ msgstr "Odjava" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Izgleda stranica koju si tražio ne postoji!" - -#~ msgid "Manage Users" -#~ msgstr "Upravljanje Korisnike" - -#~ msgid "Master Source" -#~ msgstr "Majstorski Izvor" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Montiranje ne može biti prazno s Icecast poslužiteljem." - -#~ msgid "New File Summary Template" -#~ msgstr "Novi Predložak za Datotečni Sažeci" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Novi Popis Predložaka" - -#~ msgid "New User" -#~ msgstr "Novi Korisnik" - -#~ msgid "New password" -#~ msgstr "Nova lozinka" - -#~ msgid "Next:" -#~ msgstr "Sljedeća:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Nema Predložaka za Datotečni Sažeci" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Nema Popis Predložaka" - -#~ msgid "No open playlist" -#~ msgstr "Nema otvorenih popis pjesama" - -#~ msgid "No webstream" -#~ msgstr "Nema prijenosa" - -#~ msgid "OK" -#~ msgstr "Ok" - -#~ msgid "ON AIR" -#~ msgstr "PRIJENOS" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Dopušteni su samo brojevi." - -#~ msgid "Original Length:" -#~ msgstr "Izvorna Dužina:" - -#~ msgid "Page not found!" -#~ msgstr "Stranica nije pronađena!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Pokreni" - -#~ msgid "Playlist Contents: " -#~ msgstr "Sadržaji Popis Pjesama:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Križno utišavanje popis pjesama" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje." - -#~ msgid "Please upgrade to " -#~ msgstr "Molimo nadogradi na" - -#~ msgid "Port cannot be empty." -#~ msgstr "Priključak ne može biti prazan." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Previous:" -#~ msgstr "Prethodna:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Menadžer programa mogu učiniti sljedeće:" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime Registar" - -#~ msgid "Remove watched directory" -#~ msgstr "Ukloni nadzoranu direktoriju" - -#~ msgid "Repeat Days:" -#~ msgstr "Ponovljeni Dani:" - -#~ msgid "Sample Rate:" -#~ msgstr "Uzorak Stopa:" - -#~ msgid "Save playlist" -#~ msgstr "Spremi popis pjesama" - -#~ msgid "Select stream:" -#~ msgstr "Prijenosi:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Poslužitelj ne može biti prazan." - -#~ msgid "Set" -#~ msgstr "Podesi" - -#~ msgid "Set Cue In" -#~ msgstr "Podesi Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Podesi Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Postavi Zadano Predlošku" - -#~ msgid "Share" -#~ msgstr "Podijeli" - -#~ msgid "Show Source" -#~ msgstr "Emisijski Izvor" - -#~ msgid "Show Summary" -#~ msgstr "Programski Sažetak" - -#~ msgid "Show Waveform" -#~ msgstr "Emisijski zvučni talasni oblik" - -#~ msgid "Show me what I am sending " -#~ msgstr "Pokaži mi što šaljem" - -#~ msgid "Shuffle playlist" -#~ msgstr "Slučajni izbor popis pjesama" - -#~ msgid "Source Streams" -#~ msgstr "Prijenosni Izvori" - -#~ msgid "Static Smart Block" -#~ msgstr "Statički Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statički Smart Block Sadržaji:" - -#~ msgid "Station Description:" -#~ msgstr "Opis:" - -#~ msgid "Station Web Site:" -#~ msgstr "Web Stranica:" - -#~ msgid "Stop" -#~ msgstr "Zaustavi" - -#~ msgid "Stream " -#~ msgstr "Prijenos" - -#~ msgid "Stream Settings" -#~ msgstr "Prijenosne Postavke" - -#~ msgid "Stream URL:" -#~ msgstr "URL Prijenosa:" - -#~ msgid "Stream URL: " -#~ msgstr "URL Prijenosa:" - -#~ msgid "Streaming Server:" -#~ msgstr "Poslužitelj za internetski prijenos:" - -#~ msgid "Style" -#~ msgstr "Stil" - -#~ msgid "Support Feedback" -#~ msgstr "Povratne Informacije" - -#~ msgid "Support setting updated." -#~ msgstr "Podrška postavka je ažurirana." - -#~ msgid "Terms and Conditions" -#~ msgstr "Uvjeti i Odredbe" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Željena duljina bloka neće biti postignut jer Airtime ne mogu naći dovoljno jedinstvene pjesme koje odgovaraju tvojim kriterijima. Omogući ovu opciju ako želiš dopustiti da neke pjesme mogu se više puta ponavljati." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Rad je u javnoj domeni" - -#~ msgid "This version is no longer supported." -#~ msgstr "Ova verzija više nije podržana." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ova verzija uskoro će biti zastario." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Pjesma:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Upiši znakove koje vidiš na slici u nastavku." - -#~ msgid "Update Required" -#~ msgstr "Potrebno Ažuriranje" - -#~ msgid "Update show" -#~ msgstr "Ažuriranje emisije" - -#~ msgid "User Type" -#~ msgstr "Tip Korisnika" - -#~ msgid "Web Stream" -#~ msgstr "Prijenos" - -#~ msgid "What" -#~ msgstr "Što" - -#~ msgid "When" -#~ msgstr "Kada" - -#~ msgid "Who" -#~ msgstr "Tko" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Ne pratiš nijedne medijske mape." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Moraš pristati na pravila o privatnosti." - -#~ msgid "Your trial expires in" -#~ msgstr "Vaš račun istječe u" - -#~ msgid "and" -#~ msgstr "i" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "datoteke zadovoljavaju kriterije" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max glasnoća" - -#~ msgid "mute" -#~ msgstr "nijemi" - -#~ msgid "next" -#~ msgstr "sljedeća" - -#~ msgid "or" -#~ msgstr "ili" - -#~ msgid "pause" -#~ msgstr "pauza" - -#~ msgid "play" -#~ msgstr "pokreni" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "molimo stavi u vrijeme u sekundama '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "prethodna" - -#~ msgid "stop" -#~ msgstr "zaustavi" - -#~ msgid "unmute" -#~ msgstr "uključi" diff --git a/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po b/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po deleted file mode 100644 index 8d692593df..0000000000 --- a/webapp/src/locale/po/hu_HU/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5030 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2012. -# Zsolt Magyar , 2014-2015. -# Miles , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-12-27 20:52+0000\n" -"Last-Translator: f3rr31 <5920873@disroot.org>\n" -"Language-Team: Hungarian \n" -"Language: hu_HU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.10.1\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s érvénytelen dátum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s érvénytelen időpont" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "English" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Afar" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abkhazian" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amharic" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Arabic" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Assamese" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aymara" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Bashkir" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Belarusian" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Bulgarian" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Bihari" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bislama" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengali/Bangla" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibetan" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Breton" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Catalan" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Corsican" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Czech" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Welsh" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Danish" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "German" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Bhutani" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Greek" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Esperanto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Spanish" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estonian" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Basque" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persian" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Finnish" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fiji" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Faeroese" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "French" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Frisian" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Irish" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Scots/Gaelic" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galician" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guarani" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Gujarati" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Hausa" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hindi" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Croatian" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "magyar" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Armenian" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Interlingua" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Interlingue" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Inupiak" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Indonesian" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Icelandic" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italian" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hebrew" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japanese" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Yiddish" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Javanese" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Georgian" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kazakh" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Greenlandic" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Cambodian" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Kannada" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Korean" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Kashmiri" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kurdish" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kirghiz" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latin" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Lingala" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Laothian" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Lithuanian" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Latvian/Lettish" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Malagasy" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maori" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Macedonian" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayalam" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Mongolian" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldavian" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Marathi" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malay" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltese" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Burmese" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Nauru" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Nepali" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Dutch" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Norwegian" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Occitan" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Afan)/Oromoor/Oriya" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Punjabi" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Polish" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Pashto/Pushto" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Portuguese" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Quechua" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Rhaeto-Romance" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Kirundi" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Romanian" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Russian" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Kinyarwanda" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Sindhi" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Sangro" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Serbo-Croatian" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Singhalese" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Slovak" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Slovenian" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Samoan" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Shona" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Somali" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Albanian" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Serbian" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Siswati" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Sesotho" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Sundanese" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Swedish" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Swahili" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Tamil" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Tegulu" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Tajik" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Thai" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Tigrinya" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Turkmen" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Tagalog" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Setswana" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Tonga" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Turkish" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Tsonga" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Tatar" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Twi" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Ukrainian" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Urdu" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Uzbek" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "Vietnamese" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Volapuk" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Wolof" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Xhosa" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Yoruba" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Chinese" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Zulu" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Állomás alapértelmezések használata" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n" -"%sNem hivatkozott műsor létrehozása most%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Rádióoldal" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Naptár" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Felületi elemek" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Lejátszó" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Heti ütemterv" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Beállítások" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Általános" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Profilom" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Felhasználók" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Adásfolyamok" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Állapot" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Elemzések" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Lejátszási előzmények" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Naplózási sablonok" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Hallgatói statisztikák" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Segítség" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Első lépések" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Felhasználói kézikönyv" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Újdonságok" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Az Ön számára nem érhető el az alábbi erőforrás." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Az Ön számára nem érhető el az alábbi erőforrás." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "A fájl nem elérhető itt: %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Helytelen kérés. nincs 'mód' paraméter lett átadva." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Helytelen kérés. 'mód' paraméter érvénytelen." - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Nincs jogosultsága a forrás bontásához." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Nem csatlakozik forrás az alábbi bemenethez." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Nincs jogosultsága a forrás megváltoztatásához." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n" -"1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n" -"2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\n" -"Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\n" -"Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Oldal nem található." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "A kiválasztott művelet nem támogatott." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Nincs jogosultsága ennek a forrásnak az eléréséhez." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Belső alkalmazáshiba történt." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "Még nincsenek közzétett sávok." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nem található" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Valami hiba történt." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Előnézet" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Hozzáadás lejátszási listához" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Hozzáadás Okosblokkhoz" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Törlés" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Szerkesztés..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Letöltés" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Lejátszási lista duplikálása" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Nincs elérhető művelet" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Nem lehet törölni a fájlokat." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "%s másolata" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audió lejátszó" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Valami hiba történt!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Felvétel:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Mester-adásfolyam" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Élő adásfolyam" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nincs semmi ütemezve" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Jelenlegi műsor:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Jelenleg" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Ön a legújabb verziót futtatja" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Új verzió érhető el:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "A LibreTime egy kiadás-előtti verziója van telepítve." - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Egy hibajavító frissítés érhető el a LibreTimehoz." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Elérhető a LibreTime új verzióját tartalmazó frissítés." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Hozzáadás a jelenlegi lejátszási listához" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Hozzáadás a jelenlegi okosblokkhoz" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "1 elem hozzáadása" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "%s elem hozzáadása" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Csak sávokat lehet hozzáadni az okosblokkokhoz." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Válasszon kurzor pozíciót az idővonalon." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "Még nincsenek sávok hozzáadva" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Még nincsenek lejátszási listák hozzáadva" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "Még nincsenek okosblokkok hozzáadva" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "Még nincsenek web-adásfolyamok hozzáadva" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Sávok megismerése" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Lejátszási listák megismerése" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "Podcastok megismerése" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Okosblokkok megismerése" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Web-adásfolyamok megismerése" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Létrehozni az „Új” gombra kattintással lehet." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Hozzáadás" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Szerkeszt" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Közzététel" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Eltávolítás" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Metaadatok szerkesztése" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Hozzáadás a kiválasztott műsorhoz" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Kijelölés" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Jelölje ki ezt az oldalt" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Az oldal kijelölésének megszüntetése" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Minden kijelölés törlése" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Biztos benne, hogy törli a kijelölt elemeket?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Ütemezett" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Sávok" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Lejátszási lista" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Cím" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Előadó/Szerző" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bitráta" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Zeneszerző" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Karmester" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Szerzői jog" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Kódolva" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Műfaj" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Címke" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Nyelv" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Utoljára módosítva" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Utoljára játszott" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Hossz" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime típus" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Hangulat" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Tulajdonos" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Mintavétel" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Sáv sorszáma" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Feltöltve" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Honlap" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Év" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Betöltés..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Összes" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Fájlok" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Lejátszási listák" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Okosblokkok" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web-adásfolyamok" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Ismeretlen típus:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Biztos benne, hogy törli a kijelölt elemet?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Feltöltés folyamatban..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Adatok lekérdezése a kiszolgálóról..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Megtekintés" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Hibakód:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Hibaüzenet:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "A bemenetnek pozitív számnak kell lennie" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "A bemenetnek számnak kell lennie" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "A bemenetet ebben a formában kell megadni: óó:pp:mm.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Podcastom" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Médiaépítő megnyitása" - -#: application/controllers/LocaleController.php:138 -#, fuzzy -msgid "please put in a time '00:00:00 (.0)'" -msgstr "kérjük, tegye időbe '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Érvényes időt kell megadni másodpercben. Pl.: 0.5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dinamikus blokknak nincs előnézete" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Korlátozva:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Lejátszási lista mentve" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Lejátszási lista megkeverve" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "%s hallgatóinak száma: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Emlékeztessen 1 hét múlva" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Soha ne emlékeztessen" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Igen, segítek az Airtime-nak" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "A képek formátuma jpg, jpeg, png, vagy gif kell legyen" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Okosblokk megkeverve" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Okosblokk létrehozva és a feltételek mentve" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Okosblokk elmentve" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Feldolgozás..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Módosító választása" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "tartalmazza" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "nem tartalmazza" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "pontosan" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "nem" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "kezdődik" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "végződik" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "nagyobb, mint" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "kisebb, mint" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "tartománya" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Létrehozás" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Válasszon tárolómappát" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Válasszon figyelt mappát" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Biztos benne, hogy meg akarja változtatni a tárolómappát?\n" -"Ezzel eltávolítja a fájlokat a saját Airtime könyvtárából!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Médiamappák kezelése" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Biztos benne, hogy el akarja távolítani a figyelt mappát?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Ez az útvonal jelenleg nem elérhető." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Csatlakozva az adásfolyam kiszolgálóhoz" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Az adásfolyam ki van kapcsolva" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Információk lekérdezése a kiszolgálóról..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Nem lehet kapcsolódni az adásfolyam kiszolgálójához" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani ." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nem volt találat" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "A műsor példány nem létezik többé!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Figyelem: Műsorokat nem lehet újrahivatkozni" - -#: application/controllers/LocaleController.php:205 -#, fuzzy -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Műsor" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "A műsor üres" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1p" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5p" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10p" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15p" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30p" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60p" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Adatok lekérdezése a kiszolgálóról..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Ez a műsor nem tartalmaz ütemezett tartalmat." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Ez a műsor nincs teljesen feltöltve tartalommal." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Január" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Február" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Március" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Április" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Május" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Június" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Július" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Augusztus" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Szeptember" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Október" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "November" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "December" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Már" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Ápr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jún" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Júl" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sze" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Okt" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Ma" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Nap" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Hét" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Hónap" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Vasárnap" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Hétfő" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Kedd" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Szerda" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Csütörtök" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Péntek" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Szombat" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "V" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "H" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "K" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Sze" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Cs" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "P" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Szo" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "A jelenlegi műsor megszakítása?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "A jelenlegi műsor rögzítésének félbeszakítása?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "A műsor tartalmai" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Az összes tartalom eltávolítása?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Törli a kiválasztott elemeket?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Kezdés" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Befejezés" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Időtartam" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Kiszűrve" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "/" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "felvétel" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "A megadott időszakban nincsenek ütemezett műsorok." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Felkeverés" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Lekeverés" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Felúsztatás" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Leúsztatás" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Üres műsor" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Rögzítés a vonalbemenetről" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Sáv előnézete" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Nem lehet ütemezni a műsoron kívül." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "1 elem áthelyezése" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "%s elem áthelyezése" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Mentés" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Mégse" - -#: application/controllers/LocaleController.php:304 -#, fuzzy -msgid "Fade Editor" -msgstr "Úsztatási Szerkesztő" - -#: application/controllers/LocaleController.php:305 -#, fuzzy -msgid "Cue Editor" -msgstr "Keverési Szerkesztő" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Az összes kijelölése" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Kijelölés törlése" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Túlnyúló műsorok levágása" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "A kijelölt ütemezett elemek eltávolítása" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Ugrás a jelenleg játszott sávra" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "A jelenlegi műsor megszakítása" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Tartalom hozzáadása / eltávolítása" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "használatban van" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Lemez" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Nézze meg" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Megnyitás" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programkezelő" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Vendég" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "A vendégek a következőket tehetik:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Az ütemezés megtekintése" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "A műsor tartalmának megtekintése" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "A DJ-k a következőket tehetik:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Hozzárendelt műsor tartalmának kezelése" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Médiafájlok hozzáadása" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Saját médiatár tartalmának kezelése" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Műsortartalom megtekintése és kezelése" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "A műsorok ütemzései" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "A teljes médiatár tartalmának kezelése" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Az Adminisztrátorok a következőket tehetik:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Beállítások kezelései" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "A felhasználók kezelése" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "A figyelt mappák kezelése" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Támogatási visszajelzés küldése" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "A rendszer állapot megtekitnése" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Hozzáférés lejátszási előzményekhez" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "A hallgatói statisztikák megtekintése" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Az oszlopok megjelenítése/elrejtése" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "{from} és {to} között" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "éééé-hh-nn" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "óó:pp:mm.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "V" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "H" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "K" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Sze" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Cs" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "P" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Szo" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Bezárás" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Óra" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Perc" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Kész" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Fájlok kiválasztása" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Fájlok hozzáadása" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Feltöltés megszakítása" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Feltöltés indítása" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Fájlok hozzáadása" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Feltöltve %d/%d fájl" - -#: application/controllers/LocaleController.php:392 -#, fuzzy -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Húzza a fájlokat ide." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Fájlkiterjesztési hiba." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Fájlméret hiba." - -#: application/controllers/LocaleController.php:396 -#, fuzzy -msgid "File count error." -msgstr "Fájl számi hiba." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Inicializálási hiba." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Hiba." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Biztonsági hiba." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Általános hiba." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO hiba." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Fájl: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d várakozó fájl" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Fájl: %f,méret: %s, legnagyobb fájlméret: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "A feltöltés URL-je rossz vagy nem létezik" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Hiba: A fájl túl nagy:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Hiba: Érvénytelen fájl kiterjesztés:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Alapértelmezés beállítása" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Bejegyzés létrehozása" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Előzmények szerkesztése" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nincs műsor" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s sor%s másolva a vágólapra" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Új műsor" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Új naplóbejegyzés" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "Következő" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Közzététel megszüntetése" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Szerző" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Leírás" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Hivatkozás" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Engedélyezve" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Letiltva" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Okosblokk" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "Adásban" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Adásszünet" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Kapcsolat nélkül" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Nincs semmi ütemezve" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Kérjük adja meg felhasználónevét és jelszavát." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "A felhasználónév vagy email cím nem található." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Ön %s egy régebbi verzióját tekinti meg" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Dinamikus blokkokhoz nem lehet sávokat hozzáadni" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "A kiválasztott %s törléséhez nincs engedélye." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Csak sávokat lehet hozzáadni az okosblokkhoz." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Névtelen lejátszási lista" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Névtelen okosblokk" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Ismeretlen lejátszási lista" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Beállítások frissítve." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Adásfolyam beállítások frissítve." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "az útvonalat meg kell határozni" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Probléma lépett fel a Liquidsoap-al..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "A kérés módja nem elfogadott" - -#: application/controllers/ScheduleController.php:390 -#, fuzzy, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "A műsor újraközvetítése %s -tól/-től %s a %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Kurzor kiválasztása" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Kurzor eltávolítása" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "a műsor nem található" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Felhasználó sikeresen hozzáadva!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Felhasználó sikeresen módosítva!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Beállítások sikeresen módosítva!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Névtelen adásfolyam" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Web-adásfolyam mentve." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Érvénytelen űrlap értékek." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Érvénytelen bevitt karakterek" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "A napot meg kell határoznia" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Az időt meg kell határoznia" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Az újraközvetítésre legalább 1 órát kell várni" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "Lejátszási lista automatikus ütemezése?" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Lejátszási lista kiválasztása" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "%s hitelesítés használata:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Egyéni hitelesítés használata:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Egyéni felhasználónév" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Egyéni jelszó" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Hoszt:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Port:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Csatolási pont:" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "A felhasználónév mező nem lehet üres." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "A jelszó mező nem lehet üres." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Felvétel a vonalbemenetről?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Újraközvetítés?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "napok" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Hivatkozás:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Ismétlés típusa:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "hetente" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "minden második héten" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "minden harmadik héten" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "minden negyedik héten" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "havonta" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Napok kiválasztása:" - -#: application/forms/AddShowRepeats.php:46 -#, fuzzy -msgid "Repeat By:" -msgstr "Által Ismételt:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "a hónap napja" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "a hét napja" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Befejezés dátuma:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nincs vége?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "A befejezés dátumának a kezdés dátuma után kell lennie" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Kérjük válasszon egy ismétlési napot" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Háttérszín:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Szövegszín:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Jelenlegi logó:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Logó mutatása:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Logó előnézete:" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Név:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Cím nélküli műsor" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Műfaj:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Leírás:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Példány leírása:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' nem illeszkedik „ÓÓ:pp” formátumra" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Kezdési Idő:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "A jövőben:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Befejezési idő:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Időtartam:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Időzóna:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Ismétlések?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Műsort nem lehet a múltban létrehozni" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "A befejezési dátum és időpont nem lehet a múltban" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Időtartam nem lehet <0p" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Időtartam nem lehet 0ó 0p" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Időtartam nem lehet nagyobb mint 24 óra" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Nem fedhetik egymást a műsorok" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Felhasználók keresése:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJ-k:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Felhasználónév:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Jelszó:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Jelszóellenőrzés:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vezetéknév:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Keresztnév:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Felhasználótípus:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "A bejelentkezési név nem egyedi." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Az összes sáv törlése a könyvtárból" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Kezdés Ideje:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Cím:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Létrehozó:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Év:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Címke:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Zeneszerző:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Karmester:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Hangulat:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Szerzői jog:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Szám:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Honlap:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Nyelv:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Közzététel..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Kezdési Idő" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Befejezési idő" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Felület időzónája:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Állomásnév" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Állomás leírás" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Állomás logó:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül." - -#: application/forms/GeneralPreferences.php:63 -#, fuzzy -msgid "Default Crossfade Duration (s):" -msgstr "Alapértelmezett Áttünési Időtartam (mp):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Idő megadása másodpercben (pl.: 0.5)" - -#: application/forms/GeneralPreferences.php:77 -#, fuzzy -msgid "Default Fade In (s):" -msgstr "Alapértelmezett Felúsztatás (mp)" - -#: application/forms/GeneralPreferences.php:91 -#, fuzzy -msgid "Default Fade Out (s):" -msgstr "Alapértelmezett Leúsztatás (mp)" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Podcast album felülírása" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "Public LibreTime API" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Kötelező a beágyazható ütemezés felületi elemhez." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Alapértelmezett nyelv" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Állomás időzóna" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "A hét kezdőnapja" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "Bejelentkezési gomb megjelenítése a Rádióoldalon?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Automatikus kikapcsolás:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Automatikus bekapcsolás:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "Mester-forrás hoszt:" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "Mester-forrás port:" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "Mester-forrás csatolási pont:" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Műsor-forrás hoszt:" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Műsor-forrás port:" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Műsor-forrás csatolási pont:" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Bejelentkezés" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Jelszó" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Új jelszó megerősítése" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "A megadott jelszavak nem egyeznek meg." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Email" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Felhasználónév" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "A jelszó visszaállítása" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Vissza" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Most játszott" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Adásfolyam kiválasztása:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "A legmegfelelőbb adásfolyam automatikus felismerése." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Egy adásfolyam kiválasztása:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "- Mobilbarát" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "- A lejátszó nem támogatja az Opus adásfolyamokat." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Beágyazható kód:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Előnézet" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Hírfolyam adatvédelem" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Nyilvános" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Privát" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Állomás nyelve" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Szűrés műsor szerint" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Összes műsorom:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Műsoraim" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "A feltételek megadása" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bitráta (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Mintavételi ráta (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "óra" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "perc" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elem" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Véletlenszerűen" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Legújabb" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Legrégebbi" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Típus:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinamikus" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statikus" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Ismétlődő sávok engedélyezése:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Sávok rendezése:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Korlátozva:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Véletlenszerű lejátszási lista tartalom" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Véletlenszerű" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "A határérték nem lehet üres vagy kisebb, mint 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "A határérték nem lehet hosszabb, mint 24 óra" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Az érték csak egész szám lehet" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Maximum 500 elem állítható be" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Feltételt és módosítót kell választani" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Az értéknek numerikusnak kell lennie" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Az érték nem lehet üres" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Adásfolyam címke:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Előadó - Cím" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Műsor - Előadó - Cím" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Állomásnév - Műsornév" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Adásszünet - Metaadat" - -#: application/forms/StreamSetting.php:45 -#, fuzzy -msgid "Enable Replay Gain" -msgstr "Replay Gain Engedélyezése" - -#: application/forms/StreamSetting.php:52 -#, fuzzy -msgid "Replay Gain Modifier" -msgstr "Replay Gain Módosító" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Hardver audio kimenet:" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Kimenet típusa" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Engedélyezett:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Mobil:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Adásfolyam típusa:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bitráta:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Szolgáltatás típusa:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Csatornák:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Kiszolgáló" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Csatolási pont" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Név" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Metadata beküldése saját TuneIn állomásba?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Állomás azonosító:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partnerkulcs:" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partnerazonosító:" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Import mappa:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Figyelt Mappák:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Érvénytelen könyvtár" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Kötelező értéket megadni, nem lehet üres" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' rövidebb, mint %min% karakter" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'% value%' több mint, %max% karakter hosszú" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "A jelszavak nem egyeznek meg" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Üdvözlünk %s, \n" -"\n" -"A hivatkozásra kattintva lehet visszaállítani a jelszót:" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"Probléma esetén itt lehet támogatást kérni: %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Köszönettel,\n" -"%s Csapat" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s jelszó visszaállítása" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -#, fuzzy -msgid "Cue in and cue out are null." -msgstr "A fel- és a lekeverés értékei nullák." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -#, fuzzy -msgid "Can't set cue out to be greater than file length." -msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -#, fuzzy -msgid "Can't set cue in to be larger than cue out." -msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -#, fuzzy -msgid "Can't set cue out to be smaller than cue in." -msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Feltöltési idő" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Nincs" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "Működteti a %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Ország kiválasztása" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "élő adásfolyam" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "A megtekintett ütemterv elavult! (ütem eltérés)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "A megtekintett ütemterv elavult! (példány eltérés)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "A megtekintett ütemterv időpontja elavult!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nincs jogosultsága %s műsor ütemezéséhez." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "A műsor %s véget ért és nem lehet ütemezni." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "%s műsor már korábban frissítve lett!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "A hivatkozott műsorok tartalma nem módosítható adás közben!" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Egy kiválasztott fájl nem létezik!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "A műsorok maximum 24 óra hosszúságúak lehetnek." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Átfedő műsorokat nem lehet ütemezni.\n" -"Megjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére." - -#: application/models/ShowBuilder.php:212 -#, fuzzy, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Úrjaközvetítés %s -tól/-től %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc" - -#: application/models/Webstream.php:169 -#, fuzzy -msgid "Length should be of form \"00h 00m\"" -msgstr "A hosszúság formája \"00ó 00p\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "Az URL-t „https://example.org” formában kell megadni" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "Az URL nem lehet 512 karakternél hosszabb" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Nem található MIME típus a web-adásfolyamhoz." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "A web-adásfolyam neve nem lehet üres" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Nem sikerült feldolgozni az XSPF lejátszási listát" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Nem sikerült feldolgozni a PLS lejátszási listát" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Nem sikerült feldolgozni az M3U lejátszási listát" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Ismeretlen típusú adásfolyam: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Rögzített fájl nem létezik" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "A rögzített fájl metaadatai" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Sávok ütemezése" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Műsor törlése" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Műsor megszakítása" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Példány szerkesztése:" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Műsor szerkesztése" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Példány törlése:" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Ennek a példánynak és minden utána következő példánynak a törlése" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Engedély megtagadva" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Ismétlődő műsorokat nem lehet megfogni és áthúzni" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Az elhangzott műsort nem lehet áthelyezni" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "A műsort nem lehet a múltba áthelyezni" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Az adás újbóli közvetítésére 1 órát kell várni." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Sáv" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Lejátszva" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Web-adásfolyamok" - -#~ msgid " to " -#~ msgstr "-ig" - -#, fuzzy, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s-ot %3$s mellett terjesztik" - -#, fuzzy, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment." - -#, php-format -#~ msgid "%s Version" -#~ msgstr "%s verzió" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s beágyazott figyelt könyvtárat tartalmaz: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s nem szerepel a figyeltek listáján." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s már figyelve van." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s be van ágyazva egy létező figyelt könyvtárba: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s nem érvényes könyvtár." - -#, fuzzy -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)" - -#~ msgid "(Required)" -#~ msgstr "(Kötelező)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(A rádióállomás honlapja)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(óó:pp:mm.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(mm.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Monó" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Sztereó" - -#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgstr "Egy jelszóvisszaállító hivatkozást küldtünk a megadott email címre. Az email tartalmazza a jelszó visszaállításához szükséges lépéseket. Ha nem érkezik meg az email, érdemes megnézni a levélszemét mappában." - -#~ msgid "A track list will be generated when you schedule this smart block into a show." -#~ msgstr "Egy sávlista lesz létrehozva amikor ez az okosblokk ütemezésre kerül egy műsorban." - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "Rólunk" - -#~ msgid "Access Denied!" -#~ msgstr "Hozzáférés megtagadva!" - -#~ msgid "Add New Field" -#~ msgstr "Új mező hozzáadása" - -#~ msgid "Add more elements" -#~ msgstr "Adjon hozzá több elemet" - -#~ msgid "Add this show" -#~ msgstr "Adja hozzá ezt a műsort" - -#~ msgid "Add tracks to your show" -#~ msgstr "Sávok hozzáadása a műsorhoz" - -#~ msgid "Additional Options" -#~ msgstr "További lehetőségek" - -#~ msgid "Admin Password" -#~ msgstr "Adminisztrátor jelszó" - -#~ msgid "Admin User" -#~ msgstr "Adminisztrátor felhasználó" - -#~ msgid "Advanced Search Options" -#~ msgstr "Speciális keresési beállítások" - -#~ msgid "All rights are reserved" -#~ msgstr "Minden jog fenntartva" - -#~ msgid "Allowed CORS URLs" -#~ msgstr "Engedélyezett CORS URL-ek" - -#~ msgid "An error has occurred." -#~ msgstr "Hiba történt." - -#~ msgid "Audio Track" -#~ msgstr "Audió sáv" - -#~ msgid "Autoloading Playlist" -#~ msgstr "Automatikus lejátszási lista" - -#~ msgid "Bad Request!" -#~ msgstr "Rossz kérés!" - -#, fuzzy -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s." - -#~ msgid "Category" -#~ msgstr "Kategória" - -#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -#~ msgstr "A forrásokat bejelölve, és a lenti „Közzététel”-re kattintva lehet ezt a sávot közzétenni a megadott forrásokban." - -#~ msgid "Choose Days:" -#~ msgstr "Válasszon napokat:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Műsorpéldány kiválasztása" - -#~ msgid "Choose folder" -#~ msgstr "Válasszon mappát" - -#~ msgid "Choose some search criteria above and click Generate to create this playlist." -#~ msgstr "Ennek a lejátszási listának a létrehozásához feltételt kell választani, majd a „Létrehozás” gombra kattintani." - -#~ msgid "City:" -#~ msgstr "Város:" - -#~ msgid "Clear" -#~ msgstr "Törlés" - -#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -#~ msgstr "A „Naptár”-ra kell kattintani a bal oldali sávon. A megjelenő felületen a „+ Új műsor” gombra kell kattintani és kitölteni a kötelező mezőket." - -#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -#~ msgstr "A naptárban a műsorra kattintva a „Műsor ütemezése” lehetőséget kell választani. A felugró ablakban sávokat lehet húzni a műsorba." - -#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -#~ msgstr "A bal sarokban található „Feltöltés” gombbal lehet sávokat feltölteni a saját könyvtárba." - -#, fuzzy -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on." - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni" - -#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgstr "Nem lehet kapcsolódni a RabbitMQ kiszolgálóhoz! Ellenőrizni kell, hogy a kiszolgáló fut és az azonosítási adatok megfelelőek." - -#~ msgid "Country:" -#~ msgstr "Ország:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Fájl összesítő sablon létrehozása" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Naplózási sablon létrehozása" - -#, fuzzy -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Tulajdonjog" - -#, fuzzy -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Nem Feldolgozható Tulajdonjog" - -#, fuzzy -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog" - -#, fuzzy -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Nem Kereskedelmi Nem Feldolgozható Tulajdonjog" - -#, fuzzy -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog" - -#, fuzzy -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog" - -#, fuzzy -#~ msgid "Cue In: " -#~ msgstr "Felkeverés:" - -#, fuzzy -#~ msgid "Cue Out: " -#~ msgstr "Lekeverés:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Jelenlegi import mappa:" - -#~ msgid "Cursor" -#~ msgstr "Kurzor" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Egyéni / Más féltől származó adásfolyam" - -#~ msgid "" -#~ "Customize the player by configuring the options below. When you are done,\n" -#~ " copy the embeddable code below and paste it into your website's HTML." -#~ msgstr "A lejátszó testre szabható az alábbi lehetőségek beállításával. Ha kész, a lenti beágyazható kódot le lehet másolni, és beilleszteni a webhely HTML-kódjába." - -#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -#~ msgstr "A DJ-k ezeket a beállításokat használhatják a műsorsugárzó szoftverükben, hogy bármikor élőben sugározhassanak a hozzájuk rendelt műsorokban." - -#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -#~ msgstr "A DJ-k ezeket a beállításokat használhatják arra, hogy kompatibilis szoftverrel csatlakozzanak, és élőben sugározzanak a műsor alatt. DJ-t lentebb lehet hozzárendelni." - -#~ msgid "Dangerous Options" -#~ msgstr "Veszélyes beállítások" - -#~ msgid "Dashboard" -#~ msgstr "Műszerfal" - -#~ msgid "Default Length:" -#~ msgstr "Alapértelmezett hossz:" - -#, fuzzy -#~ msgid "Default License:" -#~ msgstr "Alapértelmezett Liszensz:" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Alapértelmezett megosztástípus:" - -#~ msgid "Default Streaming" -#~ msgstr "Alapértelmezett adásfolyam:" - -#~ msgid "Disk Space" -#~ msgstr "Lemezterület" - -#~ msgid "Download latest episodes:" -#~ msgstr "Legutolsó epizódok automatikus letöltése?" - -#~ msgid "Drag tracks here from your library to add them to the playlist" -#~ msgstr "A könyvtárból ide húzott sávok hozzá lesznek adva a lejátszási listához" - -#~ msgid "Drop files here or click to browse your computer." -#~ msgstr "Sávokat ejtéssel vagy a „Böngészés” gombra kattintással lehet hozzáadni" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dinamikus okosblokk" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dinamikus okostábla feltétel:" - -#~ msgid "Edit Metadata..." -#~ msgstr "Metaadat szerkesztése..." - -#~ msgid "Editing " -#~ msgstr "Szerkesztés " - -#~ msgid "Email Sent!" -#~ msgstr "Email elküldve!" - -#~ msgid "Empty playlist content" -#~ msgstr "Üres lejátszási lista tartalom" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Dinamikus Blokk kibővítése" - -#~ msgid "Expand Static Block" -#~ msgstr "Statikus Blokk kibővítése" - -#~ msgid "Explicit" -#~ msgstr "Szókimondó" - -#~ msgid "FAQ" -#~ msgstr "GYIK" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Facebook Radio Player" -#~ msgstr "Facebook rádiólejátszó" - -#, fuzzy -#~ msgid "Fade in: " -#~ msgstr "Felúsztatás:" - -#, fuzzy -#~ msgid "Fade in: " -#~ msgstr "Felkeverés:" - -#, fuzzy -#~ msgid "Fade out: " -#~ msgstr "Lekeverés:" - -#~ msgid "Failed" -#~ msgstr "Sikertelen" - -#~ msgid "File Path:" -#~ msgstr "Fájl elérési útvonala:" - -#~ msgid "File Summary" -#~ msgstr "Fájl összesítő" - -#~ msgid "File Summary Templates" -#~ msgstr "Fájl összesítő sablonok" - -#~ msgid "File import in progress..." -#~ msgstr "Fájl importálása folyamatban..." - -#~ msgid "Filter History" -#~ msgstr "Előzmények szűrése" - -#, fuzzy -#~ msgid "Find" -#~ msgstr "Találat" - -#~ msgid "Find Shows" -#~ msgstr "Műsorok keresése" - -#~ msgid "First Name" -#~ msgstr "Vezetéknév" - -#, php-format -#~ msgid "" -#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -#~ " or %sApple's podcasting documentation%s." -#~ msgstr "" -#~ "A metaadat mezők jelentéséről részletes információk találhatóak az %sRSS specifikációban%s\n" -#~ "vagy az %sApple podcast dokumentációban%s." - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "További segítségért, olvassa el a %shasználati útmutatót%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "A további részletekért, kérjük, olvassa el az %sAirtime Kézikönyvét%s" - -#~ msgid "Forgot your password?" -#~ msgstr "Elfelejtett jelszó?" - -#~ msgid "General Fields" -#~ msgstr "Általános mezők" - -#~ msgid "Global" -#~ msgstr "Globális" - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Így lehet elkezdeni a %s használatát a műsorsugárzás automatizálásához:" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis metaadat" - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc szám:" - -#~ msgid "Jack" -#~ msgstr "Jack" - -#~ msgid "Keywords" -#~ msgstr "Kulcsszavak" - -#~ msgid "Last Name" -#~ msgstr "Keresztnév" - -#~ msgid "Length:" -#~ msgstr "Hossz:" - -#~ msgid "Limit to " -#~ msgstr "Korlátozva" - -#~ msgid "Listen" -#~ msgstr "Hallgatás" - -#~ msgid "Listeners" -#~ msgstr "Hallgatók" - -#~ msgid "Live Broadcasting" -#~ msgstr "Élő közvetítés" - -#~ msgid "Live Stream Input" -#~ msgstr "Élő adásfolyam bemenet" - -#~ msgid "Live stream" -#~ msgstr "Élő adásfolyam" - -#~ msgid "Log Sheet" -#~ msgstr "Napló" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Naplózási sablonok" - -#~ msgid "Logout" -#~ msgstr "Kijelentkezés" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Úgy néz ki a keresett oldal nem létezik!" - -#~ msgid "Looks like there are no shows scheduled on this day." -#~ msgstr "Úgy tűnik erre a napra nincsenek műsorok ütemezve." - -#~ msgid "Manage Users" -#~ msgstr "Felhasználók kezelése" - -#~ msgid "Master Source" -#~ msgstr "Mester-forrás" - -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Havi hallgatók sávszélesség használata" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." - -#~ msgid "New Criteria" -#~ msgstr "Új feltétel" - -#~ msgid "New File Summary Template" -#~ msgstr "Új fájl összesítő sablon" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Új naplózási sablon" - -#~ msgid "New Modifier" -#~ msgstr "Új módosító" - -#~ msgid "New User" -#~ msgstr "Új felhasználó" - -#~ msgid "New password" -#~ msgstr "Új jelszó" - -#~ msgid "Next:" -#~ msgstr "Következő:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Nincsenek fájl összesítő sablonok" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Nincsenek naplózási sablonok" - -#~ msgid "No open playlist" -#~ msgstr "Nincs megnyitott lejátszási lista" - -#~ msgid "No smart block currently open" -#~ msgstr "Jelenleg nincs okosblokk nyitva" - -#~ msgid "No webstream" -#~ msgstr "Nincs web-adásfolyam" - -#~ msgid "Now you're good to go!" -#~ msgstr "Mehet is az adás!" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ADÁSBAN" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Csak számok adhatók meg." - -#~ msgid "Oops!" -#~ msgstr "Hoppá!" - -#~ msgid "Original Length:" -#~ msgstr "Eredeti hossz:" - -#~ msgid "Output Streams" -#~ msgstr "Kimeneti adásfolyamok" - -#~ msgid "Override" -#~ msgstr "Felülírás" - -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Album nevének felülírása a podcast nevével a beküldés során." - -#~ msgid "Page not found!" -#~ msgstr "Az oldal nem található!" - -#~ msgid "Password Reset" -#~ msgstr "Jelszó visszaállítás" - -#~ msgid "Pending" -#~ msgstr "Várakozó" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Lejátszás" - -#~ msgid "Playlist Contents: " -#~ msgstr "Lejátszási lista tartalmak:" - -#, fuzzy -#~ msgid "Playlist crossfade" -#~ msgstr "Lejátszási lista átúsztatása" - -#~ msgid "Playout History Templates" -#~ msgstr "Lejátszási történet sablonok" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Kérjük adja meg és erősítse meg új jelszavát az alábbi mezőkben." - -#~ msgid "Please upgrade to " -#~ msgstr "Kérjük, frissítsen" - -#~ msgid "Podcast Name: " -#~ msgstr "Podcast neve:" - -#~ msgid "Podcast URL: " -#~ msgstr "Podcast URL: " - -#~ msgid "Podcasts" -#~ msgstr "Podcastok" - -#~ msgid "Port cannot be empty." -#~ msgstr "A port nem lehet üres." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Previous:" -#~ msgstr "Előző:" - -#~ msgid "Privacy Settings" -#~ msgstr "Adatvédelmi beállítások" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "A Programvezetők a következőket tehetik:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Az állomásom közzététele itt: %s" - -#~ msgid "Publish to:" -#~ msgstr "Közzététel itt:" - -#~ msgid "Published on:" -#~ msgstr "Közzétéve itt:" - -#~ msgid "Published tracks can be removed or updated below." -#~ msgstr "A közzétett sávokat lentebb lehet eltávolítani vagy frissíteni." - -#~ msgid "Publishing" -#~ msgstr "Közzététel" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "RESET" -#~ msgstr "VISSZAÁLLÍTÁS" - -#~ msgid "RSS Feed URL:" -#~ msgstr "RSS hírcsatorna URL-je:" - -#~ msgid "Recent Uploads" -#~ msgstr "Korábbi feltöltések" - -#~ msgid "Record & Rebroadcast" -#~ msgstr "Felvétel és újrasugárzás" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime regisztráció" - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -#~ msgstr "Azok a távoli URL-ek amik böngészőből elérhetik ezt a LibreTime példányt. Soronként egy URL-t kell megadni." - -#~ msgid "Remove all content from this smart block" -#~ msgstr "Minden tartalom eltávolítása ebből az okosblokkból" - -#~ msgid "Remove watched directory" -#~ msgstr "A figyelt mappa eltávolítása" - -#~ msgid "Repeat Days:" -#~ msgstr "Ismétlések napjai:" - -#, fuzzy, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)" - -#~ msgid "Sample Rate:" -#~ msgstr "Mintavételi ráta:" - -#~ msgid "Save playlist" -#~ msgstr "Lejátszási lista mentése" - -#~ msgid "Save podcast" -#~ msgstr "Podcast mentése" - -#~ msgid "Save station podcast" -#~ msgstr "Állomás-podcast mentése" - -#~ msgid "Schedule a show" -#~ msgstr "Egy műsor ütemezése" - -#~ msgid "Scheduled Shows" -#~ msgstr "Ütemezett műsorok" - -#~ msgid "Search Criteria:" -#~ msgstr "Keresési feltétel" - -#~ msgid "Select stream:" -#~ msgstr "Adásfolyam kiválasztása:" - -#~ msgid "Server cannot be empty." -#~ msgstr "A kiszolgáló nem lehet üres." - -#~ msgid "Service" -#~ msgstr "Szolgáltatás" - -#~ msgid "Set" -#~ msgstr "Beállítás" - -#, fuzzy -#~ msgid "Set Cue In" -#~ msgstr "Felkeverés Beállítása" - -#, fuzzy -#~ msgid "Set Cue Out" -#~ msgstr "Lekeverés Beállítása" - -#~ msgid "Set Default Template" -#~ msgstr "Alapértelmezett sablon beállítása" - -#~ msgid "Share" -#~ msgstr "Megosztás" - -#~ msgid "Show Source" -#~ msgstr "Műsorforrás" - -#~ msgid "Show Summary" -#~ msgstr "Műsor összesítő" - -#~ msgid "Show Waveform" -#~ msgstr "Hullámforma mutatása" - -#~ msgid "Show me what I am sending " -#~ msgstr "Mutasd meg, hogy mit küldök" - -#~ msgid "Shuffle playlist" -#~ msgstr "Véletlenszerű lejátszási lista" - -#~ msgid "Source Streams" -#~ msgstr "Forrás adásfolyamok" - -#~ msgid "Static Smart Block" -#~ msgstr "Statikus okosblokk" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statikus okostábla tartalmak:" - -#~ msgid "Station Description:" -#~ msgstr "Állomás leírása:" - -#~ msgid "Station Web Site:" -#~ msgstr "Az állomás honlapja:" - -#~ msgid "Stop" -#~ msgstr "Leállítás" - -#~ msgid "Stream " -#~ msgstr "Adásfolyam" - -#~ msgid "Stream Data Collection Status" -#~ msgstr "Adásfolyam adat gyűjtemény állapota" - -#~ msgid "Stream Settings" -#~ msgstr "Adásfolyam beállítások" - -#~ msgid "Stream URL:" -#~ msgstr "Adásfolyam URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Adásfolyam URL:" - -#~ msgid "Streaming Server:" -#~ msgstr "Adásfolyam szerver:" - -#~ msgid "Style" -#~ msgstr "Stílus" - -#~ msgid "Subscribe" -#~ msgstr "Feliratkozás" - -#~ msgid "Subtitle" -#~ msgstr "Felirat" - -#~ msgid "Summary" -#~ msgstr "Összegzés" - -#~ msgid "Support Feedback" -#~ msgstr "Támogatási visszajelzés" - -#~ msgid "Support setting updated." -#~ msgstr "Támogatási beállítások frissítve." - -#~ msgid "Table Test" -#~ msgstr "Táblateszt" - -#~ msgid "Terms and Conditions" -#~ msgstr "Felhasználási feltételek" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "A kívánt blokkhosszúság nem érhető el ha az Airtime nem talál elég egyedi, a feltételnek megfelelő sávot. Ha ez engedélyezett, egy sávot többször is hozzá lehet adni az okosblokkhoz." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "A következő információk megjelennek a hallgatók számára a saját médialejátszóikban:" - -#~ msgid "The requested action is not supported!" -#~ msgstr "A kért művelet nem támogatott!" - -#, fuzzy -#~ msgid "The work is in the public domain" -#~ msgstr "A munka a nyilvános felületen folyik" - -#~ msgid "This version is no longer supported." -#~ msgstr "Ez a verzió már nem támogatott." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ez a verzió hamarosan elavul." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "A média lejátszáshoz frissíteni kell a böngészőt egy újabb verzióra, vagy frissíteni kell a %sFlash bővítményt%s." - -#~ msgid "Toggle Details" -#~ msgstr "Részletek" - -#~ msgid "Track:" -#~ msgstr "Sáv:" - -#~ msgid "TuneIn Settings" -#~ msgstr "TuneIn beállítások" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Gépelje be a képen látható karaktereket." - -#~ msgid "Update Required" -#~ msgstr "Frissítés szükséges" - -#~ msgid "Update show" -#~ msgstr "A műsor frissítése" - -#~ msgid "Update track" -#~ msgstr "Sáv frissítése" - -#~ msgid "Upload" -#~ msgstr "Feltöltés" - -#~ msgid "Upload audio tracks" -#~ msgstr "Audió sávok feltöltése" - -#~ msgid "Use these settings in your broadcasting software to stream live at any time." -#~ msgstr "A műsorsugárzó szoftverben ezeket a beállításokat használva lehet bármikor élőben sugározni." - -#~ msgid "User Type" -#~ msgstr "Felhasználótípus" - -#~ msgid "View Feed" -#~ msgstr "Hírcsatorna megtekintése" - -#~ msgid "View track" -#~ msgstr "Sáv megtekintése" - -#~ msgid "Viewing " -#~ msgstr "Megtekintés " - -#~ msgid "We couldn't find the page you were looking for." -#~ msgstr "A keresett oldal nem található." - -#~ msgid "Web Stream" -#~ msgstr "Web-adásfolyam" - -#~ msgid "Webstream" -#~ msgstr "Web-adásfolyam" - -#, fuzzy, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Üdvözöljük az %s-nál!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Üdvözöljük a %s demó változatában! „admin” felhasználónévvel és „admin” jelszóval lehet bejelentkezni." - -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Üdvözli az új Airtime Pro!" - -#~ msgid "What" -#~ msgstr "Mi" - -#~ msgid "When" -#~ msgstr "Mikor" - -#~ msgid "Who" -#~ msgstr "Kicsoda" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Nincs megfigyelt médiamappa." - -#~ msgid "You can change these later in your preferences and user settings." -#~ msgstr "Később módosíthatóak a tulajdonságokban és a felhasználói beállításokban." - -#~ msgid "You do not have permission to access this page!" -#~ msgstr "Nincs jogosultsága a lap eléréséhez!" - -#~ msgid "You do not have permission to edit this track." -#~ msgstr "Nincs jogosultsága ennek a fájlnak a szerkesztéséhez." - -#~ msgid "You have already published this track to all available sources!" -#~ msgstr "Ez a sáv már minden elérhető forrásban közzé lett téve!" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "El kell fogadnia az adatvédelmi irányelveket." - -#~ msgid "You haven't published this track to any sources!" -#~ msgstr "Ez a sáv még egyik forrásban sincs közzétéve!" - -#~ msgid "Your trial expires in" -#~ msgstr "A kipróbálási időszak lejár" - -#~ msgid "and" -#~ msgstr "és" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "file meets the criteria" -#~ msgstr "feltételeknek megfelelő fájl" - -#~ msgid "files meet the criteria" -#~ msgstr "feltételeknek megfelelő fájl" - -#~ msgid "iTunes Fields" -#~ msgstr "iTunes mezők" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "teljes hangerő" - -#~ msgid "mute" -#~ msgstr "elnémítás" - -#~ msgid "next" -#~ msgstr "következő" - -#~ msgid "or" -#~ msgstr "vagy" - -#~ msgid "pause" -#~ msgstr "szünet" - -#~ msgid "play" -#~ msgstr "lejátszás" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "kérjük, tegye másodpercekbe '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "előző" - -#~ msgid "stop" -#~ msgstr "leállítás" - -#~ msgid "unmute" -#~ msgstr "elnémítás megszüntetése" diff --git a/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po b/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po deleted file mode 100644 index 674a98e862..0000000000 --- a/webapp/src/locale/po/it_IT/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4513 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Danse , 2014 -# Sourcefabric , 2012 -# Xorxi , 2014 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-10-17 08:09+0000\n" -"Last-Translator: J. Lavoie \n" -"Language-Team: Italian \n" -"Language: it_IT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s non è una data valida" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s non è un ora valida" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendario" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Utenti" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Stato" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Storico playlist" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Statistiche ascolto" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Aiuto" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Iniziare" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Manuale utente" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Non è permesso l'accesso alla risorsa." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Non è permesso l'accesso alla risorsa. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Il file non esiste in %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Richiesta errata. «modalità» parametro non riuscito." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Richiesta errata. «modalità» parametro non valido" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Non è consentito disconnettersi dalla fonte." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Nessuna fonte connessa a questo ingresso." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Non ha il permesso per cambiare fonte." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s non trovato" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Qualcosa è andato storto." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Anteprima" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Aggiungi a playlist" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Aggiungi al blocco intelligente" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Elimina" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Scarica" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Nessuna azione disponibile" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Non ha il permesso per cancellare gli elementi selezionati." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Registra:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Stream Principale" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Niente programmato" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Show attuale:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Attuale" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Sta gestendo l'ultima versione" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nuova versione disponibile:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Aggiungi all'attuale playlist" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Aggiungi all' attuale blocco intelligente" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Sto aggiungendo un elemento" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Aggiunte %s voci" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Puoi solo aggiungere tracce ai blocchi intelligenti." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Aggiungi " - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edita" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Rimuovi" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Edita Metadata" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Aggiungi agli show selezionati" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Seleziona" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Seleziona pagina" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Deseleziona pagina" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Deseleziona tutto" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "E' sicuro di voler eliminare la/e voce/i selezionata/e?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Titolo" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Creatore" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Velocità di trasmissione" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Compositore" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Conduttore" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Codificato da" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genere" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Etichetta" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Lingua" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Ultima modifica" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Ultima esecuzione" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Lunghezza" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Formato (Mime)" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Genere (Mood)" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Proprietario" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Ripeti" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Velocità campione" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Numero traccia" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Caricato" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Sito web" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Anno" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Caricamento..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Tutto" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "File" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Playlist" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Blocchi intelligenti" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Tipologia sconosciuta:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Sei sicuro di voler eliminare gli elementi selezionati?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Caricamento in corso..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Dati recuperati dal server..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Errore codice:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Errore messaggio:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "L'ingresso deve essere un numero positivo" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "L'ingresso deve essere un numero" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "L'ingresso deve essere nel formato : yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "L'ingresso deve essere nel formato : hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "inserisca per favore il tempo '00:00:00(.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Il suo browser non sopporta la riproduzione di questa tipologia di file:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Il blocco dinamico non c'è in anteprima" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limitato a:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Playlist salvata" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Programma in ascolto su %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Ricordamelo tra 1 settimana" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Non ricordarmelo" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Si, aiuta Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "L'immagine deve essere in formato jpg, jpeg, png, oppure gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Blocco intelligente casuale" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Blocco Intelligente generato ed criteri salvati" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Blocco intelligente salvato" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Elaborazione in corso..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Seleziona modificatore" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contiene" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "non contiene" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "è " - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "non è" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "inizia con" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "finisce con" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "è più di" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "è meno di" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "nella seguenza" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Genere" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Scelga l'archivio delle cartelle" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Scelga le cartelle da guardare" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"E' sicuro di voler cambiare l'archivio delle cartelle?\n" -" Questo rimuoverà i file dal suo archivio Airtime!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Gestisci cartelle media" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "E' sicuro di voler rimuovere le cartelle guardate?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Questo percorso non è accessibile attualmente." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Connesso al server di streaming." - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Stream disattivato" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Ottenere informazioni dal server..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Non può connettersi al server di streaming" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nessun risultato trovato" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Imposta autenticazione personalizzata che funzionerà solo per questo show." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "L'istanza dello show non esiste più!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Show" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Lo show è vuoto" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1min" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5min" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10min" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15min" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30min" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60min" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Recupera data dal server..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Lo show non ha un contenuto programmato." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "" - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Gennaio" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Febbraio" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Marzo" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Aprile" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Maggio" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Giugno" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Luglio" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Agosto" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Settembre" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Ottobre" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Novembre" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Dicembre" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Gen" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Giu" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Lug" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Ago" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Set" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Ott" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dic" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Domenica" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Lunedì" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Martedì" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Mercoledì" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Giovedì" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Venerdì" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Sabato" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Dom" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Lun" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Mar" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Mer" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Gio" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Ven" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sab" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Cancellare lo show attuale?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Fermare registrazione dello show attuale?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "OK" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Contenuti dello Show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Rimuovere tutto il contenuto?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Cancellare la/e voce/i selezionata/e?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Start" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Fine" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Durata" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Dissolvenza in entrata" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Dissolvenza in uscita" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show vuoto" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Registrando da Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Anteprima traccia" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Non può programmare fuori show." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Spostamento di un elemento in corso" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Spostamento degli elementi %s in corso" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Salva" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancella" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Seleziona tutto" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Nessuna selezione" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Rimuovi la voce selezionata" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Salta alla traccia dell'attuale playlist" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancella show attuale" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Apri biblioteca per aggiungere o rimuovere contenuto" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Aggiungi/Rimuovi contenuto" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "in uso" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disco" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Cerca in" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Apri" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Amministratore " - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programma direttore" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Ospite" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Invia supporto feedback:" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Mostra/nascondi colonne" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Da {da} a {a}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Dom" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Lun" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Mar" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Mer" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Gio" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Ven" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sab" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Chiudi" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Ore" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuti" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Completato" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "" - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "" - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "" - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "" - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Descrizione" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Abilitato" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Disattivato" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Fuori onda" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Fuori linea" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Niente di programmato" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "Clicca su «Aggiungi» per crearne uno ora." - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Inserisci il tuo nome utente e la tua password." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Nome utente o password forniti errati. Per favore riprovi." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sta visualizzando una versione precedente di %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Non può aggiungere tracce al blocco dinamico." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Non ha i permessi per cancellare la selezione %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Puoi solo aggiungere tracce al blocco intelligente." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Playlist senza nome" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Blocco intelligente senza nome" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Playlist sconosciuta" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preferenze aggiornate." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Aggiornamento impostazioni Stream." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "il percorso deve essere specificato" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problemi con Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Ritrasmetti show %s da %s a %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Seleziona cursore" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Rimuovere il cursore" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "lo show non esiste" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "User aggiunto con successo!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "User aggiornato con successo!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Webstream senza titolo" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream salvate." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Valori non validi." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Carattere inserito non valido" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Il giorno deve essere specificato" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "L'ora dev'essere specificata" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Aspettare almeno un'ora prima di ritrasmettere" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Usa autenticazione clienti:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Personalizza nome utente " - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Personalizza Password" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Il campo nome utente non può rimanere vuoto." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Il campo della password non può rimanere vuoto." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Registra da Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Ritrasmetti?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "giorni" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Ripeti tipo:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "settimanalmente" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mensilmente" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Seleziona giorni:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Data fine:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Ripeti all'infinito?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "La data di fine deve essere posteriore a quella di inizio" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Colore sfondo:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Colore testo:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nome:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Show senza nome" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Genere:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Descrizione:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Durata:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Ripetizioni?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Non creare show al passato" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Non modificare data e ora di inizio degli slot in eseguzione" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "L'ora e la data finale non possono precedere quelle iniziali" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Non ci può essere una durata <0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Non ci può essere una durata 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Non ci può essere una durata superiore a 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Non puoi sovrascrivere gli show" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Cerca utenti:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Dj:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Username:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Password:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Nome:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Cognome:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Cellulare:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "tipo di utente:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Il nome utente esiste già ." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Data inizio:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Titolo:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creatore:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Anno:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Etichetta:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Compositore:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conduttore:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Umore:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numero ISRC :" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Sito web:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Lingua:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Nome stazione" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo stazione: " - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "La settimana inizia il" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Accedi" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Password" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Conferma nuova password" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "La password di conferma non corrisponde con la sua password." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Nome utente" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Reimposta password" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "In esecuzione" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Tutti i miei show:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Seleziona criteri" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Velocità campione (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "ore" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minuti" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elementi" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinamico" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statico" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Genera contenuto playlist e salva criteri" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Eseguzione casuale playlist" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Casuale" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Il margine non può essere vuoto o più piccolo di 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Il margine non può superare le 24ore" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Il valore deve essere un numero intero" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 è il limite massimo di elementi che può inserire" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Devi selezionare da Criteri e Modifica" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "La lunghezza deve essere nel formato '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Il valore deve essere numerico" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Il valore deve essere inferiore a 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Il valore deve essere inferiore a %s caratteri" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Il valore non deve essere vuoto" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Etichetta Stream:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artista - Titolo" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artista - Titolo" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Nome stazione - Nome show" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Attiva:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Tipo di stream:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Velocità di trasmissione: " - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Tipo di servizio:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Canali:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Mount Point" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Nome" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Importa Folder:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Folder visionati:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Catalogo non valido" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Il calore richiesto non può rimanere vuoto" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' non va bene con il formato data '%formato%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' è più corto di %min% caratteri" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' è più lungo di %max% caratteri" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' non è tra '%min%' e '%max%' compresi" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue in e cue out sono nulli." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Il cue out non può essere più grande della lunghezza del file." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Il cue in non può essere più grande del cue out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Il cue out non può essere più piccolo del cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Seleziona paese" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Il programma che sta visionando è fuori data!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Non è abilitato all'elenco degli show%s" - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Non può aggiungere file a show registrati." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Lo show % supera la lunghezza massima e non può essere programmato." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Il programma %s è già stato aggiornato!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Il File selezionato non esiste!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Gli show possono avere una lunghezza massima di 24 ore." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Non si possono programmare show sovrapposti.\n" -" Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ritrasmetti da %s a %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "La lunghezza deve superare 0 minuti" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "La lunghezza deve essere nella forma \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL deve essere nella forma \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL dove essere di 512 caratteri o meno" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Nessun MIME type trovato per le webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Webstream non può essere vuoto" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Non è possibile analizzare le playlist XSPF " - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Non è possibile analizzare le playlist PLS" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Non è possibile analizzare le playlist M3U" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Webstream non valido - Questo potrebbe essere un file scaricato." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo di stream sconosciuto: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Vedi file registrati Metadata" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Modifica il programma" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Non puoi spostare show ripetuti" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Non puoi spostare uno show passato" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Non puoi spostare uno show nel passato" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Lo show è stato cancellato perché lo show registrato non esiste!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Devi aspettare un'ora prima di ritrasmettere." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Riprodotti" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "a" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contiene una sotto directory già visionata: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s non esiste nella lista delle cartelle visionate." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s è già stato visionato." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s annidato con una directory già visionata: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s non è una directory valida." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)." - -#~ msgid "(Required)" -#~ msgstr "(Richiesto)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Il sito della tua radio)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(per scopi di verifica, non ci saranno pubblicazioni)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Chi siamo" - -#~ msgid "Add this show" -#~ msgstr "Aggiungi show" - -#~ msgid "Additional Options" -#~ msgstr "Opzioni aggiuntive" - -#~ msgid "Advanced Search Options" -#~ msgstr "Opzioni di ricerca avanzate" - -#~ msgid "All rights are reserved" -#~ msgstr "Tutti i diritti riservati" - -#~ msgid "Audio Track" -#~ msgstr "Traccia audio" - -#~ msgid "Choose Days:" -#~ msgstr "Scegli giorni:" - -#~ msgid "Choose folder" -#~ msgstr "Scegli cartella" - -#~ msgid "City:" -#~ msgstr "Città :" - -#~ msgid "Country:" -#~ msgstr "Paese:" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue in:" - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Importa cartelle:" - -#~ msgid "Default Length:" -#~ msgstr "Lunghezza predefinita:" - -#~ msgid "Default License:" -#~ msgstr "Licenza predefinita:" - -#~ msgid "Disk Space" -#~ msgstr "Spazio disco" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Blocco intelligente e dinamico" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Criteri di blocco intelligenti e dinamici:" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Espandi blocco dinamico " - -#~ msgid "Expand Static Block" -#~ msgstr "Espandi blocco statico" - -#~ msgid "Fade in: " -#~ msgstr "Dissolvenza in entrata:" - -#~ msgid "Fade out: " -#~ msgstr "Dissolvenza in chiusura:" - -#~ msgid "File import in progress..." -#~ msgstr "File importato in corso..." - -#~ msgid "Filter History" -#~ msgstr "Filtra storia" - -#~ msgid "Find Shows" -#~ msgstr "Trova Shows" - -#~ msgid "First Name" -#~ msgstr "Nome" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Per aiuto dettagliato, legga %suser manual%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Per maggiori informazioni, legga per favore il %sManuale Airtime%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Se Airtime è dietro un router o firewall, può avere bisogno di configurare il trasferimento e queste informazioni di campo saranno incorrette. In questo caso avrò bisogno di aggiornare manualmente questo campo per mostrare ospite/trasferimento/installa di cui il suo Dj ha bisogno per connettersi. La serie permessa è tra 1024 e 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Numero ISRC:" - -#~ msgid "Last Name" -#~ msgstr "Cognome" - -#~ msgid "Length:" -#~ msgstr "Lunghezza" - -#~ msgid "Limit to " -#~ msgstr "Limiti" - -#~ msgid "Listen" -#~ msgstr "Ascolta" - -#~ msgid "Live Stream Input" -#~ msgstr "Ingresso Stream diretta" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Logout" -#~ msgstr "Esci" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "La pagina che stai cercando non esiste! " - -#~ msgid "Manage Users" -#~ msgstr "Gestione utenti" - -#~ msgid "Master Source" -#~ msgstr "Fonte principale" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount non può essere vuoto con il server Icecast." - -#~ msgid "New User" -#~ msgstr "Nuovo Utente" - -#~ msgid "New password" -#~ msgstr "Nuova password" - -#~ msgid "Next:" -#~ msgstr "Successivo:" - -#~ msgid "No open playlist" -#~ msgstr "Non aprire playlist" - -#~ msgid "No webstream" -#~ msgstr "No webstream" - -#~ msgid "OK" -#~ msgstr "Ok" - -#~ msgid "ON AIR" -#~ msgstr "IN ONDA" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Solo numeri." - -#~ msgid "Original Length:" -#~ msgstr "Lunghezza originale:" - -#~ msgid "Page not found!" -#~ msgstr "Pagina non trovata!" - -#~ msgid "Phone:" -#~ msgstr "Telefono:" - -#~ msgid "Playlist Contents: " -#~ msgstr "Contenuti playlist:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio." - -#~ msgid "Please upgrade to " -#~ msgstr "Per favore aggiorni" - -#~ msgid "Port cannot be empty." -#~ msgstr "Il port non può essere libero." - -#~ msgid "Previous:" -#~ msgstr "Precedente:" - -#~ msgid "Register Airtime" -#~ msgstr "Registro Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Rimuovi elenco visionato" - -#~ msgid "Repeat Days:" -#~ msgstr "Ripeti giorni:" - -#~ msgid "Sample Rate:" -#~ msgstr "Percentuale" - -#~ msgid "Save playlist" -#~ msgstr "Salva playlist" - -#~ msgid "Select stream:" -#~ msgstr "Seleziona stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Il server non è libero." - -#~ msgid "Set" -#~ msgstr "Imposta" - -#~ msgid "Show Source" -#~ msgstr "Mostra fonte" - -#~ msgid "Show me what I am sending " -#~ msgstr "Mostra cosa sto inviando" - -#~ msgid "Shuffle playlist" -#~ msgstr "Riproduzione casuale" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Blocco intelligente e statico" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Contenuto di blocco intelligente e statico:" - -#~ msgid "Station Description:" -#~ msgstr "Descrizione stazione:" - -#~ msgid "Station Web Site:" -#~ msgstr "Stazione sito web:" - -#~ msgid "Stream " -#~ msgstr "Stream" - -#~ msgid "Stream Settings" -#~ msgstr "Impostazioni Stream" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL:" - -#~ msgid "Style" -#~ msgstr "Stile" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Aggiornamento impostazioni assistenza." - -#~ msgid "Terms and Conditions" -#~ msgstr "Termini e condizioni" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Alla lunghezza di blocco desiderata non si arriverà se Airtime non può trovare abbastanza tracce uniche per accoppiare i suoi criteri.Abiliti questa scelta se desidera permettere alle tracce di essere aggiunte molteplici volte al blocco intelligente." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Il lavoro è nel dominio pubblico" - -#~ msgid "This version is no longer supported." -#~ msgstr "Questa versione non è più sopportata." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Questa versione sarà presto aggiornata." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Traccia:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Digita le parole del riquadro." - -#~ msgid "Update Required" -#~ msgstr "Aggiornamenti richiesti" - -#~ msgid "Update show" -#~ msgstr "Aggiorna show" - -#~ msgid "User Type" -#~ msgstr "Tipo di utente" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "Cosa" - -#~ msgid "When" -#~ msgstr "Quando" - -#~ msgid "Who" -#~ msgstr "Chi" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Sta guardando i cataloghi media." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Autorizzo il trattamento dei miei dati personali." - -#~ msgid "Your trial expires in" -#~ msgstr "La sua versione di prova scade entro" - -#~ msgid "files meet the criteria" -#~ msgstr "Files e criteri" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "volume massimo" - -#~ msgid "mute" -#~ msgstr "disattiva microfono" - -#~ msgid "next" -#~ msgstr "next" - -#~ msgid "pause" -#~ msgstr "pausa" - -#~ msgid "play" -#~ msgstr "riproduci" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "inserisca per favore il tempo in secondi '00(.0)'" - -#~ msgid "previous" -#~ msgstr "precedente" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "attiva microfono" diff --git a/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po deleted file mode 100644 index b9ad44532c..0000000000 --- a/webapp/src/locale/po/ja_JP/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4610 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Akemi Makino , 2014 -# Kazuhiro Shimbo , 2014 -# shotaro , 2014 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-10-17 08:09+0000\n" -"Last-Translator: Kyle Robbertze \n" -"Language-Team: Japanese \n" -"Language: ja_JP\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "%s年は、1753 - 9999の範囲内である必要があります" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%sは正しい日付ではありません" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%sは正しい時間ではありません" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "カレンダー" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "ユーザー" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "配信設定" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "ステータス" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "配信履歴" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "配信履歴のテンプレート" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "リスナー統計" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "ヘルプ" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "はじめに" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "ユーザーマニュアル" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "このリソースへのアクセスは許可されていません。" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "このリソースへのアクセスは許可されていません。" - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad Request:パスした「mode」パラメータはありません。" - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad Request:'mode' パラメータが無効です。" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "ソースを切断する権限がありません。" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "この入力に接続されたソースが存在しません。" - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "ソースを切り替える権限がありません。" - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s は見つかりませんでした。" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "問題が生じました。" - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "プレビュー" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "プレイリストに追加" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "スマートブロックに追加" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "削除" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "ダウンロード" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "プレイリストのコピー" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "実行可能な操作はありません。" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "選択した項目を削除する権限がありません。" - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "%sのコピー" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。" - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "オーディオプレイヤー" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "録音中:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "マスターストリーム" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "ライブ配信" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "何も予約されていません。" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "現在の番組:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Now Playing" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "最新バージョンを使用しています。" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "新しいバージョンがあります:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "現在のプレイリストに追加" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "現在のスマートブロックに追加" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "1個の項目を追加" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr " %s個の項目を追加" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "スマートブロックに追加できるのはトラックのみです。" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "タイムライン上のカーソル位置を選択して下さい。" - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "追加" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "編集" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "削除" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "メタデータの編集" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "選択した番組へ追加" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "選択" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "このページを選択" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "このページを選択解除" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "全てを選択解除" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "選択した項目を削除してもよろしいですか?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "配信予約済み" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "タイトル" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "アーティスト" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "アルバム" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "ビットレート" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM " - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "作曲者" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "コンダクター" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "著作権" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "エンコード" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "ジャンル" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "レーベル" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "言語" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "最終修正" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "最終配信日" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "時間" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "MIMEタイプ" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "ムード" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "所有者" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "リプレイゲイン" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "サンプルレート" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "トラック番号" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "アップロード完了" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "ウェブサイト" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "年" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "ロード中…" - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "全て" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "ファイル" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "プレイリスト" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "スマートブロック" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "ウェブ配信" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "種類不明:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "選択した項目を削除してもよろしいですか?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "アップロード中…" - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "サーバーからデータを取得しています…" - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "エラーコード:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "エラーメッセージ:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "0より大きい半角数字で入力して下さい。" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "半角数字で入力して下さい。" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "yyyy-mm-ddの形で入力して下さい。" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "01:22:33.4の形式で入力して下さい。" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "メディアビルダーを開く" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "時間は01:22:33(.4)の形式で入力して下さい。" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "お使いのブラウザはこのファイル形式の再生に対応していません:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "自動生成スマート・ブロックはプレビューできません" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "次の値に制限:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "プレイリストが保存されました。" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "プレイリストがシャッフルされました。" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。" - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "%sのリスナー視聴数:%s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "1週間前に通知" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "通知しない" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Rakuten.FMを支援します" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "画像は、jpg, jpeg, png, または gif の形式にしてください。" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。" - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。" - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "スマートブロックがシャッフルされました。" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "スマートブロックが生成されて基準が保存されました。" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "スマートブロックを保存しました。" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "処理中…" - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "条件を選択してください" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "以下を含む" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "以下を含まない" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "以下と一致する" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "以下と一致しない" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "以下で始まる" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "以下で終わる" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "次の値より大きい" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "次の値より小さい" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "次の範囲内" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "生成" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "フォルダを選択してください。" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "同期するフォルダを選択" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "メディアフォルダの管理" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "同期されているフォルダを削除してもよろしいですか?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "このパスは現在アクセス不可能です。" - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "ストリーミングサーバーに接続しています。" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "配信が切断されています。" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "サーバーから情報を取得しています…" - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "ストリーミングサーバーに接続できません。" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。" - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。" - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。" - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。" - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。" - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "注意:番組の配信中にこの項目は変更できません。" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "結果は見つかりませんでした。" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。" - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "この番組に対してのみ有効なカスタム認証を指定してください。" - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "この番組の配信回が存在しません。" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "注意:番組は再度リンクできません。" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "番組" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "番組内容がありません。" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1分" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5分" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10分" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15分" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30分" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60分" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "サーバーからデータを取得しています…" - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "この番組には予約されているコンテンツがありません。" - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "この番組はコンテンツが足りていません。" - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "1月" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "2月" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "3月" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "4月" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "5月" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "6月" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "7月" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "8月" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "9月" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "10月" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "11月" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "12月" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "1月" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "2月" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "3月" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "4月" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "6月" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "7月" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "8月" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "9月" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "10月" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "11月" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "12月" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "日曜日" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "月曜日" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "火曜日" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "水曜日" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "木曜日" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "金曜日" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "土曜日" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "日" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "月" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "火" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "水" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "木" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "金" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "土" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。" - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "現在の番組をキャンセルしますか?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "配信中の番組の録音を中止しますか?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "番組内容" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "全てのコンテンツを削除しますか?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "選択した項目を削除しますか?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "開始" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "終了" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "長さ" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "キューイン" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "キューアウト" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "フェードイン" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "フェードアウト" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "番組内容がありません。" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "ライン入力から録音" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "試聴する" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "番組外に予約することは出来ません。" - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "1個の項目を移動" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "%s 個の項目を移動" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "保存" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "キャンセル" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "フェードの編集" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "キューの編集" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "全て選択" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "全て解除" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "選択した項目を削除" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "現在再生中のトラックに移動" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "配信中の番組をキャンセル" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "ライブラリを開いてコンテンツを追加・削除する" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "コンテンツの追加・削除" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "使用中" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "ディスク" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "閲覧" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "開く" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "管理者" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "プログラムマネージャー" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "ゲスト" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "ゲストは以下の操作ができます:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "スケジュールを見る" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "番組内容を見る" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJは以下の操作ができます:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "割り当てられた番組内容を管理" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "メディアファイルをインポートする" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "プレイリスト・スマートブロック・ウェブストリームを作成" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "ライブラリのコンテンツを管理" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "番組内容の表示と管理" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "番組を予約する" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "ライブラリの全てのコンテンツを管理" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "管理者は次の操作が可能です:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "設定を管理" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "ユーザー管理" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "同期されているフォルダを管理" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "サポートにフィードバックを送る" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "システムステータスを見る" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "配信レポートへ" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "リスナー統計を確認" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "表示設定" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "{from}から{to}へ" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "日" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "月" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "火" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "水" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "木" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "金" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "土" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "閉じる" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "時" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "分" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "完了" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "ファイルを選択" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "ファイルを追加" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "アップロード中止" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "アップロード開始" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "ファイルを追加" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d ファイルをアップロードしました。" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "こちらにファイルをドラッグしてください。" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "ファイル拡張子エラーです。" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "ファイルサイズエラーです。" - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "ファイルカウントのエラーです。" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Initエラーです。" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTPエラーです。" - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "セキュリティエラーです。" - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "エラーです。" - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "入出力エラーです。" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "ファイル: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d のファイルが待機中" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "アップロードURLに誤りがあるか存在しません。" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "エラー:ファイルサイズが大きすぎます。" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "エラー:ファイル拡張子が無効です。" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "初期設定として保存" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "エントリーを作成" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "配信履歴を編集" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "番組はありません。" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s 列の%s をクリップボードにコピー しました。" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "説明" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "有効" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "無効" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。" - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "入力されたユーザー名またはパスワードが誤っています。" - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "%sの古いバージョンを閲覧しています。" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "自動生成スマート・ブロックにトラックを追加することはできません。" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "選択された%sを削除する権限がありません。" - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "スマートブロックに追加できるのはトラックのみです。" - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "無題のプレイリスト" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "無題のスマートブロック" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "不明なプレイリスト" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "設定が更新されました。" - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "配信設定が更新されました。" - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "パスを指定する必要があります" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoapに問題があります。" - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "%sの再配信:%s %s時" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "カーソルを選択" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "カーソルを削除" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "番組が存在しません。" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "ユーザーの追加に成功しました。" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "ユーザーの更新に成功しました。" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "設定の更新に成功しました。" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "無題のウェブ配信" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "ウェブ配信が保存されました。" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "入力欄に無効な値があります。" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "使用できない文字が入力されました。" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "日付を指定する必要があります。" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "時間を指定する必要があります。" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "再配信するには、1時間以上待たなければなりません" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "カスタム認証を使用:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "カスタムユーザー名" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "カスタムパスワード" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "ユーザー名を入力してください。" - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "パスワードを入力してください。" - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "ライン入力から録音" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "再配信" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "日" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "配信内容を同期する:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "リピート形式:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "毎週" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "2週間ごと" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "3週間ごと" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "4週間ごと" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "毎月" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "曜日を選択:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "リピート間隔:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "毎月特定日" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "毎月特定曜日" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "終了日:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "無期限" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "終了日は開始日より後に設定してください。" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "繰り返す日を選択してください" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "背景色:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "文字色:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "名前:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "無題の番組" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "ジャンル:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "説明:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%'は、'01:22'の形式に適合していません" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "長さ:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "タイムゾーン:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "定期番組に設定" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "過去の日付に番組は作成できません。" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "終了日時は過去に設定できません。" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "0分以下の長さに設定することはできません。" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "00h 00mの長さに設定することはできません。" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "24時間を越える長さに設定することはできません。" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "番組を重複して予約することはできません。" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "ユーザーを検索:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJ:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "ユーザー名:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "パスワード:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "確認用パスワード:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "名:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "姓:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "メール:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "携帯電話:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "ユーザー種別:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "ログイン名はすでに使用されています。" - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "開始日:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "タイトル:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "アーティスト:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "アルバム:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "年:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "ラベル:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "作曲者" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "コンダクター:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "ムード:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "著作権:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC番号:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "ウェブサイト:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "言語:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "開始時間" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "終了時間" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "インターフェイスのタイムゾーン:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "ステーション名" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "ステーションロゴ:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "クロスフェードの時間(初期値):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "デフォルトフェードイン(初期値):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "デフォルトフェードアウト(初期値):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "ステーションのタイムゾーン" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "週の開始曜日" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "ログイン" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "パスワード" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "新しいパスワードを確認してください。" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "パスワード確認がパスワードと一致しません。" - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "ユーザー名" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "全ての番組:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "基準を選択してください" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "ビットレート (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "サンプリング周波数 (kHz) " - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "時間" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "分" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "項目" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "自動生成スマート・ブロック" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "スマート・ブロック" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "プレイリストコンテンツを生成し、基準を保存" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "プレイリストの内容をシャッフル" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "シャッフル" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "制限は空欄または0以下には設定できません。" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "制限は24時間以内に設定してください。" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "値は整数である必要があります。" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "設定できるアイテムの最大数は500です。" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "「基準」と「条件」を選択してください。" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "「長さ」は、'00:00:00'の形式で入力してください。" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "値は数字である必要があります。" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "値は2147483648未満にする必要があります。" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "値は%s未満にする必要があります。" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "値を入力してください。" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "配信表示設定:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "アーティスト - タイトル" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "番組 - アーティスト - タイトル" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "ステーション名 - 番組名" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "オフエアーメタデータ" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "リプレイゲインを有効化" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "リプレイゲイン調整" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "有効:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "配信種別:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "ビットレート:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "サービスタイプ:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "再生方式" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "サーバー" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "ポート" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "マウントポイント" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "名前" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "インポートフォルダ:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "同期フォルダ:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "正しいディレクトリではありません。" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "値を入力してください" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'は、'%format%'の日付形式に一致しません。" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'は、%min%文字より短くなっています。" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'は、%max%文字を越えています。" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "パスワードが一致しません。" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "キューインとキューアウトが設定されていません。" - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "キューアウトはファイルの長さより長く設定できません。" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "キューインをキューアウトより大きく設定することはできません。" - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "キューアウトをキューインより小さく設定することはできません。" - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "国の選択" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "リンクした番組の外に項目を移動することはできません。" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "参照中のスケジュールはの有効ではありません。" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "参照中のスケジュールは有効ではありません。" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "参照中のスケジュールは有効ではありません。" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "番組を%sに予約することはできません。" - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "録音中の番組にファイルを追加することはできません。" - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "番組 %s は終了しておりスケジュールに入れることができません。" - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "番組 %s は以前に更新されています。" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "選択したファイルは存在しません。" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "番組は最大24時間まで設定可能です。" - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"番組を重複して予約することはできません。\n" -"注意:再配信番組のサイズ変更は全ての再配信に反映されます。" - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%sの再配信%sから" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "再生時間は0分以上である必要があります。" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "時間は \"00h 00m\"の形式にしてください。" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL は\"https://example.org\"の形式で入力してください。" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URLは512文字以下にしてください。" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。" - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "ウェブ配信名を入力して下さい。" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "XSPFプレイリストを解析できませんでした。" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "PLSプレイリストを解析できませんでした。" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "M3Uプレイリストを解析できませんでした。" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "無効なウェブ配信です。" - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "不明な配信種別です: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "録音ファイルは存在しません。" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "録音ファイルのメタデータを確認" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "番組の編集" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "許可されていない操作です。" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "定期配信している番組を移動することはできません。" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "過去の番組を移動することはできません。" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "番組を過去の日付に移動することはできません。" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "録音された番組を再配信時間の直前1時間の枠に移動することはできません。" - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "録音された番組が存在しないので番組は削除されました。" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "再配信には1時間待たなければなりません。" - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "トラック" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "再生済み" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "~" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%sは同期している次のフォルダを含んでいます: %s " - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%sは同期リストの中に存在しません。" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%sは同期済みです。" - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%sは同期している次のフォルダに含まれています: %s " - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%sは有効なディレクトリではありません。" - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)" - -#~ msgid "(Required)" -#~ msgstr "(必須)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(あなたのラジオステーションウェブサイト)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(確認目的の為だけであり、公開はされません。) " - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "例:01:22:33.4" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t) " - -#~ msgid "1 - Mono" -#~ msgstr "1 - モノラル" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - ステレオ" - -#~ msgid "About" -#~ msgstr "Rakuten.FMについて" - -#~ msgid "Add New Field" -#~ msgstr "あたしいフィールドの追加" - -#~ msgid "Add more elements" -#~ msgstr "さらに要素を追加" - -#~ msgid "Add this show" -#~ msgstr "この番組を追加" - -#~ msgid "Additional Options" -#~ msgstr "詳細設定" - -#~ msgid "Admin Password" -#~ msgstr "管理者パスワード" - -#~ msgid "Admin User" -#~ msgstr "管理者" - -#~ msgid "Advanced Search Options" -#~ msgstr "詳細検索" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "Audio Track" -#~ msgstr "オーディオトラック" - -#~ msgid "Choose Days:" -#~ msgstr "日付選択: " - -#~ msgid "Choose Show Instance" -#~ msgstr "番組配信回の選択" - -#~ msgid "Choose folder" -#~ msgstr "フォルダ選択" - -#~ msgid "City:" -#~ msgstr "市:" - -#~ msgid "Clear" -#~ msgstr "クリア" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "同期された配信内容を配信中に変更することはできません。" - -#~ msgid "Country:" -#~ msgstr "国:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "トラック別レポートテンプレート作成" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "配信レポートテンプレートの作成" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "キューイン:" - -#~ msgid "Cue Out: " -#~ msgstr "キューアウト:" - -#~ msgid "Current Import Folder:" -#~ msgstr "現在のインポートフォルダ" - -#~ msgid "Cursor" -#~ msgstr "カーソル" - -#~ msgid "Default Length:" -#~ msgstr "ウェブ配信の長さ(初期値):" - -#~ msgid "Default License:" -#~ msgstr "ライセンス(初期値):" - -#~ msgid "Disk Space" -#~ msgstr "ディスク容量" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "自動生成スマート・ブロック" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "自動生成スマート・ブロックの基準:" - -#~ msgid "Empty playlist content" -#~ msgstr "プレイリストを空にする。" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "自動生成スマート・ブロックを拡張する" - -#~ msgid "Expand Static Block" -#~ msgstr "スマート・ブロックの拡張" - -#~ msgid "Fade in: " -#~ msgstr "フェードイン:" - -#~ msgid "Fade out: " -#~ msgstr "フェードアウト:" - -#~ msgid "File Path:" -#~ msgstr "ファイルの場所: " - -#~ msgid "File Summary" -#~ msgstr "トラック別レポート" - -#~ msgid "File Summary Templates" -#~ msgstr "トラック別レポートテンプレート" - -#~ msgid "File import in progress..." -#~ msgstr "ファイルをインポート中…" - -#~ msgid "Filter History" -#~ msgstr "絞り込み履歴" - -#~ msgid "Find" -#~ msgstr "検索" - -#~ msgid "Find Shows" -#~ msgstr "番組を探す" - -#~ msgid "First Name" -#~ msgstr "名" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 " - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "詳細については、 %sRakuten.FM マニュアル%sを読んで下さい。" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbisメタデータ" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Rakuten.FMがルータやファイアウォールで制御されている場合は、ポート転送を設定する必要があり、このフィールドの情報が不正確になる可能性があります。その場合は、DJの接続に必須の正しいホスト/ポート/マウントを示し、手動でこのフィールドを更新する必要があります。許容範囲は1024〜49151の間です。" - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC番号:" - -#~ msgid "Last Name" -#~ msgstr "姓" - -#~ msgid "Length:" -#~ msgstr "時間:" - -#~ msgid "Limit to " -#~ msgstr "次の値に制限する:" - -#~ msgid "Listen" -#~ msgstr "試聴" - -#~ msgid "Live Stream Input" -#~ msgstr "ライブ配信の入力" - -#~ msgid "Live stream" -#~ msgstr "ライブ配信" - -#~ msgid "Log Sheet" -#~ msgstr "配信レポート" - -#~ msgid "Log Sheet Templates" -#~ msgstr "配信レポートテンプレート" - -#~ msgid "Logout" -#~ msgstr "ログアウト" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "お探しのページは存在しないようです。" - -#~ msgid "Manage Users" -#~ msgstr "ユーザー管理" - -#~ msgid "Master Source" -#~ msgstr "マスターソース" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" - -#~ msgid "New File Summary Template" -#~ msgstr "新規テンプレート作成" - -#~ msgid "New Log Sheet Template" -#~ msgstr "新規テンプレート作成" - -#~ msgid "New User" -#~ msgstr "ユーザー追加" - -#~ msgid "New password" -#~ msgstr "新しいパスワード" - -#~ msgid "Next:" -#~ msgstr "次の曲:" - -#~ msgid "No File Summary Templates" -#~ msgstr "テンプレートはありません。" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "テンプレートはありません。" - -#~ msgid "No open playlist" -#~ msgstr "プレイリストが開かれていません。" - -#~ msgid "No webstream" -#~ msgstr "ウェブ配信がありません。" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "数値で入力してください。" - -#~ msgid "Original Length:" -#~ msgstr "オリジナルの長さ:" - -#~ msgid "Page not found!" -#~ msgstr "ページが見つかりませんでした。" - -#~ msgid "Phone:" -#~ msgstr "電話:" - -#~ msgid "Play" -#~ msgstr "再生" - -#~ msgid "Playlist Contents: " -#~ msgstr "プレイリストの内容:" - -#~ msgid "Playlist crossfade" -#~ msgstr "プレイリスト クロスフェード" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。" - -#~ msgid "Please upgrade to " -#~ msgstr "こちらにアップグレードしてください:" - -#~ msgid "Port cannot be empty." -#~ msgstr "ポートを入力してください。" - -#~ msgid "Previous:" -#~ msgstr "前の曲:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "プログラムマネージャーは以下の操作が可能です:" - -#~ msgid "Register Airtime" -#~ msgstr "Rakuten.FMに登録" - -#~ msgid "Remove watched directory" -#~ msgstr "同期ディレクトリを削除する" - -#~ msgid "Repeat Days:" -#~ msgstr "再配信日:" - -#~ msgid "Sample Rate:" -#~ msgstr "サンプルレート:" - -#~ msgid "Save playlist" -#~ msgstr "プレイリストを保存" - -#~ msgid "Select stream:" -#~ msgstr "配信先の選択:" - -#~ msgid "Server cannot be empty." -#~ msgstr "サーバーを入力してください。" - -#~ msgid "Set" -#~ msgstr "設定" - -#~ msgid "Set Cue In" -#~ msgstr "キューインの設定" - -#~ msgid "Set Cue Out" -#~ msgstr "キューアウトの設定" - -#~ msgid "Set Default Template" -#~ msgstr "初期設定テンプレートを作成" - -#~ msgid "Share" -#~ msgstr "共有" - -#~ msgid "Show Source" -#~ msgstr "番組ソース" - -#~ msgid "Show Summary" -#~ msgstr "番組別レポート" - -#~ msgid "Show Waveform" -#~ msgstr "波形の表示" - -#~ msgid "Show me what I am sending " -#~ msgstr "送信中のものを表示" - -#~ msgid "Shuffle playlist" -#~ msgstr "プレイリストのシャッフル" - -#~ msgid "Source Streams" -#~ msgstr "配信ソース" - -#~ msgid "Static Smart Block" -#~ msgstr "スマート・ブロック" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "スマート・ブロックの内容:" - -#~ msgid "Station Description:" -#~ msgstr "ステーションの説明:" - -#~ msgid "Station Web Site:" -#~ msgstr "ステーションのウェブサイト:" - -#~ msgid "Stop" -#~ msgstr "停止" - -#~ msgid "Stream " -#~ msgstr "配信" - -#~ msgid "Stream Settings" -#~ msgstr "配信設定" - -#~ msgid "Stream URL:" -#~ msgstr "配信元URL:" - -#~ msgid "Stream URL: " -#~ msgstr "配信先URL:" - -#~ msgid "Style" -#~ msgstr "スタイル" - -#~ msgid "Support Feedback" -#~ msgstr "サポートフィードバック" - -#~ msgid "Support setting updated." -#~ msgstr "サポート設定が更新されました。" - -#~ msgid "Terms and Conditions" -#~ msgstr "利用規約" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Rakuten.FMがあなたの条件に一致するトラックを十分に見つけることができない場合、ご希望のブロック時間になりません。スマートブロックに同じトラックを複数回追加できるようにしたい場合は、このオプションを有効にしてください。" - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "This version is no longer supported." -#~ msgstr "このバージョンのサポートは終了しました。" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "新しいバージョンがあります。" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。" - -#~ msgid "Track:" -#~ msgstr "トラック:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "下記画像の中に見える文字を入力してください。" - -#~ msgid "Update Required" -#~ msgstr "アップデートが必要です。" - -#~ msgid "Update show" -#~ msgstr "番組を更新" - -#~ msgid "User Type" -#~ msgstr "ユーザー種別" - -#~ msgid "Web Stream" -#~ msgstr "ウェブ配信" - -#~ msgid "What" -#~ msgstr "番組内容" - -#~ msgid "When" -#~ msgstr "番組配信時間" - -#~ msgid "Who" -#~ msgstr "DJ" - -#~ msgid "You are not watching any media folders." -#~ msgstr "いかなるメディアフォルダも見ていません" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "プライバシーポリシーに同意する必要があります。" - -#~ msgid "Your trial expires in" -#~ msgstr "試用期間終了まで:" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB " - -#~ msgid "files meet the criteria" -#~ msgstr "件の条件を満たすファイルがありました。" - -#~ msgid "id" -#~ msgstr "id " - -#~ msgid "max volume" -#~ msgstr "最大音量" - -#~ msgid "mute" -#~ msgstr "ミュート" - -#~ msgid "next" -#~ msgstr "次" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "pause" -#~ msgstr "一時停止" - -#~ msgid "play" -#~ msgstr "再生" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "秒数は00 (.0)の形式で入力してください。" - -#~ msgid "previous" -#~ msgstr "前" - -#~ msgid "stop" -#~ msgstr "停止" - -#~ msgid "unmute" -#~ msgstr "ミュート解除" diff --git a/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po deleted file mode 100644 index 1b0be46c00..0000000000 --- a/webapp/src/locale/po/ko_KR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4517 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Korean (Korea)\n" -"Language: ko_KR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "년도 값은 %s 1753 - 9999 입니다" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s는 맞지 않는 날짜 입니다" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s는 맞지 않는 시간 입니다" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "스케쥴" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "계정" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "스트림" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "상태" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "방송 기록" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "청취자 통계" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "도움" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "초보자 가이드" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "사용자 메뉴얼" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "권한이 부족합니다" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "권한이 부족합니다" - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "소스를 끊을수 있는 권한이 부족합니다" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "연결된 소스가 없습니다" - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "소스를 바꿀수 있는 권한이 부족합니다" - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s를 찾을수 없습니다" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "알수없는 에러." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "프리뷰" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "재생 목록에 추가" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "스마트 블록에 추가" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "삭제" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "다운로드" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "중복된 플레이 리스트" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "액션 없음" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "%s의 사본" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "오디오 플레이어" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "녹음:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "마스터 스트림" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "라이브 스트림" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "스케쥴 없음" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "현재 쇼:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "현재" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "최신 버전입니다." - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "새 버젼이 있습니다" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "현제 플레이리스트에 추가" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "현제 스마트 블록에 추가" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "아이템 1개 추가" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "아이템 %s개 추가" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "스마트 블록에는 파일만 추가 가능합니다" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "타임 라인에서 커서를 먼져 선택 하여 주세요." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "추가" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "수정" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "제거" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "메타데이타 수정" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "선택된 쇼에 추가" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "선택" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "현재 페이지 선택" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "현재 페이지 선택 취소 " - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "모두 선택 취소" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "선택된 아이템들을 모두 지우시겠습니다?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "스케쥴됨" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "제목" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "제작자" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "앨범" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "비트 레이트" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "작곡가" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "지휘자" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "저작권" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "장르" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "레이블" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "언어" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "마지막 수정일" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "마지막 방송일" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "길이" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "무드" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "소유자" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "리플레이 게인" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "샘플 레이트" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "트랙 번호" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "업로드 날짜" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "웹싸이트" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "년도" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "로딩..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "전체" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "파일" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "재생 목록" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "스마트 블록" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "웹스트림" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "알수 없는 유형:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "선택된 아이템을 모두 삭제 하시겠습니까?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "업로딩중..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "서버에서 정보를 가져오는중..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "에러 코드: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "에러 메세지: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "이 값은 0보다 큰 숫자만 허용 됩니다" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "이 값은 숫자만 허용합니다" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "yyyy-mm-dd의 형태로 입력해주세요" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "hh:mm:ss.t의 형태로 입력해주세요" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "미디아 빌더 열기" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "'00:00:00 (.0)' 형태로 입력해주세요" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "동적인 스마트 블록은 프리뷰 할수 없습니다" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "길이 제한: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "재생 목록이 저장 되었습니다" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "플레이 리스트가 셔플 되었습니다" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "%s의청취자 숫자 : %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "1주후에 다시 알림" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "이 창을 다시 표시 하지 않음" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Airtime 도와주기" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 " - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "스마트 블록이 셔플 되었습니다" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "스마트 블록이 저장 되었습니다" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "진행중..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "모디파이어 선택" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "다음을 포합" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "다음을 포함하지 않는" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "다음과 같음" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "다음과 같지 않음" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "다음으로 시작" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "다음으로 끝남" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "다음 보다 큰" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "다음 보타 작은" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "다음 범위 안에 있는 " - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "생성" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "저장 폴더 선택" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "모니터 폴더 선택" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다." - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "미디어 폴더 관리" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "경로에 접근할수 없습니다" - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "스트리밍 서버에 접속됨" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "스트림이 사용되지 않음" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "서버에서 정보를 받는중..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "스트리밍 서버에 접속 할수 없음" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "결과 없음" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "쇼에 지정된 사람들만 접속 할수 있습니다" - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다" - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "쇼 인스턴스가 존재 하지 않습니다" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "주의: 쇼는 다시 링크 될수 없습니다" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "쇼" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "쇼가 비어 있습니다" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1분" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5분" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10분" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15분" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30분" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60분" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "서버로부터 데이타를 불러오는중..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "내용이 없는 쇼입니다" - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "쇼가 완전히 채워지지 않았습니다" - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "1월" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "2월" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "3월" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "4월" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "5월" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "6월" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "7월" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "8월" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "9월" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "10월" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "11월" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "12월" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "1월" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "2월" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "3월" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "4월" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "6월" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "7월" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "8월" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "9월" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "10월" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "11월" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "12월" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "일요일" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "월요일" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "화요일" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "수요일" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "목요일" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "금요일" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "토요일" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "일" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "월" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "화" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "수" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "목" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "금" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "토" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다" - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "현재 방송중인 쇼를 중단 하시겠습니까?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "현재 녹음 중인 쇼를 중단 하시겠습니까?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "확인" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "쇼 내용" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "모든 내용물 삭제하시겠습까?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "선택한 아이템을 삭제 하시겠습니까?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "시작" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "종료" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "길이" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "큐 인" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "큐 아웃" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "페이드 인" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "패이드 아웃" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "내용 없음" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "라인 인으로 부터 녹음" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "트랙 프리뷰" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "쇼 범위 밖에 스케쥴 할수 없습니다" - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "아이템 1개 이동" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "아이템 %s개 이동" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "저장" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "취소" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "페이드 에디터" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "큐 에디터" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "전체 선택" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "전체 선택 취소" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "선택된 아이템 제거" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "현재 방송중인 트랙으로 가기" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "현재 쇼 취소" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "라이브러리 열기" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "내용 추가/제거" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "사용중" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "디스크" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "경로" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "열기" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "관리자" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "프로그램 매니저" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "손님" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "손님의 권한:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "스케쥴 보기" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "쇼 내용 보기" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJ의 권한:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "할당된 쇼의 내용 관리" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "미디아 파일 추가" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "플레이 리스트, 스마트 블록, 웹스트림 생성" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "자신의 라이브러리 내용 관리" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "쇼 내용 보기및 관리" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "쇼 스케쥴 하기" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "모든 라이브러리 내용 관리" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "관리자의 권한:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "설정 관리" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "사용자 관리" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "모니터 폴터 관리" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "사용자 피드백을 보냄" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "이시스템 상황 보기" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "방송 기록 접근 권한" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "청취자 통계 보기" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "컬럼 보이기/숨기기" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr " {from}부터 {to}까지" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "일" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "월" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "화" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "수" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "목" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "금" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "토" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "닫기" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "시" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "분" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "확인" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "파일 선택" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "파일 추가" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "업로드 중지" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "업로드 시작" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "파일 추가" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d 파일이 업로드됨" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "파일을 여기로 드래그 앤 드랍 하세요" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "파일 확장자 에러." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "파일 크기 에러." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "파일 갯수 에러." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "초기화 에러." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP 에러." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "보안 에러." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "일반적인 에러." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO 에러." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "파일: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d개의 파일이 대기중" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "파일: %f, 크기: %s, 최대 파일 크기: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "업로드 URL이 맞지 않거나 존재 하지 않습니다" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "에러: 파일이 너무 큽니다:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "에러: 지원하지 않는 확장자:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s row %s를 클립보드로 복사 하였습니다" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "설명" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "사용" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "미사용" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요" - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요" - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "오래된 %s를 보고 있습니다" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "스마트 블록에는 트랙만 추가 가능합니다" - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "제목없는 재생목록" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "제목없는 스마트 블록" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "모르는 재생목록" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "설정이 업데이트 되었습니다" - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "스트림 설정이 업데이트 되었습니다" - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "경로를 입력해주세요" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap 문제..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "%s의 재방송 %s부터 %s까지" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "커서 선택" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "커서 제거" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "쇼가 존재 하지 않음" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "사용자가 추가 되었습니다!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "사용자 정보가 업데이트 되었습니다!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "세팅이 성공적으로 업데이트 되었습니다!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "제목없는 웹스트림" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "웹스트림이 저장 되었습니다" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "잘못된 값입니다" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "허용되지 않는 문자입니다" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "날짜를 설정하세요" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "시간을 설정하세요" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "재방송 설정까지 1시간 기간이 필요합니다" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Custom 인증 사용" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Custom 아이디" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom 암호" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "아이디를 입력해주세요" - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "암호를 입력해주세요" - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Line In으로 녹음" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "재방송?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "일" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "링크:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "반복 유형:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "주간" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "월간" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "날짜 선택" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "월중 날짜" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "주중 날짜" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "종료" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "무한 반복?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "종료 일이 시작일 보다 먼져 입니다." - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "배경 색:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "글자 색:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "이름:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "이름없는 쇼" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "장르:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "설명:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다." - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "길이:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "시간대:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "반복?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "쇼를 과거에 생성 할수 없습니다" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "종료 날짜/시간을 과거로 설정할수 없습니다" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "길이가 0m 보다 작을수 없습니다" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "쇼의 길이가 24h를 넘을수 없습니다" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "쇼를 중복되게 스케쥴할수 없습니다" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "사용자 검색:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJ들:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "아이디: " - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "암호: " - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "암호 확인:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "이름:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "성:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "이메일" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "휴대전화:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "스카입:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "유저 타입" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "사용할수 없는 아이디 입니다" - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "시작" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "제목:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "제작자:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "앨범:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "년도:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "상표:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "작곡가:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "지휘자" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "무드" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "저작권:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC 넘버" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "웹사이트" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "언어" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "방송국 이름" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "방송국 로고" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "기본 크로스페이드 길이(s)" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "기본 페이드 인(s)" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "기본 페이드 아웃(s)" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "주 시작일" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "로그인" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "암호" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "새 암호 확인" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "암호와 암호 확인 값이 일치 하지 않습니다." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "아이디" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "암호 초기화" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "방송중" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "내 쇼:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "기준 선택" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "비트 레이트(Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "샘플 레이트" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "시간" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "분" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "아이템" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "동적(Dynamic)" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "정적(Static)" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "재생 목록 내용 생성후 설정 저장" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "재생 목록 내용 셔플하기" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "셔플" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "길이 제한은 24h 보다 클수 없습니다" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "이 값은 정수(integer) 입니다" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "아이템 곗수의 최대값은 500 입니다" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "기준과 모디파이어를 골라주세요" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "길이는 00:00:00 형태로 입력하세요" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "이 값은 숫자만 허용 됩니다" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "이 값은 비어둘수 없습니다" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "스트림 레이블" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "아티스트 - 제목" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "쇼 - 아티스트 - 제목" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "방송국 이름 - 쇼 이름" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "오프 에어 메타데이타" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "리플레이 게인 활성화" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "리플레이 게인 설정" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "사용:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "스트림 타입:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "비트 레이트:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "서비스 타입:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "채널:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "서버" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "포트" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "마운트 지점" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "이름" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "폴더 가져오기" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "모니터중인 폴더" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "옳치 않은 폴더 입니다" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "이 필드는 비워둘수 없습니다." - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'는 %max%글자 보다 길수 없습니다" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "암호가 맞지 않습니다" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "큐-인 과 큐 -아웃 이 null 입니다" - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "국가 선택" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "링크 쇼에서 아이템을 분리 할수 없습니다" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "녹화 쇼에는 파일을 추가 할수 없습니다" - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다" - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "쇼 %s 업데이트 되었습니다!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "선택하신 파일이 존재 하지 않습니다" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "쇼 길이는 24시간을 넘을수 없습니다." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"쇼를 중복되게 스케줄 할수 없습니다.\n" -"주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%s 재방송( %s에 시작) " - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "길이가 0분 보다 길어야 합니다" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 " - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL은 \"https://example.org\" 형태여야 합니다" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL은 512캐릭터 까지 허용합니다" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다" - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "웹스트림의 이름을 지정하십시오" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "XSPF 재생목록을 분석 할수 없습니다" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "PLS 재생목록을 분석 할수 없습니다" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "M3U 재생목록을 분석할수 없습니다" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다" - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "알수 없는 스트림 타입: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "녹음된 파일의 메타데이타 보기" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "쇼 수정" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "권한이 부족합니다" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "반복쇼는 드래그 앤 드롭 할수 없습니다" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "지난 쇼는 이동할수 없습니다" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "과거로 쇼를 이동할수 없습니다" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다" - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 " - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "방송됨" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr " 부터 " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s가 모니터 목록에 없습니다" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s는 이미 모니터 중입니다 " - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s는 옳은 경로가 아닙니다." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(체크 하기 위해선 '피드백 보내기'를 체크 하셔야 합니다)" - -#~ msgid "(Required)" -#~ msgstr "(*)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(방송국 웹사이트 주소)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - 모노" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - 스테레오" - -#~ msgid "About" -#~ msgstr "정보" - -#~ msgid "Add this show" -#~ msgstr "쇼 추가" - -#~ msgid "Additional Options" -#~ msgstr "추가 설정" - -#~ msgid "Admin Password" -#~ msgstr "관리자 암호" - -#~ msgid "Admin User" -#~ msgstr "관리자 아이디" - -#~ msgid "Advanced Search Options" -#~ msgstr "고급 검색 옵션" - -#~ msgid "Audio Track" -#~ msgstr "오디오 트랙" - -#~ msgid "Choose Days:" -#~ msgstr "날짜 선택" - -#~ msgid "Choose folder" -#~ msgstr "폴더 선택" - -#~ msgid "City:" -#~ msgstr "도시" - -#~ msgid "Clear" -#~ msgstr "지우기" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다" - -#~ msgid "Country:" -#~ msgstr "나라" - -#~ msgid "Cue In: " -#~ msgstr "큐 인:" - -#~ msgid "Cue Out: " -#~ msgstr "큐 아웃:" - -#~ msgid "Current Import Folder:" -#~ msgstr "현재 저장 폴더:" - -#~ msgid "Cursor" -#~ msgstr "커서" - -#~ msgid "Default Length:" -#~ msgstr "기본 길이:" - -#~ msgid "Default License:" -#~ msgstr "기본 라이센스:" - -#~ msgid "Disk Space" -#~ msgstr "디스크 공간" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "동적 스마트 블록" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "동적 스마트 블록 내용: " - -#~ msgid "Empty playlist content" -#~ msgstr "재생 목록 비우기" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "동적 블록 확장" - -#~ msgid "Expand Static Block" -#~ msgstr "정적 블록 확장" - -#~ msgid "Fade in: " -#~ msgstr "페이드 인: " - -#~ msgid "Fade out: " -#~ msgstr "페이드 아웃:" - -#~ msgid "File Path:" -#~ msgstr "파일 위치:" - -#~ msgid "File import in progress..." -#~ msgstr "파일 가져오기 진행중" - -#~ msgid "Filter History" -#~ msgstr "필터 히스토리" - -#~ msgid "Find Shows" -#~ msgstr "쇼 찾기" - -#~ msgid "First Name" -#~ msgstr "이름" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s" - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "더 자세한 정보는 %sAirtime Manual%s에서 찾으실수 있습니다" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis 메타데이타" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Airtime이 방화벽 뒤에 설치 되었다면, 포트 포워딩을 설정해야 할수도 있습니다. 이 경우엔 자동으로 생성된 이 정보가 틀릴수 있습니다. 수동적으로 이 필드를 수정하여 DJ들이 접속해야 하는서버/마운트/포트 등을 공지 하십시오. 포트 범위는 1024~49151 입니다." - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC 넘버:" - -#~ msgid "Last Name" -#~ msgstr "성" - -#~ msgid "Length:" -#~ msgstr "길이:" - -#~ msgid "Limit to " -#~ msgstr "길이 제한 " - -#~ msgid "Listen" -#~ msgstr "듣기" - -#~ msgid "Live Stream Input" -#~ msgstr "라이브 스트림" - -#~ msgid "Live stream" -#~ msgstr "라이브 스트림" - -#~ msgid "Logout" -#~ msgstr "로그아웃" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "찾는 페이지가 존재 하지 않습니다!" - -#~ msgid "Manage Users" -#~ msgstr "사용자 관리" - -#~ msgid "Master Source" -#~ msgstr "마스터 소스" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" - -#~ msgid "New User" -#~ msgstr "새 사용자" - -#~ msgid "New password" -#~ msgstr "새 암호" - -#~ msgid "Next:" -#~ msgstr "다음:" - -#~ msgid "No open playlist" -#~ msgstr "열린 재생 목록 없음" - -#~ msgid "No webstream" -#~ msgstr "열린 웹스트림 없음" - -#~ msgid "OK" -#~ msgstr "확인" - -#~ msgid "ON AIR" -#~ msgstr "방송중" - -#~ msgid "Only numbers are allowed." -#~ msgstr "숫자만 허용 됩니다" - -#~ msgid "Original Length:" -#~ msgstr "오리지날 길이" - -#~ msgid "Page not found!" -#~ msgstr "페이지를 찾을수 없습니다!" - -#~ msgid "Phone:" -#~ msgstr "전화" - -#~ msgid "Play" -#~ msgstr "재생" - -#~ msgid "Playlist Contents: " -#~ msgstr "재생목록 내용" - -#~ msgid "Playlist crossfade" -#~ msgstr "재생 목록 크로스페이드" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "새 암호 확인" - -#~ msgid "Please upgrade to " -#~ msgstr "새 버전으로 업그래이드 " - -#~ msgid "Port cannot be empty." -#~ msgstr "포트를 지정해주세요" - -#~ msgid "Previous:" -#~ msgstr "이전:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "프로그램 매니저의 권한:" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime 등록" - -#~ msgid "Remove watched directory" -#~ msgstr "모니터중인 폴더를 리스트에서 삭제" - -#~ msgid "Repeat Days:" -#~ msgstr "반복 날짜:" - -#~ msgid "Sample Rate:" -#~ msgstr "샘플 레이트:" - -#~ msgid "Save playlist" -#~ msgstr "재생 목록 저장" - -#~ msgid "Select stream:" -#~ msgstr "스트림 선택" - -#~ msgid "Server cannot be empty." -#~ msgstr "서버를 지정해주세요" - -#~ msgid "Set" -#~ msgstr "저장" - -#~ msgid "Set Cue Out" -#~ msgstr "큐 아웃 설정" - -#~ msgid "Share" -#~ msgstr "공유" - -#~ msgid "Show Source" -#~ msgstr "쇼 소스" - -#~ msgid "Show Waveform" -#~ msgstr "웨이브 폼 보기" - -#~ msgid "Show me what I am sending " -#~ msgstr "보내지는 데이타 보기" - -#~ msgid "Shuffle playlist" -#~ msgstr "재생 목록 셔플" - -#~ msgid "Source Streams" -#~ msgstr "소스 스트림" - -#~ msgid "Static Smart Block" -#~ msgstr "정적 스마트 블록" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "정적 스마트 블록 내용: " - -#~ msgid "Station Description:" -#~ msgstr "방송국 설명" - -#~ msgid "Station Web Site:" -#~ msgstr "방송국 웹사이트" - -#~ msgid "Stop" -#~ msgstr "정지" - -#~ msgid "Stream " -#~ msgstr "스트림 " - -#~ msgid "Stream Settings" -#~ msgstr "락스트림 설정" - -#~ msgid "Stream URL:" -#~ msgstr "스트림 URL:" - -#~ msgid "Stream URL: " -#~ msgstr "스트림 URL: " - -#~ msgid "Style" -#~ msgstr "스타일" - -#~ msgid "Support Feedback" -#~ msgstr "사용자 피드백" - -#~ msgid "Support setting updated." -#~ msgstr "지원 설정이 업데이트 되었습니다" - -#~ msgid "Terms and Conditions" -#~ msgstr "사용자 약관" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "블록 생성시 충분한 파일을 찾지 못하면, 블록 길이가 원하는 길이보다 짧아 질수 있습니다. 이 옵션을 선택하시면,Airtime이 트랙을 반복적으로 사용하여 길이를 채웁니다." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:" - -#~ msgid "This version is no longer supported." -#~ msgstr "지금 사용중인 버전은 더 이상 지원 되지 않습니다" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "지금 사용중인 버전은 조만간 지원 하지 않을것입니다" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요" - -#~ msgid "Track:" -#~ msgstr "트랙:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "밑에 보이는 그림에 나온 문자를 입력하세요" - -#~ msgid "Update Required" -#~ msgstr "업데이트가 필요함" - -#~ msgid "Update show" -#~ msgstr "쇼 업데이트" - -#~ msgid "User Type" -#~ msgstr "사용자 유형" - -#~ msgid "Web Stream" -#~ msgstr "웹스트림" - -#~ msgid "What" -#~ msgstr "무엇" - -#~ msgid "When" -#~ msgstr "언제" - -#~ msgid "Who" -#~ msgstr "누구" - -#~ msgid "You are not watching any media folders." -#~ msgstr "모니터중인 폴더가 없습니다" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "사용자 약관에 동의 하십시오" - -#~ msgid "Your trial expires in" -#~ msgstr " " - -#~ msgid "files meet the criteria" -#~ msgstr "개의 파일들" - -#~ msgid "id" -#~ msgstr "아이디" - -#~ msgid "max volume" -#~ msgstr "최대 음량 " - -#~ msgid "mute" -#~ msgstr "음소거" - -#~ msgid "next" -#~ msgstr "다음" - -#~ msgid "pause" -#~ msgstr "중지" - -#~ msgid "play" -#~ msgstr "재생" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "초단위 '00 (.0)'로 입력해주세요" - -#~ msgid "previous" -#~ msgstr "이전" - -#~ msgid "stop" -#~ msgstr "정지" - -#~ msgid "unmute" -#~ msgstr "음소거 해제" diff --git a/webapp/src/locale/po/locale.gen b/webapp/src/locale/po/locale.gen deleted file mode 100644 index 8f214c08cb..0000000000 --- a/webapp/src/locale/po/locale.gen +++ /dev/null @@ -1,21 +0,0 @@ -cs_CZ.UTF-8 UTF-8 -de_AT.UTF-8 UTF-8 -de_DE.UTF-8 UTF-8 -el_GR.UTF-8 UTF-8 -en_CA.UTF-8 UTF-8 -en_GB.UTF-8 UTF-8 -en_US.UTF-8 UTF-8 -es_ES.UTF-8 UTF-8 -fr_FR.UTF-8 UTF-8 -hr_HR.UTF-8 UTF-8 -hu_HU.UTF-8 UTF-8 -it_IT.UTF-8 UTF-8 -ja_JP.UTF-8 UTF-8 -ko_KR.UTF-8 UTF-8 -pl_PL.UTF-8 UTF-8 -pt_BR.UTF-8 UTF-8 -ru_RU.UTF-8 UTF-8 -sr_RS.UTF-8 UTF-8 -sr_RS@latin.UTF-8 UTF-8 -uk_UA.UTF-8 UTF-8 -zh_CN.UTF-8 UTF-8 diff --git a/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po b/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po deleted file mode 100644 index 4e5e3f9da3..0000000000 --- a/webapp/src/locale/po/nl_NL/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4671 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# dave van den berg , 2015 -# terwey , 2014 -# terwey , 2014 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2021-10-17 08:09+0000\n" -"Last-Translator: Kyle Robbertze \n" -"Language-Team: Dutch \n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Het jaar %s moet binnen het bereik van 1753-9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s dit is geen geldige datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s Dit is geen geldige tijd" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Klik op de knop 'Nieuwe Show' en vul de vereiste velden." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n" -"%sCreate een niet-gekoppelde Toon nu%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calender" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "gebruikers" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "streams" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Playout geschiedenis" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Geschiedenis sjablonen" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "luister status" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Help" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Aan de slag" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Gebruikershandleiding" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "U bent niet toegestaan voor toegang tot deze bron." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "U bent niet toegestaan voor toegang tot deze bron." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Bestand bestaat niet in %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Slecht verzoek. 'mode' parameter is ongeldig" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Je hebt geen toestemming om te bron verbreken" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Er is geen bron die aangesloten op deze ingang." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Je hebt geen toestemming om over te schakelen van de bron." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "De gevraagde actie wordt niet ondersteund." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "U bent niet gemachtigd voor toegang tot deze bron." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Een interne toepassingsfout opgetreden." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s niet gevonden" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Er ging iets mis." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Voorbeeld" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Toevoegen aan afspeellijst" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Toevoegen aan slimme blok" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Verwijderen" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Download" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Dubbele afspeellijst" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Geen actie beschikbaar" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen" - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Kan bestand niet verwijderen omdat het in de toekomst is gepland." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Bestand(en) kan geen gegevens verwijderen." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopie van %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Opname" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master Stream" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Niets gepland" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Huidige Show:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Huidige" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "U werkt de meest recente versie" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nieuwe versie beschikbaar:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Toevoegen aan huidige afspeellijst" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Toevoegen aan huidigeslimme block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "1 Item toevoegen" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "%s Items toe te voegen" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "U kunt alleen nummers naar slimme blokken toevoegen." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Selecteer een cursorpositie op de tijdlijn." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "U hebt de nummers nog niet toegevoegd" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "U heb niet alle afspeellijsten toegevoegd" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "U nog niet toegevoegd een slimme blokken" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "U hebt webstreams nog niet toegevoegd" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Informatie over nummers" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Meer informatie over afspeellijsten" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Informatie over slimme blokken" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Meer informatie over webstreams" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Klik op 'Nieuw' te maken." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "toevoegen" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Bewerken" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "verwijderen" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Metagegevens bewerken" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Toevoegen aan geselecteerde Toon" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Selecteer" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Selecteer deze pagina" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Hef de selectie van deze pagina" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Alle selecties opheffen" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Gepland" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "track" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Afspeellijsten" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Titel" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Aangemaakt door" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Componist" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright:" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encoded Bij" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Genre" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Taal" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Laatst Gewijzigd" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Laatst gespeeld" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Lengte" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Mood" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Eigenaar" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Herhalen Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Track nummer" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Uploaded" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website:" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Jaar" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Bezig met laden..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Alle" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Bestanden" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Afspeellijsten" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "slimme blokken" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Streams" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Onbekend type" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Wilt u de geselecteerde gegevens werkelijk verwijderen?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Uploaden in vooruitgang..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Gegevens op te halen van de server..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Weergeven" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "foutcode" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Fout msg:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Invoer moet een positief getal" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Invoer moet een getal" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Invoer moet worden in de indeling: jjjj-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Invoer moet worden in het formaat: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Open Media opbouw" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Gelieve te zetten in een tijd '00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dynamische blok is niet previewable" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Beperk tot:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Afspeellijst opgeslagen" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Afspeellijst geschud" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Luisteraar rekenen op %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Stuur me een herinnering in 1 week" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Herinner me nooit" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ja, help Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Afbeelding moet een van jpg, jpeg, png of gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "slimme blok geschud" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "slimme blok gegenereerd en opgeslagen criteria" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart blok opgeslagen" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Wordt verwerkt..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Selecteer modifier" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "bevat" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "bevat niet" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "is" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "is niet gelijk aan" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "Begint met" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "Eindigt op" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "is groter dan" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "is minder dan" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "in het gebied" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Genereren" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Kies opslagmap" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Kies map voor bewaken" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Weet u zeker dat u wilt wijzigen de opslagmap?\n" -"Hiermee verwijdert u de bestanden uit uw Airtime bibliotheek!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Mediamappen beheren" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Dit pad is momenteel niet toegankelijk." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Aangesloten op de streaming server" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "De stream is uitgeschakeld" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Het verkrijgen van informatie van de server ..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Kan geen verbinding maken met de streaming server" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Geen resultaat gevonden" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Geef aangepaste verificatie die alleen voor deze show werken zal." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "De Toon-exemplaar bestaat niet meer!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Waarschuwing: Shows kunnen niet opnieuw gekoppelde" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Show" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Show Is leeg" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Retreiving gegevens van de server..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Deze show heeft geen geplande inhoud." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Deze show is niet volledig gevuld met inhoud." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Januari" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Februari" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "maart" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "april" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "mei" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "juni" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "juli" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "augustus" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "september" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "oktober" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "november" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "december" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "maa" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "aug" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "okt" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "vandaag" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "dag" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "week" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "maand" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "zondag" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "maandag" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "dinsdag" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "woensdag" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "donderdag" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "vrijdag" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "zaterdag" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "zon" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "ma" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "di" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "wo" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "do" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "vrij" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "zat" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Annuleer Huidige Show?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Stop de opname huidige show?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "oke" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Inhoud van Show" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Alle inhoud verwijderen?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "verwijderd geselecteerd object(en)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Start" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "einde" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duur" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Filteren op" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "of" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "records" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Infaden" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "uitfaden" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Show leeg" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Opname van de Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Track Voorbeeld" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Niet gepland buiten een show." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "1 Item verplaatsen" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "%s Items verplaatsen" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "opslaan" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "anuleren" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Fade Bewerken" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Bewerken" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Selecteer alles" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Niets selecteren" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Trim overboekte shows" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Geselecteerde geplande items verwijderen" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Jump naar de huidige playing track" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Annuleren van de huidige show" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Open bibliotheek toevoegen of verwijderen van inhoud" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Toevoegen / verwijderen van inhoud" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "In gebruik" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "hardeschijf" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Zoeken in:" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "open" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Admin" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Programmabeheer" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "gast" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Gasten kunnen het volgende doen:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Schema weergeven" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Weergave show content" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJ's kunnen het volgende doen:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Toegewezen Toon inhoud beheren" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Mediabestanden importeren" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Maak afspeellijsten, slimme blokken en webstreams" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "De inhoud van hun eigen bibliotheek beheren" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Bekijken en beheren van inhoud weergeven" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Schema shows" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Alle inhoud van de bibliotheek beheren" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Beheerders kunnen het volgende doen:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Voorkeuren beheren" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Gebruikers beheren" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Bewaakte mappen beheren" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Ondersteuning feedback verzenden" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Bekijk systeem status" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Toegang playout geschiedenis" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Weergave luisteraar status" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Geef weer / verberg kolommen" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Van {from} tot {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "jjjj-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Zo" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Ma" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Di" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Wo" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Do" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Vr" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Za" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Sluiten" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Uur" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuut" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Klaar" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Selecteer bestanden" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Bestanden toevoegen" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Stop upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Begin upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Bestanden toevoegen" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Geüploade %d/%d bestanden" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/B" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Sleep bestanden hierheen." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Bestandsextensie fout" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Bestandsgrote fout." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Graaf bestandsfout." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init fout." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP fout." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Beveiligingsfout." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Generieke fout." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO fout." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Bestand: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d bestanden in de wachtrij" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, grootte: %s, max bestandsgrootte: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Fout: Bestand is te groot" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Fout: Niet toegestane bestandsextensie " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Standaard instellen" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Aangemaakt op:" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Geschiedenis Record bewerken" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "geen show" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Rij gekopieerde %s %s naar het Klembord" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Nieuw Show" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Nieuwe logboekvermelding" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Beschrijving" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Ingeschakeld" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Voer uw gebruikersnaam en wachtwoord." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "U bekijkt een oudere versie van %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "U kunt nummers toevoegen aan dynamische blokken." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "U kunt alleen nummers toevoegen aan smart blok." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Naamloze afspeellijst" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Naamloze slimme block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Onbekende afspeellijst" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Voorkeuren bijgewerkt." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Stream vaststelling van bijgewerkte." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "pad moet worden opgegeven" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Probleem met Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Verzoek methode niet geaccepteerd" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast van show %s van %s in %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Selecteer cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Cursor verwijderen" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "show bestaat niet" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "gebruiker Succesvol Toegevoegd" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "gebruiker Succesvol bijgewerkt" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Instellingen met succes bijgewerkt!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Naamloze Webstream" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Webstream opgeslagen." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Ongeldige formulierwaarden." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Ongeldig teken ingevoerd" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Dag moet worden opgegeven" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Tijd moet worden opgegeven" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "verificatie %s gebruiken:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Gebruik aangepaste verificatie:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Aangepaste gebruikersnaam" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Aangepaste wachtwoord" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Veld Gebruikersnaam mag niet leeg." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "veld wachtwoord mag niet leeg." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Opnemen vanaf de lijn In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dagen" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "link" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Herhaal Type:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "wekelijks" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "elke 2 weken" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "elke 3 weken" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "elke 4 weken" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "per maand" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Selecteer dagen:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Herhaal door:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "dag van de maand" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "Dag van de week" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "datum einde" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Geen einde?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Einddatum moet worden na begindatum ligt" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Selecteer een Herhaal dag" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "achtergrond kleur" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "tekst kleur" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "naam" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Zonder titel show" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "genre:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Omschrijving:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Looptijd:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "tijdzone:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "herhaalt?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "kan niet aanmaken show in het verleden weergeven" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Eind datum/tijd mogen niet in het verleden" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Geen duur hebben < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Kan niet hebben duur 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Duur groter is dan 24h kan niet hebben" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "kan Niet gepland overlappen shows" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "zoek gebruikers" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "gebuikersnaam" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "wachtwoord" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Wachtwoord verifiëren:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "voornaam" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "achternaam" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "e-mail" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "mobiel nummer" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "skype" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Gebruiker Type :" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Login naam is niet uniek." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "datum start" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Aangemaakt door" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Jaar" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "label" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "schrijver van een muziekwerk" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Conductor:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Mood:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC nummer:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Taal:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Begintijd" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Eindtijd" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface tijdzone:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "station naam" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Standaardduur Crossfade (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "standaard fade in (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "standaard fade uit (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "station tijdzone" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Week start aan" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Inloggen" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "wachtwoord" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Bevestig nieuw wachtwoord" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "gebuikersnaam" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Reset wachtwoord" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Nu spelen" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "al mij shows" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Selecteer criteria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "Uren" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minuten" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "artikelen" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamisch" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "status" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Shuffle afspeellijst inhoud" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Shuffle" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limiet mag niet meer dan 24 uur" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "De waarde moet een geheel getal" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is de grenswaarde max object die kunt u instellen" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "U moet Criteria en Modifier selecteren" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Lengte' moet in ' 00:00:00 ' formaat" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "De waarde moet worden numerieke" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "De waarde moet minder dan 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "De waarde moet kleiner zijn dan %s tekens" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Waarde kan niet leeg" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artiest - Titel" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Artiest - titel" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Station naam - Show naam" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Inschakelen Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Ingeschakeld" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Service Type:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "kanalen:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "poort" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Aankoppelpunt" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "naam" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "mappen importeren" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Gecontroleerde mappen:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Niet een geldige map" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Waarde is vereist en mag niet leeg zijn" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' past niet in de datumnotatie '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is minder dan %min% tekens lang" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is meer dan %max% karakters lang" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen." - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s wachtwoord Reset" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Het Cue in en cue uit null zijn." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Niet instellen cue in groter dan cue uit." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Niet instellen cue uit op kleiner zijn dan het cue in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Selecteer land" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Items uit gekoppelde toont kan niet verplaatsen" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Het schema dat u aan het bekijken bent is verouderd!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "U zijn niet toegestaan om te plannen show %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "U kunt bestanden toevoegen aan het opnemen van programma's." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "De show %s is voorbij en kan niet worden gepland." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "De show %s heeft al eerder zijn bijgewerkt!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Een geselecteerd bestand bestaat niet!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Shows kunnen hebben een maximale lengte van 24 uur." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Niet gepland overlappende shows.\n" -"Opmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast van %s van %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Lengte moet groter zijn dan 0 minuten" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL should be of form \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL moet 512 tekens of minder" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Geen MIME-type gevonden voor webstream." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Webstream naam mag niet leeg zijn" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Kon niet ontleden PLS afspeellijst" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Kon niet ontleden M3U playlist" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Niet herkende type stream: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Record bestand bestaat niet" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Weergave opgenomen bestand Metadata" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Schema Tracks" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Wissen show" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Annuleren show" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Aanleg bewerken" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Bewerken van Show" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Exemplaar verwijderen" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Exemplaar verwijderen en alle volgende" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Toestemming geweigerd" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Kan niet slepen en neerzetten herhalende shows" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Een verleden Show verplaatsen niet" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Niet verplaatsen show in verleden" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moet wachten 1 uur opnieuw uitzenden.." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "track" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Gespeeld" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "tot" - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station." - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s bevat geneste gevolgde directory: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s bestaat niet in de lijst met gevolgde." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s is al bekeken." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s is niet een geldige directory." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)." - -#~ msgid "(Required)" -#~ msgstr "(Vereist)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Uw radio station website)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1- Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Over" - -#~ msgid "Add New Field" -#~ msgstr "Nieuw veld toevoegen" - -#~ msgid "Add more elements" -#~ msgstr "Meer elementen toevoegen" - -#~ msgid "Add this show" -#~ msgstr "Deze show toevoegen" - -#~ msgid "Additional Options" -#~ msgstr "Extra opties" - -#~ msgid "Admin Password" -#~ msgstr "admin wachtwoord " - -#~ msgid "Admin User" -#~ msgstr "admin gebuiker " - -#~ msgid "Advanced Search Options" -#~ msgstr "Geadvanceerde zoek opties" - -#~ msgid "All rights are reserved" -#~ msgstr "Alle rechten voorbehouden" - -#~ msgid "Audio Track" -#~ msgstr "Audiotrack" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" - -#~ msgid "Choose Days:" -#~ msgstr "Kies dagen:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Kies show exemplaar" - -#~ msgid "Choose folder" -#~ msgstr "Kies map" - -#~ msgid "City:" -#~ msgstr "plaats" - -#~ msgid "Clear" -#~ msgstr "Wissen" - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Klik in het vak hieronder om uw station op %s." - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden" - -#~ msgid "Country:" -#~ msgstr "Land:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Bestand samenvatting sjabloon maken" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Log werkbladsjabloon maken" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creatief Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Naamsvermelding geen afgeleide werken" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Naamsvermelding Gelijk delen" - -#~ msgid "Cue In: " -#~ msgstr "Cue In:" - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Huidige Import map:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default Length:" -#~ msgstr "Standaard lengte:" - -#~ msgid "Default License:" -#~ msgstr "Standaard licentie:" - -#~ msgid "Disk Space" -#~ msgstr "Hardeschijf ruimte" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamische slimme blok" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamische slimme blok Criteria:" - -#~ msgid "Empty playlist content" -#~ msgstr "Lege afspeellijst inhoud" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Dynamische blok uitbreiden" - -#~ msgid "Expand Static Block" -#~ msgstr "Statisch blok uitbreiden" - -#~ msgid "Fade in: " -#~ msgstr "Fade in:" - -#~ msgid "Fade out: " -#~ msgstr "Fade out:" - -#~ msgid "File Path:" -#~ msgstr "Bestandspad:" - -#~ msgid "File Summary" -#~ msgstr "Bestand samenvatting" - -#~ msgid "File Summary Templates" -#~ msgstr "Bestand samenvatting sjablonen" - -#~ msgid "File import in progress..." -#~ msgstr "Bestand importeren in vooruitgang..." - -#~ msgid "Filter History" -#~ msgstr "Filter geschiedenis" - -#~ msgid "Find" -#~ msgstr "Zoeken" - -#~ msgid "Find Shows" -#~ msgstr "zoek Shows" - -#~ msgid "First Name" -#~ msgstr "Voornaam" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Voor meer informatie, lees de %sAirtime handleiding%s" - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Als Airtime zich achter een router of firewall, u wellicht configureren poort forwarding en deze informatie zal worden onjuist. In dit geval zal u wilt dit veld handmatig worden bijgewerkt zodat het toont de juiste host/poort/mount die uw DJ wilt verbinden. Het toegestane bereik is tussen 1024 en 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC nummer:" - -#~ msgid "Last Name" -#~ msgstr "Achternaam" - -#~ msgid "Length:" -#~ msgstr "Lengte:" - -#~ msgid "Limit to " -#~ msgstr "Beperken tot" - -#~ msgid "Listen" -#~ msgstr "Luister" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Log blad" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Log blad sjablonen" - -#~ msgid "Logout" -#~ msgstr "loguit" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!" - -#~ msgid "Manage Users" -#~ msgstr "Gebruikers beheren" - -#~ msgid "Master Source" -#~ msgstr "Master bron" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Mount kan niet leeg zijn met Icecast server" - -#~ msgid "New File Summary Template" -#~ msgstr "Nieuwe bestand samenvatting sjabloon" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Nieuwe Log werkbladsjabloon" - -#~ msgid "New User" -#~ msgstr "Nieuwe gebruiker" - -#~ msgid "New password" -#~ msgstr "Nieuw wachtwoord" - -#~ msgid "Next:" -#~ msgstr "Volgende:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Geen bestand samenvatting sjablonen" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Geen Log blad sjablonen" - -#~ msgid "No open playlist" -#~ msgstr "Geen open afspeellijst" - -#~ msgid "No webstream" -#~ msgstr "Geen webstream" - -#~ msgid "OK" -#~ msgstr "Oke" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Alleen cijfers zijn toegestaan." - -#~ msgid "Original Length:" -#~ msgstr "Oorspronkelijke lengte:" - -#~ msgid "Page not found!" -#~ msgstr "Pagina niet gevonden!" - -#~ msgid "Phone:" -#~ msgstr "Telefoon" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Inhoud van de afspeellijst:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Afspeellijst crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder." - -#~ msgid "Please upgrade to " -#~ msgstr "Gelieve te upgraden naar" - -#~ msgid "Port cannot be empty." -#~ msgstr "poort kan niet leeg zijn" - -#~ msgid "Previous:" -#~ msgstr "Vorige:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programa Managers kunnen het volgende doen:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Promoot mijn station aan %s" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime registreren" - -#~ msgid "Remove track" -#~ msgstr "Nummer verwijderen" - -#~ msgid "Remove watched directory" -#~ msgstr "gecontroleerde map verwijderen" - -#~ msgid "Repeat Days:" -#~ msgstr "Herhaal dagen:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)" - -#~ msgid "Sample Rate:" -#~ msgstr "Sample Rate:" - -#~ msgid "Save playlist" -#~ msgstr "Afspeellijst opslaan" - -#~ msgid "Select stream:" -#~ msgstr "Selecteer stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server kan niet leeg zijn" - -#~ msgid "Set" -#~ msgstr "Instellen" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Standaardsjabloon" - -#~ msgid "Share" -#~ msgstr "Deel" - -#~ msgid "Show Source" -#~ msgstr "Bron weergeven" - -#~ msgid "Show Summary" -#~ msgstr "Samenvatting weergeven" - -#~ msgid "Show Waveform" -#~ msgstr "Show Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Toon mij wat ik ben verzenden" - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle afspeellijst" - -#~ msgid "Source Streams" -#~ msgstr "Bron Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Statisch slimme blok" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statisch slimme blok inhoud:" - -#~ msgid "Station Description:" -#~ msgstr "Beschrijving van het station:" - -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream" - -#~ msgid "Stream Settings" -#~ msgstr "Instellingen voor stream" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL:" - -#~ msgid "Style" -#~ msgstr "Stijl" - -#~ msgid "Support Feedback" -#~ msgstr "Ondersteuning Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Instelling bijgewerkt ondersteunt." - -#~ msgid "Terms and Conditions" -#~ msgstr "Algemene voorwaarden" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "De lengte van het gewenste blok zal niet worden bereikt als Airtime niet kunt vinden genoeg unieke nummers aan uw criteria voldoen. Schakel deze optie in als u wilt toestaan tracks meerdere keren worden toegevoegd aan het slimme blok." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler" - -#~ msgid "The work is in the public domain" -#~ msgstr "Het werk bestaat uit het publieke domein" - -#~ msgid "This version is no longer supported." -#~ msgstr "Deze versie wordt niet langer ondersteund." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Deze versie zal binnenkort verouderd." - -#~ msgid "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" -#~ " 2. Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ " Configureren en de integreerbare speler u moet gebruiken:

1. Inschakelen ten minste één MP3, AAC en OGG stream onder systeem->Streams
\n" -#~ "2. De openbare LibreTime API inschakelen onder systeem->voorkeuren" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s." - -#~ msgid "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ "De integreerbare per schema widget u moet gebruiken:

\n" -#~ "de openbare LibreTime API inschakelen onder systeem->voorkeuren" - -#~ msgid "Track:" -#~ msgstr "track" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Typ de tekens die u ziet in de afbeelding hieronder." - -#~ msgid "Update Required" -#~ msgstr "Update vereist" - -#~ msgid "Update show" -#~ msgstr "Bijwerken van show" - -#~ msgid "Upload track" -#~ msgstr "Uploaden van track" - -#~ msgid "User Type" -#~ msgstr "Gebruikerstype" - -#~ msgid "View track" -#~ msgstr "Weergave track" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Welkom tot %s!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'." - -#~ msgid "What" -#~ msgstr "Wat" - -#~ msgid "When" -#~ msgstr "Wanneer" - -#~ msgid "Who" -#~ msgstr "Wie" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Niet bekijkt u alle Mediamappen." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Je moet eens met privacy policy." - -#~ msgid "Your trial expires in" -#~ msgstr "Uw proefperiode verloopt in" - -#~ msgid "and" -#~ msgstr "en" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "bestanden voldoen aan de criteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "Max volume" - -#~ msgid "mute" -#~ msgstr "dempen" - -#~ msgid "next" -#~ msgstr "volgende" - -#~ msgid "or" -#~ msgstr "of" - -#~ msgid "pause" -#~ msgstr "pauze" - -#~ msgid "play" -#~ msgstr "spelen" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "Gelieve te zetten in een tijd in seconden '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "vorige" - -#~ msgid "stop" -#~ msgstr "Stop" - -#~ msgid "unmute" -#~ msgstr "microfoon" diff --git a/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po b/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po deleted file mode 100644 index d09e3d9ca9..0000000000 --- a/webapp/src/locale/po/pl_PL/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4529 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# thedead4fun , 2015 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Polish (Poland)\n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Rok %s musi być w przedziale od 1753 do 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nie jest poprawną datą" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nie jest prawidłowym czasem" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalendarz" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Użytkownicy" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Strumienie" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Status" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Historia odtwarzania" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Statystyki słuchaczy" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Pomoc" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Jak zacząć" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Instrukcja użytkowania" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Nie masz dostępu do tej lokalizacji" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Nie masz dostępu do tej lokalizacji." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Złe zapytanie. Nie zaakceprtowano parametru 'mode'" - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Złe zapytanie. Parametr 'mode' jest nieprawidłowy" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Nie masz uprawnień do odłączenia żródła" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Źródło nie jest podłączone do tego wyjścia." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Nie masz uprawnień do przełączenia źródła." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "nie znaleziono %s" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Wystapił błąd" - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Podgląd" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Dodaj do listy odtwarzania" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Dodaj do smartblocku" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Usuń" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Pobierz" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Skopiuj listę odtwarzania" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Brak dostepnych czynności" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Nie masz uprawnień do usunięcia wybranych elementów" - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopia %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Odtwrzacz " - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Nagrywanie:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Strumień Nadrzędny" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Transmisja na żywo" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nic nie zaplanowano" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Aktualna audycja:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Aktualny" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Używasz najnowszej wersji" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Dostępna jest nowa wersja:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Dodaj do bieżącej listy odtwarzania" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Dodaj do bieżącego smart blocku" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Dodawanie 1 elementu" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Dodawanie %s elementów" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "do smart blocków mozna dodawać tylko utwory." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Proszę wybrać pozycję kursora na osi czasu." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Dodaj" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Edytuj" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Usuń" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Edytuj Metadane." - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Dodaj do wybranej audycji" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Zaznacz" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Zaznacz tę stronę" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Odznacz tę stronę" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Odznacz wszystko" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Czy na pewno chcesz usunąć wybrane elementy?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Tytuł" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Twórca" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Kompozytor" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dyrygent/Pod batutą" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Prawa autorskie" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Kodowane przez" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Gatunek" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Wydawnictwo" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Język" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Ostatnio zmodyfikowany" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Ostatnio odtwarzany" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Długość" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Podobne do" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Nastrój" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Właściciel" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Normalizacja głośności (Replay Gain)" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Wartość próbkowania" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Numer utworu" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Przesłano" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Strona internetowa" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Rok" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Ładowanie" - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Wszystko" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Pliki" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Listy odtwarzania" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Blocki" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Web Stream" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Nieznany typ:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Czy na pewno chcesz usunąć wybrany element?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Wysyłanie w toku..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Pobieranie danych z serwera..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Kod błędu:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Komunikat błędu:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Podana wartość musi być liczbą dodatnią" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Podana wartość musi być liczbą" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Podana wartość musi mieć format yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Podana wartość musi mieć format hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Wprowadź czas w formacie: '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Podgląd bloku dynamicznego nie jest możliwy" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Ograniczenie do:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Lista odtwarzania została zapisana" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Playlista została przemieszana" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\"." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Licznik słuchaczy na %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Przypomnij mi za 1 tydzień" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Nie przypominaj nigdy" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Tak, wspieraj Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Obraz musi mieć format jpg, jpeg, png lub gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart blocku został przemieszany" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Utworzono smartblock i zapisano kryteria" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block został zapisany" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Przetwarzanie..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Wybierz modyfikator" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "zawiera" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "nie zawiera" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "to" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "to nie" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "zaczyna się od" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "kończy się" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "jest większa niż" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "jest mniejsza niż" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "mieści się w zakresie" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Utwórz" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Wybierz ścieżkę do katalogu importu" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Wybierz katalog do obserwacji" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Czy na pewno chcesz zamienić ścieżkę do katalogu importu\n" -"Wszystkie pliki z biblioteki Airtime zostaną usunięte." - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Zarządzaj folderami mediów" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Ściezka jest obecnie niedostepna." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Połączono z serwerem streamingu" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Strumień jest odłączony" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Pobieranie informacji z serwera..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Nie można połączyć z serwerem streamującym" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję" - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym" - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste" - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"" - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nie znaleziono wyników" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Ustal własne uwierzytelnienie tylko dla tej audycji." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Instancja audycji już nie istnieje." - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Audycja" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Audycja jest pusta" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1 min" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5 min" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10 min" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15 min" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30 min" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60 min" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Odbieranie danych z serwera" - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Ta audycja nie ma zawartości" - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Brak pełnej zawartości tej audycji." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Styczeń" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Luty" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Marzec" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Kwiecień" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Maj" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Czerwiec" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Lipiec" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Sierpień" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Wrzesień" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Październik" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Listopad" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Grudzień" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Sty" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Lut" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Kwi" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Cze" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Lip" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Sie" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Wrz" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Paź" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Lis" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Gru" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Niedziela" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Poniedziałek" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Wtorek" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Środa" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Czwartek" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Piątek" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Sobota" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Nie" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Pon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Wt" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Śr" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Czw" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Pt" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sob" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne ." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Skasować obecną audycję?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Przerwać nagrywanie aktualnej audycji?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Zawartośc audycji" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Usunąć całą zawartość?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Skasować wybrane elementy?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Rozpocznij" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Zakończ" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Czas trwania" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Zgłaśnianie [Fade In]" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Wyciszanie [Fade out]" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Audycja jest pusta" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Nagrywaanie z wejścia liniowego" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Podgląd utworu" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Nie ma możliwości planowania poza audycją." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Przenoszenie 1 elementu" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Przenoszenie %s elementów" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Zapisz" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Anuluj" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Zaznacz wszystko" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Odznacz wszystkie" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Usuń wybrane elementy" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Przejdź do obecnie odtwarzanej ściezki" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Skasuj obecną audycję" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Dodaj/usuń zawartość" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "W użyciu" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Dysk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Sprawdź" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Otwórz" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrator" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "Prowadzący" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Menedżer programowy" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Gość" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Goście mają mozliwość:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Przeglądanie harmonogramu" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Przeglądanie zawartości audycji" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Prowadzący ma możliwość:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Zarządzać przypisaną sobie zawartością audycji" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Importować pliki mediów" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Tworzyć playlisty, smart blocki i webstreamy" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Zarządzać zawartością własnej biblioteki" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Przeglądać i zarządzać zawartością audycji" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Planować audycję" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Zarządzać całą zawartością biblioteki" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Administrator ma mozliwość:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Zarządzać preferencjami" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Zarządzać użytkownikami" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Zarządzać przeglądanymi katalogami" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Wyślij informację zwrotną" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Sprawdzać status systemu" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Przeglądać historię odtworzeń" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Sprawdzać statystyki słuchaczy" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Pokaż/ukryj kolumny" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Od {from} do {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Nd" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Pn" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Wt" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Śr" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Cz" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Pt" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "So" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Zamknij" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Godzina" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuta" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Gotowe" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Wybierz pliki" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Dodaj pliki do kolejki i wciśnij \"start\"" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Dodaj pliki" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Zatrzymaj przesyłanie" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Rozpocznij przesyłanie" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Dodaj pliki" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Dodano pliki %d%d" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "Nie dotyczy" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Przeciągnij pliki tutaj." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Błąd rozszerzenia pliku." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Błąd rozmiaru pliku." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Błąd liczenia plików" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Błąd inicjalizacji" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Błąd HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Błąd zabezpieczeń." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Błąd ogólny." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Błąd I/O" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Plik: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d plików oczekujących" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "URL nie istnieje bądź jest niewłaściwy" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Błąd: plik jest za duży:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Błąd: nieprawidłowe rozszerzenie pliku:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Skopiowano %srow%s do schowka" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Opis" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Włączone" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Wyłączone" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Przeglądasz starszą wersję %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nie można dodać ścieżek do bloków dynamicznych" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)" - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Utwory mogą być dodane tylko do smartblocku" - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista odtwarzania bez tytułu" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Smartblock bez tytułu" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Nieznana playlista" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Zaktualizowano preferencje." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Zaktualizowano ustawienia strumienia" - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "należy okreslić ścieżkę" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem z Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Retransmisja audycji %s z %s o %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Wybierz kursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Usuń kursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "audycja nie istnieje" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Użytkownik został dodany poprawnie!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Użytkownik został poprawnie zaktualizowany!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Ustawienia zostały poprawnie zaktualizowane!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Webstream bez nazwy" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Zapisano webstream" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Nieprawidłowe wartości formularzy" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Wprowadzony znak jest nieprawidłowy" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Należy określić dzień" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Należy określić czas" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Zastosuj własne uwierzytelnienie:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Nazwa użytkownika" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Hasło" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Pole nazwy użytkownika nie może być puste." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Pole hasła nie może być puste." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Nagrywać z wejścia liniowego?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Odtwarzać ponownie?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dni" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Typ powtarzania:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "tygodniowo" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "miesięcznie" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Wybierz dni:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Data zakończenia:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Bez czasu końcowego?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Data końcowa musi występować po dacie początkowej" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Kolor tła:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Kolor tekstu:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nazwa:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Audycja bez nazwy" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "Adres URL" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Rodzaj:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Opis:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "%value% nie odpowiada formatowi 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Czas trwania:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Strefa czasowa:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Powtarzanie?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Nie można utworzyć audycji w przeszłości" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Data lub czas zakończenia nie może być z przeszłości." - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Czas trwania nie może być mniejszy niż 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Czas trwania nie może wynosić 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Czas trwania nie może być dłuższy niż 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Nie można planować nakładających się audycji" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Szukaj Użytkowników:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Prowadzący:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Nazwa użytkownika:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Hasło:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potwierdź hasło:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Imię:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nazwisko:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Telefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Typ użytkownika:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Nazwa użytkownika musi być unikalna." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Data rozpoczęcia:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Tytuł:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Autor:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Rok:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Wydawnictwo:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Kompozytor:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dyrygent/Pod batutą:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Nastrój:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Prawa autorskie:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numer ISRC:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Strona internetowa:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Język:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Nazwa stacji" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo stacji:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Tydzień zaczynaj od" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Zaloguj" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Hasło" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Potwierdź nowe hasło" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Hasła muszą się zgadzać." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Nazwa użytkownika" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Resetuj hasło" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Aktualnie odtwarzane" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Wszystkie moje audycje:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Wybierz kryteria" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Częstotliwość próbkowania (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "godzin(y)" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minut(y)" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elementy" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dynamiczny" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statyczny" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Losowa kolejność odtwarzania" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Przemieszaj" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nie może być pusty oraz mniejszy od 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nie może być większy niż 24 godziny" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Wartość powinna być liczbą całkowitą" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Maksymalna liczba elementów do ustawienia to 500" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Należy wybrać kryteria i modyfikator" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Wartość musi być liczbą" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Wartość powinna być mniejsza niż 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Wartość powinna posiadać mniej niż %s znaków" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Wartość nie może być pusta" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Nazwa strumienia:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artysta - Tytuł" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Audycja - Artysta -Tytuł" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Nazwa stacji - Nazwa audycji" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Metadane Off Air" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Włącz normalizację głośności (Replay Gain)" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Modyfikator normalizacji głośności" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Włączony:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Typ strumienia:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Typ usługi:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanały:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Serwer" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Punkt montowania" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Nazwa" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "adres URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Katalog importu:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Katalogi obserwowane:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Nieprawidłowy katalog" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Pole jest wymagane i nie może być puste" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nie pasuje do formatu daty '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' zawiera mniej niż %min% znaków" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' zawiera więcej niż %max% znaków" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Hasła muszą się zgadzać" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue-in i cue-out mają wartość zerową." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Wartość cue-out nie może być większa niż długość pliku." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Wartość cue-in nie może być większa niż cue-out." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Wartość cue-out nie może być mniejsza od cue-in." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Wybierz kraj" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Harmonogram, który przeglądasz jest nieaktualny!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nie można dodawać plików do nagrywanych audycji." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Audycja %s została zaktualizowana wcześniej!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Wybrany plik nie istnieje!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Audycje mogą mieć maksymalną długość 24 godzin." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Nie można planować audycji nakładających się na siebie.\n" -"Uwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmisja z %s do %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Długość musi być większa niż 0 minut" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Długość powinna mieć postać \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL powinien mieć postać \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL powinien mieć 512 znaków lub mniej" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Nie znaleziono typu MIME dla webstreamu" - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Nazwa webstreamu nie może być pusta" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Nie można przeanalizować playlisty XSPF" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Nie można przeanalizować playlisty PLS" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Nie można przeanalizować playlisty M3U" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nie rozpoznano typu strumienia: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Przeglądaj metadane nagrania" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Edytuj audycję" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji." - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Nie można przenieść audycji archiwalnej" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Nie można przenieść audycji w przeszłość" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Odtwarzane" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "do" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s nie występuje na liście katalogów obserwowanych." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s jest już obserwowny." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s nie jest poprawnym katalogiem." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")" - -#~ msgid "(Required)" -#~ msgstr "(Wymagane)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Strona internetowa Twojej stacji)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "Informacje" - -#~ msgid "Add this show" -#~ msgstr "Dodaj audycję" - -#~ msgid "Additional Options" -#~ msgstr "Opcje dodatkowe" - -#~ msgid "Admin Password" -#~ msgstr "Hasło Administratora" - -#~ msgid "Admin User" -#~ msgstr "Login Administratora" - -#~ msgid "Advanced Search Options" -#~ msgstr "Zaawansowane opcje wyszukiwania" - -#~ msgid "All rights are reserved" -#~ msgstr "Wszelkie prawa zastrzeżone" - -#~ msgid "Audio Track" -#~ msgstr "Ścieżka audio" - -#~ msgid "Choose Days:" -#~ msgstr "Wybierz dni:" - -#~ msgid "Choose folder" -#~ msgstr "Wybierz folder" - -#~ msgid "City:" -#~ msgstr "Miasto:" - -#~ msgid "Country:" -#~ msgstr "Kraj:" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Uznanie autorstwa wg licencji Creative Commons " - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Użycie niekomercyjne wg Creative Commons " - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " - -#~ msgid "Cue In: " -#~ msgstr "Zgłaśnianie [Cue in]:" - -#~ msgid "Cue Out: " -#~ msgstr "Wyciszanie [Cue out]:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktualny folder importu:" - -#~ msgid "Default Length:" -#~ msgstr "Domyślna długość:" - -#~ msgid "Default License:" -#~ msgstr "Domyślna licencja:" - -#~ msgid "Disk Space" -#~ msgstr "Miejsce na dysku " - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Smart block dynamiczny" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Kryteria dynamicznego Smart Blocku " - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Zwiększ blok dynamiczny" - -#~ msgid "Expand Static Block" -#~ msgstr "Zwiększ bok statyczny" - -#~ msgid "Fade in: " -#~ msgstr "Zgłaśnianie [fade in]:" - -#~ msgid "Fade out: " -#~ msgstr "Wyciszanie [fade out]:" - -#~ msgid "File Path:" -#~ msgstr "Ścieżka pliku:" - -#~ msgid "File import in progress..." -#~ msgstr "Importowanie plików w toku..." - -#~ msgid "Filter History" -#~ msgstr "Filtruj Historię" - -#~ msgid "Find Shows" -#~ msgstr "Znajdź audycję" - -#~ msgid "First Name" -#~ msgstr "Imię" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s" - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "W celu uzyskania wiecej informacji, należy zapoznać się z %sAirtime Manual%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Metadane Icecast Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Jesli Airtime korzysta z routera bądź firewalla, może być konieczna konfiguracja przekierowywania portu i informacja w tym polu będzie nieprawidłowa. W takim wypadku należy dokonac ręcznej aktualizacji pola, tak żeby wyświetlił się prawidłowy host/ port/ mount, do którego mógłby podłączyć się prowadzący. Dopuszczalny zakres to 1024 i 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Numer Isrc:" - -#~ msgid "Last Name" -#~ msgstr "Nazwisko" - -#~ msgid "Length:" -#~ msgstr "Długość: " - -#~ msgid "Limit to " -#~ msgstr "Ogranicz(enie) do:" - -#~ msgid "Listen" -#~ msgstr "Słuchaj" - -#~ msgid "Live Stream Input" -#~ msgstr "Wejście Strumienia \"Na żywo\"" - -#~ msgid "Live stream" -#~ msgstr "Transmisja na żywo" - -#~ msgid "Logout" -#~ msgstr "Wyloguj" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Wygląda na to, że strona, której szukasz nie istnieje" - -#~ msgid "Manage Users" -#~ msgstr "Zarządzaj Użytkownikami" - -#~ msgid "Master Source" -#~ msgstr "Źródło Nadrzędne" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Punkt montowania nie może być pusty dla serwera Icecast." - -#~ msgid "New User" -#~ msgstr "Nowy Użytkownik" - -#~ msgid "New password" -#~ msgstr "Nowe hasło" - -#~ msgid "Next:" -#~ msgstr "Następny:" - -#~ msgid "No open playlist" -#~ msgstr "Brak otwartej listy odtwarzania" - -#~ msgid "No webstream" -#~ msgstr "Brak webstreamu" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "Na antenie" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Możliwe są tylko cyfry." - -#~ msgid "Original Length:" -#~ msgstr "Oryginalna długość:" - -#~ msgid "Page not found!" -#~ msgstr "Nie znaleziono strony!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Playlist Contents: " -#~ msgstr "Zawartość listy odtwarzania:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Płynne przenikanie utworów na liście dotwarzania" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach" - -#~ msgid "Please upgrade to " -#~ msgstr "Zaktualizuj na" - -#~ msgid "Port cannot be empty." -#~ msgstr "Port nie może być pusty." - -#~ msgid "Previous:" -#~ msgstr "Poprzedni:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Zarządzający programowi mają możliwość:" - -#~ msgid "Register Airtime" -#~ msgstr "Zarejestruj Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "Usuń obserwowany katalog." - -#~ msgid "Repeat Days:" -#~ msgstr "Dni powtarzania:" - -#~ msgid "Sample Rate:" -#~ msgstr "Częstotliwość próbkowania:" - -#~ msgid "Save playlist" -#~ msgstr "Zapisz listę odtwarzania" - -#~ msgid "Select stream:" -#~ msgstr "Wybierz strumień:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Serwer nie może być pusty." - -#~ msgid "Set" -#~ msgstr "Ustaw" - -#~ msgid "Share" -#~ msgstr "Podziel się" - -#~ msgid "Show Source" -#~ msgstr "Źródło audycji" - -#~ msgid "Show me what I am sending " -#~ msgstr "Pokazuj, co wysyłam" - -#~ msgid "Shuffle playlist" -#~ msgstr "Wymieszaj listę odtwarzania" - -#~ msgid "Source Streams" -#~ msgstr "Strumienie źródłowe" - -#~ msgid "Static Smart Block" -#~ msgstr "Smart block statyczny" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Zawartość statycznego Smart Blocka:" - -#~ msgid "Station Description:" -#~ msgstr "Opis stacji:" - -#~ msgid "Station Web Site:" -#~ msgstr "Strona internetowa stacji:" - -#~ msgid "Stream " -#~ msgstr "Strumień" - -#~ msgid "Stream Settings" -#~ msgstr "Ustawienia strumienia" - -#~ msgid "Stream URL:" -#~ msgstr "URL strumienia:" - -#~ msgid "Stream URL: " -#~ msgstr "URL strumienia:" - -#~ msgid "Style" -#~ msgstr "Styl" - -#~ msgid "Support Feedback" -#~ msgstr "Informacja zwrotna" - -#~ msgid "Support setting updated." -#~ msgstr "Zaktualizowano ustawienia wsparcia." - -#~ msgid "Terms and Conditions" -#~ msgstr "Zasady i warunki" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Pożądana długość bloku nie zostanie osiągnięta jesli airtime nie znajdzie wystarczającej liczby oryginalnych ścieżek spełniających kryteria wyszukiwania. Włącz tę opcję jesli chcesz, żeby ścieżki zostały wielokrotnie dodane do smart blocku." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Utwór w domenie publicznej" - -#~ msgid "This version is no longer supported." -#~ msgstr "Ta wersja nie jest już obsługiwana" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ta wersja będzie wkrótce przestarzała." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s" - -#~ msgid "Track:" -#~ msgstr "Utwór:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Wpisz znaki, które widzisz na obrazku poniżej." - -#~ msgid "Update Required" -#~ msgstr "Wymagana aktualizacja" - -#~ msgid "Update show" -#~ msgstr "Aktualizuj audycję" - -#~ msgid "User Type" -#~ msgstr "Typ użytkownika" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "Co" - -#~ msgid "When" -#~ msgstr "Kiedy" - -#~ msgid "Who" -#~ msgstr "Kto" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Nie obserwujesz w tej chwili żadnych folderów" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Wymagana jest akceptacja polityki prywatności." - -#~ msgid "Your trial expires in" -#~ msgstr "Twoja próba wygasa" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "pliki spełniają kryteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "maksymalna głośność" - -#~ msgid "mute" -#~ msgstr "wycisz" - -#~ msgid "next" -#~ msgstr "następny" - -#~ msgid "pause" -#~ msgstr "pauza" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "Wprowadź czas w sekundach '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "poprzedni" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "włącz głos" diff --git a/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po deleted file mode 100644 index 28263acf7c..0000000000 --- a/webapp/src/locale/po/pt_BR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4529 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Felipe Thomaz Pedroni, 2014 -# Pedro Garbellini da Silva , 2014 -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2023-03-26 18:38+0000\n" -"Last-Translator: Felipe Nogueira \n" -"Language-Team: Portuguese (Brazil) \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.17-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "O ano %s deve estar compreendido no intervalo entre 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s não é uma data válida" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s não é um horário válido" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Inglês" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Catalão" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Tcheco" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Alemão" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Grego" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Espanhol" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Persa" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Francês" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Italiano" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Hebraíco" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japonês" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Português" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Chinês" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Usar estação padrão" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "Seviço de API do LibreTime" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Calendário" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Reprodutor" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Configurações" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Geral" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Meu perfil" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Usuários" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Fluxos" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Estado" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Histórico da Programação" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Estatísticas de Ouvintes" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Ajuda" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Iniciando" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Manual do Usuário" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Contribua para o LibreTime" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "O que há de novo?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Você não tem permissão para acessar esta funcionalidade." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Você não tem permissão para acessar esta funcionalidade." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Requisição inválida. Parâmetro não informado." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Requisição inválida. Parâmetro informado é inválido." - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Você não tem permissão para desconectar a fonte." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Não há fonte conectada a esta entrada." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Você não tem permissão para alternar entre as fontes." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Página não encontrada." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "A ação solicitada não é suportada." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Você não tem permissão para acessar este recurso." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "Podcast %s" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s não encontrado" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Ocorreu algo errado." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Visualizar" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Adicionar à Lista" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Adicionar ao Bloco" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Excluir" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Editar..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Download" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Duplicar Lista" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Nenhuma ação disponível" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Você não tem permissão para excluir os itens selecionados." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Não foi possível apagar arquivo(s)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Cópia de %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Player de Áudio" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Gravando:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Fluxo Mestre" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Fluxo Ao Vivo" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Nada Programado" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Programa em Exibição:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Agora" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Você está executando a versão mais recente" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nova versão disponível:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Adicionar a esta lista de reprodução" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Adiconar a este bloco" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Adicionando 1 item" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Adicionando %s items" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Você pode adicionar somente faixas a um bloco inteligente." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Por favor selecione um posição do cursor na linha do tempo." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Você não adicionou nenhuma playlist" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "Você não adicionou nenhum podcast" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Adicionar" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Novo" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Editar" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Publicar" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Remover" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Editar Metadados" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Adicionar ao programa selecionado" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Selecionar" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Selecionar esta página" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Desmarcar esta página" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Desmarcar todos" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Agendado" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Título" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Criador" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Álbum" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bitrate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Compositor" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Maestro" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Copyright" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Convertido por" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Gênero" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Legenda" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Idioma" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Última Ateração" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Última Execução" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Duração" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Humor" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Prorietário" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Ganho de Reprodução" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Taxa de Amostragem" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Número de Faixa" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Adicionado" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Ano" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Carregando..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Todos" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Arquivos" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Listas" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Blocos" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Fluxos" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Tipo Desconhecido:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Você tem certeza que deseja excluir o item selecionado?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Upload em andamento..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Obtendo dados do servidor..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Importar" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Código do erro:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Mensagem de erro:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "A entrada deve ser um número positivo" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "A entrada deve ser um número" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "A entrada deve estar no formato yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "A entrada deve estar no formato hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Meu Podcast" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "por favor informe o tempo no formato '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Seu navegador não suporta a execução deste tipo de arquivo:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Não é possível o preview de blocos dinâmicos" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Limitar em:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "A lista foi salva" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "A lista foi embaralhada" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Número de Ouvintes em %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Lembrar-me dentro de uma semana" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Não me lembrar novamente" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Sim, quero colaborar com o Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "A imagem precisa conter extensão jpg, jpeg, png ou gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "O bloco foi embaralhado" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "O bloco foi gerado e o criterio foi salvo" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "O bloco foi salvo" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Processando..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Selecionar modificador" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "contém" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "não contém" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "é" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "não é" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "começa com" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "termina com" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "é maior que" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "é menor que" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "está no intervalo" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Gerar" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Selecione o Diretório de Armazenamento" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Selecione o Diretório para Monitoramento" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Tem certeza de que deseja alterar o diretório de armazenamento? \n" -"Isto irá remover os arquivos de sua biblioteca Airtime!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Gerenciar Diretórios de Mídia" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Tem certeza que deseja remover o diretório monitorado?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "O caminho está inacessível no momento." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Conectado ao servidor de fluxo" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "O fluxo está desabilitado" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Obtendo informações do servidor..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Não é possível conectar ao servidor de streaming" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\"." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nenhum resultado encontrado" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Defina uma autenticação personalizada que funcionará apenas neste programa." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "A instância deste programa não existe mais!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Programa" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "O programa está vazio" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Obtendo dados do servidor..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Este programa não possui conteúdo agendado." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Este programa não possui duração completa de conteúdos." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Janeiro" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Fevereiro" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Março" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Abril" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Maio" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Junho" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Julho" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Agosto" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Setembro" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Outubro" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Novembro" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Dezembro" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Fev" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Abr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Ago" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Set" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Out" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dez" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Domingo" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Segunda" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Terça" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Quarta" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Quinta" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Sexta" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Sábado" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Dom" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Seg" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Ter" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Qua" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Qui" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Sex" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sab" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Cancelar Programa em Execução?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Parar gravação do programa em execução?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Conteúdos do Programa" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Remover todos os conteúdos?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Excluir item(ns) selecionado(s)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Início" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Fim" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Duração" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue Entrada" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Saída" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade Entrada" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Saída" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Programa vazio" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Gravando a partir do Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Prévia da faixa" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Não é possível realizar agendamento fora de um programa." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Movendo 1 item" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Movendo %s itens" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Salvar" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancelar" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Selecionar todos" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Selecionar nenhum" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Remover seleção de itens agendados" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Saltar para faixa em execução" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Cancelar programa atual" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Abrir biblioteca para adicionar ou remover conteúdo" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Adicionar / Remover Conteúdo" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "em uso" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disco" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Explorar" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Abrir" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrador" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Gerente de Programação" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Visitante" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Visitantes podem fazer o seguinte:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Visualizar agendamentos" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Visualizar conteúdo dos programas" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs podem fazer o seguinte:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Gerenciar o conteúdo de programas delegados a ele" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Importar arquivos de mídia" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Criar listas de reprodução, blocos inteligentes e fluxos" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Gerenciar sua própria blblioteca de conteúdos" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Visualizar e gerenciar o conteúdo dos programas" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Agendar programas" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Gerenciar bibliotecas de conteúdo" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Administradores podem fazer o seguinte:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Gerenciar configurações" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Gerenciar usuários" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Gerenciar diretórios monitorados" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Enviar informações de suporte" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Visualizar estado do sistema" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Acessar o histórico da programação" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Ver estado dos ouvintes" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Exibir / ocultar colunas" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "De {from} até {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "yyy-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "khz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Do" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Se" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Te" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Qu" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Qu" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Se" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Sa" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Fechar" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Hora" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuto" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Concluído" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Selecionar arquivos" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Adicione arquivos para a fila de upload e pressione o botão iniciar " - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Adicionar Arquivos" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Parar Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Iniciar Upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Adicionar arquivos" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d arquivos importados" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Arraste arquivos nesta área." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Erro na extensão do arquivo." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Erro no tamanho do arquivo." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Erro na contagem dos arquivos." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Erro de inicialização." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Erro HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Erro de segurança." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Erro genérico." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Erro de I/O." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Arquivos: %s." - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d arquivos adicionados à fila." - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Arquivo: %f, tamanho: %s, tamanho máximo: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "URL de upload pode estar incorreta ou inexiste." - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Erro: Arquivo muito grande:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Erro: Extensão de arquivo inválida." - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s linhas%s copiadas para a área de transferência" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Descrição" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Ativo" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Inativo" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Usuário ou senha inválidos. Tente novamente." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Você está vendo uma versão obsoleta de %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Você não pode adicionar faixas a um bloco dinâmico" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Você não tem permissão para excluir os %s(s) selecionados." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Você pode somente adicionar faixas um bloco inteligente." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista Sem Título" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloco Sem Título" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Lista Desconhecida" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Preferências atualizadas." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Preferências de fluxo atualizadas." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "o caminho precisa ser informado" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problemas com o Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Retransmissão do programa %s de %s as %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Selecione o cursor" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Remover o cursor" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "programa inexistente" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Usuário adicionado com sucesso!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Usuário atualizado com sucesso!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Configurações atualizadas com sucesso!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Fluxo Sem Título" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Fluxo gravado." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Valores do formulário inválidos." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Caracter inválido informado" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "O dia precisa ser especificado" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "O horário deve ser especificado" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "É preciso aguardar uma hora para retransmitir" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Usar Autenticação Personalizada:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Definir Usuário:" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Definir Senha:" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "O usuário não pode estar em branco." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "A senha não pode estar em branco." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Gravar a partir do Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Retransmitir?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dias" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Tipo de Reexibição:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "semanal" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mensal" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Selecione os Dias:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Data de Fim:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sem fim?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "A data de fim deve ser posterior à data de início" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Cor de Fundo:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Cor da Fonte:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nome:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Programa Sem Título" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Gênero:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Descrição:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' não corresponde ao formato 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Duração:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Fuso Horário:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Reexibir?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Não é possível criar um programa no passado." - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Não é possível alterar o início de um programa que está em execução" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Data e horário finais não podem ser definidos no passado." - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Não pode ter duração < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Não pode ter duração 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Não pode ter duração maior que 24 horas" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Não é permitido agendar programas sobrepostos" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Procurar Usuários:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJs:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Usuário:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Senha:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Confirmar Senha:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Primeiro nome:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Último nome:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Celular:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Perfil do Usuário:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Usuário já existe." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Data de Início:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Título:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Criador:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Álbum:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Ano:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Legenda:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Compositor:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Maestro:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Humor:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Número ISRC:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Idioma:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Nome da Estação" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo da Estação:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Semana Inicia Em" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Acessar" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Senha" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirmar nova senha" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "A senha de confirmação não confere." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Usuário" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Redefinir senha" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Tocando agora" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Meus Programas:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Selecione um critério" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Taxa de Amostragem (khz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "horas" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minutos" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "itens" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinâmico" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Estático" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Gerar conteúdo da lista e salvar critério" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Embaralhar conteúdo da lista" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Embaralhar" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "O limite não pode ser vazio ou menor que 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "O limite não pode ser maior que 24 horas" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "O valor deve ser um número inteiro" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "O número máximo de itens é 500" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Você precisa selecionar Critério e Modificador " - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "A duração deve ser informada no formato '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "O valor deve ser numérico" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "O valor precisa ser menor que 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "O valor deve conter no máximo %s caracteres" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "O valor não pode estar em branco" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Legenda do Fluxo:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Artista - Título" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Programa - Artista - Título" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Nome da Estação - Nome do Programa" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Metadados Off Air" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Habilitar Ganho de Reprodução" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Modificador de Ganho de Reprodução" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Habilitado:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Tipo de Fluxo:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Tipo de Serviço:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Canais:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Servidor" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Porta" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Ponto de Montagem" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Nome" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Diretório de Importação:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Diretórios Monitorados: " - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Não é um diretório válido" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Valor é obrigatório e não poder estar em branco." - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "%value%' não é um enderçeo de email válido" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' não corresponde a uma data válida '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is maior que o número máximo %max% de caracteres" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Senhas não conferem" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Cue de entrada e saída são nulos." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "O ponto de saída não pode ser maior que a duração do arquivo" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Selecione o País" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "A programação que você está vendo está desatualizada! (programação incompatível)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "A programação que você está vendo está desatualizada! (instância incompatível)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "A programação que você está vendo está desatualizada!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Você não tem permissão para agendar programa %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Você não pode adicionar arquivos para gravação de programas." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "O programa %s terminou e não pode ser agendado." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "O programa %s foi previamente atualizado!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Um dos arquivos selecionados não existe!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Os programas podem ter duração máxima de 24 horas." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Não é possível agendar programas sobrepostos.\n" -"Nota: Redimensionar um programa repetitivo afeta todas as suas repetições." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmissão de %s a partir de %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "A duração precisa ser maior que 0 minuto" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "A duração deve ser informada no formato \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "A URL deve estar no formato \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "A URL de conter no máximo 512 caracteres" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Nenhum tipo MIME encontrado para o fluxo." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "O nome do fluxo não pode estar vazio" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Não foi possível analisar a lista XSPF" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Não foi possível analisar a lista PLS" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Não foi possível analisar a lista M3U" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo de fluxo não reconhecido: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Visualizar Metadados do Arquivo Gravado" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Editar Programa" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Não é possível arrastar e soltar programas repetidos" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Não é possível mover um programa anterior" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Não é possível mover um programa anterior" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "O programa foi excluído porque a gravação prévia não existe!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "É necessário aguardar 1 hora antes de retransmitir." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Executado" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "para" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contém o diretório monitorado:% s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s não existe na lista de diretórios monitorados." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s já está monitorado." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s está contido dentro de diretório já monitorado: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s não é um diretório válido." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)" - -#~ msgid "(Required)" -#~ msgstr "(Obrigatório)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(O website de sua estação de rádio)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(somente para efeito de verificação, não será publicado)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss,t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stéreo" - -#~ msgid "About" -#~ msgstr "Sobre" - -#~ msgid "Add this show" -#~ msgstr "Adicionar este programa" - -#~ msgid "Additional Options" -#~ msgstr "Opções Adicionais" - -#~ msgid "Admin Password" -#~ msgstr "Senha do Administrador" - -#~ msgid "Admin User" -#~ msgstr "Usuário Administrador" - -#~ msgid "Advanced Search Options" -#~ msgstr "Opções da Busca Avançada" - -#~ msgid "All rights are reserved" -#~ msgstr "Todos os direitos são reservados" - -#~ msgid "Audio Track" -#~ msgstr "Faixa de Áudio" - -#~ msgid "Choose Days:" -#~ msgstr "Selecione os Dias:" - -#~ msgid "Choose folder" -#~ msgstr "Selecione o diretório" - -#~ msgid "City:" -#~ msgstr "Cidade:" - -#~ msgid "Country:" -#~ msgstr "País:" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue entrada:" - -#~ msgid "Cue Out: " -#~ msgstr "Cue Saída:" - -#~ msgid "Current Import Folder:" -#~ msgstr "Diretório de Importação Atual:" - -#~ msgid "Default Length:" -#~ msgstr "Duração Padrão:" - -#~ msgid "Default License:" -#~ msgstr "Licença Padrão:" - -#~ msgid "Disk Space" -#~ msgstr "Espaço em Disco" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Bloco Inteligente Dinâmico" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Critério para Bloco Inteligente Dinâmico:" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expandir Bloco Dinâmico" - -#~ msgid "Expand Static Block" -#~ msgstr "Expandir Bloco Estático" - -#~ msgid "Fade in: " -#~ msgstr "Fade de entrada" - -#~ msgid "Fade out: " -#~ msgstr "Fade de saída" - -#~ msgid "File Path:" -#~ msgstr "Caminho do Arquivo:" - -#~ msgid "File import in progress..." -#~ msgstr "Importação de arquivo em progresso..." - -#~ msgid "Filter History" -#~ msgstr "Histórico de Filtros" - -#~ msgid "Find Shows" -#~ msgstr "Encontrar Programas" - -#~ msgid "First Name" -#~ msgstr "Primeiro Nome" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Para mais informações, leia o %sManual do Airtime%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Metadados Icecast Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Se o Airtime estiver atrás de um roteador ou firewall, pode ser necessário configurar o redirecionamento de portas e esta informação de campo ficará incorreta. Neste caso, você terá de atualizar manualmente este campo para que ele exiba o corretamente o host / porta / ponto de montagem necessários para seu DJ para se conectar. O intervalo permitido é entre 1024 e 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Número Isrc:" - -#~ msgid "Last Name" -#~ msgstr "Último Nome" - -#~ msgid "Length:" -#~ msgstr "Duração:" - -#~ msgid "Limit to " -#~ msgstr "Limitar em" - -#~ msgid "Listen" -#~ msgstr "Ouvir" - -#~ msgid "Live Stream Input" -#~ msgstr "Fluxo de entrada ao vivo" - -#~ msgid "Live stream" -#~ msgstr "Fluxo ao vivo" - -#~ msgid "Logout" -#~ msgstr "Sair" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "A página que você procura não existe!" - -#~ msgid "Manage Users" -#~ msgstr "Gerenciar Usuários" - -#~ msgid "Master Source" -#~ msgstr "Master" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Ponto de montagem deve ser informada em servidor Icecast." - -#~ msgid "New User" -#~ msgstr "Novo Usuário" - -#~ msgid "New password" -#~ msgstr "Nova senha" - -#~ msgid "Next:" -#~ msgstr "Próximo:" - -#~ msgid "No open playlist" -#~ msgstr "Nenhuma lista aberta" - -#~ msgid "No webstream" -#~ msgstr "Nenhum fluxo web" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "NO AR" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Somente números são permitidos." - -#~ msgid "Original Length:" -#~ msgstr "Duração Original:" - -#~ msgid "Page not found!" -#~ msgstr "Página não encontrada!" - -#~ msgid "Phone:" -#~ msgstr "Fone:" - -#~ msgid "Playlist Contents: " -#~ msgstr "Conteúdos da Lista de Reprodução:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Crossfade da Lista" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Por favor informe e confirme sua nova senha nos campos abaixo." - -#~ msgid "Please upgrade to " -#~ msgstr "Por favor, atualize para" - -#~ msgid "Port cannot be empty." -#~ msgstr "Porta não pode estar em branco." - -#~ msgid "Previous:" -#~ msgstr "Anterior:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Gerentes de Programação podem fazer o seguinte:" - -#~ msgid "Remove watched directory" -#~ msgstr "Remover diretório monitorado" - -#~ msgid "Repeat Days:" -#~ msgstr "Dias para reexibir:" - -#~ msgid "Sample Rate:" -#~ msgstr "Taxa de Amostragem:" - -#~ msgid "Save playlist" -#~ msgstr "Salvar Lista" - -#~ msgid "Select stream:" -#~ msgstr "Selecionar fluxo:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Servidor não pode estar em branco." - -#~ msgid "Set" -#~ msgstr "Definir" - -#~ msgid "Share" -#~ msgstr "Compartilhar" - -#~ msgid "Show Source" -#~ msgstr "Programa" - -#~ msgid "Show me what I am sending " -#~ msgstr "Mostrar quais informações estou enviando" - -#~ msgid "Shuffle playlist" -#~ msgstr "Embaralhar Lista" - -#~ msgid "Source Streams" -#~ msgstr "Fontes de Fluxo" - -#~ msgid "Static Smart Block" -#~ msgstr "Bloco Inteligente Estático" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Conteúdo do Bloco Inteligente Estático:" - -#~ msgid "Station Description:" -#~ msgstr "Descrição da Estação:" - -#~ msgid "Station Web Site:" -#~ msgstr "Website da Estação:" - -#~ msgid "Stream " -#~ msgstr "Fluxo" - -#~ msgid "Stream Settings" -#~ msgstr "Configurações de Fluxo" - -#~ msgid "Stream URL:" -#~ msgstr "URL do Fluxo:" - -#~ msgid "Stream URL: " -#~ msgstr "URL do Fluxo:" - -#~ msgid "Style" -#~ msgstr "Aparência" - -#~ msgid "Support Feedback" -#~ msgstr "Informações de Suporte" - -#~ msgid "Support setting updated." -#~ msgstr "Configurações de suporte atualizadas." - -#~ msgid "Terms and Conditions" -#~ msgstr "Termos e Condições" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "A duração desejada do bloco não será completada se o Airtime não localizar faixas únicas suficientes que correspondem aos critérios informados. Ative esta opção se você deseja permitir que as mesmas faixas sejam adicionadas várias vezes num bloco inteligente." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:" - -#~ msgid "The work is in the public domain" -#~ msgstr "O trabalho é de domínio público" - -#~ msgid "This version is no longer supported." -#~ msgstr "Esta versão não é mais suportada." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Esta versão ficará obsoleta em breve." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Faixa:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Digite os caracteres que você vê na imagem abaixo." - -#~ msgid "Update Required" -#~ msgstr "Atualização Necessária" - -#~ msgid "Update show" -#~ msgstr "Atualizar programa" - -#~ msgid "User Type" -#~ msgstr "Tipo de Usuário" - -#~ msgid "Web Stream" -#~ msgstr "Fluxo Web" - -#~ msgid "What" -#~ msgstr "O que" - -#~ msgid "When" -#~ msgstr "Quando" - -#~ msgid "Who" -#~ msgstr "Quem" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Você não está monitorando nenhum diretório." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Você precisa concordar com a política de privacidade." - -#~ msgid "Your trial expires in" -#~ msgstr "Seu período de teste termina em" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "arquivos correspondem ao critério" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "volume máximo" - -#~ msgid "mute" -#~ msgstr "Mudo" - -#~ msgid "next" -#~ msgstr "próximo" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "por favor informe o tempo em segundos '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "anterior" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "retirar mudo" diff --git a/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po b/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po deleted file mode 100644 index a3d6b8b386..0000000000 --- a/webapp/src/locale/po/ru_RU/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5135 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Andrey Podshivalov, 2014-2015 -# Andrey Podshivalov, 2014 -# Andrey Podshivalov, 2014 -# Sourcefabric , 2012 -# Андрей Подшивалов, 2014 -# Yaroslav Grebnev , 2017. #zanata -# Yuriy , 2017. #zanata -# Stepan Curuci , 2020 #Poedit -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2022-06-05 10:17+0000\n" -"Last-Translator: МАН69К \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.13-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "%s год должен быть в пределах 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s - %s - %s недопустимая дата" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s недопустимое время" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Английский" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Афар" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Абхазский" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Африкаанс" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Амхарский" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Арабский" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Ассамский" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Аймара" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Азербаджанский" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Башкирский" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Белорусский" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Болгарский" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Бихари" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Бислама" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Бенгали" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Тибетский" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Бретонский" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Каталанский" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Корсиканский" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Чешский" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Вэльский" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Данский" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Немецкий" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Бутан" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Греческий" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Эсперанто" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Испанский" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Эстонский" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Басков" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Персидский" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Финский" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Фиджи" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Фарси" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Французский" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Фризский" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Ирландский" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Шотландский" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Галицийский" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Гуананский" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Гуджарати" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Науса" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Хинди" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Хорватский" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Венгерский" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Армянский" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Интернациональный" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Интерлинг" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Инупиак" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Индонезийский" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Исландский" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Итальянский" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Иврит" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Японский" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Иудейский" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Яванский" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Грузинский" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Казахский" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Гренландский" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Камбоджийский" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Каннадский" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Корейский" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Кашмирский" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Курдский" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Киргизский" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Латынь" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Лингала" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Лаосский" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Литовский" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Латвийский" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Малайзийский" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Маори" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Македонский" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Малаямский" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Монгольский" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Молдавский" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Маратхи" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Малайзийский" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Мальтийский" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Бирманский" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Науру" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Непальский" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Немецкий" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Норвежский" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Окситанский" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Афан)/Оромур/Ория" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Панджаби Эм Си" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Польский" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Пушту" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Португальский" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Кечуа" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Рэето-романс" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Кирунди" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Румынский" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Русский" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Киньяруанда" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Санскрит" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Синди" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Сангро" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Сербский" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Синигальский" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Словацкий" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Славянский" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Самоанский" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Шона" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Сомалийский" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Албанский" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Сербский" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Сисвати" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Сесото" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Сунданский" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Шведский" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Суахили" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Тамильский" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Телугу" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Таджикский" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Тайский" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Тигринья" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Туркменский" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Тагальский" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Сетсвана" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Тонга" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Турецкий" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Тсонга" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Татарский" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Тви" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Украинский" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Урду" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Узбекский" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "Въетнамский" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Волапукский" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Волоф" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Хоса" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Юрубский" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Китайский" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Зулу" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Время станции по умолчанию" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Нажмите на кнопку «Новая Программа» и заполните необходимые поля." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу»." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Выберите следующую Программу и нажмите «Запланировать Треки»" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "Служба медиа анализатора LibreTime" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "Проверьте, что служба libretime-analyzer правильно установлена в " - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr " а также убедитесь, что она запущена " - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "Если нет - попробуйте запустить" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "Служба воспроизведения LibreTime" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "Проверьте, что служба libretime-playout правильно установлена в " - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "Служба Liquidsoap LibreTime" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "Проверьте, что служба libretime-liquidsoap правильно установлена в " - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "Служба Celery Task LibreTime" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Страница Радио" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Календарь" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Виджеты" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Плеер" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Расписание программ" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Настройки" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Основные" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Мой профиль" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Пользователи" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Типы треков" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Аудио потоки" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Статус системы" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Аналитика" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "История воспроизведения треков" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Шаблоны истории" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Статистика по слушателям" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Статистика прослушиваний" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Справка" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "С чего начать" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Руководство пользователя" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Получить справку онлайн" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Что нового?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Вы не имеете доступа к этому ресурсу." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Вы не имеете доступа к этому ресурсу. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Файл не существует в %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Неверный запрос. Параметр «режим» не прошел." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Неверный запрос. Параметр «режим» является недопустимым" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "У вас нет прав отсоединить источник." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Нет источника, подключенного к этому входу." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "У вас нет прав для переключения источника." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Чтобы настроить и использовать внешний плеер вам нужно:

\n" -" 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n" -" 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n" -" Включить Публичный API для LibreTime в разделе Настройки -> Основные" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n" -" Включить Публичный API для LibreTime в разделе Настройки -> Основные" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Страница не найдена." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "Запрашиваемое действие не поддерживается." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "У вас нет доступа к данному ресурсу." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Произошла внутренняя ошибка." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Подкаст" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "Ни одного трека пока не опубликовано." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s не найден" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Что-то пошло не так." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Прослушать" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Добавить в Плейлист" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Добавить в Смарт-блок" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Удалить" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Редактировать..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Загрузка" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Дублировать Плейлист" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Дублировать Смарт-блок" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Нет доступных действий" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "У вас нет разрешения на удаление выбранных объектов." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Нельзя удалить запланированный файл." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Нельзя удалить файл(ы)" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Копия %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Аудио плеер" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Что-то пошло не так!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Запись:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Master-Steam" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Live Stream" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Ничего нет" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Текущая Программа:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Играет" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Вы используете последнюю версию" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Доступна новая версия: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "У вас установлена предварительная версия LibreTime." - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Доступен патч обновлений для текущей версии LibreTime." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Доступно обновление функций для текущей версии LibreTime." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Доступно важное обновление для текущей версии LibreTime." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Добавить в текущий Плейлист" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Добавить в текущий Смарт-блок" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Добавление одного элемента" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Добавление %s элементов" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Вы можете добавить только треки в Смарт-блоки." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Переместите курсор по временной шкале." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "Вы не добавили ни одного трека" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Вы не добавили ни одного Плейлиста" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "У вас не добавлено ни одного подкаста" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "Вы не добавили ни одного Смарт-блока" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "Вы не добавили ни одного веб-потока" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Узнать больше о треках" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Узнать больше о Плейлистах" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "Узнать больше о Подкастах" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Узнать больше об Смарт-блоках" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Узнать больше о веб-потоках" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Выберите «Новый» для создания." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Добавить" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Новый" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Редактировать" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "Добавить в расписание" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "Добавить к следующему шоу" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "Добавить к текущему шоу" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Опубликовать" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Удалить" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Править мета-данные" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Добавить в выбранную Программу" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Выбрать" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Выбрать текущую страницу" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Отменить выбор текущей страницы" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Отменить все выделения" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Вы действительно хотите удалить выбранные элементы?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Запланирован" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Треки" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Плейлист" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Название" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Автор" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Альбом" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Битрейт" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Композитор" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Дирижер" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Копирайт" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Закодировано" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Жанр" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Метка" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Язык" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Изменен" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Последнее проигрывание" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Длительность" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Настроение" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Владелец" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Номер трека" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Загружено" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Вебсайт" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Год" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Загрузка..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Все" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Файлы" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Плейлисты" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Смарт-блоки" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Веб-потоки" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Неизвестный тип: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Вы действительно хотите удалить выбранный элемент?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Загружается ..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Получение данных с сервера ..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Импорт" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "Импортировано?" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Посмотреть" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Код ошибки: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Сообщение об ошибке: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Ввод должен быть положительным числом" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Ввод должен быть числом" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Ввод должен быть в формате: гггг-мм-дд" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Ввод должен быть в формате: чч:мм:сс" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Мой Подкаст" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Открыть медиа-построитель" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "пожалуйста, установите время '00:00:00.0'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Пожалуйста, укажите допустимое время в секундах. Например: 0.5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Ваш браузер не поддерживает воспроизведения данного типа файлов: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Динамический Блок не подлежит предпросмотру" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Ограничить до: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Плейлист сохранен" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Плейлист перемешан" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Количество слушателей %s : %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Напомнить мне через одну неделю" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Никогда не напоминать" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Да, помочь LibreTime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Изображение должно быть в формате: jpg, jpeg, png или gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке." - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Смарт-блок перемешан" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Смарт-блок создан и критерии сохранены" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Смарт-блок сохранен" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Подождите..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Выберите модификатор" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "содержит" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "не содержит" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "является" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "не является" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "начинается с" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "заканчивается" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "больше, чем" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "меньше, чем" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "в диапазоне" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Сгенерировать" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Выберите папку хранения" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Выберите папку для просмотра" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Вы уверены, что хотите изменить папку хранения? \n" -" Файлы из вашей Библиотеки будут удалены!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Управление папками медиа-файлов" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Вы уверены, что хотите удалить просматриваемую папку?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Этот путь в настоящий момент недоступен." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Подключено к потоковому серверу" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Поток отключен" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Получение информации с сервера ..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Не удалось подключиться к потоковому серверу" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151." - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source»." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Внимание: Вы не можете изменить данное поле, пока Программа в эфире" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Не найдено" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Укажите пользователя, который будет работать только в этой Программе." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Программы больше не существует!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Внимание: Программы не могут быть пересвязаны" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Программа" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Пустая Программа" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1 мин" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5 мин" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10 мин" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15 мин" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30 мин" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60 мин" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Получение данных с сервера ..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "В этой Программе нет запланированного контента." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Данная Программа не до конца заполнена контентом." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Январь" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Февраль" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Март" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Апрель" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Май" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Июнь" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Июль" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Август" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Сентябрь" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Октябрь" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Ноябрь" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Декабрь" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Янв" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Фев" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Март" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Апр" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Июн" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Июл" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Авг" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Сент" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Окт" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Нояб" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Дек" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Сегодня" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "День" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Неделя" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Месяц" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Воскресенье" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Понедельник" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Вторник" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Среда" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Четверг" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Пятница" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Суббота" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Вс" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Пн" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Вт" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Ср" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Чт" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Пт" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Сб" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Отменить эту Программу?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Остановить запись текущей Программы?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Оk" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Содержимое Программы" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Удалить все содержимое?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Удалить выбранные элементы?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Начало" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Конец" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Длительность" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Фильтрация " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " из " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " записи" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "Нет Программ, запланированных в указанный период времени." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Начало звучания" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Окончание звучания" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Сведение" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Затухание" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Программа пуста" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Запись с линейного входа" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Предпросмотр трека" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Нельзя планировать вне рамок Программы." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Перемещение одного элемента" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Перемещение %s элементов" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Сохранить" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Отменить" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Редактор затухания" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Редактор начала трека" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Выбрать все" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Снять выделения" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Обрезать пересекающиеся Программы" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Удалить выбранные запланированные элементы" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Перейти к текущей проигрываемой дорожке" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "Перейти к текущему треку" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Отмена текущей Программы" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Открыть Библиотеку, чтобы добавить или удалить содержимое" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Добавить/удалить содержимое" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "используется" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Диск" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Посмотреть" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Открыть" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Админ" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "Диджей" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Менеджер" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Гость" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Гости могут следующее:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Просматривать расписание" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Просматривать содержимое программы" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJ может:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "- Управлять контентом назначенной ему Программы;" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Импортировать медиа-файлы" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Создавать плейлисты, смарт-блоки и вебстримы" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Управлять содержимым собственной библиотеки" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "Менеджеры Программ могут следующее:" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Просматривать и управлять содержимым программы" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Планировать программы" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Управлять содержимым всех библиотек" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Администраторы могут:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Управлять настройками" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Управлять пользователями" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Управлять просматриваемыми папками" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Отправлять отзыв поддержке" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Просматривать статус системы" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Получить доступ к истории воспроизведений" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Видеть статистику слушателей" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Показать/скрыть столбцы" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "Столбцы" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "С {from} до {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "кбит/с" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "гггг-мм-дд" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "чч:мм:сс.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "кГц" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Вс" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Пн" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Вт" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Ср" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Чт" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Пт" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Сб" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Закрыть" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Часы" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Минуты" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Готово" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Выбрать файлы" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Добавьте файлы в очередь загрузки и нажмите кнопку Старт." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Добавить файлы" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Остановить загрузку" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Начать загрузку" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Добавить файлы" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Загружено %d/%d файлов" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "н/д" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Перетащите файлы сюда." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Неверное расширение файла." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Неверный размер файла." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Ошибка подсчета файла." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Ошибка инициализации." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "Ошибка HTTP." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Ошибка безопасности." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Общая ошибка." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "Ошибка записи/чтения." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Файл: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d файлов в очереди" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Файл: %f, размер: %s, максимальный размер файла: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "URL загрузки указан неверно или не существует" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Ошибка: Файл слишком большой: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Ошибка: Неверное расширение файла: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Установить по умолчанию" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Создать" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Редактировать историю" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Нет программы" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Скопировано %s строк %s в буфер обмена" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Новая Программа" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Новая запись в журнале" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "В таблице нет данных" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "(отфильтровано из _MAX_ записей)" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "Первая" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "Последняя" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "Следующая" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "Предыдущая" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "Поиск:" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "Записи отсутствуют." - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "Перетащите треки сюда из Библиотеки" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "В течение выбранного периода времени треки не воспроизводились." - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Снять с публикации" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "Результаты не найдены." - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Автор" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Описание" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Ссылка" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "Дата публикации" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "Статус загрузки" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "Действия" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "Удалить из Библиотеки" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "Успешно загружено" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "Показать _MENU_" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "Показать _MENU_ записей" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "Записи с _START_ до _END_ из _TOTAL_ записей" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "Показано с _START_ по _END_ из _TOTAL_ треков" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "Показано с _START_ по _END_ из _TOTAL_ типов трека" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "Показано с _START_ по _END_ из _TOTAL_ пользователей" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "Записи с 0 до 0 из 0 записей" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "Показано с 0 по 0 из 0 треков" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "Вы уверены что хотите удалить этот тип трека?" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "Типы треков не были найдены." - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "Типы треков не найдены" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "Не найдено подходящих типов треков" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Включено" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Отключено" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "Отменить загрузку" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "Тип" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "Настройки подкаста сохранены" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "Вы уверены что хотите удалить этого пользователя?" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "Вы не можете удалить себя!" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "У вас нет опубликованных эпизодов!" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "Вы можете опубликовать ваш загруженный контент из панели «Треки»." - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "Попробовать сейчас" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "Предпросмотр плейлиста" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Смарт-блок" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "Предпросмотр веб-потока" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "У вас нет разрешений для просмотра Библиотеки" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "С текущего момента" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "Нажмите «Новый» чтобы создать новый" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "Нажмите «Загрузить» чтобы добавить новый" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "Ссылка на ленту" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "Дата импорта" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "Добавить новый подкаст" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" -"Нельзя планировать аудио вне рамок Программы.\n" -"Попробуйте сначала создать Программу" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "Еще ни одного файла не загружено" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "В прямом эфире" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Не в эфире" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Офлайн" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Ничего не запланировано" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "Нажмите «Добавить» чтобы создать новый" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Пожалуйста введите ваш логин и пароль." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "Такой пользователь или e-mail не найдены." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Неправильно ввели логин или e-mail." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Неверный логин или пароль. Пожалуйста, попробуйте еще раз." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Вы просматриваете старые версии %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Вы не можете добавить треки в динамические блоки." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "У вас нет разрешения на удаление выбранных %s(s)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Вы можете добавить треки только в Смарт-блок." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Плейлист без названия" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Смарт-блок без названия" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Неизвестный Плейлист" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Настройки сохранены." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Настройки потока обновлены." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "необходимо указать путь" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Проблема с Liquidsoap ..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Метод запроса не принят" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Ретрансляция Программы %s от %s в %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Выбрать курсор" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Удалить курсор" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "Программы не существует" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Пользователь успешно добавлен!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Пользователь успешно обновлен!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Настройки успешно обновлены!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Веб-поток без названия" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Веб-поток сохранен." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Недопустимые значения." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Неверно введенный символ" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Укажите день" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Укажите время" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Нужно подождать хотя бы один час для ретрансляции" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "Добавить?" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Выбрать Плейлист" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Повторять Плейлист, пока Программа не заполнится?" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Использовать %s Аутентификацию:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Использование пользовательской идентификации:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Пользовательский логин" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Пользовательский пароль" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Хост:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Порт:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Точка монтирования:" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Поле «Логин» не может быть пустым." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Поле «Пароль» не может быть пустым." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Запись с линейного входа?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Ретрансляция?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "дней" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Связать?" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Тип повтора:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "еженедельно" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "каждые 2 недели" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "каждые 3 недели" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "каждые 4 недели" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "ежемесячно" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Выберите дни недели:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Повторять:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "день месяца" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "день недели" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Дата окончания:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Бесконечно?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Дата окончания должна быть после даты начала" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Укажите день повтора" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Цвет фона:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Цвет текста:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Текущий логотип:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Логотип Программы:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Предпросмотр логотипа:" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Имя:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Программа без названия" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Жанр:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Описание:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Описание экземпляра:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' не соответствует формату времени 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Время начала:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "В будущем:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Время завершения:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Длительность:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Часовой пояс:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Повторы?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Нельзя создать Программу в прошлом" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Нельзя изменить дату/время начала Программы, которая уже началась" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Дата/время окончания не могут быть в прошлом" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Не может длиться меньше 0 мин." - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Не может длиться 00 ч 00 мин" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Программа не может длиться больше 24 часов" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Нельзя запланировать пересекающиеся Программы." - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Поиск пользователей:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Диджеи:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "Название типа" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "Код:" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "Видимость:" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Логин:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Пароль:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Пароль еще раз:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Имя:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Фамилия:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Номер телефона:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Категория:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Логин не является уникальным." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Удалить все треки в Библиотеке" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Дата начала:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Название:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Автор:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Альбом:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "Владелец:" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Год:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Метка:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Композитор:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Исполнитель:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Настроение:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Авторское право:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC номер:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Сайт:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Язык:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Опубликовать..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Время начала" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Время окончания" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Часовой пояс:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Название Станции:" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Описание Станции:" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Логотип Станции:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Стандартная длительность сведения треков (сек):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Пожалуйста введите время в секундах (например 0.5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Сведение по умолчанию (сек):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Затухание по умолчанию (сек):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "Вступительный автозагружаемый плейлист (Intro)" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "Завершающий автозагружаемый плейлист (Outro)" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Перезапись мета-тегов эпизодов Подкастов:" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков." - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды." - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "Разрешить публичный API для LibreTime?" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Требуется для встраиваемого виджета-расписания." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Язык по умолчанию:" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Часовой пояс станции:" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Неделя начинается с:" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "Отображать кнопку «Вход» на Странице Радио?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Авто-откл. внешнего потока:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Авто-вкл. внешнего потока:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Затухание при переключ. (сек):" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "Хост для источника Master:" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "Порт для источника Master:" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "Точка монтирования для источника Master:" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Хост для источника Show:" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Порт для источника Show:" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Точка монтирования для источника Show:" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Вход" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Пароль" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Подтвердить новый пароль" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Подтверждение пароля не совпадает с вашим паролем." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Электронная почта" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Логин" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Сбросить пароль" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Назад" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Сейчас играет" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Выбрать поток:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Автоопределение наиболее приоритетного потока вещания." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Выберите поток:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Совместимость с мобильными" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - Проигрыватель не поддерживает вещание Opus ." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Встраиваемый код:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Предпросмотр:" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Приватность ленты" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Публичный" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Частный" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Язык радиостанции" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Фильтровать по Программам" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Все мои Программы:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Мои Программы" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Выбрать критерии" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Битрейт (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Частота дискретизации (кГц)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "часов" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "минут" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "элементы" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "оставшееся время программы" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Случайно" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Новые" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Старые" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "Давно проигранные" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "Недавно проигранные" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Тип:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Динамический" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Статический" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Разрешить повторение треков:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Разрешить последнему треку превышать лимит времени:" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Сортировка треков:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Ограничить в:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Перемешать содержимое Плейлиста" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Перемешать" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Интервал не может быть пустым или менее 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Интервал не может быть более 24 часов" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Значение должно быть целым числом" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 является максимально допустимым значением" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Вы должны выбрать Критерии и Модификаторы" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "«Длительность» должна быть в формате '00:00:00'" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Значение должно быть числом" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Значение должно быть меньше, чем 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Значение должно быть менее %s символов" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Значение не может быть пустым" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Мета-данные потока:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Исполнитель - Название трека " - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Программа - Исполнитель - Название трека" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Название станции - Программа" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Мета-данные при выкл. эфире" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Включить коэфф. усиления" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Изменить коэфф. усиления" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Аппаратный аудио выход" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Тип выхода" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Активировать:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Мобильный:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Тип потока:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Битрейт:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Тип сервиса:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Аудио каналы:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Сервер" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Порт" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Точка монтирования" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Название" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Добавить мета-данные вашей станции в TuneIn?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID станции:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Ключ партнера:" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Идентификатор партнера:" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Импорт папки:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Просматриваемые папки:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Не является допустимой папкой" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Поля не могут быть пустыми" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не соответствует формату даты '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' имеет менее %min% символов" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' имеет более %max% символов" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Пароли не совпадают" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Привет %s, \n" -"\n" -"Пожалуйста нажми ссылку, чтобы сбросить свой пароль: " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"Если возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Спасибо,\n" -"Команда %s" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Сброс пароля" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Время начала и окончания звучания трека не заполнены." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Время окончания звучания не может превышать длину трека." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Время начала звучания не может быть позже времени окончания." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Время окончания звучания не может быть раньше времени начала." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Время загрузки" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Ничего" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "При поддержке %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Выберите страну" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "живой аудио поток" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Невозможно переместить элементы из связанных Программ" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Расписание, которое вы просматриваете - устарело!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Вы не допущены к планированию Программы %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Вы не можете добавлять файлы в записываемую Программу." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Программа %s окончилась и не может быть добавлена в расписание." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Программа %s была обновлена ранее!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "Контент в связанных Программах не может быть изменен пока Программа в эфире!" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Выбранный файл не существует!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Максимальная продолжительность Программы - 24 часа." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Нельзя планировать пересекающиеся Программы.\n" -"Примечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ретрансляция %s из %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Длительность должна быть более 0 минут" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Длительность должна быть указана в формате '00h 00min'" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL должен быть в формате \"http://домен\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "Длина URL должна составлять не более 512 символов" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Для веб-потока не найдено MIME типа." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Имя веб-потока должно быть заполнено" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Не удалось анализировать XSPF Плейлист" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Не удалось анализировать PLS Плейлист" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Не удалось анализировать M3U Плейлист" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Неверный веб-поток - скорее всего это загрузка файла." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Нераспознанный тип потока: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Записанный файл не существует" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Просмотр мета-данных записанного файла" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Запланировать Треки" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Очистить Программу" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Отменить Программу" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Редактировать этот Экземпляр" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Редактировать Программу" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Удалить этот Экземпляр" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Удалить этот Экземпляр и все связанные" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Невозможно перетащить повторяющиеся Программы" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Невозможно переместить завершившуюся Программу" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Невозможно переместить Программу в прошлое" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Программа была удалена, потому что записанной Программы не существует!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Подождите один час до ретрансляции." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Трек" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Проиграно" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "Автоматически сгенерированный Смарт-блок для подкаста" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Веб-потоки" - -#~ msgid " If not, try
sudo service libretime-celery restart" -#~ msgstr " Если нет - попробуйте запустить
sudo service libretime-celery restart" - -#~ msgid " to " -#~ msgstr " к " - -#~ msgid " track matches your search criteria." -#~ msgid_plural " tracks match your search criteria." -#~ msgstr[0] " трек соответствует вашим критериям поиска." -#~ msgstr[1] " трека соответствуют вашим критериям поиска." -#~ msgstr[2] " треков соответствуют вашим критериям поиска." - -#, php-format -#~ msgid "%01.1fGB of %01.1fGB" -#~ msgstr "%01.1fGB из %01.1fGB" - -#, php-format -#~ msgid "%1$s %2$s is distributed under the %3$s" -#~ msgstr "%1$s %2$s распространяется под %3$s" - -#, php-format -#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgstr "%1$s %2$s, радио-приложение c открытым кодом для планирования и удаленного управления радиостанцией." - -#, php-format -#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -#~ msgstr "%1$s Copyright © %2$s Все права защищены.
Поддерживается и распространяется под лицензией %3$s командой %4$s" - -#, php-format -#~ msgid "%s Version" -#~ msgstr "Версия %s:" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s содержит вложенную просматриваемую папку: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s не существует в просматриваемом списке." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s уже просматривается." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s вложено в существующую просматриваемую папку: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s не является действительной папкой." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(В целях продвижения вашей станции, опция «Отправить отзывы о поддержке» должна быть включена)." - -#~ msgid "(Required)" -#~ msgstr "*" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Веб-сайт вашей радиостанции)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Только для проверки, не будет опубликовано)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(чч:мм:сс.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(сс.t)" - -#~ msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -#~ msgstr "* Известно, что для Chrome на Android требуется около 4 секунд для буферизации потока MP3 со скоростью 128 кбит/с. Более низкие битрейты требуют больше времени для буферизации." - -#~ msgid "1 - Mono" -#~ msgstr "Моно" - -#~ msgid "2 - Stereo" -#~ msgstr "Стерео" - -#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -#~ msgstr "
Это только предварительный просмотр возможного контента, сгенерированного Смарт-блоком на основе вышеуказанных критериев." - -#~ msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -#~ msgstr "ВНИМАНИЕ: Применение этих функций необратимо повлияет на вашу радиостанцию Libretime. Будьте внимательны, прежде чем использовать их!" - -#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgstr "Ссылка на сброс пароля была отправлена на вашу электронную почту. Пожалуйста проверьте и следуйте инструкциям в прилагаемом письме, чтобы сбросить пароль. Если Вы не видите письмо в папке Входящие, проверьте папку Спам" - -#~ msgid "A track list will be generated when you schedule this smart block into a show." -#~ msgstr "Список воспроизведения будет составлен, как только вы добавите Смарт-блок в Программу." - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "О программе" - -#~ msgid "Access Denied!" -#~ msgstr "Доступ запрещен!" - -#~ msgid "Add New Field" -#~ msgstr "Добавить новое поле" - -#~ msgid "Add more elements" -#~ msgstr "Добавить еще элементы" - -#~ msgid "Add this show" -#~ msgstr "Добавить эту Программу" - -#~ msgid "Add to My Facebook Page" -#~ msgstr "Добавить на Facebook" - -#~ msgid "Add tracks to your show" -#~ msgstr "Добавить треки в Программу" - -#~ msgid "Additional Options" -#~ msgstr "Дополнительные настройки" - -#~ msgid "Admin Password" -#~ msgstr "Пароль администратора" - -#~ msgid "Admin User" -#~ msgstr "Администратор" - -#~ msgid "Advanced Search Options" -#~ msgstr "Дополнительные параметры поиска" - -#~ msgid "Advanced options" -#~ msgstr "Дополнительные опции" - -#~ msgid "Air Date" -#~ msgstr "Дата эфира" - -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "LibreTime приобрел новый вид!" - -#~ msgid "All rights are reserved" -#~ msgstr "Все права защищены" - -#~ msgid "Allowed CORS URLs" -#~ msgstr "Разрешенные адреса CORS:" - -#~ msgid "An error has occurred." -#~ msgstr "Произошла ошибка." - -#~ msgid "Audio Track" -#~ msgstr "Аудиодорожка" - -#~ msgid "Autoloading Playlist" -#~ msgstr "Автозагружаемый Плейлист" - -#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -#~ msgstr "Содержимое автозагружаемого Плейлиста добавляется в Программу за один час до ее выхода в эфир. Больше информации" - -#~ msgid "Average Listeners" -#~ msgstr "Слушателей в среднем" - -#~ msgid "Bad Request!" -#~ msgstr "Неверный запрос!" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s." - -#~ msgid "Category" -#~ msgstr "Категория" - -#~ msgid "Check that the libretime-celery service is installed correctly in " -#~ msgstr "Проверьте, что служба libretime-celery правильно установлена в " - -#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -#~ msgstr "Установите галочки в нужных местах и нажмите «Опубликовать» для публикации этого трека в отмеченных сервисах." - -#~ msgid "Choose Days:" -#~ msgstr "Выберите дни:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Выберите экземпляр программы" - -#~ msgid "Choose folder" -#~ msgstr "Выбрать папку" - -#~ msgid "Choose some search criteria above and click Generate to create this playlist." -#~ msgstr "Выберите несколько критериев поиска выше и нажмите кнопку «Сгенерировать», чтобы создать этот Плейлист." - -#~ msgid "City:" -#~ msgstr "Город:" - -#~ msgid "Clear" -#~ msgstr "Очистить" - -#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -#~ msgstr "Выберите «Календарь» в навигационной панели слева. Нажмите кнопку «Новая Программа» и заполните необходимые поля." - -#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -#~ msgstr "Выберите вашу Программу в календаре и нажмите «Запланировать Программу». В появившемся окне добавьте треки в вашу Программу." - -#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -#~ msgstr "Нажмите на кнопку «Загрузить» в левом углу, чтобы начать загрузку треков в Библиотеку." - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Кликните отметку ниже для продвижения вашей радиостанции на %s." - -#~ msgid "Code" -#~ msgstr "Код" - -#~ msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -#~ msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить еженедельное расписание. Настройте высоту и ширину виджета, изменив соответствующие значения «height» и «width» в этом коде." - -#~ msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgstr "Не могу подключиться к RabbitMQ серверу! Пожалуйста проверьте, включен ли сервер и все ли верно настроено." - -#~ msgid "Country:" -#~ msgstr "Страна:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Создание шаблона сводки файлов" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Создание шаблона таблицы логов" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Начало звучания: " - -#~ msgid "Cue Out: " -#~ msgstr "Окончание звучания: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Текущая папка импорта:" - -#~ msgid "Cursor" -#~ msgstr "Курсор" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Вещание на внешние сервера" - -#~ msgid "" -#~ "Customize the player by configuring the options below. When you are done,\n" -#~ " copy the embeddable code below and paste it into your website's HTML." -#~ msgstr "Измените плеер, настроив параметры ниже. Когда вы закончите, скопируйте встраиваемый код из области ниже и вставьте в необходимый HTML блок на вашем сайте." - -#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -#~ msgstr "DJ-и могут использовать эти настройки в программном обеспечении для живого вещания, только во время назначенных им Программ." - -#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -#~ msgstr "DJ-и могут использовать эти настройки для подключения совместимого программного обеспечения и вещать в прямом эфире во время текущей программы. Отметьте DJ-ев ниже." - -#~ msgid "Dangerous Options" -#~ msgstr "Опасные настройки" - -#~ msgid "Dashboard" -#~ msgstr "Панель управления" - -#~ msgid "Database configuration for LibreTime" -#~ msgstr "Конфигурация базы данных LibreTime" - -#~ msgid "Date Range" -#~ msgstr "Выберите интервал дат ниже" - -#~ msgid "Default Length:" -#~ msgstr "Длительность по умолчанию:" - -#~ msgid "Default License:" -#~ msgstr "Лицензия по умолчанию:" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Способ распространения по-умолчанию:" - -#~ msgid "Default Streaming" -#~ msgstr "Встроенное вещание" - -#~ msgid "Desktop" -#~ msgstr "Компьютер/ноутбук" - -#~ msgid "Disk Space" -#~ msgstr "Дисковое пространство:" - -#~ msgid "Download latest episodes:" -#~ msgstr "Загружать последние эпизоды:" - -#~ msgid "Drag tracks here from your library to add them to the playlist" -#~ msgstr "Перетащите треки сюда из Библиотеки, чтобы добавить их в Плейлист" - -#~ msgid "Drop files here or click to browse your computer." -#~ msgstr "Перенесите файлы сюда или кликните, чтобы выбрать файлы с компьютера." - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Динамический Смарт-блок" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Критерии динамического Смарт-блока: " - -#~ msgid "Edit Metadata..." -#~ msgstr "Править мета-данные..." - -#~ msgid "Editing " -#~ msgstr "Редактирование " - -#~ msgid "Email Sent!" -#~ msgstr "Письмо отправлено!" - -#~ msgid "Empty playlist content" -#~ msgstr "Очистить Плейлист" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Развернуть динамический Блок" - -#~ msgid "Expand Static Block" -#~ msgstr "Развернуть статический Блок" - -#~ msgid "Explicit" -#~ msgstr "Откровенное содержимое" - -#~ msgid "FAQ" -#~ msgstr "Частые вопросы" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Facebook Radio Player" -#~ msgstr "Радио-плеер для Facebook" - -#~ msgid "Fade in: " -#~ msgstr "Сведение (сек): " - -#~ msgid "Fade in: " -#~ msgstr "Сведение (сек): " - -#~ msgid "Fade out: " -#~ msgstr "Затухание (сек): " - -#~ msgid "Failed" -#~ msgstr "Не удалось" - -#~ msgid "File Path:" -#~ msgstr "Путь к папке:" - -#~ msgid "File Summary" -#~ msgstr "Сводка по файлам" - -#~ msgid "File Summary Templates" -#~ msgstr "Шаблоны сводки файлов" - -#~ msgid "File import in progress..." -#~ msgstr "Добавление файлов в процессе..." - -#~ msgid "Filter History" -#~ msgstr "Фильтр истории" - -#~ msgid "Find" -#~ msgstr "Найти" - -#~ msgid "Find Shows" -#~ msgstr "Найти Программы" - -#~ msgid "First Name" -#~ msgstr "Имя" - -#, php-format -#~ msgid "" -#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -#~ " or %sApple's podcasting documentation%s." -#~ msgstr "Для подробной информации значений данных разделов, пожалуйста просмотрите %sRSS спецификацию%s или %sдокументацию Подкастов Apple%s." - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Для более подробной справки читайте %sруководство пользователя%s ." - -#~ msgid "Forgot your password?" -#~ msgstr "Забыли пароль?" - -#~ msgid "General Fields" -#~ msgstr "Основные поля" - -#~ msgid "Generate Smartblock and Playlist" -#~ msgstr "Создать Смарт-блок и Плейлист" - -#~ msgid "Global" -#~ msgstr "Глобальные настройки" - -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." - -#~ msgid "Help Translate Libretime" -#~ msgstr "Помогите перевести Libretime" - -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Помогите усовершенствовать %s сообщив нам как вы используете приложение. Информация будет собираться постоянно в целях усовершенствования использования.
Кликните ниже и мы будем знать, какие возможности вы используете." - -#, php-format -#~ msgid "Here's how you can get started using %s to automate your broadcasts: " -#~ msgstr "Как использовать %s для автоматизации ваших трансляций: " - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Мета-данные Icecast Vorbis" - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC номер:" - -#~ msgid "Jack" -#~ msgstr "Джек" - -#~ msgid "Keywords" -#~ msgstr "Ключевые слова" - -#~ msgid "Last Name" -#~ msgstr "Фамилия" - -#~ msgid "Length:" -#~ msgstr "Длительность:" - -#~ msgid "Limit to " -#~ msgstr "Ограничить до " - -#~ msgid "Listen" -#~ msgstr "Слушать" - -#~ msgid "Listeners" -#~ msgstr "Слушатели" - -#~ msgid "Live Broadcasting" -#~ msgstr "Живое вещание" - -#~ msgid "Live Stream Input" -#~ msgstr "Вход для прямого эфира" - -#~ msgid "Live stream" -#~ msgstr "Прямой эфир" - -#~ msgid "Log Sheet" -#~ msgstr "Лог треков" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Шаблоны таблицы логов" - -#~ msgid "Logout" -#~ msgstr "Выйти" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Похоже, что страница, которую вы ищете, не существует!" - -#~ msgid "Looks like there are no shows scheduled on this day." -#~ msgstr "Похоже, в этот день не запланировано ни одной Программы." - -#~ msgid "MP3/AAC only" -#~ msgstr "Только MP3/AAC" - -#~ msgid "MP3/OGG* only" -#~ msgstr "Только MP3/OGG*" - -#~ msgid "Manage Track Types" -#~ msgstr "Управление типами треков" - -#~ msgid "Manage Users" -#~ msgstr "Управление пользователями" - -#~ msgid "Master Source" -#~ msgstr "Источник: Master" - -#~ msgid "Maximum Number of Listeners" -#~ msgstr "Максимум слушателей" - -#~ msgid "Mobile" -#~ msgstr "Мобильный телефон" - -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Ежемесячная пропускная способность слушателей" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Точка монтирования не может быть пустой в Icecast сервер." - -#~ msgid "New Criteria" -#~ msgstr "Новый критерий" - -#~ msgid "New File Summary Template" -#~ msgstr "Новый шаблон сводки файлов" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Новый шаблон лога треков" - -#~ msgid "New Modifier" -#~ msgstr "Новый модификатор" - -#~ msgid "New Track Type" -#~ msgstr "Новый тип" - -#~ msgid "New User" -#~ msgstr "Новый пользователь" - -#~ msgid "New password" -#~ msgstr "Новый пароль" - -#~ msgid "Next:" -#~ msgstr "Следующий:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Нет шаблона сводки файлов" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Нет шаблона таблицы логов" - -#~ msgid "No open playlist" -#~ msgstr "Нет открытого Плейлиста" - -#~ msgid "No smart block currently open" -#~ msgstr "Нет открытого Смарт-блока" - -#~ msgid "No webstream" -#~ msgstr "Нет веб-потока" - -#~ msgid "Now Playing:" -#~ msgstr "Сейчас играет:" - -#~ msgid "Now you're good to go!" -#~ msgstr "Теперь можно двигаться дальше!" - -#~ msgid "OK" -#~ msgstr "OK " - -#~ msgid "ON AIR" -#~ msgstr "В ЭФИРЕ" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Разрешены только числа." - -#~ msgid "Oops!" -#~ msgstr "Упс!" - -#~ msgid "Original Length:" -#~ msgstr "Исходная длина трека:" - -#~ msgid "" -#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -#~ " is easier than ever." -#~ msgstr "Интерфейс нашей новой Панели управления теперь имеет мощный функционал с разделами, чтобы обновление ваших треков и Плейлистов было еще проще." - -#~ msgid "Output Streams" -#~ msgstr "Исходящие Потоки" - -#~ msgid "Override" -#~ msgstr "Переопределить " - -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Перезаписывать название Альбома на название Подкаста в процессе загрузки." - -#~ msgid "PDO and PostgreSQL libraries" -#~ msgstr "Библиотеки PDO и PostgreSQL" - -#~ msgid "Page not found!" -#~ msgstr "Страница не найдена!" - -#~ msgid "Password Reset" -#~ msgstr "Сброс пароля" - -#~ msgid "Pending" -#~ msgstr "Ожидание" - -#~ msgid "Phone:" -#~ msgstr "Телефон:" - -#~ msgid "Play" -#~ msgstr "Воспроизвести" - -#~ msgid "Playlist Contents: " -#~ msgstr "Содержимое Плейлиста: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Сведение в Плейлисте" - -#~ msgid "Playout History Templates" -#~ msgstr "Шаблоны истории воспроизведения треков" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Пожалуйста, введите и подтвердите новый пароль ниже." - -#~ msgid "Please enter both your username and email address." -#~ msgstr "Пожалуйста, введите ваши логин и e-mail." - -#~ msgid "Podcast Name: " -#~ msgstr "Название Подкаста: " - -#~ msgid "Podcast URL: " -#~ msgstr "Ссылка на Подкаст: " - -#~ msgid "Podcasts" -#~ msgstr "Подкасты" - -#~ msgid "Port cannot be empty." -#~ msgstr "Порт не может быть пустым." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Powered by LibreTime" -#~ msgstr "При поддержке LibreTime" - -#~ msgid "Previous:" -#~ msgstr "Предыдущий:" - -#~ msgid "Privacy Settings" -#~ msgstr "Настройки конфиденциальности" - -#~ msgid "Promote my station on %s" -#~ msgstr "Продвигать мою станцию на %s" - -#~ msgid "Publish to:" -#~ msgstr "Опубликовать в:" - -#~ msgid "Published on:" -#~ msgstr "Опубликовано в:" - -#~ msgid "Published tracks can be removed or updated below." -#~ msgstr "Опубликованные треки могут быть удалены или обновлены ниже." - -#~ msgid "Publishing" -#~ msgstr "Публикуется" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "RESET" -#~ msgstr "Сброс " - -#~ msgid "RSS Feed URL:" -#~ msgstr "Ссылка RSS ленты:" - -#~ msgid "RabbitMQ configuration for LibreTime" -#~ msgstr "Конфигурация RabbitMQ для LibreTime" - -#~ msgid "Recent Uploads" -#~ msgstr "Последние загрузки" - -#~ msgid "Record & Rebroadcast" -#~ msgstr "Запись и Ретрансляция" - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -#~ msgstr "Внешние URL адреса, которым разрешен доступ к данному экземпляру LibreTime в браузере. Укажите каждый адрес отдельной строкой." - -#~ msgid "Remove all content from this smart block" -#~ msgstr "Удалить все треки из этого Смарт-блока" - -#~ msgid "Remove watched directory" -#~ msgstr "Удалить просматриваемую папку" - -#~ msgid "Repeat Days:" -#~ msgstr "Повторить в дни:" - -#, php-format -#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -#~ msgstr "Пересканировать наблюдаемую папку (Полезно для сетевой папки, которая может быть не синхронизирована с %s)." - -#~ msgid "Sample Rate:" -#~ msgstr "Частота дискретизации:" - -#~ msgid "Save playlist" -#~ msgstr "Сохранить Плейлист" - -#~ msgid "Save podcast" -#~ msgstr "Сохранить Подкаст" - -#~ msgid "Save station podcast" -#~ msgstr "Сохранить Подкаст станции" - -#~ msgid "Schedule a show" -#~ msgstr "Запланировать Программу" - -#~ msgid "Scheduled Shows" -#~ msgstr "Запланированные Программы" - -#~ msgid "Scheduling:" -#~ msgstr "Запланировано:" - -#~ msgid "Search Criteria:" -#~ msgstr "Критерии поиска:" - -#~ msgid "Select stream:" -#~ msgstr "Выберите поток:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Сервер не может быть пустым." - -#~ msgid "Service" -#~ msgstr "Служба" - -#~ msgid "Service Status" -#~ msgstr "Статус службы" - -#~ msgid "Set" -#~ msgstr "Установить" - -#~ msgid "Set Cue In" -#~ msgstr "Установить начало звучания" - -#~ msgid "Set Cue Out" -#~ msgstr "Установить окончание звучания" - -#~ msgid "Set Default Template" -#~ msgstr "Установить шаблон по умолчанию" - -#~ msgid "Share" -#~ msgstr "Поделиться" - -#~ msgid "Show Name" -#~ msgstr "Программа" - -#~ msgid "Show Source" -#~ msgstr "Источник: Show" - -#~ msgid "Show Summary" -#~ msgstr "Сводка по программам" - -#~ msgid "Show Waveform" -#~ msgstr "Показать волну трека" - -#~ msgid "Show me what I am sending " -#~ msgstr "Покажите мне, что я отправляю " - -#~ msgid "Shuffle playlist" -#~ msgstr "Перемешать Плейлист" - -#~ msgid "Smartblock and Playlist Generated" -#~ msgstr "Смарт-блок и Плейлист сгенерированы" - -#~ msgid "Smartblock and Playlist generated" -#~ msgstr "Смарт-блок и Плейлист созданы" - -#~ msgid "Source Streams" -#~ msgstr "Внешние источники" - -#~ msgid "Static Smart Block" -#~ msgstr "Статический Смарт-блок" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Содержимое статического Смарт-блока: " - -#~ msgid "Station Description:" -#~ msgstr "Описание станции:" - -#~ msgid "Station Web Site:" -#~ msgstr "Сайт станции:" - -#~ msgid "Stop" -#~ msgstr "Стоп" - -#~ msgid "Storage" -#~ msgstr "Хранилище" - -#~ msgid "Stream " -#~ msgstr "Поток " - -#~ msgid "Stream Compatibility" -#~ msgstr "Совместимость потоков с устройствами" - -#~ msgid "Stream Data Collection Status" -#~ msgstr "Состояние потоков для сбора данных:" - -#~ msgid "Stream Settings" -#~ msgstr "Настройки потока" - -#~ msgid "Stream URL:" -#~ msgstr "URL потока:" - -#~ msgid "Stream URL: " -#~ msgstr "URL потока: " - -#~ msgid "Streaming Server:" -#~ msgstr "Сервер вещания:" - -#~ msgid "Style" -#~ msgstr "Стиль" - -#~ msgid "Subscribe" -#~ msgstr "Подписаться" - -#~ msgid "Subtitle" -#~ msgstr "Подзаголовок" - -#~ msgid "Summary" -#~ msgstr "Краткое описание" - -#~ msgid "Support Feedback" -#~ msgstr "Отзывы о поддержке" - -#~ msgid "Support setting updated." -#~ msgstr "Настройка поддержки обновлена." - -#~ msgid "Table Test" -#~ msgstr "Таблица тестов" - -#~ msgid "Terms and Conditions" -#~ msgstr "Правила и условия использования" - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Следующая информация будет отображаться слушателям в их плеере:" - -#~ msgid "" -#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -#~ " experience, no matter how you're connected." -#~ msgstr "Новая версия LibreTime плавнее и быстрее на еще большем количестве устройств! Мы стремимся улучшить впечатления от использования LibreTime не зависимо от того, как подключаетесь вы и ваши слушатели." - -#~ msgid "The requested action is not supported!" -#~ msgstr "Запрашиваемое действие не поддерживается!" - -#~ msgid "The work is in the public domain" -#~ msgstr "Работа находится в свободном доступе" - -#~ msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -#~ msgstr "Затем, перетащите элемент «Радиоплеер» вверх списка и нажмите «Save». Теперь он будет отображаться как одна из вкладок по умолчанию, а не скрываться под «More»" - -#~ msgid "Tips:" -#~ msgstr "Советы:" - -#~ msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -#~ msgstr "Чтобы сделать вкладку более заметной на вашей странице Facebook, нажмите «More», затем «Manage Tabs»" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Для проигрывания медиа-файла необходимо обновить браузер до последней версии или обновить %sфлэш-плагин%s." - -#~ msgid "Toggle Details" -#~ msgstr "Отобразить Подробнее" - -#~ msgid "Track:" -#~ msgstr "Трек:" - -#~ msgid "TuneIn Settings" -#~ msgstr "Настройки TuneIn" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Введите символы, которые вы видите на картинке ниже." - -#~ msgid "Update Required" -#~ msgstr "Требуется обновление" - -#~ msgid "Update show" -#~ msgstr "Обновить Программу" - -#~ msgid "Update track" -#~ msgstr "Обновить трек" - -#~ msgid "Upload" -#~ msgstr "Загрузить" - -#~ msgid "Upload audio tracks" -#~ msgstr "Загрузить аудио теки" - -#~ msgid "Use these settings in your broadcasting software to stream live at any time." -#~ msgstr "Используйте эти настройки в программном обеспечении для трансляции в любое время с приоритетом над всеми Программами." - -#~ msgid "User Type" -#~ msgstr "Категория" - -#~ msgid "View Feed" -#~ msgstr "Просмотр Ленты" - -#~ msgid "View track" -#~ msgstr "Просмотреть трек" - -#~ msgid "Viewing " -#~ msgstr "Просмотр " - -#~ msgid "Visibility" -#~ msgstr "Видимость" - -#~ msgid "We couldn't find the page you were looking for." -#~ msgstr "Мы не можем найти страницу, которую Вы пытаетесь открыть." - -#~ msgid "" -#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -#~ " just a click away, you'll be on air and hands-free in no time." -#~ msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." - -#~ msgid "Web Stream" -#~ msgstr "Веб-поток" - -#~ msgid "Webstream" -#~ msgstr "Веб-поток" - -#, php-format -#~ msgid "Welcome to %s!" -#~ msgstr "Добро пожаловать %s!" - -#, php-format -#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -#~ msgstr "Добро пожаловать в %s демо! Вы можете авторизоваться, введя логин 'admin' и пароль 'admin'." - -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Добро пожаловать в новый LibreTime!" - -#~ msgid "What" -#~ msgstr "Что" - -#~ msgid "When" -#~ msgstr "Когда" - -#~ msgid "Who" -#~ msgstr "Кто" - -#~ msgid "Yes (Flash)" -#~ msgstr "Да (Flash)" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Не выставлена просматриваемая папка с треками." - -#~ msgid "You can change these later in your preferences and user settings." -#~ msgstr "Это можно настроить позже в настройках пользователя." - -#~ msgid "You do not have permission to access this page!" -#~ msgstr "У Вас нет прав для просмотра данной страницы!" - -#~ msgid "You do not have permission to edit this track." -#~ msgstr "У вас нет прав на изменение этого трека." - -#~ msgid "You have already published this track to all available sources!" -#~ msgstr "Вы уже опубликовали этот трек во всех возможных источниках!" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Вы должны согласиться с политикой конфиденциальности." - -#~ msgid "You haven't published this track to any sources!" -#~ msgstr "Вы еще нигде не публиковали данный трек!" - -#~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше." - -#~ msgid "Your trial expires in" -#~ msgstr "Ваш ознакомительный период истекает через" - -#~ msgid "and" -#~ msgstr "и" - -#~ msgid "dB" -#~ msgstr "дБ" - -#~ msgid "file meets the criteria" -#~ msgstr "файл соответствует критериям" - -#~ msgid "files meet the criteria" -#~ msgstr "файлы соответствуют критериям" - -#~ msgid "iTunes Fields" -#~ msgstr "Данные iTunes" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "Макс. громкость" - -#~ msgid "mute" -#~ msgstr "Без звука" - -#~ msgid "next" -#~ msgstr "следующий" - -#~ msgid "of" -#~ msgstr "из" - -#~ msgid "or" -#~ msgstr "или" - -#~ msgid "pause" -#~ msgstr "пауза" - -#~ msgid "play" -#~ msgstr "играть" - -#~ msgid "previous" -#~ msgstr "предыдущая" - -#~ msgid "stop" -#~ msgstr "стоп" - -#~ msgid "unmute" -#~ msgstr "Включить звук" diff --git a/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po b/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po deleted file mode 100644 index f252a03e3f..0000000000 --- a/webapp/src/locale/po/sr_RS/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4609 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Serbian (Serbia)\n" -"Language: sr_RS\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Година %s мора да буде у распону између 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s није исправан датум" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s није исправан датум" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Календар" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Корисници" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Преноси" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Стање" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Историја Пуштених Песама" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Историјски Шаблони" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Слушатељска Статистика" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Помоћ" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Почетак Коришћења" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Упутство" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Не смеш да приступиш овог извора." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Не смеш да приступите овог извора." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Неисправан захтев." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Неисправан захтев" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Немаш допуштење да искључиш извор." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Нема спојеног извора на овај улаз." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Немаш дозволу за промену извора." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s није пронађен" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Нешто је пошло по криву." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Преглед" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Додај на Списак Песама" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Додај у Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Обриши" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Преузимање" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Удвостручавање" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Нема доступних акција" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Немаш допуштење за брисање одабране ставке." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Копирање од %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Аудио Уређај" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Снимање:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Мајсторски Пренос" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Пренос Уживо" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Ништа по распореду" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Садашња Емисија:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Тренутна" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Ти имаш инсталирану најновију верзију" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Нова верзија је доступна:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Додај у тренутни списак песама" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Додај у тренутни smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Додавање 1 Ставке" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Додавање %s Ставке" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Можеш да додаш само песме код паметних блокова." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Молимо одабери место показивача на временској црти." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Додај" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Уређивање" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Уклони" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Уреди Метаподатке" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Додај у одабраној емисији" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Одабери" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Одабери ову страницу" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Одзначи ову страницу" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Одзначи све" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Заказана" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Назив" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Творац" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Албум" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Пренос Бита" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Композитор" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Диригент" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Ауторско право" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Кодирано је по" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Жанр" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Налепница" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Језик" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Последња Измена" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Задњи Пут Одиграна" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Дужина" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Расположење" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Власник" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Узорак Стопа" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Број Песма" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Додата" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Веб страница" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Година" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Учитавање..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Све" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Датотеке" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Листе песама" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Block-ови" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Преноси" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Непознати тип:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Јеси ли сигуран да желиш да обришеш изабрану ставку?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Пренос је у току..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Преузимање података са сервера..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Шифра грешке:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Порука о грешци:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Мора да буде позитиван број" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Мора да буде број" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Мора да буде у облику: гггг-мм-дд" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Мора да буде у облику: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Отвори Медијског Градитеља" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "молимо стави у време '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Твој претраживач не подржава ову врсту аудио фајл:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Динамички блок није доступан за преглед" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Ограничити се на:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Списак песама је спремљена" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Списак песама је измешан" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Број Слушалаца %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Подсети ме за 1 недељу" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Никад ме више не подсети" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Да, помажем Airtime-у" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Слика мора да буде jpg, jpeg, png, или gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block је измешан" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart block је генерисан и критеријуме су спремне" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block је сачуван" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Обрада..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Одабери модификатор" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "садржи" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "не садржи" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "је" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "није" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "почиње се са" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "завршава се са" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "је већи од" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "је мањи од" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "је у опсегу" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Генериши" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Одабери Мапу за Складиштење" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Одабери Мапу за Праћење" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Јеси ли сигуран да желиш да промениш мапу за складиштење?\n" -"То ће да уклони датотеке из твоје библиотеке!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Управљање Медијске Мапе" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Јеси ли сигуран да желиш да уклониш надзорску мапу?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Овај пут није тренутно доступан." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Прикључен је на серверу" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Пренос је онемогућен" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Добијање информација са сервера..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Не може да се повеже на серверу" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Провери ову опцију како би се омогућило метаподатака за OGG потоке." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Нема пронађених резултата" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Емисија у овом случају више не постоји!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Упозорење: Емисије не може поново да се повеже" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Емисија" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Емисија је празна" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Добијање података са сервера..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Ова емисија нема заказаног садржаја." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Ова емисија није у потпуности испуњена са садржајем." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Јануар" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Фебруар" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Март" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Април" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Мај" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Јун" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Јул" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Август" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Септембар" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Октобар" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Новембар" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Децембар" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Јан" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Феб" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Мар" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Апр" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Јун" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Јул" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Авг" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Сеп" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Окт" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Нов" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Дец" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Недеља" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Понедељак" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Уторак" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Среда" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Четвртак" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Петак" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Субота" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Нед" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Пон" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Уто" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Сре" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Чет" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Пет" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Суб" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Емисија дуже од предвиђеног времена ће да буде одсечен." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Откажи Тренутног Програма?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Заустављање снимање емисије?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ок" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Садржај Емисије" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Уклониш све садржаје?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Обришеш ли одабрану (е) ставу (е)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Почетак" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Завршетак" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Трајање" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Одтамњење" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Затамњење" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Празна Емисија" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Снимање са Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Преглед песма" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Не може да се заказује ван емисије." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Премештање 1 Ставка" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Премештање %s Ставке" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Сачувај" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Одустани" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Уређивач за (Од-/За-)тамњивање" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Уређивач" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Таласни облик функције су доступне у споредну Web Audio API прегледачу" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Одабери све" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Не одабери ништа" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Уклони одабране заказане ставке" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Скочи на тренутну свирану песму" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Поништи тренутну емисију" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Отвори библиотеку за додавање или уклањање садржаја" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Додај / Уклони Садржај" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "у употреби" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Диск" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Погледај унутра" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Отвори" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Администратор" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "Диск-џокеј" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Водитељ Програма" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Гост" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Гости могу да уради следеће:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Преглед распореда" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Преглед садржај емисије" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Диск-џокеји могу да уради следеће:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Управљање додељен садржај емисије" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Увоз медијске фајлове" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Изради листе песама, паметне блокове, и преносе" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Управљање своје библиотечког садржаја" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Приказ и управљање садржај емисије" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Распоредне емисије" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Управљање све садржаје библиотека" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Администратори могу да уради следеће:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Управљање подешавања" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Управљање кориснике" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Управљање надзираних датотеке" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Пошаљи повратне информације" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Преглед стања система" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Приступ за историју пуштених песама" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Погледај статистику слушаоце" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Покажи/сакриј колоне" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Од {from} до {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "гггг-мм-дд" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Не" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "По" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Ут" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Ср" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Че" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Пе" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Су" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Затвори" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Сат" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Минута" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Готово" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Изабери датотеке" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Додај датотеке и кликни на 'Покрени Upload' дугме." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Додај Датотеке" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Заустави Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Покрени upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Додај датотеке" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Послата %d/%d датотека" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Повуци датотеке овде." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Грешка (ознаку типа датотеке)." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Грешка величине датотеке." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Грешка број датотеке." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init грешка." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Грешка." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Безбедносна грешка." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Генеричка грешка." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO грешка." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Фајл: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d датотека на чекању" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Датотека: %f, величина: %s, макс величина датотеке: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Преносни URL може да буде у криву или не постоји" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Грешка: Датотека је превелика:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Грешка: Неважећи ознак типа датотека:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Постави Подразумевано" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Стварање Уноса" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Уреди Историјат Уписа" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Нема Програма" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s ред%s је копиран у међумеморију" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Опис" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Омогућено" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Онемогућено" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Гледаш старију верзију %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Не можеш да додаш песме за динамичне блокове." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Немаш допуштење за брисање одабраног (е) %s." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Можеш само песме да додаш за паметног блока." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Неименовани Списак Песама" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Неименовани Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Непознати Списак Песама" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Подешавања су ажуриране." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Пренос Подешавање је Ажурирано." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "пут би требао да буде специфициран" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Проблем са Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Реемитовање емисија %s од %s на %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Одабери показивач" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Уклони показивач" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "емисија не постоји" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Корисник је успешно додат!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Корисник је успешно ажуриран!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Подешавања су успешно ажуриране!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Неименовани Пренос" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Пренос је сачуван." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Неважећи вредности обрасца." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Унесени су неважећи знакови" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Дан мора да буде наведен" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Време мора да буде наведено" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Користи Прилагођено потврду идентитета:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Прилагођено Корисничко Име" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Прилагођена Лозинка" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "'Корисничко Име' поља не сме да остане празно." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "'Лозинка' поља не сме да остане празно." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Снимање са Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Поново да емитује?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "дани" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Тип Понављање:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "недељно" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "сваке 2 недеље" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "свака 3 недеље" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "свака 4 недеље" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "месечно" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Одабери Дане:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Понављање По:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "дан у месецу" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "дан у недељи" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Датум Завршетка:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Нема Краја?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Датум завршетка мора да буде после датума почетка" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Молимо, одабери којег дана" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Боја Позадине:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Боја Текста:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Назив:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Неименована Емисија" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Жанр:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Опис:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' се не уклапа у временском формату 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Трајање:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Временска Зона:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Понављање?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Не може да се створи емисију у прошлости" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Датум завршетка и време не може да буде у прошлости" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Не може да траје < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Не може да траје 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Не може да траје више од 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Не можеш заказати преклапајуће емисије" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Тражи Кориснике:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Диск-џокеји:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Корисничко име:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Лозинка:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Потврди Лозинку:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Име:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Презиме:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Е-маил:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Мобилни Телефон:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Типова Корисника:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Име пријаве није јединствено." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Датум Почетка:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Назив:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Творац:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Aлбум:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Година:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Налепница:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Композитор:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Диригент:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Расположење:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Ауторско право:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Број:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Веб страница:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Језик:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Време Почетка" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Време Завршетка" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Временска Зона Интерфејси:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Назив Станице" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Лого:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Напомена: Све већа од 600к600 ће да се мењају." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Подразумевано Трајање Укрштено Стишавање (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Подразумевано Одтамњење (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Подразумевано Затамњење (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Станична Временска Зона" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Први Дан у Недељи" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Пријава" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Лозинка" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Потврди нову лозинку" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Лозинке које сте унели не подударају се." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Корисничко име" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Ресетуј лозинку" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Тренутно Извођена" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Све Моје Емисије:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Одабери критеријуме" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Брзина у Битовима (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Узорак Стопа (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "сати" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "минути" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "елементи" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Динамички" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Статички" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Генерисање листе песама и чување садржаја критеријуме" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Садржај случајни избор списак песама" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Мешање" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ограничење не може да буде празан или мањи од 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ограничење не може да буде више од 24 сати" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Вредност мора да буде цео број" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 је макс ставу граничну вредност могуће је да подесиш" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Мораш да изабереш Критерију и Модификацију" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Дужина' требала да буде у '00:00:00' облику" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Вредност мора да буде нумеричка" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Вредност би требала да буде мања од 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Вредност мора да буде мања од %s знакова" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Вредност не може да буде празна" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Видљиви Подаци:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Аутор - Назив" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Емисија - Аутор - Назив" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Назив станице - Назив емисије" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Метаподаци" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Укључи Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Модификатор" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Омогућено:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Пренос Типа:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Брзина у Битовима:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Тип Услуге:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Канали:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Сервер" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Порт" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Тачка Монтирања" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Назив" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Увозна Мапа:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Мапе Под Надзором:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Не важећи Директоријум" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Вредност је потребна и не може да буде празан" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не одговара по облику датума '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' је мањи од %min% дугачко знакова" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' је више од %max% дугачко знакова" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' није између '%min%' и '%max%', укључиво" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Лозинке се не подударају" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "'Cue in' и 'cue out' су нуле." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Одабери Државу" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Не можеш да преместиш ставке из повезаних емисија" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Застарео се прегледан распоред! (неважећи распоред)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Застарео се прегледан распоред! (пример неусклађеност)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Застарео се прегледан распоред!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Не смеш да закажеш распоредну емисију %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Не можеш да додаш датотеке за снимљене емисије." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Емисија %s је готова и не могу да буде заказана." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Раније је %s емисија већ била ажурирана!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Изабрани Фајл не постоји!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Емисије могу да имају највећу дужину 24 сата." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Не може да се закаже преклапајуће емисије.\n" -"Напомена: Промена величине понављане емисије утиче на све њене понављање." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Реемитовање од %s од %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Дужина мора да буде већа од 0 минута" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Дужина мора да буде у облику \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL мора да буде у облику \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL мора да буде 512 знакова или мање" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Не постоји MIME тип за пренос." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Име преноса не може да да буде празно" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Нисмо могли анализирати XSPF списак песама" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Нисмо могли анализирати PLS списак песама" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Нисмо могли анализирати M3U списак песама" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Неважећи пренос - Чини се да је ово преузимање." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Непознати преносни тип: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Снимљена датотека не постоји" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Метаподаци снимљеног фајла" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Уређивање Програма" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Дозвола одбијена" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Не можеш повући и испустити понављајуће емисије" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Не можеш преместити догађане емисије" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Не можеш преместити емисију у прошлости" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Емисија је избрисана јер је снимљена емисија не постоји!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Мораш причекати 1 сат за ре-емитовање." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Песма" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Пуштена" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "до" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s садржава угнежђене надзиране директоријуме: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s не постоји у листи надзираних локације." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s је већ надзиран." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s није ваљан директоријум." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)." - -#~ msgid "(Required)" -#~ msgstr "(Обавезно)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Твоја радијска станица веб странице)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(служи само за проверу, неће да буде објављена)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "О пројекту" - -#~ msgid "Add New Field" -#~ msgstr "Додај Ново Поље" - -#~ msgid "Add more elements" -#~ msgstr "Додај више елемената" - -#~ msgid "Add this show" -#~ msgstr "Додај ову емисију" - -#~ msgid "Additional Options" -#~ msgstr "Додатне Опције" - -#~ msgid "Admin Password" -#~ msgstr "Aдминска Лозинка" - -#~ msgid "Admin User" -#~ msgstr "Админ Корисник" - -#~ msgid "Advanced Search Options" -#~ msgstr "Напредне Опције Претраживања" - -#~ msgid "All rights are reserved" -#~ msgstr "Сва права задржана" - -#~ msgid "Audio Track" -#~ msgstr "Звучни Запис" - -#~ msgid "Choose Days:" -#~ msgstr "Одабери Дане:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Одабери Емисијску Степену" - -#~ msgid "Choose folder" -#~ msgstr "Одабери фолдер" - -#~ msgid "City:" -#~ msgstr "Град:" - -#~ msgid "Clear" -#~ msgstr "Очисти" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије" - -#~ msgid "Country:" -#~ msgstr "Држава:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Стварање Шаблона за Датотечни Сажеци" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Стварање Листу Шаблона" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Именовање" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Именовање Без Изведених Дела" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Именовање Некомерцијално" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Дели Под Истим Условима" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Актуална Увозна Мапа:" - -#~ msgid "Cursor" -#~ msgstr "Показивач" - -#~ msgid "Default Length:" -#~ msgstr "Задата Дужина:" - -#~ msgid "Default License:" -#~ msgstr "Задата Дозвола:" - -#~ msgid "Disk Space" -#~ msgstr "Дисковни Простор" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Динамички Паметан Блок" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Динамички Паметан Блок Критеријуми:" - -#~ msgid "Empty playlist content" -#~ msgstr "Празан садржај списак песама" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Проширење Динамичког Блока" - -#~ msgid "Expand Static Block" -#~ msgstr "Проширење Статичког Bloка" - -#~ msgid "Fade in: " -#~ msgstr "Одтамњење:" - -#~ msgid "Fade out: " -#~ msgstr "Затамњење:" - -#~ msgid "File Path:" -#~ msgstr "Стажа Датотека:" - -#~ msgid "File Summary" -#~ msgstr "Датотечни Извештај" - -#~ msgid "File Summary Templates" -#~ msgstr "Шаблони за Датотечни Сажеци" - -#~ msgid "File import in progress..." -#~ msgstr "Увоз датотеке је у току..." - -#~ msgid "Filter History" -#~ msgstr "Филтрирај Историје" - -#~ msgid "Find" -#~ msgstr "Пронађи" - -#~ msgid "Find Shows" -#~ msgstr "Пронађи Емисије" - -#~ msgid "First Name" -#~ msgstr "Име" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "За више детаља, прочитај %sУпутству за употребу%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Метаподаци" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ако је иза Airtime-а рутер или заштитни зид, можда мораш да конфигуришеш поље порта прослеђивање и ово информационо поље ће да буде нетачан. У том случају мораћеш ручно да ажурираш ово поље, да би показао тачноhost/port/mount да се могу да повеже твоји диск-џокеји. Допуштени опсег је између 1024 и 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Број:" - -#~ msgid "Last Name" -#~ msgstr "Презиме" - -#~ msgid "Length:" -#~ msgstr "Дужина:" - -#~ msgid "Limit to " -#~ msgstr "Ограничено за" - -#~ msgid "Listen" -#~ msgstr "Слушај" - -#~ msgid "Live Stream Input" -#~ msgstr "Улаз Уживног Преноса" - -#~ msgid "Live stream" -#~ msgstr "Пренос уживо" - -#~ msgid "Log Sheet" -#~ msgstr "Списак Пријава" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Шаблони Списак Пријаве" - -#~ msgid "Logout" -#~ msgstr "Одјава" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Изгледа страница коју си тражио не постоји!" - -#~ msgid "Manage Users" -#~ msgstr "Управљање Кориснике" - -#~ msgid "Master Source" -#~ msgstr "Мајсторски Извор" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Монтирање не може да буде празна са Icecast сервером." - -#~ msgid "New File Summary Template" -#~ msgstr "Нови Шаблон за Датотечни Сажеци" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Нови Листу шаблона" - -#~ msgid "New User" -#~ msgstr "Нови Корисник" - -#~ msgid "New password" -#~ msgstr "Нова лозинка" - -#~ msgid "Next:" -#~ msgstr "Следећа:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Нема Шаблона за Датотечни Сажеци" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Нема Листу Шаблона" - -#~ msgid "No open playlist" -#~ msgstr "Нема отворених списак песама" - -#~ msgid "No webstream" -#~ msgstr "Нема преноса" - -#~ msgid "OK" -#~ msgstr "ОК" - -#~ msgid "ON AIR" -#~ msgstr "ПРЕНОС" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Допуштени су само бројеви." - -#~ msgid "Original Length:" -#~ msgstr "Оригинална Дужина:" - -#~ msgid "Page not found!" -#~ msgstr "Страница није пронађена!" - -#~ msgid "Phone:" -#~ msgstr "Телефон:" - -#~ msgid "Play" -#~ msgstr "Покрени" - -#~ msgid "Playlist Contents: " -#~ msgstr "Садржаји Списак Песама:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Крижно утишавање списак песама" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Унеси и потврди своју нову лозинку у поља доле." - -#~ msgid "Please upgrade to " -#~ msgstr "Молимо надогради на" - -#~ msgid "Port cannot be empty." -#~ msgstr "Port не може да буде празан." - -#~ msgid "Previous:" -#~ msgstr "Претходна:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Менаџер програма могу да уради следеће:" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime Регистар" - -#~ msgid "Remove watched directory" -#~ msgstr "Уклони надзорану директоријуму" - -#~ msgid "Repeat Days:" -#~ msgstr "Поновљени Дани:" - -#~ msgid "Sample Rate:" -#~ msgstr "Узорак Стопа:" - -#~ msgid "Save playlist" -#~ msgstr "Сачувај списак песама" - -#~ msgid "Select stream:" -#~ msgstr "Преноси:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Сервер не може да буде празан." - -#~ msgid "Set" -#~ msgstr "Подеси" - -#~ msgid "Set Cue In" -#~ msgstr "Подеси Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Подеси Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Подеси Подразумевано Шаблону" - -#~ msgid "Share" -#~ msgstr "Подели" - -#~ msgid "Show Source" -#~ msgstr "Emisijski Izvor" - -#~ msgid "Show Summary" -#~ msgstr "Програмски Извештај" - -#~ msgid "Show Waveform" -#~ msgstr "Емисијски звучни таласни облик" - -#~ msgid "Show me what I am sending " -#~ msgstr "Покажи ми шта шаљем" - -#~ msgid "Shuffle playlist" -#~ msgstr "Случајни избор списак песама" - -#~ msgid "Source Streams" -#~ msgstr "Преносни Извори" - -#~ msgid "Static Smart Block" -#~ msgstr "Статички Паметан Блок" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Статички Паметан Блок Садржаји:" - -#~ msgid "Station Description:" -#~ msgstr "Опис:" - -#~ msgid "Station Web Site:" -#~ msgstr "Веб Страница:" - -#~ msgid "Stop" -#~ msgstr "Стани" - -#~ msgid "Stream " -#~ msgstr "Пренос" - -#~ msgid "Stream Settings" -#~ msgstr "Преносна Подешавања" - -#~ msgid "Stream URL:" -#~ msgstr "URL Преноса:" - -#~ msgid "Stream URL: " -#~ msgstr "URL Преноса:" - -#~ msgid "Style" -#~ msgstr "Стил" - -#~ msgid "Support Feedback" -#~ msgstr "Повратне Информације" - -#~ msgid "Support setting updated." -#~ msgstr "Подршка подешавања је ажурирана." - -#~ msgid "Terms and Conditions" -#~ msgstr "Услови и Одредбе" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Жељена дужина блока неће да буде постигнут јер Airtime не могу да пронађе довољно јединствене песме које одговарају твојим критеријумима. Омогући ову опцију ако желиш да допустиш да неке песме могу да се више пута понављају." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Рад је у јавном домену" - -#~ msgid "This version is no longer supported." -#~ msgstr "Ова верзија више није подржана." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ова верзија ускоро ће да буде застарео." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Песма:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Упиши знаке које видиш на слици у наставку." - -#~ msgid "Update Required" -#~ msgstr "Потребно Ажурирање" - -#~ msgid "Update show" -#~ msgstr "Ажурирање емисије" - -#~ msgid "User Type" -#~ msgstr "Врста Корисника" - -#~ msgid "Web Stream" -#~ msgstr "Пренос" - -#~ msgid "What" -#~ msgstr "Шта" - -#~ msgid "When" -#~ msgstr "Када" - -#~ msgid "Who" -#~ msgstr "Ко" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Не пратиш ниједне медијске мапе." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Мораш да пристанеш на правила о приватности." - -#~ msgid "Your trial expires in" -#~ msgstr "Ваш налог истиче у" - -#~ msgid "and" -#~ msgstr "и" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "датотеке задовољавају критеријуме" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "макс гласноћа" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "следећа" - -#~ msgid "or" -#~ msgstr "или" - -#~ msgid "pause" -#~ msgstr "пауза" - -#~ msgid "play" -#~ msgstr "покрени" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "молимо стави у време у секундама '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "претходна" - -#~ msgid "stop" -#~ msgstr "заустави" - -#~ msgid "unmute" -#~ msgstr "укључи" diff --git a/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po b/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po deleted file mode 100644 index de1a40c2b6..0000000000 --- a/webapp/src/locale/po/sr_RS@latin/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4606 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Serbian (Latin) (Serbia)\n" -"Language: sr_RS@latin\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Godina %s mora da bude u rasponu između 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nije ispravan datum" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nije ispravan datum" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Kalendar" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Korisnici" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Prenosi" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Stanje" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Istorija Puštenih Pesama" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Istorijski Šabloni" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Slušateljska Statistika" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Pomoć" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Početak Korišćenja" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Uputstvo" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Ne smeš da pristupiš ovog izvora." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Ne smeš da pristupite ovog izvora." - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Neispravan zahtev." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Neispravan zahtev" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Nemaš dopuštenje da isključiš izvor." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "Nema spojenog izvora na ovaj ulaz." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Nemaš dozvolu za promenu izvora." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nije pronađen" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Nešto je pošlo po krivu." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Pregled" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Dodaj na Spisak Pesama" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Dodaj u Smart Block" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Obriši" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Preuzimanje" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Udvostručavanje" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Nema dostupnih akcija" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Nemaš dopuštenje za brisanje odabrane stavke." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Kopiranje od %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Uređaj" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Snimanje:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Majstorski Prenos" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Prenos Uživo" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Ništa po rasporedu" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Sadašnja Emisija:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Trenutna" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Ti imaš instaliranu najnoviju verziju" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Nova verzija je dostupna:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Dodaj u trenutni spisak pesama" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Dodaj u trenutni smart block" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Dodavanje 1 Stavke" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Dodavanje %s Stavke" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Možeš da dodaš samo pesme kod pametnih blokova." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Molimo odaberi mesto pokazivača na vremenskoj crti." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Dodaj" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Uređivanje" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Ukloni" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Uredi Metapodatke" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Dodaj u odabranoj emisiji" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Odaberi" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Odaberi ovu stranicu" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Odznači ovu stranicu" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Odznači sve" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Jesi li siguran da želiš da izbrišeš odabranu (e) stavu (e)?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Zakazana" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Naziv" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Tvorac" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Album" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Prenos Bita" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Kompozitor" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Dirigent" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Autorsko pravo" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Kodirano je po" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Žanr" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Nalepnica" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Jezik" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Poslednja Izmena" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Zadnji Put Odigrana" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Dužina" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Raspoloženje" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Vlasnik" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Uzorak Stopa" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Broj Pesma" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Dodata" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Veb stranica" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Godina" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Učitavanje..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Sve" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Datoteke" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Liste pesama" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Smart Block-ovi" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Prenosi" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Nepoznati tip:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Jesi li siguran da želiš da obrišeš izabranu stavku?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Prenos je u toku..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Preuzimanje podataka sa servera..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Šifra greške:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Poruka o grešci:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Mora da bude pozitivan broj" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Mora da bude broj" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Mora da bude u obliku: gggg-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Mora da bude u obliku: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Trenutno je prenos datoteke. %sOdlazak na drugom ekranu će da otkaže proces slanja. %s" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Otvori Medijskog Graditelja" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "molimo stavi u vreme '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Tvoj pretraživač ne podržava ovu vrstu audio fajl:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Dinamički blok nije dostupan za pregled" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Ograničiti se na:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Spisak pesama je spremljena" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Spisak pesama je izmešan" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime je nesiguran o statusu ove datoteke. To takođe može da se desi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktorijumi, koja se više nije 'praćena odnosno nadzirana'." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Broj Slušalaca %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Podseti me za 1 nedelju" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Nikad me više ne podseti" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Da, pomažem Airtime-u" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Slika mora da bude jpg, jpeg, png, ili gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Statički pametni blokovi spremaju kriterijume i odmah generišu blok sadržaja. To ti omogućava da urediš i vidiš ga u biblioteci pre nego što ga dodaš na emisiju." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Dinamički pametni blokovi samo kriterijume spremaju. Blok sadržaja će se generiše nakon što ga dodamo na emisiju. Nećeš moći da pregledaš i uređivaš sadržaj u biblioteci." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Smart block je izmešan" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Smart block je generisan i kriterijume su spremne" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Smart block je sačuvan" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Obrada..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Odaberi modifikator" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "sadrži" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "ne sadrži" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "je" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "nije" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "počinje se sa" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "završava se sa" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "je veći od" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "je manji od" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "je u opsegu" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Generiši" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Odaberi Mapu za Skladištenje" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Odaberi Mapu za Praćenje" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Jesi li siguran da želiš da promeniš mapu za skladištenje?\n" -"To će da ukloni datoteke iz tvoje biblioteke!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Upravljanje Medijske Mape" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Jesi li siguran da želiš da ukloniš nadzorsku mapu?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Ovaj put nije trenutno dostupan." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Neke vrste emitovanje zahtevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovde dostupni." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Priključen je na serveru" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Prenos je onemogućen" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Dobijanje informacija sa servera..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Ne može da se poveže na serveru" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Proveri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Proveri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Proveri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Ako tvoj Icecast server očekuje korisničko ime iz 'izvora', ovo polje može da ostane prazno." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo da bude 'izvor'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Upozorenje: Ne možeš promeniti sadržaj polja, dok se sadašnja emisija ne završava" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Nema pronađenih rezultata" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "To sledi isti obrazac bezbednosti za emisije: samo dodeljeni korisnici mogu da se poveže na emisiju." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Odredi prilagođene autentifikacije koje će da se uvaži samo za ovu emisiju." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Emisija u ovom slučaju više ne postoji!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Upozorenje: Emisije ne može ponovo da se poveže" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stava u svakoj ponavljajućim emisijama dobiće isti raspored takođe i u drugim ponavljajućim emisijama" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Vremenska zona je postavljena po staničnu zonu prema zadatim. Emisije u kalendaru će se da prikaže po tvojim lokalnom vremenu koja je definisana u interfejsa vremenske zone u tvojim korisničkim postavci." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Emisija" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Emisija je prazna" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1m" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5m" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10m" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15m" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30m" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60m" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Dobijanje podataka sa servera..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Ova emisija nema zakazanog sadržaja." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Januar" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Februar" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Mart" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "April" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Maj" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Jun" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Jul" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Avgust" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Septembar" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Oktobar" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Novembar" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Decembar" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Jan" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Feb" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Apr" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Jun" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Jul" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Avg" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Sep" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Okt" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Nov" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Dec" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Nedelja" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Ponedeljak" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Utorak" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Sreda" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Četvrtak" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Petak" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Subota" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Ned" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Pon" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Uto" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Sre" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Čet" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Pet" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Sub" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Emisija duže od predviđenog vremena će da bude odsečen." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Otkaži Trenutnog Programa?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Zaustavljanje snimanje emisije?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Sadržaj Emisije" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Ukloniš sve sadržaje?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Obrišeš li odabranu (e) stavu (e)?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Početak" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Završetak" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Trajanje" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Odtamnjenje" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Zatamnjenje" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Prazna Emisija" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Snimanje sa Line In" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Pregled pesma" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Ne može da se zakazuje van emisije." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Premeštanje 1 Stavka" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Premeštanje %s Stavke" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Sačuvaj" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Odustani" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Uređivač za (Od-/Za-)tamnjivanje" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Cue Uređivač" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Talasni oblik funkcije su dostupne u sporednu Web Audio API pregledaču" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Odaberi sve" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Ne odaberi ništa" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Ukloni odabrane zakazane stavke" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Skoči na trenutnu sviranu pesmu" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Poništi trenutnu emisiju" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Otvori biblioteku za dodavanje ili uklanjanje sadržaja" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Dodaj / Ukloni Sadržaj" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "u upotrebi" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Disk" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Pogledaj unutra" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Otvori" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Administrator" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "Disk-džokej" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Voditelj Programa" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Gost" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Gosti mogu da uradi sledeće:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Pregled rasporeda" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Pregled sadržaj emisije" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "Disk-džokeji mogu da uradi sledeće:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Upravljanje dodeljen sadržaj emisije" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Uvoz medijske fajlove" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Izradi liste pesama, pametne blokove, i prenose" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Upravljanje svoje bibliotečkog sadržaja" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Prikaz i upravljanje sadržaj emisije" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Rasporedne emisije" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Upravljanje sve sadržaje biblioteka" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Administratori mogu da uradi sledeće:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Upravljanje podešavanja" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Upravljanje korisnike" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Upravljanje nadziranih datoteke" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Pošalji povratne informacije" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Pregled stanja sistema" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Pristup za istoriju puštenih pesama" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Pogledaj statistiku slušaoce" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Pokaži/sakrij kolone" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "Od {from} do {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "gggg-mm-dd" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Ne" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Po" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Ut" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Sr" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Če" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Pe" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Su" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Zatvori" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Sat" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Minuta" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Gotovo" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Izaberi datoteke" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Dodaj Datoteke" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Zaustavi Upload" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Pokreni upload" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Dodaj datoteke" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Poslata %d/%d datoteka" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Povuci datoteke ovde." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Greška (oznaku tipa datoteke)." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Greška veličine datoteke." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Greška broj datoteke." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Init greška." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP Greška." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Bezbednosna greška." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Generička greška." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO greška." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Fajl: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d datoteka na čekanju" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Prenosni URL može da bude u krivu ili ne postoji" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Greška: Datoteka je prevelika:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Greška: Nevažeći oznak tipa datoteka:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Postavi Podrazumevano" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Stvaranje Unosa" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Uredi Istorijat Upisa" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nema Programa" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s red%s je kopiran u međumemoriju" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sIspis pogled%sMolimo, koristi pregledača štampanje funkciju za štampanje ovu tabelu. Kad završiš, pritisni Escape." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Opis" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Omogućeno" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Onemogućeno" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš da dodaš pesme za dinamične blokove." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo pesme da dodaš za pametnog bloka." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Neimenovani Spisak Pesama" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Neimenovani Smart Block" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Nepoznati Spisak Pesama" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Podešavanja su ažurirane." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Prenos Podešavanje je Ažurirano." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "put bi trebao da bude specificiran" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Problem sa Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Reemitovanje emisija %s od %s na %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Odaberi pokazivač" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "emisija ne postoji" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Korisnik je uspešno dodat!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Korisnik je uspešno ažuriran!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Podešavanja su uspešno ažurirane!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Neimenovani Prenos" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Prenos je sačuvan." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Nevažeći vrednosti obrasca." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Dan mora da bude naveden" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Vreme mora da bude navedeno" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Koristi Prilagođeno potvrdu identiteta:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Prilagođeno Korisničko Ime" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Prilagođena Lozinka" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "'Korisničko Ime' polja ne sme da ostane prazno." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "'Lozinka' polja ne sme da ostane prazno." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Ponovo da emituje?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "dani" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Link:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Tip Ponavljanje:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "nedeljno" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "svake 2 nedelje" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "svaka 3 nedelje" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "svaka 4 nedelje" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "mesečno" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Odaberi Dane:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Ponavljanje Po:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "dan u mesecu" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "dan u nedelji" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Datum Završetka:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nema Kraja?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Datum završetka mora da bude posle datuma početka" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Molimo, odaberi kojeg dana" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Boja Pozadine:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Boja Teksta:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Naziv:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Neimenovana Emisija" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Žanr:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Opis:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Trajanje:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Vremenska Zona:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Ponavljanje?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Ne može da se stvori emisiju u prošlosti" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Datum završetka i vreme ne može da bude u prošlosti" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Ne može da traje < 0m" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Ne može da traje 00h 00m" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Ne može da traje više od 24h" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Ne možeš zakazati preklapajuće emisije" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Traži Korisnike:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Disk-džokeji:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Korisničko ime:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Lozinka:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potvrdi Lozinku:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Ime:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Prezime:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobilni Telefon:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Tipova Korisnika:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Ime prijave nije jedinstveno." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Datum Početka:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Naziv:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvorac:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Godina:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Nalepnica:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Kompozitor:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Dirigent:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Raspoloženje:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorsko pravo:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Broj:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Veb stranica:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Jezik:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Vreme Početka" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Vreme Završetka" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska Zona Interfejsi:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Naziv Stanice" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Logo:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Napomena: Sve veća od 600k600 će da se menjaju." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Podrazumevano Trajanje Ukršteno Stišavanje (s):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Podrazumevano Odtamnjenje (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Podrazumevano Zatamnjenje (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Stanična Vremenska Zona" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Prvi Dan u Nedelji" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Prijava" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Lozinka" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Potvrdi novu lozinku" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Lozinke koje ste uneli ne podudaraju se." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Korisničko ime" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Resetuj lozinku" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Trenutno Izvođena" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Sve Moje Emisije:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Odaberi kriterijume" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Brzina u Bitovima (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Uzorak Stopa (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "sati" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "minuti" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "elementi" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinamički" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Statički" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Sadržaj slučajni izbor spisak pesama" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Mešanje" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može da bude prazan ili manji od 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može da bude više od 24 sati" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Vrednost mora da bude ceo broj" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Moraš da izabereš Kriteriju i Modifikaciju" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala da bude u '00:00:00' obliku" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Vrednost mora da bude numerička" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Vrednost bi trebala da bude manja od 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrednost mora da bude manja od %s znakova" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Vrednost ne može da bude prazna" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Vidljivi Podaci:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Autor - Naziv" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Emisija - Autor - Naziv" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Naziv stanice - Naziv emisije" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Off Air Metapodaci" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Uključi Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifikator" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Omogućeno:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Prenos Tipa:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Brzina u Bitovima:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Tip Usluge:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanali:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Server" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Tačka Montiranja" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Naziv" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Uvozna Mapa:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Mape Pod Nadzorom:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Ne važeći Direktorijum" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Vrednost je potrebna i ne može da bude prazan" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "'Cue in' i 'cue out' su nule." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Odaberi Državu" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Ne možeš da premestiš stavke iz povezanih emisija" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Zastareo se pregledan raspored! (nevažeći raspored)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Zastareo se pregledan raspored! (primer neusklađenost)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Zastareo se pregledan raspored!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Ne smeš da zakažeš rasporednu emisiju %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Ne možeš da dodaš datoteke za snimljene emisije." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Emisija %s je gotova i ne mogu da bude zakazana." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Ranije je %s emisija već bila ažurirana!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Izabrani Fajl ne postoji!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Emisije mogu da imaju najveću dužinu 24 sata." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Ne može da se zakaže preklapajuće emisije.\n" -"Napomena: Promena veličine ponavljane emisije utiče na sve njene ponavljanje." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Reemitovanje od %s od %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dužina mora da bude veća od 0 minuta" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dužina mora da bude u obliku \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL mora da bude u obliku \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL mora da bude 512 znakova ili manje" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Ne postoji MIME tip za prenos." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Ime prenosa ne može da da bude prazno" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Nismo mogli analizirati XSPF spisak pesama" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Nismo mogli analizirati PLS spisak pesama" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Nismo mogli analizirati M3U spisak pesama" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nepoznati prenosni tip: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Snimljena datoteka ne postoji" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Metapodaci snimljenog fajla" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Uređivanje Programa" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "Dozvola odbijena" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Ne možeš premestiti događane emisije" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Ne možeš premestiti emisiju u prošlosti" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Ne možeš premestiti snimljene emisije ranije od 1 sat vremena pre njenih reemitovanja." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moraš pričekati 1 sat za re-emitovanje." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Pesma" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Puštena" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "do" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s ne postoji u listi nadziranih lokacije." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s je već nadziran." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s nije valjan direktorijum." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)." - -#~ msgid "(Required)" -#~ msgstr "(Obavezno)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Tvoja radijska stanica veb stranice)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(služi samo za proveru, neće da bude objavljena)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "About" -#~ msgstr "O projektu" - -#~ msgid "Add New Field" -#~ msgstr "Dodaj Novo Polje" - -#~ msgid "Add more elements" -#~ msgstr "Dodaj više elemenata" - -#~ msgid "Add this show" -#~ msgstr "Dodaj ovu emisiju" - -#~ msgid "Additional Options" -#~ msgstr "Dodatne Opcije" - -#~ msgid "Admin Password" -#~ msgstr "Adminska Lozinka" - -#~ msgid "Admin User" -#~ msgstr "Admin Korisnik" - -#~ msgid "Advanced Search Options" -#~ msgstr "Napredne Opcije Pretraživanja" - -#~ msgid "All rights are reserved" -#~ msgstr "Sva prava zadržana" - -#~ msgid "Audio Track" -#~ msgstr "Zvučni Zapis" - -#~ msgid "Choose Days:" -#~ msgstr "Odaberi Dane:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Odaberi Emisijsku Stepenu" - -#~ msgid "Choose folder" -#~ msgstr "Odaberi folder" - -#~ msgid "City:" -#~ msgstr "Grad:" - -#~ msgid "Clear" -#~ msgstr "Očisti" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije" - -#~ msgid "Country:" -#~ msgstr "Država:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Stvaranje Šablona za Datotečni Sažeci" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Stvaranje Listu Šablona" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Imenovanje" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Imenovanje Bez Izvedenih Dela" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Deli Pod Istim Uslovima" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Aktualna Uvozna Mapa:" - -#~ msgid "Cursor" -#~ msgstr "Pokazivač" - -#~ msgid "Default Length:" -#~ msgstr "Zadata Dužina:" - -#~ msgid "Default License:" -#~ msgstr "Zadata Dozvola:" - -#~ msgid "Disk Space" -#~ msgstr "Diskovni Prostor" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dinamički Pametan Blok" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dinamički Pametan Blok Kriterijumi:" - -#~ msgid "Empty playlist content" -#~ msgstr "Prazan sadržaj spisak pesama" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Proširenje Dinamičkog Bloka" - -#~ msgid "Expand Static Block" -#~ msgstr "Proširenje Statičkog Bloka" - -#~ msgid "Fade in: " -#~ msgstr "Odtamnjenje:" - -#~ msgid "Fade out: " -#~ msgstr "Zatamnjenje:" - -#~ msgid "File Path:" -#~ msgstr "Staža Datoteka:" - -#~ msgid "File Summary" -#~ msgstr "Datotečni Izveštaj" - -#~ msgid "File Summary Templates" -#~ msgstr "Šabloni za Datotečni Sažeci" - -#~ msgid "File import in progress..." -#~ msgstr "Uvoz datoteke je u toku..." - -#~ msgid "Filter History" -#~ msgstr "Filtriraj Istorije" - -#~ msgid "Find" -#~ msgstr "Pronađi" - -#~ msgid "Find Shows" -#~ msgstr "Pronađi Emisije" - -#~ msgid "First Name" -#~ msgstr "Ime" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Za više detalja, pročitaj %sUputstvu za upotrebu%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metapodaci" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ako je iza Airtime-a ruter ili zaštitni zid, možda moraš da konfigurišeš polje porta prosleđivanje i ovo informaciono polje će da bude netačan. U tom slučaju moraćeš ručno da ažuriraš ovo polje, da bi pokazao tačnohost/port/mount da se mogu da poveže tvoji disk-džokeji. Dopušteni opseg je između 1024 i 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Broj:" - -#~ msgid "Last Name" -#~ msgstr "Prezime" - -#~ msgid "Length:" -#~ msgstr "Dužina:" - -#~ msgid "Limit to " -#~ msgstr "Ograničeno za" - -#~ msgid "Listen" -#~ msgstr "Slušaj" - -#~ msgid "Live Stream Input" -#~ msgstr "Ulaz Uživnog Prenosa" - -#~ msgid "Live stream" -#~ msgstr "Prenos uživo" - -#~ msgid "Log Sheet" -#~ msgstr "Spisak Prijava" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Šabloni Spisak Prijave" - -#~ msgid "Logout" -#~ msgstr "Odjava" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Izgleda stranica koju si tražio ne postoji!" - -#~ msgid "Manage Users" -#~ msgstr "Upravljanje Korisnike" - -#~ msgid "Master Source" -#~ msgstr "Majstorski Izvor" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Montiranje ne može da bude prazna sa Icecast serverom." - -#~ msgid "New File Summary Template" -#~ msgstr "Novi Šablon za Datotečni Sažeci" - -#~ msgid "New Log Sheet Template" -#~ msgstr "Novi Listu šablona" - -#~ msgid "New User" -#~ msgstr "Novi Korisnik" - -#~ msgid "New password" -#~ msgstr "Nova lozinka" - -#~ msgid "Next:" -#~ msgstr "Sledeća:" - -#~ msgid "No File Summary Templates" -#~ msgstr "Nema Šablona za Datotečni Sažeci" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "Nema Listu Šablona" - -#~ msgid "No open playlist" -#~ msgstr "Nema otvorenih spisak pesama" - -#~ msgid "No webstream" -#~ msgstr "Nema prenosa" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "PRENOS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Dopušteni su samo brojevi." - -#~ msgid "Original Length:" -#~ msgstr "Originalna Dužina:" - -#~ msgid "Page not found!" -#~ msgstr "Stranica nije pronađena!" - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Pokreni" - -#~ msgid "Playlist Contents: " -#~ msgstr "Sadržaji Spisak Pesama:" - -#~ msgid "Playlist crossfade" -#~ msgstr "Križno utišavanje spisak pesama" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dole." - -#~ msgid "Please upgrade to " -#~ msgstr "Molimo nadogradi na" - -#~ msgid "Port cannot be empty." -#~ msgstr "Port ne može da bude prazan." - -#~ msgid "Previous:" -#~ msgstr "Prethodna:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Menadžer programa mogu da uradi sledeće:" - -#~ msgid "Remove watched directory" -#~ msgstr "Ukloni nadzoranu direktorijumu" - -#~ msgid "Repeat Days:" -#~ msgstr "Ponovljeni Dani:" - -#~ msgid "Sample Rate:" -#~ msgstr "Uzorak Stopa:" - -#~ msgid "Save playlist" -#~ msgstr "Sačuvaj spisak pesama" - -#~ msgid "Select stream:" -#~ msgstr "Prenosi:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Server ne može da bude prazan." - -#~ msgid "Set" -#~ msgstr "Podesi" - -#~ msgid "Set Cue In" -#~ msgstr "Podesi Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Podesi Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Podesi Podrazumevano Šablonu" - -#~ msgid "Share" -#~ msgstr "Podeli" - -#~ msgid "Show Source" -#~ msgstr "Emisijski Izvor" - -#~ msgid "Show Summary" -#~ msgstr "Programski Izveštaj" - -#~ msgid "Show Waveform" -#~ msgstr "Emisijski zvučni talasni oblik" - -#~ msgid "Show me what I am sending " -#~ msgstr "Pokaži mi šta šaljem" - -#~ msgid "Shuffle playlist" -#~ msgstr "Slučajni izbor spisak pesama" - -#~ msgid "Source Streams" -#~ msgstr "Prenosni Izvori" - -#~ msgid "Static Smart Block" -#~ msgstr "Statički Pametan Blok" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Statički Pametan Blok Sadržaji:" - -#~ msgid "Station Description:" -#~ msgstr "Opis:" - -#~ msgid "Station Web Site:" -#~ msgstr "Veb Stranica:" - -#~ msgid "Stop" -#~ msgstr "Stani" - -#~ msgid "Stream " -#~ msgstr "Prenos" - -#~ msgid "Stream Settings" -#~ msgstr "Prenosna Podešavanja" - -#~ msgid "Stream URL:" -#~ msgstr "URL Prenosa:" - -#~ msgid "Stream URL: " -#~ msgstr "URL Prenosa:" - -#~ msgid "Style" -#~ msgstr "Stil" - -#~ msgid "Support Feedback" -#~ msgstr "Povratne Informacije" - -#~ msgid "Support setting updated." -#~ msgstr "Podrška podešavanja je ažurirana." - -#~ msgid "Terms and Conditions" -#~ msgstr "Uslovi i Odredbe" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Željena dužina bloka neće da bude postignut jer Airtime ne mogu da pronađe dovoljno jedinstvene pesme koje odgovaraju tvojim kriterijumima. Omogući ovu opciju ako želiš da dopustiš da neke pesme mogu da se više puta ponavljaju." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:" - -#~ msgid "The work is in the public domain" -#~ msgstr "Rad je u javnom domenu" - -#~ msgid "This version is no longer supported." -#~ msgstr "Ova verzija više nije podržana." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ova verzija uskoro će da bude zastareo." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Pesma:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Upiši znake koje vidiš na slici u nastavku." - -#~ msgid "Update Required" -#~ msgstr "Potrebno Ažuriranje" - -#~ msgid "Update show" -#~ msgstr "Ažuriranje emisije" - -#~ msgid "User Type" -#~ msgstr "Vrsta Korisnika" - -#~ msgid "Web Stream" -#~ msgstr "Prenos" - -#~ msgid "What" -#~ msgstr "Šta" - -#~ msgid "When" -#~ msgstr "Kada" - -#~ msgid "Who" -#~ msgstr "Ko" - -#~ msgid "You are not watching any media folders." -#~ msgstr "Ne pratiš nijedne medijske mape." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Moraš da pristaneš na pravila o privatnosti." - -#~ msgid "Your trial expires in" -#~ msgstr "Vaš nalog ističe u" - -#~ msgid "and" -#~ msgstr "i" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "datoteke zadovoljavaju kriterijume" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "maks glasnoća" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "sledeća" - -#~ msgid "or" -#~ msgstr "ili" - -#~ msgid "pause" -#~ msgstr "pauza" - -#~ msgid "play" -#~ msgstr "pokreni" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "molimo stavi u vreme u sekundama '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "prethodna" - -#~ msgid "stop" -#~ msgstr "zaustavi" - -#~ msgid "unmute" -#~ msgstr "uključi" diff --git a/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po b/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po deleted file mode 100644 index 06d806c893..0000000000 --- a/webapp/src/locale/po/tr_TR/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4235 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# M. Ömer Gölgeli , 2015 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2022-06-28 07:22+0000\n" -"Last-Translator: metezd \n" -"Language-Team: Turkish \n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.13.1-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "%s yılı 1753 - 9999 aralığında olmalıdır" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s geçerli bir tarih değil" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s geçerli bir zaman değil" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "İngilizce" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Afarca" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Abhazca" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Afrikanca" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Amharca" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Arapça" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Assam dili" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Aymaraca" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Azerice" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Başkurtça" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Belarusça" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Bulgarca" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Bihari" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Bislama" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Bengalce" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Tibetçe" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Bretonca" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Katalanca" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Korsikaca" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Çekçe" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Galce" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Danca" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Almanca" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Bhutani" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Yunanca" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Esperanto" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "İspanyolca" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Estonca" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Baskça" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Farsça" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Fince" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Fiji" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Faroece" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Fransızca" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Frizce" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "İrlandaca" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "İskoçça" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Galiçyaca" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Guarani" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Guceratça" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Hausa dili" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Hintçe" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Hırvatça" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Macarca" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Ermenice" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "İnterlingua" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "İnterlingue" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Endonezyaca" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "İzlandaca" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "İtalyanca" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "İbranice" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Japonca" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Yidçe" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Cavaca" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Gürcüce" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Kazakça" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Grönlandca" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Kannada" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Korece" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Kürtçe" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Kırgızca" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Latince" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Litvanyaca" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Letonca/Lettçe" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Madagaskarca" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Maori dili" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Makedonca" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Malayalamca" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Moğolca" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Moldovyaca" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Malayca" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Maltaca" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Nepalce" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Felemenkçe" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Norveççe" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Oksitanca" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Pencapça" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Lehçe" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Peştuca/Puşto" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Portekizce" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Keçuva" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Rumence" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Rusça" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Sanskritçe" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Sırpça-Hırvatça" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Slovakça" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Slovence" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Arnavutça" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Sırpça" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "İsveççe" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Tamilce" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Tacikçe" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Türkmence" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Türkçe" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Tatarca" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Ukraynaca" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Urduca" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Özbekçe" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Çince" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Profilim" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Kullanıcılar" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Durum" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Yardım" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Başlarken" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Kullanım Kılavuzu" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Çevrim İçi Yardım Alın" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "LibreTime'a Katkıda Bulunun" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "" - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Sayfa bulunamadı." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Bir şeyler yanlış gitti." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Ön izleme" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Sil" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Düzenle..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "İndir" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Audio Player" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Bir şeyler yanlış gitti!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Canlı yayın" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Ekle" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Yeni" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Düzenle" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Kaldır" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Seç" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Bu sayfayı seç" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Bu sayfanın seçimini kaldır" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Tümünün seçimini kaldır" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Parça Adı" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Oluşturan" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Albüm" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Hızı" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Besteleyen" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Orkestra Şefi" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Telif Hakkı" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Encode eden" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Tür" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Plak Şirketi" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Dil" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Son Değiştirilme Zamanı" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Son Oynatma Zamanı" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Uzunluk" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Ruh Hali" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Sahibi" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Parça Numarası" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Yüklenme Tarihi" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Website'si" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Yıl" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Yükleniyor..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Tümü" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Dosyalar" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Bilinmeyen tür: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "" - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "" - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Hata kodu: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Hata mesajı: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "" - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Değişken seçin" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "içersin" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "içermesin" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "eşittir" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "eşit değildir" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "ile başlayan" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "ile biten" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "büyüktür" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "küçüktür" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "aralıkta" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Oluştur" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "" - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Sunucudan bilgiler getiriliyor..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "" - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "" - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "" - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Ocak" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Şubat" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Mart" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Nisan" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Mayıs" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Haziran" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Temmuz" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Ağustos" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Eylül" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Ekim" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Kasım" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Aralık" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Oca" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Şub" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Mar" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Nis" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Haz" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Tem" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Ağu" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Eyl" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Eki" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Kas" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Ara" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Bugün" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "Gün" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Hafta" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Ay" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Pazar" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Pazartesi" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Salı" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Çarşamba" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Perşembe" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "Cuma" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Cumartesi" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Paz" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Pzt" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Sal" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Çar" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Per" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Cum" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Cmt" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "OK" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Cue In" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Cue Out" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Fade In" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Fade Out" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "" - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Kaydet" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "İptal" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Yönetici (Admin)" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Program Yöneticisi" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Ziyaretçi" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Destek Geribildirimi gönder" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "kHz" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Pa" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Pt" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Sa" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Ça" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Pe" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Cu" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Ct" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Kapat" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Saat" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Dakika" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Bitti" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Dosya uzantısı hatası." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Dosya boyutu hatası." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Dosya sayısı hatası." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP hatası." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Güvenlik hatası." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Genel hata." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "GÇ hatası." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Dosya: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Hata: Dosya çok büyük: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Hata: Geçersiz dosya uzantısı: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Show Yok" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Tanım" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Aktif" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Devre dışı" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "" - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "" - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Kullanıcı başarıyla eklendi!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Kullanıcı başarıyla güncellendi!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Ayarlar başarıyla güncellendi!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Yanlış karakter girdiniz" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Günü belirtmelisiniz" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Zamanı belirtmelisiniz" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "%s Kimlik Doğrulamasını Kullan" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Özel Kimlik Doğrulama Kullan" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Özel Kullanıcı Adı" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Özel Şifre" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Kullanıcı adı kısmı boş bırakılamaz." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Şifre kısmı boş bırakılamaz." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Line In'den Kaydet?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Tekrar yayınla?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "gün" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Birbirine Bağla:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Tekrar Türü:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "haftalık" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "2 haftada bir" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "3 haftada bir" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "4 haftada bir" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "aylık" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Günleri Seçin:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Şuna göre tekrar et:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "Ayın günü" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "Haftanın günü" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Tarih Bitişi:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sonu yok?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Arkaplan Rengi" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Metin Rengi:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "İsim:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "İsimsiz Show" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Tür:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Açıklama:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Uzunluğu:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Zaman Dilimi:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Tekrar Ediyor mu?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Geçmiş tarihli bir show oluşturamazsınız" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Bitiş tarihi geçmişte olamaz" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Uzunluk < 0dk'dan kısa olamaz" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "00s 00dk Uzunluk olamaz" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Yayın süresi 24 saati geçemez" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Üst üste binen show'lar olamaz" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Kullanıcıları Ara:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "DJ'ler:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Kullanıcı Adı:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Şifre:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Şifre Onayı:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "İsim:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Soyisim:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Eposta:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Cep Telefonu:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Kullanıcı Tipi:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Kullanıcı adı eşsiz değil." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Tarih Başlangıcı:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Parça Adı:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Oluşturan:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Albüm:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Yıl:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Plak Şirketi:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Besteleyen:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Orkestra Şefi:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Ruh Hali:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Telif Hakkı:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC No:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Websitesi:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Dil:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Başlangıç Saati" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Bitiş Saati" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Arayüz Zaman Dilimi" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Radyo Adı" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Radyo Logosu:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Varsayılan Çarpraz Geçiş Süresi:" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "Varsayılan Fade In geçişi (s)" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "Varsayılan Fade Out geçişi (s)" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Radyo Saat Dilimi" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Hafta Başlangıcı" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Giriş yap" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Şifre" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Yeni şifreyi onayla" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Onay şifresiyle şifreniz aynı değil." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Kullanıcı adı" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Parolayı değiştir" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Tüm Şovlarım:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Şovlarım" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Kriter seçin" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Oranı (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Örnekleme Oranı (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "önce" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "sonra" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "arasında" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "Zaman birimi seçin" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "dakika" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "saat" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "gün" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "hafta" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "ay" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "yıl" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "saat" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "dakika" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "parça" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Rastgele" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "En yeni" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "En eski" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Dinamik" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Sabit" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Çalma listesi içeriğini karıştır" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Karıştır" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Sınırlama boş veya 0'dan küçük olamaz" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Sınırlama 24 saati geçemez" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Değer tamsayı olmalıdır" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Kriter ve Değişken seçin" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Uzunluk '00:00:00' türünde olmalıdır" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Değer rakam cinsinden girilmelidir" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Değer 2147483648'den küçük olmalıdır" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Değer %s karakter'den az olmalıdır" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Değer boş bırakılamaz" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Yayın Etiketi:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Şarkıcı - Parça Adı" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Show - Şarkıcı - Parça Adı" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Radyo adı - Show adı" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Yayın Dışında Gösterilecek Etiket" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "ReplayGain'i aktif et" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "ReplayGain Değeri" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Etkin:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Yayın Türü:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Değeri:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Servis Türü:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Kanallar:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Sunucu" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Port" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Bağlama Noktası" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "İsim" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "İçe Aktarım Klasörü" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "İzlenen Klasörler:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Geçerli bir Klasör değil." - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Değer gerekli ve boş bırakılamaz" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Girdiğiniz şifreler örtüşmüyor." - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "" - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "" - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s geçerli bir dizin değil." - -#~ msgid "1 - Mono" -#~ msgstr "1 - Mono" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Stereo" - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "Admin Password" -#~ msgstr "Yönetici Şifresi" - -#~ msgid "Admin User" -#~ msgstr "Yönetici Hesabı" - -#~ msgid "All rights are reserved" -#~ msgstr "Tüm Hakları Saklıdır" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" - -#~ msgid "City:" -#~ msgstr "Şehir:" - -#~ msgid "Country:" -#~ msgstr "Ülke:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Default License:" -#~ msgstr "Varsayılan Lisans Türü:" - -#~ msgid "First Name" -#~ msgstr "İsim" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast Vorbis Metadata" - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC No:" - -#~ msgid "Jack" -#~ msgstr "Jack" - -#~ msgid "Last Name" -#~ msgstr "Soyisim" - -#~ msgid "Live stream" -#~ msgstr "Canlı yayın" - -#~ msgid "Logout" -#~ msgstr "Oturumu kapat" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Sadece rakam girebilirsiniz." - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Play" -#~ msgstr "Oynat" - -#~ msgid "Port cannot be empty." -#~ msgstr "Port değeri boş bırakılamaz." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Promote my station on %s" -#~ msgstr "Radyomu %s'da tanıt" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "Server cannot be empty." -#~ msgstr "Sunucu değeri boş bırakılamaz." - -#~ msgid "Set Cue In" -#~ msgstr "Cue In değerini ayarla" - -#~ msgid "Set Cue Out" -#~ msgstr "Cue Out değerini ayarla" - -#~ msgid "Share" -#~ msgstr "Paylaş" - -#~ msgid "Station Description:" -#~ msgstr "Radyo Tanımı:" - -#~ msgid "Station Web Site:" -#~ msgstr "Radyo Web Sitesi:" - -#~ msgid "Stop" -#~ msgstr "Durdur" - -#~ msgid "Style" -#~ msgstr "Stil" - -#~ msgid "The work is in the public domain" -#~ msgstr "Eser halka açık olarak kayıtlı" - -#~ msgid "Track:" -#~ msgstr "Parça Numarası:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." - -#~ msgid "Who" -#~ msgstr "DJ" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." - -#~ msgid "next" -#~ msgstr "sonraki" - -#~ msgid "previous" -#~ msgstr "önceki" - -#~ msgid "stop" -#~ msgstr "Durdur" diff --git a/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po b/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po deleted file mode 100644 index 63ab89d597..0000000000 --- a/webapp/src/locale/po/uk_UA/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4669 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2023-02-25 18:39+0000\n" -"Last-Translator: Ihor Hordiichuk \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.16-dev\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Рік %s має бути в діапазоні 1753 - 9999" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s дата недійсна" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s недійсний час" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "Англійська" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "Афар" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "Абхазька" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "Африканська" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "Амхарська" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "Арабська" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "Асамська" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "Аймара" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "Азербайджанська" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "Башкирська" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "Білоруська" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "Болгарська" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "Біхарі" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "Біслама" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "Бенгальська/Бангла" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "Тибетська" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "Бретонська" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "Каталонська" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "Корсиканська" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "Чеська" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "Валлійська" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "Датська" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "Німецька" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "Мови Бутану" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "Грецька" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "Есперанто" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "Іспанська" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "Естонська" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "Баскська" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "Перська" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "Фінська" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "Фіджійська" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "Фарерська" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "Французька" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "Фризька" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "Ірландська" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "Шотландська/Гельська" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "Галісійська" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "Гуарані" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "Гуджаратська" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "Хауса" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "Хінді" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "Хорватська" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "Угорська" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "Вірменська" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "Інтерлінгва" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "Окциденталь" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "Аляскинсько-інуїтська" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "Індонезійська" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "Ісландська" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "Італійська" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "Іврит" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "Японська" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "Ідиш" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "Яванська" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "Грузинська" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "Казахська" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "Гренландська" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "Камбоджійська" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "Каннада" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "Корейська" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "Кашмірська" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "Курдська" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "Киргизька" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "Латинська" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "Лінґала" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "Лаоська" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "Литовська" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "Латиська" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "Малагасійська" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "Маорійська" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "Македонська" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "Малаялам" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "Монгольська" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "Молдавська" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "Мара́тська" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "Малайська" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "Мальтійська" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "Бірманська" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "Науруанська" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "Непальська" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "Голландська" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "Норвезька" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "Окситанська" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "Оромо" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "Пенджабська" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "Польська" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "Пушту" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "Португальська" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "Кечуа" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "Рето-романська" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "Кірунді" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "Румунська" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "Російська" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "Руандійська" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "Санскрит" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "Сіндхі" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "Санго" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "Сербохорватська" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "Сингальська" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "Словацька" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "Словенська" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "Самоанська" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "Шона" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "Сомалійська" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "Албанська" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "Сербська" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "Сваті" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "Сесото" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "Сунданська" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "Шведська" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "Суахілі" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "Тамільська" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "Телугу" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "Таджицька" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "Тайська" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "Тигринья" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "Туркменський" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "Тагальська" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "Тсвана" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "Тонганська" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "Турецька" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "Тсонга" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "Татарська" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "Чві" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "Українська" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "Урду" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "Узбецька" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "В'єтнамська" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "Волапюк" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "Волоф" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "Хоса" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "Юрубський" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "Китайська" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "Зулуська" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Використовувати станцію за замовчуванням" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s." - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Натисніть кнопку «Нова програма» та заповніть необхідні поля." - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s." - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму»." - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n" -" %sСтворіть непов'язану програму зараз%s." - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s." - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s." - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "Служба медіааналізатора LibreTime" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "Переконайтеся, що службу libretime-analyzer встановлено правильно " - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr " і переконайтеся, що вона працює " - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "Якщо ні, спробуйте запустити " - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "Сервіс відтворення LibreTime" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "Переконайтеся, що службу libretime-playout встановлено правильно " - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "Служба LibreTime liquidsoap" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "Переконайтеся, що службу libretime-liquidsoap встановлено правильно " - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "Служба завдань LibreTime Celery" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "Переконайтеся, що служба libretime-worker коректно встановлена в " - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "LibreTime API service" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "Переконайтеся, що службу libretime-api встановлено правильно " - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "Сторінка радіо" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "Календар" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "Віджети" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "Плеєр" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "Тижневий розклад" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "Налаштування" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "Основні" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "Мій профіль" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "Користувачі" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "Типи треків" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "Потоки" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "Статус" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "Аналітика" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "Історія відтворення" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "Історія шаблонів" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "Статистика слухачів" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "Показати статистику слухачів" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "Допомога" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "Починаємо" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "Посібник користувача" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "Отримати допомогу онлайн" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "Зробіть внесок у LibreTime" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "Що нового?" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "Ви не маєте доступу до цього ресурсу." - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "Ви не маєте доступу до цього ресурсу. " - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "Файл не існує в %s" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Неправильний запит. параметр 'mode' не передано." - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Неправильний запит. Параметр 'mode' недійсний" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "Ви не маєте дозволу на відключення джерела." - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "До цього входу не підключено джерело." - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "Ви не маєте дозволу перемикати джерело." - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n" -" 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n" -" 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n" -" Увімкніть API Public LibreTime у меню Налаштування -> Основні" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" -"Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n" -" Увімкніть API Public LibreTime у меню Налаштування -> Основні" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "Сторінку не знайдено." - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "Задана дія не підтримується." - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "Ви не маєте дозволу на доступ до цього ресурсу." - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "Сталася внутрішня помилка програми." - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "%s Підкаст" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "Треків ще не опубліковано." - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s не знайдено" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Щось пішло не так." - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "Попередній перегляд" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "Додати в плейлист" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "Додати до Смарт Блоку" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "Видалити" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "Редагувати..." - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "Завантажити" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "Дублікат плейлиста" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "Дублікат Смарт-блоку" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "Немає доступних дій" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "Ви не маєте дозволу на видалення вибраних елементів." - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Не вдалося видалити файл, оскільки його заплановано в майбутньому." - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "Не вдалося видалити файл(и)." - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "Копія %s" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки." - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "Аудіоплеєр" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "Щось пішло не так!" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "Запис:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "Головний потік" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "Наживо" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "Нічого не заплановано" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "Поточна програма:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "Поточний" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "Ви використовуєте останню версію" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "Доступна нова версія: " - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "У вас встановлено попередню версію LibreTime." - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "Доступне оновлення для вашої інсталяції LibreTime." - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "Доступне оновлення функції для вашої інсталяції LibreTime." - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "Доступне велике оновлення для вашої інсталяції LibreTime." - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше." - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "Додати до поточного списку відтворення" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "Додати до поточного смарт-блоку" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "Додавання 1 елемента" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "Додавання %s Елемента(ів)" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "Ви можете додавати треки лише до смарт-блоків." - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки." - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "Виберіть позицію курсору на часовій шкалі." - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "Ви не додали жодної композиції" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "Ви не додали жодного плейлиста" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "Ви не додали подкастів" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "Ви не додали смарт-блоків" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "Ви не додали жодного веб-потоку" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "Дізнайтеся про треки" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "Дізнайтеся про плейлисти" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "Дізнайтеся про подкасти" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "Дізнайтеся про смарт-блоки" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "Дізнайтеся про веб-потоки" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "Натисніть «Новий», щоб створити." - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "Додати" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "Новий" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "Редагувати" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "Додати до розкладу" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "Додати до наступної програми" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "Додати до поточної програми" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "Додати після вибраних елементів" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "Опублікувати" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "Видалити" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "Редагувати метадані" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "Додати до вибраної програми" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "Вибрати" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "Вибрати поточну сторінку" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "Скасувати вибір поточної сторінки" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "Скасувати виділення з усіх" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Ви впевнені, що бажаєте видалити вибрані елементи?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "Запланований" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "Треки" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "Плейлист" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "Назва" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "Автор" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "Альбом" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "BPM" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "Композитор" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "Виконавець" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "Авторське право" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "Закодовано" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "Жанр" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "Label" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "Мова" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "Остання зміна" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "Останнє програвання" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "Довжина" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "Mime" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "Настрій" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "Власник" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "Вирівнювання гучності" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "Частота дискретизації" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "Номер треку" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "Завантажено" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "Веб-Сайт" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "Рік" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "Завантаження..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "Всі" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "Файли" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "Плейлист" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "Смарт-блок" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "Веб-потоки" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "Невідомий тип: " - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "Ви впевнені, що бажаєте видалити вибраний елемент?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "Виконується завантаження..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "Отримання даних із сервера..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "Імпорт" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "Імпортований?" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "Переглянути" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "Код помилки: " - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "Повідомлення про помилку: " - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "Введене значення має бути позитивним числом" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "Введене значення має бути числом" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Вхідні дані мають бути у такому форматі: yyyy-mm-dd" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Вхідні дані мають бути у такому форматі: hh:mm:ss.t" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "Мій Подкаст" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "Відкрити Конструктор Медіафайлів" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "будь ласка, вкажіть час '00:00:00 (.0)'" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Введіть дійсний час у секундах. напр. 0.5" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "Ваш браузер не підтримує відтворення цього типу файлу: " - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "Динамічний блок не доступний для попереднього перегляду" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "Обмеження до: " - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "Плейлист збережено" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "Плейлист перемішано" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується»." - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Кількість слухачів %s: %s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Нагадати через 1 тиждень" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Ніколи не нагадувати" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Так, допоможи Libretime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Зображення має бути jpg, jpeg, png, або gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми." - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці." - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку." - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "Смарт-блок перемішано" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "Створено смарт-блок і збережено критерії" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "Смарт-блок збережено" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "Обробка..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "Виберіть модифікатор" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "містить" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "не містить" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "є" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "не" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "починається з" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "закінчується на" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "більше ніж" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "менше ніж" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "знаходиться в діапазоні" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "Генерувати" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "Виберіть папку зберігання" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "Виберіть папку для перегляду" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Ви впевнені, що бажаєте змінити папку для зберігання?\n" -"Це видалить файли з вашої бібліотеки!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "Керування медіа-папками" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Ви впевнені, що хочете видалити переглянуту папку?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "Цей шлях зараз недоступний." - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s." - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "Підключено до потокового сервера" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "Потік вимкнено" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "Отримання інформації з сервера..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "Не вдається підключитися до потокового сервера" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151." - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "Щоб дізнатися більше, прочитайте %s%s Мануал%s" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію." - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела." - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime." - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім." - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'." - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів." - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Попередження: Ви не можете змінити це поле під час відтворення програми" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "Результатів не знайдено" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися." - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми." - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "Екземпляр програми більше не існує!" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "Застереження: програму не можна повторно пов’язати" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача." - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "Програма" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "Програма порожня" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1хв" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5хв" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10хв" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15хв" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30хв" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60хв" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "Отримання даних із сервера..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "Це програма не має запланованого вмісту." - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "Це програма не повністю наповнена контентом." - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "Січень" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "Лютий" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "Березень" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "Квітень" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "Травень" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "Червень" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "Липень" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "Серпень" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "Вересень" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "Жовтень" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "Листопад" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "Грудень" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "Січ" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "Лют" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "Бер" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "Квіт" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "Черв" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "Лип" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "Серп" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "Вер" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "Жовт" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "Лист" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "Груд" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "Сьогодні" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "День" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "Тиждень" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "Місяць" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "Неділя" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "Понеділок" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "Вівторок" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "Середа" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "Четвер" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "П'ятниця" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "Субота" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "Нд" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "Пн" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "Вт" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "Ср" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "Чт" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "Пт" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "Сб" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Програма, яка триває довше запланованого часу, буде перервана наступною програмою." - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "Скасувати поточну програму?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "Зупинити запис поточної програми?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "Ok" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "Зміст програми" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "Видалити весь вміст?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "Видалити вибрані елементи?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "Старт" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "Кінець" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "Тривалість" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "Фільтрація " - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr " з " - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr " записи" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "На зазначений період часу не заплановано жодної програми." - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "Початок звучання" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "Закінчення звучання" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "Зведення" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "Затухання" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "Програма порожня" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "Запис з лінійного входу" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "Попередній перегляд треку" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "Не можна планувати поза програмою." - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "Переміщення 1 елементу" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "Переміщення %s елементів" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "Зберегти" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Відміна" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "Редактор Fade" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "Редактор Cue" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Функції Waveform доступні в браузері, який підтримує API Web Audio" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "Вибрати все" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "Зняти виділення" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "Обрізати переповнені програми" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "Видалити вибрані заплановані елементи" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "Перехід до поточного треку" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "Перейти до поточного" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "Скасувати поточну програму" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "Відкрийте бібліотеку, щоб додати або видалити вміст" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "Додати / видалити вміст" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "у вживанні" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "Диск" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "Подивитись" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "Відкрити" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "Адмін" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "DJ" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "Менеджер програми" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "Гість" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "Гості можуть зробити наступне:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "Переглянути розклад" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "Переглянути вміст програм" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "DJs можуть робити наступне:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "Керуйте призначеним вмістом програм" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "Імпорт медіафайлів" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Створюйте списки відтворення, смарт-блоки та веб-потоки" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "Керувати вмістом власної бібліотеки" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "Керівники програм можуть робити наступне:" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "Перегляд вмісту програм та керування ними" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "Розклад програм" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "Керуйте всім вмістом бібліотеки" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "Адміністратори можуть робити наступне:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "Керувати налаштуваннями" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "Керувати користувачами" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "Керування папками, які переглядаються" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "Надіслати відгук у службу підтримки" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "Переглянути стан системи" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "Доступ до історії відтворення" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "Переглянути статистику слухачів" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "Показати/сховати стовпці" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "Стовпці" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "З {from} до {to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "kbps" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "рррр-мм-дд" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "гг:хх:ss.t" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "кГц" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "Нд" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "Пн" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "Вт" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "Ср" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "Чт" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "Пт" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "Сб" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "Закрити" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "Година" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "Хвилина" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "Готово" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "Виберіть файли" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "Додайте файли до черги завантаження та натисніть кнопку «Пуск»." - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "Назва файлу" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "Розмір" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "Додати файли" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "Зупинити завантаження" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "Почати завантаження" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "Розпочати вивантаження" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "Додати файли" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "Припинити поточне вивантаження" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "Почати вивантаження черги" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Завантажено %d/%d файлів" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "N/A" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "Перетягніть файли сюди." - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "Помилка розширення файлу." - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "Помилка розміру файлу." - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "Помилка підрахунку файлів." - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "Помилка ініціалізації." - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "HTTP помилка." - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "Помилка безпеки." - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "Загальна помилка." - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "IO помилка." - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "Файл: %s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "%d файлів у черзі" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Файл: %f, розмір: %s, макс. розмір файлу: %m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "URL-адреса завантаження може бути неправильною або не існує" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "Помилка: Файл завеликий: " - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "Помилка: Недійсне розширення файлу: " - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "Встановити за замовчуванням" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "Створити запис" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "Редагувати запис історії" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Немає програми" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Скопійовано %s рядок%s у буфер обміну" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape." - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "Нова програма" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "Новий запис журналу" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "Дані в таблиці відсутні" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "(відфільтровано з _MAX_ всього записів)" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "Спочатку" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "Останній" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "Наступний" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "Попередній" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "Пошук:" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "Відповідних записів не знайдено" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "Перетягніть треки сюди з бібліотеки" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "Жоден трек не відтворювався протягом вибраного періоду часу." - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "Зняти з публікації" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "Відповідних результатів не знайдено." - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "Автор" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "Опис" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "Посилання" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "Дата публікації" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "Статус імпорту" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "Дії" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "Видалити з бібліотеки" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "Успішно імпортовано" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "Показати _MENU_" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "Показати _MENU_ записів" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "Показано від _START_ to _END_ of _TOTAL_ записів" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "Показано від _START_ to _END_ of _TOTAL_ треків" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "Показано від _START_ to _END_ of _TOTAL_типів треків" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "Показано від _START_ to _END_ of _TOTAL_ користувачів" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "Показано від 0 до 0 із 0 записів" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "Показано від 0 до 0 із 0 треків" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "Показано від 0 до 0 із 0 типів треків" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "(відфільтровано з _MAX_ загальних типів доріжок)" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "Ви впевнені, що хочете видалити цей тип треку?" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "Типи треків не знайдено." - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "Типи треків не знайдено" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "Відповідних типів треків не знайдено" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "Увімкнено" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "Вимкнено" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "Скасувати завантаження" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "Тип" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "Налаштування подкасту збережено" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "Ви впевнені, що хочете видалити цього користувача?" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "Неможливо видалити себе!" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "Ви не опублікували жодного випуску!" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "Ви можете опублікувати завантажений вміст із перегляду «Треки»." - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "Спробуй зараз" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "Попередній перегляд плейлиста" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "Смарт-блок" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "Попередній перегляд веб-потоку" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "Ви не маєте дозволу переглядати бібліотеку." - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "Зараз" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "Натисніть «Новий», щоб створити." - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "Натисніть «Завантажити», щоб додати." - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "URL стрічки" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "Дата імпорту" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "Додати новий подкаст" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" -"Не можна планувати за межами програми.\n" -"Спочатку створіть програму." - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "Файли ще не завантажено." - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "В ефірі" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "Не в ефірі" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "Offline" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "Нічого не заплановано" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "Натисніть «Додати», щоб створити зараз." - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "Будь ласка, введіть своє ім'я користувача та пароль." - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином." - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "Не вдалося знайти це ім’я користувача чи електронну адресу." - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели." - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз." - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Ви переглядаєте старішу версію %s" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "До динамічних блоків не можна додавати треки." - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Ви не маєте дозволу на видалення вибраного %s(х)." - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Ви можете додавати треки лише в смарт-блок." - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Плейлист без назви" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Смарт-блок без назви" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "Невідомий плейлист" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "Налаштування оновлено." - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "Налаштування потоку оновлено." - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "слід вказати шлях" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Проблема з Liquidsoap..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "Метод запиту не прийнято" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Ретрансяція програми %s від %s в %s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "Вибрати курсор" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "Видалити курсор" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "програми не існує" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "Тип треку успішно додано!" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "Тип треку успішно оновлено!" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "Користувача успішно додано!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "Користувача успішно оновлено!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "Налаштування успішно оновлено!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "Веб-потік без назви" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "Веб-потік збережено." - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "Недійсні значення форми." - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "Введено недійсний символ" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "Необхідно вказати день" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "Необхідно вказати час" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Для повторної трансляції потрібно зачекати принаймні 1 годину" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "Додати плейлист з автозавантаженням?" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Вибір плейлиста" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Повторювати список відтворення до заповнення програми?" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "Використовувати %s Аутентифікацію:" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "Використовувати спеціальну автентифікацію:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "Спеціальне ім'я користувача" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Користувацький пароль" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "Хост:" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "Порт:" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "Точка монтування:" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "Поле імені користувача не може бути порожнім." - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "Поле пароля не може бути порожнім." - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "Записувати з лінійного входу?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "Повторна трансляція?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "днів" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "Посилання:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "Тип повтору:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "щотижня" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "кожні 2 тижні" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "кожні 3 тижні" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "кожні 4 тижні" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "щомісяця" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "Оберіть дні:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "Повторити:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "день місяця" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "день тижня" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "Кінцева дата:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Немає кінця?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "Дата завершення має бути після дати початку" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "Виберіть день повторення" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "Колір фону:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "Колір тексту:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "Поточний логотип:" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "Показати логотип:" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "Попередній перегляд логотипу:" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Ім'я:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Програма без назви" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "Жанр:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "Опис:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Опис екземпляру:" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' не відповідає часовому формату 'HH:mm'" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "Час початку:" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "У майбутньому:" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "Час закінчення:" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "Тривалість:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "Часовий пояс:" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "Повторювати?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "Неможливо створити програму в минулому часі" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Неможливо змінити дату/час початку програми, яка вже розпочата" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "Дата/час завершення не можуть бути в минулому" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "Не може мати тривалість < 0хв" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "Не може мати тривалість 00год 00хв" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "Тривалість не може перевищувати 24 год" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "Неможливо запланувати накладені програми" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "Пошук користувачів:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "Діджеї:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "Назва типу:" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "Код:" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "Видимість:" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "Проаналізуйте контрольні точки:" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "Код не унікальний." - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "Ім'я користувача:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "Пароль:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Підтвердіть пароль:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Ім'я:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Прізвище:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Телефон:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "Тип користувача:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "Логін не є унікальним." - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Видалити всі треки з бібліотеки" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "Дата початку:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "Назва:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Автор:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Альбом:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "Власник:" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "Виберіть тип" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "Тип треку:" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "Рік:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "Label:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "Композитор:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "Виконавець:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "Настрій:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "BPM:" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Авторське право:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Номер ISRC:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Веб-сайт:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "Мова:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "Опублікувати..." - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "Час початку" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "Час закінчення" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Часовий пояс інтерфейсу:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "Назва станції" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "Опис Станції" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "Лого Станції:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Примітка: все, що перевищує 600x600, буде змінено." - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "Тривалість переходу за замовчуванням (с):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Будь ласка, введіть час у секундах (наприклад, 0,5)" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "За замовчуванням Fade In (s):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "За замовчуванням Fade Out (s):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "Тип доріжки Завантаження за замовчуванням" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "Вступний автозавантажуваний плейлист (Intro)" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "Завершальний автозавантажувальний плейлист (Outro)" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Перезаписати метатеги епізоду подкасту" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки." - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Створіть смартблок і список відтворення після створення нового подкасту" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди." - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "Public LibreTime API" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "Потрібний для вбудованого віджета розкладу." - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" -"Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n" -" до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт." - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "Мова за замовчуванням" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "Часовий пояс станції" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "Тиждень починається з" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "Відображати кнопку входу на сторінці радіо?" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "Попередній перегляд функцій" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "Увімкніть це, щоб тестувати нові функції." - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "Автоматичне вимкнення:" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "Автоматичне ввімкнення:" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "Перемикання переходу Fade (s):" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "Головний вихідний хост:" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "Головний вихідний порт:" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "Головне джерело монтування:" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "Показати вихідний хост:" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "Показати вихідний порт:" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "Показати джерела монтування:" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "Логін" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "Пароль" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Підтвердити новий пароль" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Підтвердження пароля не збігається з вашим." - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "Email" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "Ім'я користувача" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "Скинути пароль" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "Назад" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Зараз грає" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Виберіть потік:" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Автоматичне визначення потоку, який найбільше підходить для використання." - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Виберіть потік:" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Зручний для мобільних пристроїв" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - Плеєр не підтримує потоки Opus." - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Код для вбудовування:" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт." - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "Попередній перегляд:" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "Конфіденційність стрічки" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "Публічний" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "Приватний" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "Мова станції" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "Фільтрувати мої програми" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "Усі мої програми:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "Мої програми" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "Виберіть критерії" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "Тип треку" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "Частота дискретизації (kHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "раніше" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "після" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "між" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "Виберіть одиницю часу" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "хвилина(и)" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "година(и)" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "День(Дні)" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "Тиждень(і)" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "місяць(і)" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "Рік(и)" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "година(и)" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "хвилина(и)" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "елементи" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "час, що залишився у програмі" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "Довільно" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "Найновіший(і)" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "Найстаріший(і)" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "Нещодавно зіграно" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "Нещодавно грали" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "Виберіть тип доріжки" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "Тип:" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "Динамічний" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "Статичний" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "Виберіть тип доріжки" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "Дозволити повторення треків:" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "Дозволити останньому треку перевищити ліміт часу:" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "Сортування треків:" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "Обмежити в:" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "Створення вмісту списку відтворення та збереження критеріїв" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "Перемішати вміст плейлиста" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "Перемішати" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ліміт не може бути порожнім або меншим за 0" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ліміт не може перевищувати 24 год" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Значення має бути цілим числом" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 максимальне граничне значення" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Ви повинні вибрати Критерії і Модифікатор" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Довжина має бути введена у '00:00:00' форматі" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу." - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "Значення має бути числовим" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "Значення має бути меншим, ніж 2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "Значення не може бути порожнім" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Значення має бути менше ніж %s символів" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "Значення не може бути порожнім" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "Метадані потоку:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "Виконавець - Назва" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "Програма - Виконавець - Назва" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "Назва станції - Показати назву" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "Метадані при вимкненому ефірі" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "Вмикнути Replay Gain" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "Змінити Replay Gain" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "Апаратний аудіовихід:" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "Тип виходу" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "Увімкнено:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "Телефон:" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "Тип потоку:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "Тип сервіса:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "Канали:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "Сервер" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "Порт" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "Точка монтування" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "Ім'я" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "URL" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "URL-адреса трансляції" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Надішлати метадані на свою станцію в TuneIn?" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID Станції:" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Ключ партнера:" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "ID партнера:" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу." - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "Імпорт папки:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "Переглянути папки:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "Недійсний каталог" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "Значення є обов’язковим і не може бути порожнім" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' не є дійсною електронною адресою в форматі local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не відповідає формату дати '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' є меншим ніж %min% довжина символів" - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' це більше ніж %max% довжина символів" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' не знаходиться між '%min%' і '%max%', включно" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "Паролі не співпадають" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" -"Привіт %s, \n" -"\n" -"Натисніть це посилання, щоб змінити пароль: " - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" -"\n" -"\n" -"Якщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" -"\n" -"\n" -"Дякую Вам,\n" -"The %s Team" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "%s Скидання паролю" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "Час початку та закінчення звучання треку не заповнені." - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "Час закінчення звучання не може перевищувати довжину треку." - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "Час початку звучання може бути пізніше часу закінчення." - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Час закінчення звучання не може бути раніше початку." - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "Час завантаження" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "Жодного" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "На основі %s" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "Оберіть Країну" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "Наживо" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "Неможливо перемістити елементи з пов’язаних програм" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "Розклад, який ви переглядаєте, застарів!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Вам не дозволено планувати програму %s." - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Ви не можете додавати файли до Програми, що записується." - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Програма %s закінчилась, її не можливо запланувати." - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Програма %s була оновлена раніше!" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "Вміст пов’язаних програм не можна змінювати під час трансляції!" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Неможливо запланувати плейлист, який містить відсутні файли." - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Вибраний файл не існує!" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "Програма може тривати не більше 24 годин." - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"Не можна планувати Програми, що перетинаються.\n" -"Примітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники." - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ретрансляція %s від %s" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "Довжина повинна бути більше ніж 0 хвилин" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "Довжина повинна відповідати формі \"00год 00хв\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "URL має бути форми \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "URL-адреса має містити не більше 512 символів" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "Для веб-потоку не знайдено тип MIME." - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "Назва веб-потоку не може бути пустою" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "Не вдалося проаналізувати XSPF плейлист" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "Не вдалося проаналізувати PLS плейлист" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "Не вдалося проаналізувати M3U плейлист" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Недійсний веб-потік. Здається, це завантажений файл." - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Нерозпізнаний тип потоку: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "Файл запису не існує" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "Перегляд метаданих записаного файлу" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Заплановані треки" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Очистити програму" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "Відміна програми" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "Редагувати екземпляр" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "Редагування програми" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "Видалити екземпляр" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "Видалити екземпляр і все наступне" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "У дозволі відмовлено" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "Не можна перетягувати повторювані програми" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "Неможливо перемістити минулу програму" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "Неможливо перенести програму в минуле" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції." - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Програму видалено, оскільки записаної програми не існує!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Для повторної трансляції потрібно почекати 1 годину." - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "Трек" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "Програно" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "Автоматично створений смарт-блок для подкасту" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Веб-потоки" - -#~ msgid " to " -#~ msgstr " to " - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s contains nested watched directory: %s" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "%s doesn't exist in the watched list." - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s is already set as the current storage dir or in the watched folders list" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s is already set as the current storage dir or in the watched folders list." - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s is already watched." - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s is nested within existing watched directory: %s" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s is not a valid directory." - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." - -#~ msgid "(Required)" -#~ msgstr "(Required)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(Your radio station website)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(hh:mm:ss.t)" - -#~ msgid "(ss.t)" -#~ msgstr "(ss.t)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - Моно" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - Стерео" - -#~ msgid "ALSA" -#~ msgstr "ALSA" - -#~ msgid "AO" -#~ msgstr "AO" - -#~ msgid "About" -#~ msgstr "About" - -#~ msgid "Add New Field" -#~ msgstr "Add New Field" - -#~ msgid "Add more elements" -#~ msgstr "Add more elements" - -#~ msgid "Add this show" -#~ msgstr "Add this show" - -#~ msgid "Additional Options" -#~ msgstr "Additional Options" - -#~ msgid "Admin Password" -#~ msgstr "Пароль адміністратора" - -#~ msgid "Admin User" -#~ msgstr "Адміністратор" - -#~ msgid "Advanced Search Options" -#~ msgstr "Advanced Search Options" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "Allowed CORS URLs (DEPRECATED)" -#~ msgstr "Дозволені URL-адреси CORS (Застаріле)" - -#~ msgid "Audio Track" -#~ msgstr "Audio Track" - -#~ msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -#~ msgstr "Вміст автозавантажуваних списків відтворення додається до шоу за годину до виходу в ефір. Більше інформації" - -#~ msgid "Check that the libretime-celery service is installed correctly in " -#~ msgstr "Переконайтеся, що службу libretime-celery встановлено правильно " - -#~ msgid "Choose Days:" -#~ msgstr "Choose Days:" - -#~ msgid "Choose Show Instance" -#~ msgstr "Choose Show Instance" - -#~ msgid "Choose folder" -#~ msgstr "Choose folder" - -#~ msgid "City:" -#~ msgstr "City:" - -#~ msgid "Clear" -#~ msgstr "Clear" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" - -#~ msgid "Country:" -#~ msgstr "Country:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "Creating File Summary Template" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "Creating Log Sheet Template" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Cue In: " -#~ msgstr "Cue In: " - -#~ msgid "Cue Out: " -#~ msgstr "Cue Out: " - -#~ msgid "Current Import Folder:" -#~ msgstr "Current Import Folder:" - -#~ msgid "Cursor" -#~ msgstr "Cursor" - -#~ msgid "Custom / 3rd Party Streaming" -#~ msgstr "Трансляція на зовнішні сервери" - -#~ msgid "Default Length:" -#~ msgstr "Default Length:" - -#~ msgid "Default License:" -#~ msgstr "Default License:" - -#~ msgid "Default Streaming" -#~ msgstr "Стрім за замовчуванням" - -#~ msgid "Disk Space" -#~ msgstr "Disk Space" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "Dynamic Smart Block" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "Dynamic Smart Block Criteria: " - -#~ msgid "Empty playlist content" -#~ msgstr "Empty playlist content" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "Expand Dynamic Block" - -#~ msgid "Expand Static Block" -#~ msgstr "Expand Static Block" - -#~ msgid "Fade in: " -#~ msgstr "Fade in: " - -#~ msgid "Fade out: " -#~ msgstr "Fade out: " - -#~ msgid "File Path:" -#~ msgstr "File Path:" - -#~ msgid "File Summary" -#~ msgstr "File Summary" - -#~ msgid "File Summary Templates" -#~ msgstr "File Summary Templates" - -#~ msgid "File import in progress..." -#~ msgstr "File import in progress..." - -#~ msgid "Filter History" -#~ msgstr "Filter History" - -#~ msgid "Find" -#~ msgstr "Find" - -#~ msgid "Find Shows" -#~ msgstr "Find Shows" - -#~ msgid "First Name" -#~ msgstr "First Name" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "For more detailed help, read the %suser manual%s." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Метадані Icecast Vorbis" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." - -#~ msgid "Isrc Number:" -#~ msgstr "Isrc Number:" - -#~ msgid "Jack" -#~ msgstr "Джек" - -#~ msgid "Last Name" -#~ msgstr "Last Name" - -#~ msgid "Length:" -#~ msgstr "Length:" - -#~ msgid "Limit to " -#~ msgstr "Limit to " - -#~ msgid "Listen" -#~ msgstr "Listen" - -#~ msgid "Live Stream Input" -#~ msgstr "Live Stream Input" - -#~ msgid "Live stream" -#~ msgstr "Live stream" - -#~ msgid "Log Sheet" -#~ msgstr "Log Sheet" - -#~ msgid "Log Sheet Templates" -#~ msgstr "Log Sheet Templates" - -#~ msgid "Logout" -#~ msgstr "Logout" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "Looks like the page you were looking for doesn't exist!" - -#~ msgid "Manage Users" -#~ msgstr "Manage Users" - -#~ msgid "Master Source" -#~ msgstr "Master Source" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "Точка монтування не може бути порожнім на сервері Icecast." - -#~ msgid "New File Summary Template" -#~ msgstr "New File Summary Template" - -#~ msgid "New Log Sheet Template" -#~ msgstr "New Log Sheet Template" - -#~ msgid "New User" -#~ msgstr "New User" - -#~ msgid "New password" -#~ msgstr "New password" - -#~ msgid "Next:" -#~ msgstr "Next:" - -#~ msgid "No File Summary Templates" -#~ msgstr "No File Summary Templates" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "No Log Sheet Templates" - -#~ msgid "No open playlist" -#~ msgstr "No open playlist" - -#~ msgid "No webstream" -#~ msgstr "No webstream" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "ON AIR" -#~ msgstr "ON AIR" - -#~ msgid "OSS" -#~ msgstr "OSS" - -#~ msgid "Only numbers are allowed." -#~ msgstr "Дозволяються лише цифри." - -#~ msgid "Original Length:" -#~ msgstr "Original Length:" - -#~ msgid "Page not found!" -#~ msgstr "Page not found!" - -#~ msgid "Phone:" -#~ msgstr "Phone:" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Playlist Contents: " -#~ msgstr "Playlist Contents: " - -#~ msgid "Playlist crossfade" -#~ msgstr "Playlist crossfade" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "Please enter and confirm your new password in the fields below." - -#~ msgid "Please upgrade to " -#~ msgstr "Please upgrade to " - -#~ msgid "Port cannot be empty." -#~ msgstr "Порт не може бути порожнім." - -#~ msgid "Portaudio" -#~ msgstr "Portaudio" - -#~ msgid "Previous:" -#~ msgstr "Previous:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" - -#~ msgid "Pulseaudio" -#~ msgstr "Pulseaudio" - -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" - -#~ msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line. (DEPRECATED: Allowed CORS origins configuration moved to the configuration file.)" -#~ msgstr "Віддалені URL-адреси, які мають доступ до цього екземпляра LibreTime у веб-переглядачі. Один URL на рядок. (Застаріле: конфігурацію дозволених джерел CORS переміщено до файлу конфігурації.)" - -#~ msgid "Remove watched directory" -#~ msgstr "Remove watched directory" - -#~ msgid "Repeat Days:" -#~ msgstr "Repeat Days:" - -#~ msgid "Sample Rate:" -#~ msgstr "Sample Rate:" - -#~ msgid "Save playlist" -#~ msgstr "Save playlist" - -#~ msgid "Select stream:" -#~ msgstr "Select stream:" - -#~ msgid "Server cannot be empty." -#~ msgstr "Сервер не може бути порожнім." - -#~ msgid "Set" -#~ msgstr "Set" - -#~ msgid "Set Cue In" -#~ msgstr "Set Cue In" - -#~ msgid "Set Cue Out" -#~ msgstr "Set Cue Out" - -#~ msgid "Set Default Template" -#~ msgstr "Set Default Template" - -#~ msgid "Share" -#~ msgstr "Share" - -#~ msgid "Show Source" -#~ msgstr "Show Source" - -#~ msgid "Show Summary" -#~ msgstr "Show Summary" - -#~ msgid "Show Waveform" -#~ msgstr "Show Waveform" - -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " - -#~ msgid "Shuffle playlist" -#~ msgstr "Shuffle playlist" - -#~ msgid "Source Streams" -#~ msgstr "Source Streams" - -#~ msgid "Static Smart Block" -#~ msgstr "Static Smart Block" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "Static Smart Block Contents: " - -#~ msgid "Station Description:" -#~ msgstr "Station Description:" - -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#~ msgid "Stream " -#~ msgstr "Stream " - -#~ msgid "Stream Settings" -#~ msgstr "Stream Settings" - -#~ msgid "Stream URL:" -#~ msgstr "Stream URL:" - -#~ msgid "Stream URL: " -#~ msgstr "Stream URL: " - -#~ msgid "Streaming Server:" -#~ msgstr "Потоковий сервер:" - -#~ msgid "Style" -#~ msgstr "Style" - -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" - -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." - -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "The following info will be displayed to listeners in their media player:" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." - -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#~ msgid "Track:" -#~ msgstr "Track:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." - -#~ msgid "Update Required" -#~ msgstr "Update Required" - -#~ msgid "Update show" -#~ msgstr "Update show" - -#~ msgid "User Type" -#~ msgstr "User Type" - -#~ msgid "Web Stream" -#~ msgstr "Web Stream" - -#~ msgid "What" -#~ msgstr "What" - -#~ msgid "When" -#~ msgstr "When" - -#~ msgid "Who" -#~ msgstr "Who" - -#~ msgid "You are not watching any media folders." -#~ msgstr "You are not watching any media folders." - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" - -#~ msgid "and" -#~ msgstr "and" - -#~ msgid "dB" -#~ msgstr "dB" - -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" - -#~ msgid "id" -#~ msgstr "id" - -#~ msgid "max volume" -#~ msgstr "max volume" - -#~ msgid "mute" -#~ msgstr "mute" - -#~ msgid "next" -#~ msgstr "next" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "pause" -#~ msgstr "pause" - -#~ msgid "play" -#~ msgstr "play" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "please put in a time in seconds '00 (.0)'" - -#~ msgid "previous" -#~ msgstr "previous" - -#~ msgid "stop" -#~ msgstr "stop" - -#~ msgid "unmute" -#~ msgstr "unmute" diff --git a/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po b/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po deleted file mode 100644 index c224c354bb..0000000000 --- a/webapp/src/locale/po/zh_CN/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,4609 +0,0 @@ -# Translation for LibreTime. -# Copyright (C) 2012 Sourcefabric -# Copyright (C) 2021 LibreTime -# This file is distributed under the same license as the LibreTime package. -# -# Translators: -# Sourcefabric , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: LibreTime\n" -"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n" -"POT-Creation-Date: 2023-02-27 12:16+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Chinese (China)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: application/common/DateHelper.php:216 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”" - -#: application/common/DateHelper.php:219 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s采用了错误的日期格式" - -#: application/common/DateHelper.php:243 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s 采用了错误的时间格式" - -#: application/common/LocaleHelper.php:21 -msgid "English" -msgstr "" - -#: application/common/LocaleHelper.php:22 -msgid "Afar" -msgstr "" - -#: application/common/LocaleHelper.php:23 -msgid "Abkhazian" -msgstr "" - -#: application/common/LocaleHelper.php:24 -msgid "Afrikaans" -msgstr "" - -#: application/common/LocaleHelper.php:25 -msgid "Amharic" -msgstr "" - -#: application/common/LocaleHelper.php:26 -msgid "Arabic" -msgstr "" - -#: application/common/LocaleHelper.php:27 -msgid "Assamese" -msgstr "" - -#: application/common/LocaleHelper.php:28 -msgid "Aymara" -msgstr "" - -#: application/common/LocaleHelper.php:29 -msgid "Azerbaijani" -msgstr "" - -#: application/common/LocaleHelper.php:30 -msgid "Bashkir" -msgstr "" - -#: application/common/LocaleHelper.php:31 -msgid "Belarusian" -msgstr "" - -#: application/common/LocaleHelper.php:32 -msgid "Bulgarian" -msgstr "" - -#: application/common/LocaleHelper.php:33 -msgid "Bihari" -msgstr "" - -#: application/common/LocaleHelper.php:34 -msgid "Bislama" -msgstr "" - -#: application/common/LocaleHelper.php:35 -msgid "Bengali/Bangla" -msgstr "" - -#: application/common/LocaleHelper.php:36 -msgid "Tibetan" -msgstr "" - -#: application/common/LocaleHelper.php:37 -msgid "Breton" -msgstr "" - -#: application/common/LocaleHelper.php:38 -msgid "Catalan" -msgstr "" - -#: application/common/LocaleHelper.php:39 -msgid "Corsican" -msgstr "" - -#: application/common/LocaleHelper.php:40 -msgid "Czech" -msgstr "" - -#: application/common/LocaleHelper.php:41 -msgid "Welsh" -msgstr "" - -#: application/common/LocaleHelper.php:42 -msgid "Danish" -msgstr "" - -#: application/common/LocaleHelper.php:43 -msgid "German" -msgstr "" - -#: application/common/LocaleHelper.php:44 -msgid "Bhutani" -msgstr "" - -#: application/common/LocaleHelper.php:45 -msgid "Greek" -msgstr "" - -#: application/common/LocaleHelper.php:46 -msgid "Esperanto" -msgstr "" - -#: application/common/LocaleHelper.php:47 -msgid "Spanish" -msgstr "" - -#: application/common/LocaleHelper.php:48 -msgid "Estonian" -msgstr "" - -#: application/common/LocaleHelper.php:49 -msgid "Basque" -msgstr "" - -#: application/common/LocaleHelper.php:50 -msgid "Persian" -msgstr "" - -#: application/common/LocaleHelper.php:51 -msgid "Finnish" -msgstr "" - -#: application/common/LocaleHelper.php:52 -msgid "Fiji" -msgstr "" - -#: application/common/LocaleHelper.php:53 -msgid "Faeroese" -msgstr "" - -#: application/common/LocaleHelper.php:54 -msgid "French" -msgstr "" - -#: application/common/LocaleHelper.php:55 -msgid "Frisian" -msgstr "" - -#: application/common/LocaleHelper.php:56 -msgid "Irish" -msgstr "" - -#: application/common/LocaleHelper.php:57 -msgid "Scots/Gaelic" -msgstr "" - -#: application/common/LocaleHelper.php:58 -msgid "Galician" -msgstr "" - -#: application/common/LocaleHelper.php:59 -msgid "Guarani" -msgstr "" - -#: application/common/LocaleHelper.php:60 -msgid "Gujarati" -msgstr "" - -#: application/common/LocaleHelper.php:61 -msgid "Hausa" -msgstr "" - -#: application/common/LocaleHelper.php:62 -msgid "Hindi" -msgstr "" - -#: application/common/LocaleHelper.php:63 -msgid "Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:64 -msgid "Hungarian" -msgstr "" - -#: application/common/LocaleHelper.php:65 -msgid "Armenian" -msgstr "" - -#: application/common/LocaleHelper.php:66 -msgid "Interlingua" -msgstr "" - -#: application/common/LocaleHelper.php:67 -msgid "Interlingue" -msgstr "" - -#: application/common/LocaleHelper.php:68 -msgid "Inupiak" -msgstr "" - -#: application/common/LocaleHelper.php:69 -msgid "Indonesian" -msgstr "" - -#: application/common/LocaleHelper.php:70 -msgid "Icelandic" -msgstr "" - -#: application/common/LocaleHelper.php:71 -msgid "Italian" -msgstr "" - -#: application/common/LocaleHelper.php:72 -msgid "Hebrew" -msgstr "" - -#: application/common/LocaleHelper.php:73 -msgid "Japanese" -msgstr "" - -#: application/common/LocaleHelper.php:74 -msgid "Yiddish" -msgstr "" - -#: application/common/LocaleHelper.php:75 -msgid "Javanese" -msgstr "" - -#: application/common/LocaleHelper.php:76 -msgid "Georgian" -msgstr "" - -#: application/common/LocaleHelper.php:77 -msgid "Kazakh" -msgstr "" - -#: application/common/LocaleHelper.php:78 -msgid "Greenlandic" -msgstr "" - -#: application/common/LocaleHelper.php:79 -msgid "Cambodian" -msgstr "" - -#: application/common/LocaleHelper.php:80 -msgid "Kannada" -msgstr "" - -#: application/common/LocaleHelper.php:81 -msgid "Korean" -msgstr "" - -#: application/common/LocaleHelper.php:82 -msgid "Kashmiri" -msgstr "" - -#: application/common/LocaleHelper.php:83 -msgid "Kurdish" -msgstr "" - -#: application/common/LocaleHelper.php:84 -msgid "Kirghiz" -msgstr "" - -#: application/common/LocaleHelper.php:85 -msgid "Latin" -msgstr "" - -#: application/common/LocaleHelper.php:86 -msgid "Lingala" -msgstr "" - -#: application/common/LocaleHelper.php:87 -msgid "Laothian" -msgstr "" - -#: application/common/LocaleHelper.php:88 -msgid "Lithuanian" -msgstr "" - -#: application/common/LocaleHelper.php:89 -msgid "Latvian/Lettish" -msgstr "" - -#: application/common/LocaleHelper.php:90 -msgid "Malagasy" -msgstr "" - -#: application/common/LocaleHelper.php:91 -msgid "Maori" -msgstr "" - -#: application/common/LocaleHelper.php:92 -msgid "Macedonian" -msgstr "" - -#: application/common/LocaleHelper.php:93 -msgid "Malayalam" -msgstr "" - -#: application/common/LocaleHelper.php:94 -msgid "Mongolian" -msgstr "" - -#: application/common/LocaleHelper.php:95 -msgid "Moldavian" -msgstr "" - -#: application/common/LocaleHelper.php:96 -msgid "Marathi" -msgstr "" - -#: application/common/LocaleHelper.php:97 -msgid "Malay" -msgstr "" - -#: application/common/LocaleHelper.php:98 -msgid "Maltese" -msgstr "" - -#: application/common/LocaleHelper.php:99 -msgid "Burmese" -msgstr "" - -#: application/common/LocaleHelper.php:100 -msgid "Nauru" -msgstr "" - -#: application/common/LocaleHelper.php:101 -msgid "Nepali" -msgstr "" - -#: application/common/LocaleHelper.php:102 -msgid "Dutch" -msgstr "" - -#: application/common/LocaleHelper.php:103 -msgid "Norwegian" -msgstr "" - -#: application/common/LocaleHelper.php:104 -msgid "Occitan" -msgstr "" - -#: application/common/LocaleHelper.php:105 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: application/common/LocaleHelper.php:106 -msgid "Punjabi" -msgstr "" - -#: application/common/LocaleHelper.php:107 -msgid "Polish" -msgstr "" - -#: application/common/LocaleHelper.php:108 -msgid "Pashto/Pushto" -msgstr "" - -#: application/common/LocaleHelper.php:109 -msgid "Portuguese" -msgstr "" - -#: application/common/LocaleHelper.php:110 -msgid "Quechua" -msgstr "" - -#: application/common/LocaleHelper.php:111 -msgid "Rhaeto-Romance" -msgstr "" - -#: application/common/LocaleHelper.php:112 -msgid "Kirundi" -msgstr "" - -#: application/common/LocaleHelper.php:113 -msgid "Romanian" -msgstr "" - -#: application/common/LocaleHelper.php:114 -msgid "Russian" -msgstr "" - -#: application/common/LocaleHelper.php:115 -msgid "Kinyarwanda" -msgstr "" - -#: application/common/LocaleHelper.php:116 -msgid "Sanskrit" -msgstr "" - -#: application/common/LocaleHelper.php:117 -msgid "Sindhi" -msgstr "" - -#: application/common/LocaleHelper.php:118 -msgid "Sangro" -msgstr "" - -#: application/common/LocaleHelper.php:119 -msgid "Serbo-Croatian" -msgstr "" - -#: application/common/LocaleHelper.php:120 -msgid "Singhalese" -msgstr "" - -#: application/common/LocaleHelper.php:121 -msgid "Slovak" -msgstr "" - -#: application/common/LocaleHelper.php:122 -msgid "Slovenian" -msgstr "" - -#: application/common/LocaleHelper.php:123 -msgid "Samoan" -msgstr "" - -#: application/common/LocaleHelper.php:124 -msgid "Shona" -msgstr "" - -#: application/common/LocaleHelper.php:125 -msgid "Somali" -msgstr "" - -#: application/common/LocaleHelper.php:126 -msgid "Albanian" -msgstr "" - -#: application/common/LocaleHelper.php:127 -msgid "Serbian" -msgstr "" - -#: application/common/LocaleHelper.php:128 -msgid "Siswati" -msgstr "" - -#: application/common/LocaleHelper.php:129 -msgid "Sesotho" -msgstr "" - -#: application/common/LocaleHelper.php:130 -msgid "Sundanese" -msgstr "" - -#: application/common/LocaleHelper.php:131 -msgid "Swedish" -msgstr "" - -#: application/common/LocaleHelper.php:132 -msgid "Swahili" -msgstr "" - -#: application/common/LocaleHelper.php:133 -msgid "Tamil" -msgstr "" - -#: application/common/LocaleHelper.php:134 -msgid "Tegulu" -msgstr "" - -#: application/common/LocaleHelper.php:135 -msgid "Tajik" -msgstr "" - -#: application/common/LocaleHelper.php:136 -msgid "Thai" -msgstr "" - -#: application/common/LocaleHelper.php:137 -msgid "Tigrinya" -msgstr "" - -#: application/common/LocaleHelper.php:138 -msgid "Turkmen" -msgstr "" - -#: application/common/LocaleHelper.php:139 -msgid "Tagalog" -msgstr "" - -#: application/common/LocaleHelper.php:140 -msgid "Setswana" -msgstr "" - -#: application/common/LocaleHelper.php:141 -msgid "Tonga" -msgstr "" - -#: application/common/LocaleHelper.php:142 -msgid "Turkish" -msgstr "" - -#: application/common/LocaleHelper.php:143 -msgid "Tsonga" -msgstr "" - -#: application/common/LocaleHelper.php:144 -msgid "Tatar" -msgstr "" - -#: application/common/LocaleHelper.php:145 -msgid "Twi" -msgstr "" - -#: application/common/LocaleHelper.php:146 -msgid "Ukrainian" -msgstr "" - -#: application/common/LocaleHelper.php:147 -msgid "Urdu" -msgstr "" - -#: application/common/LocaleHelper.php:148 -msgid "Uzbek" -msgstr "" - -#: application/common/LocaleHelper.php:149 -msgid "Vietnamese" -msgstr "" - -#: application/common/LocaleHelper.php:150 -msgid "Volapuk" -msgstr "" - -#: application/common/LocaleHelper.php:151 -msgid "Wolof" -msgstr "" - -#: application/common/LocaleHelper.php:152 -msgid "Xhosa" -msgstr "" - -#: application/common/LocaleHelper.php:153 -msgid "Yoruba" -msgstr "" - -#: application/common/LocaleHelper.php:154 -msgid "Chinese" -msgstr "" - -#: application/common/LocaleHelper.php:155 -msgid "Zulu" -msgstr "" - -#: application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: application/common/UsabilityHints.php:65 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: application/common/UsabilityHints.php:69 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: application/common/UsabilityHints.php:76 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: application/common/UsabilityHints.php:80 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:89 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: application/common/UsabilityHints.php:92 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:96 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:100 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: application/common/UsabilityHints.php:107 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: application/common/UsabilityHints.php:111 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: application/configs/config-check.php:167 -msgid "LibreTime media analyzer service" -msgstr "" - -#: application/configs/config-check.php:174 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:175 -#: application/configs/config-check.php:194 -#: application/configs/config-check.php:213 -#: application/configs/config-check.php:232 -#: application/configs/config-check.php:251 -msgid " and ensure that it's running with " -msgstr "" - -#: application/configs/config-check.php:177 -#: application/configs/config-check.php:196 -#: application/configs/config-check.php:215 -#: application/configs/config-check.php:234 -#: application/configs/config-check.php:253 -msgid "If not, try " -msgstr "" - -#: application/configs/config-check.php:187 -msgid "LibreTime playout service" -msgstr "" - -#: application/configs/config-check.php:193 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:205 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: application/configs/config-check.php:212 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:224 -msgid "LibreTime Celery Task service" -msgstr "" - -#: application/configs/config-check.php:231 -msgid "Check that the libretime-worker service is installed correctly in " -msgstr "" - -#: application/configs/config-check.php:243 -msgid "LibreTime API service" -msgstr "" - -#: application/configs/config-check.php:250 -msgid "Check that the libretime-api service is installed correctly in " -msgstr "" - -#: application/configs/navigation.php:28 -msgid "Radio Page" -msgstr "" - -#: application/configs/navigation.php:36 -msgid "Calendar" -msgstr "节目日程" - -#: application/configs/navigation.php:44 -msgid "Widgets" -msgstr "" - -#: application/configs/navigation.php:53 -msgid "Player" -msgstr "" - -#: application/configs/navigation.php:59 -msgid "Weekly Schedule" -msgstr "" - -#: application/configs/navigation.php:67 -msgid "Settings" -msgstr "" - -#: application/configs/navigation.php:75 -msgid "General" -msgstr "" - -#: application/configs/navigation.php:81 -msgid "My Profile" -msgstr "" - -#: application/configs/navigation.php:86 -msgid "Users" -msgstr "用户管理" - -#: application/configs/navigation.php:92 -msgid "Track Types" -msgstr "" - -#: application/configs/navigation.php:99 -msgid "Streams" -msgstr "媒体流设置" - -#: application/configs/navigation.php:106 -#: application/controllers/LocaleController.php:382 -msgid "Status" -msgstr "系统状态" - -#: application/configs/navigation.php:115 -msgid "Analytics" -msgstr "" - -#: application/configs/navigation.php:124 -msgid "Playout History" -msgstr "播出历史" - -#: application/configs/navigation.php:131 -msgid "History Templates" -msgstr "历史记录模板" - -#: application/configs/navigation.php:138 -msgid "Listener Stats" -msgstr "收听状态" - -#: application/configs/navigation.php:145 -msgid "Show Listener Stats" -msgstr "" - -#: application/configs/navigation.php:154 -msgid "Help" -msgstr "帮助" - -#: application/configs/navigation.php:162 -msgid "Getting Started" -msgstr "基本用法" - -#: application/configs/navigation.php:169 -msgid "User Manual" -msgstr "用户手册" - -#: application/configs/navigation.php:174 -msgid "Get Help Online" -msgstr "" - -#: application/configs/navigation.php:179 -msgid "Contribute to LibreTime" -msgstr "" - -#: application/configs/navigation.php:184 -msgid "What's New?" -msgstr "" - -#: application/controllers/ApiController.php:113 -#: application/controllers/ApiController.php:753 -msgid "You are not allowed to access this resource." -msgstr "你没有访问该资源的权限" - -#: application/controllers/ApiController.php:383 -#: application/controllers/ApiController.php:459 -#: application/controllers/ApiController.php:528 -#: application/controllers/ApiController.php:583 -#: application/controllers/ApiController.php:671 -#: application/controllers/ApiController.php:688 -#: application/controllers/ApiController.php:719 -msgid "You are not allowed to access this resource. " -msgstr "你没有访问该资源的权限" - -#: application/controllers/ApiController.php:923 -#: application/controllers/ApiController.php:944 -#: application/controllers/ApiController.php:956 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: application/controllers/ApiController.php:1010 -msgid "Bad request. no 'mode' parameter passed." -msgstr "请求错误。没有提供‘模式’参数。" - -#: application/controllers/ApiController.php:1023 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "请求错误。提供的‘模式’参数无效。" - -#: application/controllers/DashboardController.php:34 -#: application/controllers/DashboardController.php:86 -msgid "You don't have permission to disconnect source." -msgstr "你没有断开输入源的权限。" - -#: application/controllers/DashboardController.php:36 -#: application/controllers/DashboardController.php:88 -msgid "There is no source connected to this input." -msgstr "没有连接上的输入源。" - -#: application/controllers/DashboardController.php:83 -msgid "You don't have permission to switch source." -msgstr "你没有切换的权限。" - -#: application/controllers/EmbeddablewidgetsController.php:24 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:37 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/EmbeddablewidgetsController.php:50 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: application/controllers/ErrorController.php:94 -msgid "Page not found." -msgstr "" - -#: application/controllers/ErrorController.php:104 -msgid "The requested action is not supported." -msgstr "" - -#: application/controllers/ErrorController.php:114 -msgid "You do not have permission to access this resource." -msgstr "" - -#: application/controllers/ErrorController.php:125 -msgid "An internal application error has occurred." -msgstr "" - -#: application/controllers/IndexController.php:88 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: application/controllers/IndexController.php:89 -msgid "No tracks have been published yet." -msgstr "" - -#: application/controllers/LibraryController.php:28 -#: application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s不存在" - -#: application/controllers/LibraryController.php:37 -#: application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "未知错误。" - -#: application/controllers/LibraryController.php:91 -#: application/controllers/LocaleController.php:171 -#: application/controllers/ShowbuilderController.php:131 -#: application/forms/SmartBlockCriteria.php:573 -msgid "Preview" -msgstr "预览" - -#: application/controllers/LibraryController.php:111 -#: application/controllers/LibraryController.php:139 -#: application/controllers/LibraryController.php:162 -msgid "Add to Playlist" -msgstr "添加到播放列表" - -#: application/controllers/LibraryController.php:113 -msgid "Add to Smart Block" -msgstr "添加到智能模块" - -#: application/controllers/LibraryController.php:118 -#: application/controllers/LibraryController.php:151 -#: application/controllers/LibraryController.php:170 -#: application/controllers/LocaleController.php:75 -#: application/controllers/ShowbuilderController.php:138 -#: application/services/CalendarService.php:192 -#: application/services/CalendarService.php:212 -#: application/services/CalendarService.php:218 -msgid "Delete" -msgstr "删除" - -#: application/controllers/LibraryController.php:119 -#: application/controllers/LibraryController.php:146 -#: application/controllers/LibraryController.php:168 -msgid "Edit..." -msgstr "" - -#: application/controllers/LibraryController.php:126 -#: application/controllers/ScheduleController.php:732 -msgid "Download" -msgstr "下载" - -#: application/controllers/LibraryController.php:130 -msgid "Duplicate Playlist" -msgstr "复制播放列表" - -#: application/controllers/LibraryController.php:133 -msgid "Duplicate Smartblock" -msgstr "" - -#: application/controllers/LibraryController.php:175 -msgid "No action available" -msgstr "没有操作选择" - -#: application/controllers/LibraryController.php:195 -msgid "You don't have permission to delete selected items." -msgstr "你没有删除选定项目的权限。" - -#: application/controllers/LibraryController.php:240 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: application/controllers/LibraryController.php:243 -msgid "Could not delete file(s)." -msgstr "" - -#: application/controllers/LibraryController.php:285 -#: application/controllers/LibraryController.php:320 -#, php-format -msgid "Copy of %s" -msgstr "%s的副本" - -#: application/controllers/ListenerstatController.php:46 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。" - -#: application/controllers/LocaleController.php:27 -msgid "Audio Player" -msgstr "音频播放器" - -#: application/controllers/LocaleController.php:28 -msgid "Something went wrong!" -msgstr "" - -#: application/controllers/LocaleController.php:30 -msgid "Recording:" -msgstr "录制:" - -#: application/controllers/LocaleController.php:31 -msgid "Master Stream" -msgstr "主输入源" - -#: application/controllers/LocaleController.php:32 -msgid "Live Stream" -msgstr "节目定制输入源" - -#: application/controllers/LocaleController.php:33 -msgid "Nothing Scheduled" -msgstr "没有安排节目内容" - -#: application/controllers/LocaleController.php:34 -msgid "Current Show:" -msgstr "当前节目:" - -#: application/controllers/LocaleController.php:35 -msgid "Current" -msgstr "当前的" - -#: application/controllers/LocaleController.php:37 -msgid "You are running the latest version" -msgstr "你已经在使用最新版" - -#: application/controllers/LocaleController.php:38 -msgid "New version available: " -msgstr "版本有更新:" - -#: application/controllers/LocaleController.php:39 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: application/controllers/LocaleController.php:40 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:41 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:42 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: application/controllers/LocaleController.php:43 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "添加到播放列表" - -#: application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "添加到只能模块" - -#: application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "添加1项" - -#: application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "添加%s项" - -#: application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "智能模块只能添加声音文件。" - -#: application/controllers/LocaleController.php:50 -#: application/controllers/PlaylistController.php:182 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。" - -#: application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "请在右部的时间表视图中选择一个游标位置。" - -#: application/controllers/LocaleController.php:54 -msgid "You haven't added any tracks" -msgstr "" - -#: application/controllers/LocaleController.php:55 -msgid "You haven't added any playlists" -msgstr "" - -#: application/controllers/LocaleController.php:56 -msgid "You haven't added any podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:57 -msgid "You haven't added any smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:58 -msgid "You haven't added any webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:59 -msgid "Learn about tracks" -msgstr "" - -#: application/controllers/LocaleController.php:60 -msgid "Learn about playlists" -msgstr "" - -#: application/controllers/LocaleController.php:61 -msgid "Learn about podcasts" -msgstr "" - -#: application/controllers/LocaleController.php:62 -msgid "Learn about smart blocks" -msgstr "" - -#: application/controllers/LocaleController.php:63 -msgid "Learn about webstreams" -msgstr "" - -#: application/controllers/LocaleController.php:64 -msgid "Click 'New' to create one." -msgstr "" - -#: application/controllers/LocaleController.php:68 -msgid "Add" -msgstr "添加" - -#: application/controllers/LocaleController.php:69 -msgid "New" -msgstr "" - -#: application/controllers/LocaleController.php:70 -#: application/services/CalendarService.php:155 -msgid "Edit" -msgstr "编辑" - -#: application/controllers/LocaleController.php:71 -msgid "Add to Schedule" -msgstr "" - -#: application/controllers/LocaleController.php:72 -msgid "Add to next show" -msgstr "" - -#: application/controllers/LocaleController.php:73 -msgid "Add to current show" -msgstr "" - -#: application/controllers/LocaleController.php:74 -msgid "Add after selected items" -msgstr "" - -#: application/controllers/LocaleController.php:76 -msgid "Publish" -msgstr "" - -#: application/controllers/LocaleController.php:77 -#: application/forms/AddShowStyle.php:63 -#: application/forms/GeneralPreferences.php:54 -msgid "Remove" -msgstr "移除" - -#: application/controllers/LocaleController.php:78 -msgid "Edit Metadata" -msgstr "编辑元数据" - -#: application/controllers/LocaleController.php:79 -msgid "Add to selected show" -msgstr "添加到所选的节目" - -#: application/controllers/LocaleController.php:80 -msgid "Select" -msgstr "选择" - -#: application/controllers/LocaleController.php:81 -msgid "Select this page" -msgstr "选择此页" - -#: application/controllers/LocaleController.php:82 -msgid "Deselect this page" -msgstr "取消整页" - -#: application/controllers/LocaleController.php:83 -msgid "Deselect all" -msgstr "全部取消" - -#: application/controllers/LocaleController.php:84 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "确定删除选择的项?" - -#: application/controllers/LocaleController.php:85 -msgid "Scheduled" -msgstr "已安排进日程" - -#: application/controllers/LocaleController.php:86 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 -msgid "Tracks" -msgstr "" - -#: application/controllers/LocaleController.php:87 -msgid "Playlist" -msgstr "" - -#: application/controllers/LocaleController.php:88 -#: application/forms/SmartBlockCriteria.php:81 -#: application/models/Block.php:1458 application/models/Block.php:1556 -#: application/services/HistoryService.php:1051 -#: application/services/HistoryService.php:1086 -#: application/services/HistoryService.php:1101 -msgid "Title" -msgstr "标题" - -#: application/controllers/LocaleController.php:89 -#: application/forms/SmartBlockCriteria.php:66 -#: application/models/Block.php:1442 application/models/Block.php:1540 -#: application/services/HistoryService.php:1052 -#: application/services/HistoryService.php:1087 -#: application/services/HistoryService.php:1102 -msgid "Creator" -msgstr "作者" - -#: application/controllers/LocaleController.php:90 -#: application/forms/SmartBlockCriteria.php:57 -#: application/models/Block.php:1433 application/models/Block.php:1531 -#: application/services/HistoryService.php:1053 -msgid "Album" -msgstr "专辑" - -#: application/controllers/LocaleController.php:91 -msgid "Bit Rate" -msgstr "比特率" - -#: application/controllers/LocaleController.php:92 -#: application/forms/SmartBlockCriteria.php:59 -#: application/models/Block.php:1435 application/models/Block.php:1533 -msgid "BPM" -msgstr "每分钟拍子数" - -#: application/controllers/LocaleController.php:93 -#: application/forms/SmartBlockCriteria.php:60 -#: application/models/Block.php:1436 application/models/Block.php:1534 -#: application/services/HistoryService.php:1058 -#: application/services/HistoryService.php:1105 -msgid "Composer" -msgstr "作曲" - -#: application/controllers/LocaleController.php:94 -#: application/forms/SmartBlockCriteria.php:61 -#: application/models/Block.php:1437 application/models/Block.php:1535 -#: application/services/HistoryService.php:1063 -msgid "Conductor" -msgstr "指挥" - -#: application/controllers/LocaleController.php:95 -#: application/forms/SmartBlockCriteria.php:62 -#: application/models/Block.php:1438 application/models/Block.php:1536 -#: application/services/HistoryService.php:1060 -#: application/services/HistoryService.php:1106 -msgid "Copyright" -msgstr "版权" - -#: application/controllers/LocaleController.php:96 -#: application/forms/SmartBlockCriteria.php:67 -#: application/models/Block.php:1443 application/models/Block.php:1541 -msgid "Encoded By" -msgstr "编曲" - -#: application/controllers/LocaleController.php:97 -#: application/forms/SmartBlockCriteria.php:68 -#: application/forms/StreamSettingSubForm.php:118 -#: application/models/Block.php:1444 application/models/Block.php:1542 -#: application/services/HistoryService.php:1055 -msgid "Genre" -msgstr "风格" - -#: application/controllers/LocaleController.php:98 -#: application/forms/SmartBlockCriteria.php:69 -#: application/models/Block.php:1445 application/models/Block.php:1543 -#: application/services/HistoryService.php:1059 -msgid "ISRC" -msgstr "ISRC码" - -#: application/controllers/LocaleController.php:99 -#: application/forms/SmartBlockCriteria.php:70 -#: application/models/Block.php:1446 application/models/Block.php:1544 -#: application/services/HistoryService.php:1057 -msgid "Label" -msgstr "标签" - -#: application/controllers/LocaleController.php:100 -#: application/forms/SmartBlockCriteria.php:71 -#: application/models/Block.php:1447 application/models/Block.php:1545 -#: application/services/HistoryService.php:1064 -msgid "Language" -msgstr "语种" - -#: application/controllers/LocaleController.php:101 -#: application/forms/SmartBlockCriteria.php:72 -#: application/models/Block.php:1449 application/models/Block.php:1547 -msgid "Last Modified" -msgstr "最近更新于" - -#: application/controllers/LocaleController.php:102 -#: application/forms/SmartBlockCriteria.php:73 -#: application/models/Block.php:1450 application/models/Block.php:1548 -msgid "Last Played" -msgstr "上次播放于" - -#: application/controllers/LocaleController.php:103 -#: application/forms/SmartBlockCriteria.php:74 -#: application/models/Block.php:1451 application/models/Block.php:1549 -#: application/services/HistoryService.php:1054 -#: application/services/HistoryService.php:1104 -msgid "Length" -msgstr "时长" - -#: application/controllers/LocaleController.php:104 -#: application/forms/SmartBlockCriteria.php:76 -#: application/models/Block.php:1453 application/models/Block.php:1551 -msgid "Mime" -msgstr "MIME信息" - -#: application/controllers/LocaleController.php:105 -#: application/forms/SmartBlockCriteria.php:77 -#: application/models/Block.php:1454 application/models/Block.php:1552 -#: application/services/HistoryService.php:1056 -msgid "Mood" -msgstr "风格" - -#: application/controllers/LocaleController.php:106 -#: application/forms/SmartBlockCriteria.php:78 -#: application/models/Block.php:1455 application/models/Block.php:1553 -msgid "Owner" -msgstr "所有者" - -#: application/controllers/LocaleController.php:107 -#: application/forms/SmartBlockCriteria.php:79 -#: application/models/Block.php:1456 application/models/Block.php:1554 -msgid "Replay Gain" -msgstr "回放增益" - -#: application/controllers/LocaleController.php:108 -msgid "Sample Rate" -msgstr "样本率" - -#: application/controllers/LocaleController.php:109 -#: application/forms/SmartBlockCriteria.php:82 -#: application/models/Block.php:1459 application/models/Block.php:1557 -msgid "Track Number" -msgstr "曲目" - -#: application/controllers/LocaleController.php:110 -#: application/forms/SmartBlockCriteria.php:83 -#: application/models/Block.php:1460 application/models/Block.php:1558 -msgid "Uploaded" -msgstr "上传于" - -#: application/controllers/LocaleController.php:111 -#: application/forms/SmartBlockCriteria.php:84 -#: application/models/Block.php:1461 application/models/Block.php:1559 -msgid "Website" -msgstr "网址" - -#: application/controllers/LocaleController.php:112 -#: application/forms/SmartBlockCriteria.php:85 -#: application/models/Block.php:1462 application/models/Block.php:1560 -#: application/services/HistoryService.php:1061 -msgid "Year" -msgstr "年代" - -#: application/controllers/LocaleController.php:113 -msgid "Loading..." -msgstr "加载中..." - -#: application/controllers/LocaleController.php:114 -#: application/controllers/LocaleController.php:414 -msgid "All" -msgstr "全部" - -#: application/controllers/LocaleController.php:115 -msgid "Files" -msgstr "文件" - -#: application/controllers/LocaleController.php:116 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 -msgid "Playlists" -msgstr "播放列表" - -#: application/controllers/LocaleController.php:117 -#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 -msgid "Smart Blocks" -msgstr "智能模块" - -#: application/controllers/LocaleController.php:118 -msgid "Web Streams" -msgstr "网络流媒体" - -#: application/controllers/LocaleController.php:119 -msgid "Unknown type: " -msgstr "位置类型:" - -#: application/controllers/LocaleController.php:120 -msgid "Are you sure you want to delete the selected item?" -msgstr "确定删除所选项?" - -#: application/controllers/LocaleController.php:121 -#: application/controllers/LocaleController.php:218 -msgid "Uploading in progress..." -msgstr "正在上传..." - -#: application/controllers/LocaleController.php:122 -msgid "Retrieving data from the server..." -msgstr "数据正在从服务器下载中..." - -#: application/controllers/LocaleController.php:124 -msgid "Import" -msgstr "" - -#: application/controllers/LocaleController.php:125 -msgid "Imported?" -msgstr "" - -#: application/controllers/LocaleController.php:126 -#: application/services/CalendarService.php:61 -#: application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: application/controllers/LocaleController.php:127 -msgid "Error code: " -msgstr "错误代码:" - -#: application/controllers/LocaleController.php:128 -msgid "Error msg: " -msgstr "错误信息:" - -#: application/controllers/LocaleController.php:129 -msgid "Input must be a positive number" -msgstr "输入只能为正数" - -#: application/controllers/LocaleController.php:130 -msgid "Input must be a number" -msgstr "只允许数字输入" - -#: application/controllers/LocaleController.php:131 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "输入格式应为:年-月-日(yyyy-mm-dd)" - -#: application/controllers/LocaleController.php:132 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "输入格式应为:时:分:秒 (hh:mm:ss.t)" - -#: application/controllers/LocaleController.php:133 -msgid "My Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:135 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?" - -#: application/controllers/LocaleController.php:137 -msgid "Open Media Builder" -msgstr "打开媒体编辑器" - -#: application/controllers/LocaleController.php:138 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "请输入时间‘00:00:00(.0)’" - -#: application/controllers/LocaleController.php:139 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: application/controllers/LocaleController.php:140 -msgid "Your browser does not support playing this file type: " -msgstr "你的浏览器不支持这种文件类型:" - -#: application/controllers/LocaleController.php:141 -msgid "Dynamic block is not previewable" -msgstr "动态智能模块无法预览" - -#: application/controllers/LocaleController.php:142 -msgid "Limit to: " -msgstr "限制在:" - -#: application/controllers/LocaleController.php:143 -msgid "Playlist saved" -msgstr "播放列表已存储" - -#: application/controllers/LocaleController.php:144 -msgid "Playlist shuffled" -msgstr "播放列表已经随机化" - -#: application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。" - -#: application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "听众统计%s:%s" - -#: application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "一周以后再提醒我" - -#: application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "不再提醒" - -#: application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "是的,帮助Airtime" - -#: application/controllers/LocaleController.php:152 -#: application/controllers/LocaleController.php:196 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "图像文件格式只能是jpg,jpeg,png或者gif" - -#: application/controllers/LocaleController.php:154 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。" - -#: application/controllers/LocaleController.php:155 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。" - -#: application/controllers/LocaleController.php:156 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: application/controllers/LocaleController.php:157 -msgid "Smart block shuffled" -msgstr "智能模块已经随机排列" - -#: application/controllers/LocaleController.php:158 -msgid "Smart block generated and criteria saved" -msgstr "智能模块已经生成,条件设置已经保存" - -#: application/controllers/LocaleController.php:159 -msgid "Smart block saved" -msgstr "智能模块已经保存" - -#: application/controllers/LocaleController.php:160 -msgid "Processing..." -msgstr "加载中..." - -#: application/controllers/LocaleController.php:161 -#: application/forms/SmartBlockCriteria.php:100 -#: application/forms/SmartBlockCriteria.php:117 -#: application/forms/SmartBlockCriteria.php:133 -#: application/forms/SmartBlockCriteria.php:198 -#: application/forms/SmartBlockCriteria.php:377 -#: application/forms/SmartBlockCriteria.php:631 -#: application/forms/SmartBlockCriteria.php:688 -#: application/models/Block.php:1466 application/models/Block.php:1564 -msgid "Select modifier" -msgstr "选择操作符" - -#: application/controllers/LocaleController.php:162 -#: application/forms/SmartBlockCriteria.php:101 -#: application/models/Block.php:1467 application/models/Block.php:1565 -msgid "contains" -msgstr "包含" - -#: application/controllers/LocaleController.php:163 -#: application/forms/SmartBlockCriteria.php:102 -#: application/models/Block.php:1468 application/models/Block.php:1566 -msgid "does not contain" -msgstr "不包含" - -#: application/controllers/LocaleController.php:164 -#: application/forms/SmartBlockCriteria.php:103 -#: application/forms/SmartBlockCriteria.php:118 -#: application/forms/SmartBlockCriteria.php:137 -#: application/forms/SmartBlockCriteria.php:199 -#: application/models/Block.php:1469 application/models/Block.php:1476 -#: application/models/Block.php:1567 application/models/Block.php:1574 -msgid "is" -msgstr "是" - -#: application/controllers/LocaleController.php:165 -#: application/forms/SmartBlockCriteria.php:104 -#: application/forms/SmartBlockCriteria.php:119 -#: application/forms/SmartBlockCriteria.php:138 -#: application/forms/SmartBlockCriteria.php:200 -#: application/models/Block.php:1470 application/models/Block.php:1477 -#: application/models/Block.php:1568 application/models/Block.php:1575 -msgid "is not" -msgstr "不是" - -#: application/controllers/LocaleController.php:166 -#: application/forms/SmartBlockCriteria.php:105 -#: application/models/Block.php:1471 application/models/Block.php:1569 -msgid "starts with" -msgstr "起始于" - -#: application/controllers/LocaleController.php:167 -#: application/forms/SmartBlockCriteria.php:106 -#: application/models/Block.php:1472 application/models/Block.php:1570 -msgid "ends with" -msgstr "结束于" - -#: application/controllers/LocaleController.php:168 -#: application/forms/SmartBlockCriteria.php:120 -#: application/forms/SmartBlockCriteria.php:139 -#: application/models/Block.php:1478 application/models/Block.php:1576 -msgid "is greater than" -msgstr "大于" - -#: application/controllers/LocaleController.php:169 -#: application/forms/SmartBlockCriteria.php:121 -#: application/forms/SmartBlockCriteria.php:140 -#: application/models/Block.php:1479 application/models/Block.php:1577 -msgid "is less than" -msgstr "小于" - -#: application/controllers/LocaleController.php:170 -#: application/forms/SmartBlockCriteria.php:122 -#: application/forms/SmartBlockCriteria.php:141 -#: application/models/Block.php:1480 application/models/Block.php:1578 -msgid "is in the range" -msgstr "处于" - -#: application/controllers/LocaleController.php:172 -#: application/forms/SmartBlockCriteria.php:575 -msgid "Generate" -msgstr "开始生成" - -#: application/controllers/LocaleController.php:174 -msgid "Choose Storage Folder" -msgstr "选择存储文件夹" - -#: application/controllers/LocaleController.php:175 -msgid "Choose Folder to Watch" -msgstr "选择监控的文件夹" - -#: application/controllers/LocaleController.php:176 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"确定更改存储路径?\n" -"这项操作将从媒体库中删除所有文件!" - -#: application/controllers/LocaleController.php:177 -msgid "Manage Media Folders" -msgstr "管理媒体文件夹" - -#: application/controllers/LocaleController.php:178 -msgid "Are you sure you want to remove the watched folder?" -msgstr "确定取消该文件夹的监控?" - -#: application/controllers/LocaleController.php:179 -msgid "This path is currently not accessible." -msgstr "指定的路径无法访问。" - -#: application/controllers/LocaleController.php:181 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。" - -#: application/controllers/LocaleController.php:182 -msgid "Connected to the streaming server" -msgstr "流服务器已连接" - -#: application/controllers/LocaleController.php:183 -msgid "The stream is disabled" -msgstr "输出流已禁用" - -#: application/controllers/LocaleController.php:184 -#: application/forms/StreamSettingSubForm.php:146 -msgid "Getting information from the server..." -msgstr "从服务器加载中..." - -#: application/controllers/LocaleController.php:185 -msgid "Can not connect to the streaming server" -msgstr "无法连接流服务器" - -#: application/controllers/LocaleController.php:186 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: application/controllers/LocaleController.php:187 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: application/controllers/LocaleController.php:188 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。" - -#: application/controllers/LocaleController.php:189 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。" - -#: application/controllers/LocaleController.php:190 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。" - -#: application/controllers/LocaleController.php:191 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。" - -#: application/controllers/LocaleController.php:192 -#: application/controllers/LocaleController.php:202 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "如果你的流客户端不需要用户名,那么当前项可以留空" - -#: application/controllers/LocaleController.php:193 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: application/controllers/LocaleController.php:194 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。" - -#: application/controllers/LocaleController.php:198 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: application/controllers/LocaleController.php:199 -msgid "No result found" -msgstr "搜索无结果" - -#: application/controllers/LocaleController.php:200 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。" - -#: application/controllers/LocaleController.php:201 -msgid "Specify custom authentication which will work only for this show." -msgstr "所设置的自定义认证设置只对当前的节目有效。" - -#: application/controllers/LocaleController.php:203 -msgid "The show instance doesn't exist anymore!" -msgstr "此节目已不存在" - -#: application/controllers/LocaleController.php:204 -msgid "Warning: Shows cannot be re-linked" -msgstr "注意:节目取消绑定后无法再次绑定" - -#: application/controllers/LocaleController.php:205 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。" - -#: application/controllers/LocaleController.php:206 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。" - -#: application/controllers/LocaleController.php:210 -msgid "Show" -msgstr "节目" - -#: application/controllers/LocaleController.php:211 -msgid "Show is empty" -msgstr "节目内容为空" - -#: application/controllers/LocaleController.php:212 -msgid "1m" -msgstr "1分钟" - -#: application/controllers/LocaleController.php:213 -msgid "5m" -msgstr "5分钟" - -#: application/controllers/LocaleController.php:214 -msgid "10m" -msgstr "10分钟" - -#: application/controllers/LocaleController.php:215 -msgid "15m" -msgstr "15分钟" - -#: application/controllers/LocaleController.php:216 -msgid "30m" -msgstr "30分钟" - -#: application/controllers/LocaleController.php:217 -msgid "60m" -msgstr "60分钟" - -#: application/controllers/LocaleController.php:219 -msgid "Retreiving data from the server..." -msgstr "从服务器下载数据中..." - -#: application/controllers/LocaleController.php:220 -msgid "This show has no scheduled content." -msgstr "此节目没有安排内容。" - -#: application/controllers/LocaleController.php:221 -msgid "This show is not completely filled with content." -msgstr "节目内容只填充了一部分。" - -#: application/controllers/LocaleController.php:225 -msgid "January" -msgstr "一月" - -#: application/controllers/LocaleController.php:226 -msgid "February" -msgstr "二月" - -#: application/controllers/LocaleController.php:227 -msgid "March" -msgstr "三月" - -#: application/controllers/LocaleController.php:228 -msgid "April" -msgstr "四月" - -#: application/controllers/LocaleController.php:229 -#: application/controllers/LocaleController.php:241 -msgid "May" -msgstr "五月" - -#: application/controllers/LocaleController.php:230 -msgid "June" -msgstr "六月" - -#: application/controllers/LocaleController.php:231 -msgid "July" -msgstr "七月" - -#: application/controllers/LocaleController.php:232 -msgid "August" -msgstr "八月" - -#: application/controllers/LocaleController.php:233 -msgid "September" -msgstr "九月" - -#: application/controllers/LocaleController.php:234 -msgid "October" -msgstr "十月" - -#: application/controllers/LocaleController.php:235 -msgid "November" -msgstr "十一月" - -#: application/controllers/LocaleController.php:236 -msgid "December" -msgstr "十二月" - -#: application/controllers/LocaleController.php:237 -msgid "Jan" -msgstr "一月" - -#: application/controllers/LocaleController.php:238 -msgid "Feb" -msgstr "二月" - -#: application/controllers/LocaleController.php:239 -msgid "Mar" -msgstr "三月" - -#: application/controllers/LocaleController.php:240 -msgid "Apr" -msgstr "四月" - -#: application/controllers/LocaleController.php:242 -msgid "Jun" -msgstr "六月" - -#: application/controllers/LocaleController.php:243 -msgid "Jul" -msgstr "七月" - -#: application/controllers/LocaleController.php:244 -msgid "Aug" -msgstr "八月" - -#: application/controllers/LocaleController.php:245 -msgid "Sep" -msgstr "九月" - -#: application/controllers/LocaleController.php:246 -msgid "Oct" -msgstr "十月" - -#: application/controllers/LocaleController.php:247 -msgid "Nov" -msgstr "十一月" - -#: application/controllers/LocaleController.php:248 -msgid "Dec" -msgstr "十二月" - -#: application/controllers/LocaleController.php:249 -msgid "Today" -msgstr "" - -#: application/controllers/LocaleController.php:250 -msgid "Day" -msgstr "" - -#: application/controllers/LocaleController.php:251 -msgid "Week" -msgstr "" - -#: application/controllers/LocaleController.php:252 -msgid "Month" -msgstr "" - -#: application/controllers/LocaleController.php:253 -#: application/forms/GeneralPreferences.php:230 -msgid "Sunday" -msgstr "周日" - -#: application/controllers/LocaleController.php:254 -#: application/forms/GeneralPreferences.php:231 -msgid "Monday" -msgstr "周一" - -#: application/controllers/LocaleController.php:255 -#: application/forms/GeneralPreferences.php:232 -msgid "Tuesday" -msgstr "周二" - -#: application/controllers/LocaleController.php:256 -#: application/forms/GeneralPreferences.php:233 -msgid "Wednesday" -msgstr "周三" - -#: application/controllers/LocaleController.php:257 -#: application/forms/GeneralPreferences.php:234 -msgid "Thursday" -msgstr "周四" - -#: application/controllers/LocaleController.php:258 -#: application/forms/GeneralPreferences.php:235 -msgid "Friday" -msgstr "周五" - -#: application/controllers/LocaleController.php:259 -#: application/forms/GeneralPreferences.php:236 -msgid "Saturday" -msgstr "周六" - -#: application/controllers/LocaleController.php:260 -#: application/forms/AddShowRepeats.php:33 -msgid "Sun" -msgstr "周日" - -#: application/controllers/LocaleController.php:261 -#: application/forms/AddShowRepeats.php:34 -msgid "Mon" -msgstr "周一" - -#: application/controllers/LocaleController.php:262 -#: application/forms/AddShowRepeats.php:35 -msgid "Tue" -msgstr "周二" - -#: application/controllers/LocaleController.php:263 -#: application/forms/AddShowRepeats.php:36 -msgid "Wed" -msgstr "周三" - -#: application/controllers/LocaleController.php:264 -#: application/forms/AddShowRepeats.php:37 -msgid "Thu" -msgstr "周四" - -#: application/controllers/LocaleController.php:265 -#: application/forms/AddShowRepeats.php:38 -msgid "Fri" -msgstr "周五" - -#: application/controllers/LocaleController.php:266 -#: application/forms/AddShowRepeats.php:39 -msgid "Sat" -msgstr "周六" - -#: application/controllers/LocaleController.php:267 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "超出的节目内容将被随后的节目所取代。" - -#: application/controllers/LocaleController.php:268 -msgid "Cancel Current Show?" -msgstr "取消当前的节目?" - -#: application/controllers/LocaleController.php:269 -#: application/controllers/LocaleController.php:318 -msgid "Stop recording current show?" -msgstr "停止录制当前的节目?" - -#: application/controllers/LocaleController.php:270 -msgid "Ok" -msgstr "确定" - -#: application/controllers/LocaleController.php:271 -msgid "Contents of Show" -msgstr "浏览节目内容" - -#: application/controllers/LocaleController.php:274 -msgid "Remove all content?" -msgstr "清空全部内容?" - -#: application/controllers/LocaleController.php:276 -msgid "Delete selected item(s)?" -msgstr "删除选定的项目?" - -#: application/controllers/LocaleController.php:277 -msgid "Start" -msgstr "开始" - -#: application/controllers/LocaleController.php:278 -msgid "End" -msgstr "结束" - -#: application/controllers/LocaleController.php:279 -msgid "Duration" -msgstr "时长" - -#: application/controllers/LocaleController.php:280 -msgid "Filtering out " -msgstr "" - -#: application/controllers/LocaleController.php:281 -msgid " of " -msgstr "" - -#: application/controllers/LocaleController.php:282 -msgid " records" -msgstr "" - -#: application/controllers/LocaleController.php:283 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: application/controllers/LocaleController.php:289 -#: application/forms/SmartBlockCriteria.php:63 -#: application/models/Block.php:1439 application/models/Block.php:1537 -msgid "Cue In" -msgstr "切入" - -#: application/controllers/LocaleController.php:290 -#: application/forms/SmartBlockCriteria.php:64 -#: application/models/Block.php:1440 application/models/Block.php:1538 -msgid "Cue Out" -msgstr "切出" - -#: application/controllers/LocaleController.php:291 -msgid "Fade In" -msgstr "淡入" - -#: application/controllers/LocaleController.php:292 -msgid "Fade Out" -msgstr "淡出" - -#: application/controllers/LocaleController.php:293 -msgid "Show Empty" -msgstr "节目无内容" - -#: application/controllers/LocaleController.php:294 -msgid "Recording From Line In" -msgstr "从线路输入录制" - -#: application/controllers/LocaleController.php:295 -msgid "Track preview" -msgstr "试听媒体" - -#: application/controllers/LocaleController.php:299 -msgid "Cannot schedule outside a show." -msgstr "没有指定节目,无法凭空安排内容。" - -#: application/controllers/LocaleController.php:300 -msgid "Moving 1 Item" -msgstr "移动1个项目" - -#: application/controllers/LocaleController.php:301 -#, php-format -msgid "Moving %s Items" -msgstr "移动%s个项目" - -#: application/controllers/LocaleController.php:302 -#: application/forms/AddTracktype.php:64 application/forms/AddUser.php:108 -#: application/forms/EditAudioMD.php:280 application/forms/EditHistory.php:131 -#: application/forms/PasswordChange.php:43 application/forms/Preferences.php:35 -msgid "Save" -msgstr "保存" - -#: application/controllers/LocaleController.php:303 -#: application/controllers/LocaleController.php:327 -#: application/forms/EditAudioMD.php:270 application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "取消" - -#: application/controllers/LocaleController.php:304 -msgid "Fade Editor" -msgstr "淡入淡出编辑器" - -#: application/controllers/LocaleController.php:305 -msgid "Cue Editor" -msgstr "切入切出编辑器" - -#: application/controllers/LocaleController.php:306 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "想要启用波形图功能,需要支持Web Audio API的浏览器。" - -#: application/controllers/LocaleController.php:309 -msgid "Select all" -msgstr "全选" - -#: application/controllers/LocaleController.php:310 -msgid "Select none" -msgstr "全不选" - -#: application/controllers/LocaleController.php:311 -msgid "Trim overbooked shows" -msgstr "" - -#: application/controllers/LocaleController.php:312 -msgid "Remove selected scheduled items" -msgstr "移除所选的项目" - -#: application/controllers/LocaleController.php:313 -msgid "Jump to the current playing track" -msgstr "跳转到当前播放的项目" - -#: application/controllers/LocaleController.php:314 -msgid "Jump to Current" -msgstr "" - -#: application/controllers/LocaleController.php:315 -msgid "Cancel current show" -msgstr "取消当前的节目" - -#: application/controllers/LocaleController.php:320 -msgid "Open library to add or remove content" -msgstr "打开媒体库,添加或者删除节目内容" - -#: application/controllers/LocaleController.php:321 -msgid "Add / Remove Content" -msgstr "添加 / 删除内容" - -#: application/controllers/LocaleController.php:323 -msgid "in use" -msgstr "使用中" - -#: application/controllers/LocaleController.php:324 -msgid "Disk" -msgstr "磁盘" - -#: application/controllers/LocaleController.php:326 -msgid "Look in" -msgstr "查询" - -#: application/controllers/LocaleController.php:328 -msgid "Open" -msgstr "打开" - -#: application/controllers/LocaleController.php:330 -#: application/forms/AddUser.php:100 -msgid "Admin" -msgstr "系统管理员" - -#: application/controllers/LocaleController.php:331 -#: application/forms/AddUser.php:98 -msgid "DJ" -msgstr "节目编辑" - -#: application/controllers/LocaleController.php:332 -#: application/forms/AddUser.php:99 -msgid "Program Manager" -msgstr "节目主管" - -#: application/controllers/LocaleController.php:333 -#: application/forms/AddUser.php:97 -msgid "Guest" -msgstr "游客" - -#: application/controllers/LocaleController.php:334 -msgid "Guests can do the following:" -msgstr "游客的权限包括:" - -#: application/controllers/LocaleController.php:335 -msgid "View schedule" -msgstr "显示节目日程" - -#: application/controllers/LocaleController.php:336 -msgid "View show content" -msgstr "显示节目内容" - -#: application/controllers/LocaleController.php:337 -msgid "DJs can do the following:" -msgstr "节目编辑的权限包括:" - -#: application/controllers/LocaleController.php:338 -msgid "Manage assigned show content" -msgstr "为指派的节目管理节目内容" - -#: application/controllers/LocaleController.php:339 -msgid "Import media files" -msgstr "导入媒体文件" - -#: application/controllers/LocaleController.php:340 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "创建播放列表,智能模块和网络流媒体" - -#: application/controllers/LocaleController.php:341 -msgid "Manage their own library content" -msgstr "管理媒体库中属于自己的内容" - -#: application/controllers/LocaleController.php:342 -msgid "Program Managers can do the following:" -msgstr "" - -#: application/controllers/LocaleController.php:343 -msgid "View and manage show content" -msgstr "查看和管理节目内容" - -#: application/controllers/LocaleController.php:344 -msgid "Schedule shows" -msgstr "安排节目日程" - -#: application/controllers/LocaleController.php:345 -msgid "Manage all library content" -msgstr "管理媒体库的所有内容" - -#: application/controllers/LocaleController.php:346 -msgid "Admins can do the following:" -msgstr "管理员的权限包括:" - -#: application/controllers/LocaleController.php:347 -msgid "Manage preferences" -msgstr "属性管理" - -#: application/controllers/LocaleController.php:348 -msgid "Manage users" -msgstr "管理用户" - -#: application/controllers/LocaleController.php:349 -msgid "Manage watched folders" -msgstr "管理监控文件夹" - -#: application/controllers/LocaleController.php:350 -msgid "Send support feedback" -msgstr "提交反馈意见" - -#: application/controllers/LocaleController.php:351 -msgid "View system status" -msgstr "显示系统状态" - -#: application/controllers/LocaleController.php:352 -msgid "Access playout history" -msgstr "查看播放历史" - -#: application/controllers/LocaleController.php:353 -msgid "View listener stats" -msgstr "显示收听统计数据" - -#: application/controllers/LocaleController.php:355 -msgid "Show / hide columns" -msgstr "显示/隐藏栏" - -#: application/controllers/LocaleController.php:356 -msgid "Columns" -msgstr "" - -#: application/controllers/LocaleController.php:358 -msgid "From {from} to {to}" -msgstr "从{from}到{to}" - -#: application/controllers/LocaleController.php:359 -msgid "kbps" -msgstr "千比特每秒" - -#: application/controllers/LocaleController.php:360 -msgid "yyyy-mm-dd" -msgstr "年-月-日" - -#: application/controllers/LocaleController.php:361 -msgid "hh:mm:ss.t" -msgstr "时:分:秒" - -#: application/controllers/LocaleController.php:362 -msgid "kHz" -msgstr "千赫兹" - -#: application/controllers/LocaleController.php:365 -msgid "Su" -msgstr "周天" - -#: application/controllers/LocaleController.php:366 -msgid "Mo" -msgstr "周一" - -#: application/controllers/LocaleController.php:367 -msgid "Tu" -msgstr "周二" - -#: application/controllers/LocaleController.php:368 -msgid "We" -msgstr "周三" - -#: application/controllers/LocaleController.php:369 -msgid "Th" -msgstr "周四" - -#: application/controllers/LocaleController.php:370 -msgid "Fr" -msgstr "周五" - -#: application/controllers/LocaleController.php:371 -msgid "Sa" -msgstr "周六" - -#: application/controllers/LocaleController.php:372 -#: application/controllers/LocaleController.php:403 -msgid "Close" -msgstr "关闭" - -#: application/controllers/LocaleController.php:374 -msgid "Hour" -msgstr "小时" - -#: application/controllers/LocaleController.php:375 -msgid "Minute" -msgstr "分钟" - -#: application/controllers/LocaleController.php:376 -msgid "Done" -msgstr "设定" - -#: application/controllers/LocaleController.php:379 -msgid "Select files" -msgstr "选择文件" - -#: application/controllers/LocaleController.php:380 -msgid "Add files to the upload queue and click the start button." -msgstr "添加需要上传的文件到传输队列中,然后点击开始上传。" - -#: application/controllers/LocaleController.php:381 -msgid "Filename" -msgstr "" - -#: application/controllers/LocaleController.php:383 -msgid "Size" -msgstr "" - -#: application/controllers/LocaleController.php:384 -msgid "Add Files" -msgstr "添加文件" - -#: application/controllers/LocaleController.php:385 -msgid "Stop Upload" -msgstr "停止上传" - -#: application/controllers/LocaleController.php:386 -msgid "Start upload" -msgstr "开始上传" - -#: application/controllers/LocaleController.php:387 -msgid "Start Upload" -msgstr "" - -#: application/controllers/LocaleController.php:388 -msgid "Add files" -msgstr "添加文件" - -#: application/controllers/LocaleController.php:389 -msgid "Stop current upload" -msgstr "" - -#: application/controllers/LocaleController.php:390 -msgid "Start uploading queue" -msgstr "" - -#: application/controllers/LocaleController.php:391 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "已经上传%d/%d个文件" - -#: application/controllers/LocaleController.php:392 -msgid "N/A" -msgstr "未知" - -#: application/controllers/LocaleController.php:393 -msgid "Drag files here." -msgstr "拖拽文件到此处。" - -#: application/controllers/LocaleController.php:394 -msgid "File extension error." -msgstr "文件后缀名出错。" - -#: application/controllers/LocaleController.php:395 -msgid "File size error." -msgstr "文件大小出错。" - -#: application/controllers/LocaleController.php:396 -msgid "File count error." -msgstr "发生文件统计错误。" - -#: application/controllers/LocaleController.php:397 -msgid "Init error." -msgstr "发生初始化错误。" - -#: application/controllers/LocaleController.php:398 -msgid "HTTP Error." -msgstr "发生HTTP类型的错误" - -#: application/controllers/LocaleController.php:399 -msgid "Security error." -msgstr "发生安全性错误。" - -#: application/controllers/LocaleController.php:400 -msgid "Generic error." -msgstr "发生通用类型的错误。" - -#: application/controllers/LocaleController.php:401 -msgid "IO error." -msgstr "输入输出错误。" - -#: application/controllers/LocaleController.php:402 -#, php-format -msgid "File: %s" -msgstr "文件:%s" - -#: application/controllers/LocaleController.php:404 -#, php-format -msgid "%d files queued" -msgstr "队列中有%d个文件" - -#: application/controllers/LocaleController.php:405 -msgid "File: %f, size: %s, max file size: %m" -msgstr "文件:%f,大小:%s,最大的文件大小:%m" - -#: application/controllers/LocaleController.php:406 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "用于上传的地址有误或者不存在" - -#: application/controllers/LocaleController.php:407 -msgid "Error: File too large: " -msgstr "错误:文件过大:" - -#: application/controllers/LocaleController.php:408 -msgid "Error: Invalid file extension: " -msgstr "错误:无效的文件后缀名:" - -#: application/controllers/LocaleController.php:410 -msgid "Set Default" -msgstr "设为默认" - -#: application/controllers/LocaleController.php:411 -msgid "Create Entry" -msgstr "创建项目" - -#: application/controllers/LocaleController.php:412 -msgid "Edit History Record" -msgstr "编辑历史记录" - -#: application/controllers/LocaleController.php:413 -#: application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "无节目" - -#: application/controllers/LocaleController.php:415 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "复制%s行%s到剪贴板" - -#: application/controllers/LocaleController.php:416 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。" - -#: application/controllers/LocaleController.php:417 -msgid "New Show" -msgstr "" - -#: application/controllers/LocaleController.php:418 -msgid "New Log Entry" -msgstr "" - -#: application/controllers/LocaleController.php:420 -msgid "No data available in table" -msgstr "" - -#: application/controllers/LocaleController.php:421 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: application/controllers/LocaleController.php:427 -msgid "First" -msgstr "" - -#: application/controllers/LocaleController.php:428 -msgid "Last" -msgstr "" - -#: application/controllers/LocaleController.php:429 -msgid "Next" -msgstr "" - -#: application/controllers/LocaleController.php:430 -msgid "Previous" -msgstr "" - -#: application/controllers/LocaleController.php:431 -msgid "Search:" -msgstr "" - -#: application/controllers/LocaleController.php:432 -#: application/controllers/LocaleController.php:445 -msgid "No matching records found" -msgstr "" - -#: application/controllers/LocaleController.php:433 -msgid "Drag tracks here from the library" -msgstr "" - -#: application/controllers/LocaleController.php:434 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: application/controllers/LocaleController.php:435 -msgid "Unpublish" -msgstr "" - -#: application/controllers/LocaleController.php:436 -msgid "No matching results found." -msgstr "" - -#: application/controllers/LocaleController.php:437 -msgid "Author" -msgstr "" - -#: application/controllers/LocaleController.php:438 -#: application/forms/SmartBlockCriteria.php:65 -#: application/forms/StreamSettingSubForm.php:134 -#: application/models/Block.php:1441 application/models/Block.php:1539 -msgid "Description" -msgstr "描述" - -#: application/controllers/LocaleController.php:439 -msgid "Link" -msgstr "" - -#: application/controllers/LocaleController.php:440 -msgid "Publication Date" -msgstr "" - -#: application/controllers/LocaleController.php:441 -msgid "Import Status" -msgstr "" - -#: application/controllers/LocaleController.php:442 -msgid "Actions" -msgstr "" - -#: application/controllers/LocaleController.php:443 -msgid "Delete from Library" -msgstr "" - -#: application/controllers/LocaleController.php:444 -msgid "Successfully imported" -msgstr "" - -#: application/controllers/LocaleController.php:446 -msgid "Show _MENU_" -msgstr "" - -#: application/controllers/LocaleController.php:447 -msgid "Show _MENU_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:448 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: application/controllers/LocaleController.php:449 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: application/controllers/LocaleController.php:450 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: application/controllers/LocaleController.php:452 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: application/controllers/LocaleController.php:453 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: application/controllers/LocaleController.php:454 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: application/controllers/LocaleController.php:455 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: application/controllers/LocaleController.php:457 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: application/controllers/LocaleController.php:458 -msgid "No track types were found." -msgstr "" - -#: application/controllers/LocaleController.php:459 -msgid "No track types found" -msgstr "" - -#: application/controllers/LocaleController.php:460 -msgid "No matching track types found" -msgstr "" - -#: application/controllers/LocaleController.php:461 -#: application/forms/AddTracktype.php:50 -#: application/forms/GeneralPreferences.php:125 -#: application/forms/GeneralPreferences.php:141 -#: application/forms/GeneralPreferences.php:160 -#: application/forms/GeneralPreferences.php:214 -msgid "Enabled" -msgstr "启用" - -#: application/controllers/LocaleController.php:462 -#: application/forms/AddTracktype.php:49 -#: application/forms/GeneralPreferences.php:124 -#: application/forms/GeneralPreferences.php:140 -#: application/forms/GeneralPreferences.php:159 -#: application/forms/GeneralPreferences.php:213 -msgid "Disabled" -msgstr "禁用" - -#: application/controllers/LocaleController.php:463 -msgid "Cancel upload" -msgstr "" - -#: application/controllers/LocaleController.php:464 -msgid "Type" -msgstr "" - -#: application/controllers/LocaleController.php:465 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: application/controllers/LocaleController.php:466 -msgid "Podcast settings saved" -msgstr "" - -#: application/controllers/LocaleController.php:467 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: application/controllers/LocaleController.php:468 -msgid "Can't delete yourself!" -msgstr "" - -#: application/controllers/LocaleController.php:469 -msgid "You haven't published any episodes!" -msgstr "" - -#: application/controllers/LocaleController.php:470 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: application/controllers/LocaleController.php:471 -msgid "Try it now" -msgstr "" - -#: application/controllers/LocaleController.php:472 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: application/controllers/LocaleController.php:473 -msgid "Playlist preview" -msgstr "" - -#: application/controllers/LocaleController.php:474 -msgid "Smart Block" -msgstr "" - -#: application/controllers/LocaleController.php:475 -msgid "Webstream preview" -msgstr "" - -#: application/controllers/LocaleController.php:476 -msgid "You don't have permission to view the library." -msgstr "" - -#: application/controllers/LocaleController.php:477 -#: application/forms/AddShowWhen.php:23 -msgid "Now" -msgstr "" - -#: application/controllers/LocaleController.php:478 -msgid "Click 'New' to create one now." -msgstr "" - -#: application/controllers/LocaleController.php:479 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: application/controllers/LocaleController.php:480 -msgid "Feed URL" -msgstr "" - -#: application/controllers/LocaleController.php:481 -msgid "Import Date" -msgstr "" - -#: application/controllers/LocaleController.php:482 -msgid "Add New Podcast" -msgstr "" - -#: application/controllers/LocaleController.php:483 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: application/controllers/LocaleController.php:484 -msgid "No files have been uploaded yet." -msgstr "" - -#: application/controllers/LocaleController.php:490 -msgid "On Air" -msgstr "" - -#: application/controllers/LocaleController.php:491 -msgid "Off Air" -msgstr "" - -#: application/controllers/LocaleController.php:492 -msgid "Offline" -msgstr "" - -#: application/controllers/LocaleController.php:493 -msgid "Nothing scheduled" -msgstr "" - -#: application/controllers/LocaleController.php:494 -msgid "Click 'Add' to create one now." -msgstr "" - -#: application/controllers/LoginController.php:47 -msgid "Please enter your username and password." -msgstr "" - -#: application/controllers/LoginController.php:147 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。" - -#: application/controllers/LoginController.php:150 -msgid "That username or email address could not be found." -msgstr "" - -#: application/controllers/LoginController.php:153 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: application/controllers/LoginController.php:231 -msgid "Wrong username or password provided. Please try again." -msgstr "用户名或密码错误,请重试。" - -#: application/controllers/PlaylistController.php:52 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "你所查看的%s已更改" - -#: application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "动态智能模块不能添加声音文件。" - -#: application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "你没有删除所选%s的权限。" - -#: application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "智能模块只能添加媒体文件。" - -#: application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "未命名的播放列表" - -#: application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "未命名的智能模块" - -#: application/controllers/PlaylistController.php:526 -msgid "Unknown Playlist" -msgstr "位置播放列表" - -#: application/controllers/PreferenceController.php:69 -msgid "Preferences updated." -msgstr "属性已更新。" - -#: application/controllers/PreferenceController.php:203 -msgid "Stream Setting Updated." -msgstr "流设置已更新。" - -#: application/controllers/PreferenceController.php:248 -msgid "path should be specified" -msgstr "请指定路径" - -#: application/controllers/PreferenceController.php:291 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap出错..." - -#: application/controllers/PreferenceController.php:334 -msgid "Request method not accepted" -msgstr "" - -#: application/controllers/ScheduleController.php:390 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "节目%s是节目%s的重播,时间是%s" - -#: application/controllers/ShowbuilderController.php:133 -msgid "Select cursor" -msgstr "选择游标" - -#: application/controllers/ShowbuilderController.php:134 -msgid "Remove cursor" -msgstr "删除游标" - -#: application/controllers/ShowbuilderController.php:152 -msgid "show does not exist" -msgstr "节目不存在" - -#: application/controllers/TracktypeController.php:62 -msgid "Track Type added successfully!" -msgstr "" - -#: application/controllers/TracktypeController.php:64 -msgid "Track Type updated successfully!" -msgstr "" - -#: application/controllers/UserController.php:78 -msgid "User added successfully!" -msgstr "用户已添加成功!" - -#: application/controllers/UserController.php:80 -msgid "User updated successfully!" -msgstr "用于已成功更新!" - -#: application/controllers/UserController.php:184 -msgid "Settings updated successfully!" -msgstr "设置更新成功!" - -#: application/controllers/WebstreamController.php:29 -#: application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "未命名的网络流媒体" - -#: application/controllers/WebstreamController.php:156 -msgid "Webstream saved." -msgstr "网络流媒体已保存。" - -#: application/controllers/WebstreamController.php:164 -msgid "Invalid form values." -msgstr "无效的表格内容。" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 -#: application/forms/AddShowRebroadcastDates.php:29 -#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 -#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 -#: application/forms/ShowListenerStat.php:35 -#: application/forms/ShowListenerStat.php:65 -msgid "Invalid character entered" -msgstr "输入的字符不合要求" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 -#: application/forms/AddShowRebroadcastDates.php:69 -msgid "Day must be specified" -msgstr "请指定天" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 -#: application/forms/AddShowRebroadcastDates.php:74 -msgid "Time must be specified" -msgstr "请指定时间" - -#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 -#: application/forms/AddShowRebroadcastDates.php:102 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "至少间隔一个小时" - -#: application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: application/forms/AddShowLiveStream.php:10 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "使用自定义的用户认证:" - -#: application/forms/AddShowLiveStream.php:25 -msgid "Custom Username" -msgstr "自定义用户名" - -#: application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "自定义密码" - -#: application/forms/AddShowLiveStream.php:50 -msgid "Host:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:56 -msgid "Port:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:62 -msgid "Mount:" -msgstr "" - -#: application/forms/AddShowLiveStream.php:80 -msgid "Username field cannot be empty." -msgstr "请填写用户名" - -#: application/forms/AddShowLiveStream.php:85 -msgid "Password field cannot be empty." -msgstr "请填写密码" - -#: application/forms/AddShowRR.php:9 -msgid "Record from Line In?" -msgstr "从线路输入录制?" - -#: application/forms/AddShowRR.php:15 -msgid "Rebroadcast?" -msgstr "重播?" - -#: application/forms/AddShowRebroadcastDates.php:14 -msgid "days" -msgstr "天" - -#: application/forms/AddShowRepeats.php:8 -msgid "Link:" -msgstr "绑定:" - -#: application/forms/AddShowRepeats.php:14 -msgid "Repeat Type:" -msgstr "类型:" - -#: application/forms/AddShowRepeats.php:17 -msgid "weekly" -msgstr "每周" - -#: application/forms/AddShowRepeats.php:18 -msgid "every 2 weeks" -msgstr "每隔2周" - -#: application/forms/AddShowRepeats.php:19 -msgid "every 3 weeks" -msgstr "每隔3周" - -#: application/forms/AddShowRepeats.php:20 -msgid "every 4 weeks" -msgstr "每隔4周" - -#: application/forms/AddShowRepeats.php:21 -msgid "monthly" -msgstr "每月" - -#: application/forms/AddShowRepeats.php:30 -msgid "Select Days:" -msgstr "选择天数:" - -#: application/forms/AddShowRepeats.php:46 -msgid "Repeat By:" -msgstr "重复类型:" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the month" -msgstr "按月的同一日期" - -#: application/forms/AddShowRepeats.php:49 -msgid "day of the week" -msgstr "一个星期的同一日子" - -#: application/forms/AddShowRepeats.php:56 application/forms/DateRange.php:45 -#: application/forms/ShowBuilder.php:47 -#: application/forms/ShowListenerStat.php:45 -msgid "Date End:" -msgstr "结束日期:" - -#: application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "无休止?" - -#: application/forms/AddShowRepeats.php:107 -msgid "End date must be after start date" -msgstr "结束日期应晚于开始日期" - -#: application/forms/AddShowRepeats.php:116 -msgid "Please select a repeat day" -msgstr "请选择在哪一天重复" - -#: application/forms/AddShowStyle.php:11 -msgid "Background Colour:" -msgstr "背景色:" - -#: application/forms/AddShowStyle.php:30 -msgid "Text Colour:" -msgstr "文字颜色:" - -#: application/forms/AddShowStyle.php:48 -msgid "Current Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:71 -msgid "Show Logo:" -msgstr "" - -#: application/forms/AddShowStyle.php:86 -msgid "Logo Preview:" -msgstr "" - -#: application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "名字:" - -#: application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "未命名节目" - -#: application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "链接地址:" - -#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:133 -msgid "Genre:" -msgstr "风格:" - -#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 -#: application/forms/EditAudioMD.php:115 -msgid "Description:" -msgstr "描述:" - -#: application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: application/forms/AddShowWhen.php:15 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’" - -#: application/forms/AddShowWhen.php:21 -msgid "Start Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:35 -msgid "In the Future:" -msgstr "" - -#: application/forms/AddShowWhen.php:63 -msgid "End Time:" -msgstr "" - -#: application/forms/AddShowWhen.php:90 -msgid "Duration:" -msgstr "时长:" - -#: application/forms/AddShowWhen.php:99 -msgid "Timezone:" -msgstr "时区" - -#: application/forms/AddShowWhen.php:108 -msgid "Repeats?" -msgstr "是否设置为系列节目?" - -#: application/forms/AddShowWhen.php:149 -msgid "Cannot create show in the past" -msgstr "节目不能设置为过去的时间" - -#: application/forms/AddShowWhen.php:157 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "节目已经启动,无法修改开始时间/日期" - -#: application/forms/AddShowWhen.php:166 application/models/Show.php:326 -msgid "End date/time cannot be in the past" -msgstr "节目结束的时间或日期不能设置为过去的时间" - -#: application/forms/AddShowWhen.php:174 -msgid "Cannot have duration < 0m" -msgstr "节目时长不能小于0" - -#: application/forms/AddShowWhen.php:177 -msgid "Cannot have duration 00h 00m" -msgstr "节目时长不能为0" - -#: application/forms/AddShowWhen.php:185 -msgid "Cannot have duration greater than 24h" -msgstr "节目时长不能超过24小时" - -#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 -#: application/forms/AddShowWhen.php:351 -#: application/services/CalendarService.php:323 -msgid "Cannot schedule overlapping shows" -msgstr "节目时间设置与其他节目有冲突" - -#: application/forms/AddShowWho.php:9 -msgid "Search Users:" -msgstr "查找用户:" - -#: application/forms/AddShowWho.php:23 -msgid "DJs:" -msgstr "选择节目编辑:" - -#: application/forms/AddTracktype.php:20 -msgid "Type Name:" -msgstr "" - -#: application/forms/AddTracktype.php:26 -msgid "Code:" -msgstr "" - -#: application/forms/AddTracktype.php:45 -msgid "Visibility:" -msgstr "" - -#: application/forms/AddTracktype.php:57 -msgid "Analyze cue points:" -msgstr "" - -#: application/forms/AddTracktype.php:74 -msgid "Code is not unique." -msgstr "" - -#: application/forms/AddUser.php:27 application/forms/EditUser.php:36 -#: application/forms/LiveStreamingPreferences.php:40 -#: application/forms/Login.php:39 -msgid "Username:" -msgstr "用户名:" - -#: application/forms/AddUser.php:36 application/forms/EditUser.php:47 -#: application/forms/LiveStreamingPreferences.php:52 -#: application/forms/Login.php:53 -msgid "Password:" -msgstr "密码:" - -#: application/forms/AddUser.php:44 application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "再次输入密码:" - -#: application/forms/AddUser.php:53 application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "名:" - -#: application/forms/AddUser.php:59 application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "姓:" - -#: application/forms/AddUser.php:65 application/forms/EditUser.php:82 -msgid "Email:" -msgstr "电邮:" - -#: application/forms/AddUser.php:74 application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "手机:" - -#: application/forms/AddUser.php:80 application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype帐号:" - -#: application/forms/AddUser.php:86 application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber帐号:" - -#: application/forms/AddUser.php:93 -msgid "User Type:" -msgstr "用户类型:" - -#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 -msgid "Login name is not unique." -msgstr "帐号重名。" - -#: application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 -#: application/forms/ShowListenerStat.php:15 -msgid "Date Start:" -msgstr "开始日期:" - -#: application/forms/EditAudioMD.php:52 application/forms/Player.php:15 -msgid "Title:" -msgstr "歌曲名:" - -#: application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "作者:" - -#: application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "专辑名:" - -#: application/forms/EditAudioMD.php:89 -msgid "Owner:" -msgstr "" - -#: application/forms/EditAudioMD.php:101 -msgid "Select a Type" -msgstr "" - -#: application/forms/EditAudioMD.php:108 -msgid "Track Type:" -msgstr "" - -#: application/forms/EditAudioMD.php:143 -msgid "Year:" -msgstr "年份:" - -#: application/forms/EditAudioMD.php:156 -msgid "Label:" -msgstr "标签:" - -#: application/forms/EditAudioMD.php:166 -msgid "Composer:" -msgstr "编曲:" - -#: application/forms/EditAudioMD.php:176 -msgid "Conductor:" -msgstr "制作:" - -#: application/forms/EditAudioMD.php:186 -msgid "Mood:" -msgstr "情怀:" - -#: application/forms/EditAudioMD.php:196 -msgid "BPM:" -msgstr "拍子(BPM):" - -#: application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "版权:" - -#: application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC编号:" - -#: application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "网站:" - -#: application/forms/EditAudioMD.php:237 application/forms/EditUser.php:118 -#: application/forms/Login.php:67 -msgid "Language:" -msgstr "语言:" - -#: application/forms/EditAudioMD.php:290 -msgid "Publish..." -msgstr "" - -#: application/forms/EditHistoryItem.php:32 -#: application/services/HistoryService.php:1084 -msgid "Start Time" -msgstr "开始时间" - -#: application/forms/EditHistoryItem.php:44 -#: application/services/HistoryService.php:1085 -msgid "End Time" -msgstr "结束时间" - -#: application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "用户界面使用的时区:" - -#: application/forms/GeneralPreferences.php:26 -msgid "Station Name" -msgstr "电台名称" - -#: application/forms/GeneralPreferences.php:34 -msgid "Station Description" -msgstr "" - -#: application/forms/GeneralPreferences.php:43 -msgid "Station Logo:" -msgstr "电台标志:" - -#: application/forms/GeneralPreferences.php:44 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "注意:大于600x600的图片将会被缩放" - -#: application/forms/GeneralPreferences.php:63 -msgid "Default Crossfade Duration (s):" -msgstr "默认混合淡入淡出效果(秒):" - -#: application/forms/GeneralPreferences.php:69 -#: application/forms/GeneralPreferences.php:83 -#: application/forms/GeneralPreferences.php:97 -#: application/forms/LiveStreamingPreferences.php:31 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: application/forms/GeneralPreferences.php:77 -msgid "Default Fade In (s):" -msgstr "默认淡入效果(秒):" - -#: application/forms/GeneralPreferences.php:91 -msgid "Default Fade Out (s):" -msgstr "默认淡出效果(秒):" - -#: application/forms/GeneralPreferences.php:103 -msgid "Track Type Upload Default" -msgstr "" - -#: application/forms/GeneralPreferences.php:110 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:116 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: application/forms/GeneralPreferences.php:122 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: application/forms/GeneralPreferences.php:128 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: application/forms/GeneralPreferences.php:156 -msgid "Public LibreTime API" -msgstr "" - -#: application/forms/GeneralPreferences.php:157 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: application/forms/GeneralPreferences.php:163 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: application/forms/GeneralPreferences.php:175 -msgid "Default Language" -msgstr "" - -#: application/forms/GeneralPreferences.php:182 -#: application/forms/SetupLanguageTimezone.php:22 -msgid "Station Timezone" -msgstr "系统使用的时区" - -#: application/forms/GeneralPreferences.php:190 -msgid "Week Starts On" -msgstr "一周开始于" - -#: application/forms/GeneralPreferences.php:206 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: application/forms/GeneralPreferences.php:211 -msgid "Feature Previews" -msgstr "" - -#: application/forms/GeneralPreferences.php:217 -msgid "Enable this to opt-in to test new features." -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:15 -msgid "Auto Switch Off:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:21 -msgid "Auto Switch On:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:27 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:59 -msgid "Master Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:73 -msgid "Master Source Mount:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:81 -msgid "Show Source Host:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:88 -msgid "Show Source Port:" -msgstr "" - -#: application/forms/LiveStreamingPreferences.php:95 -msgid "Show Source Mount:" -msgstr "" - -#: application/forms/Login.php:78 -msgid "Login" -msgstr "登录" - -#: application/forms/PasswordChange.php:15 -msgid "Password" -msgstr "密码" - -#: application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "确认新密码" - -#: application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "新密码不匹配" - -#: application/forms/PasswordRestore.php:12 -msgid "Email" -msgstr "" - -#: application/forms/PasswordRestore.php:23 -msgid "Username" -msgstr "用户名" - -#: application/forms/PasswordRestore.php:34 -msgid "Reset password" -msgstr "重置密码" - -#: application/forms/PasswordRestore.php:44 -msgid "Back" -msgstr "" - -#: application/forms/Player.php:14 -msgid "Now Playing" -msgstr "直播室" - -#: application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: application/forms/PodcastPreferences.php:9 -msgid "Feed Privacy" -msgstr "" - -#: application/forms/PodcastPreferences.php:11 -msgid "Public" -msgstr "" - -#: application/forms/PodcastPreferences.php:12 -msgid "Private" -msgstr "" - -#: application/forms/SetupLanguageTimezone.php:17 -msgid "Station Language" -msgstr "" - -#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:92 -msgid "Filter by Show" -msgstr "" - -#: application/forms/ShowBuilder.php:83 -msgid "All My Shows:" -msgstr "我的全部节目:" - -#: application/forms/ShowBuilder.php:94 -msgid "My Shows" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:56 -#: application/models/Block.php:1432 application/models/Block.php:1530 -msgid "Select criteria" -msgstr "选择属性" - -#: application/forms/SmartBlockCriteria.php:58 -#: application/models/Block.php:1434 application/models/Block.php:1532 -msgid "Bit Rate (Kbps)" -msgstr "比特率(Kbps)" - -#: application/forms/SmartBlockCriteria.php:75 -#: application/models/Block.php:1452 application/models/Block.php:1550 -#: application/services/HistoryService.php:1065 -msgid "Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:80 -#: application/models/Block.php:1457 application/models/Block.php:1555 -msgid "Sample Rate (kHz)" -msgstr "样本率(KHz)" - -#: application/forms/SmartBlockCriteria.php:134 -#: application/models/Block.php:1473 application/models/Block.php:1571 -msgid "before" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:135 -#: application/models/Block.php:1474 application/models/Block.php:1572 -msgid "after" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:136 -#: application/models/Block.php:1475 application/models/Block.php:1573 -msgid "between" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:152 -#: application/forms/SmartBlockCriteria.php:471 -#: application/forms/SmartBlockCriteria.php:513 -msgid "Select unit of time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:153 -msgid "minute(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:154 -msgid "hour(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:155 -msgid "day(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:156 -msgid "week(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:157 -msgid "month(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:158 -msgid "year(s)" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:169 -msgid "hours" -msgstr "小时" - -#: application/forms/SmartBlockCriteria.php:170 -msgid "minutes" -msgstr "分钟" - -#: application/forms/SmartBlockCriteria.php:171 -#: application/models/Block.php:337 -msgid "items" -msgstr "个数" - -#: application/forms/SmartBlockCriteria.php:172 -msgid "time remaining in show" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:183 -msgid "Randomly" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:184 -msgid "Newest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:185 -msgid "Oldest" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:186 -msgid "Most recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:187 -msgid "Least recently played" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:211 -msgid "Select Track Type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:268 -msgid "Type:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:271 -msgid "Dynamic" -msgstr "动态" - -#: application/forms/SmartBlockCriteria.php:272 -msgid "Static" -msgstr "静态" - -#: application/forms/SmartBlockCriteria.php:437 -msgid "Select track type" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:523 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:531 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:540 -msgid "Sort Tracks:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:558 -msgid "Limit to:" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:570 -msgid "Generate playlist content and save criteria" -msgstr "保存条件设置并生成播放列表内容" - -#: application/forms/SmartBlockCriteria.php:582 -msgid "Shuffle playlist content" -msgstr "随机打乱歌曲次序" - -#: application/forms/SmartBlockCriteria.php:584 -msgid "Shuffle" -msgstr "随机" - -#: application/forms/SmartBlockCriteria.php:813 -#: application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "限制的设置不能比0小" - -#: application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "限制的设置不能大于24小时" - -#: application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "值只能为整数" - -#: application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "最多只能允许500条内容" - -#: application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "条件和操作符不能为空" - -#: application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "‘长度’格式应该为‘00:00:00’" - -#: application/forms/SmartBlockCriteria.php:858 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:863 -#: application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: application/forms/SmartBlockCriteria.php:868 -#: application/forms/SmartBlockCriteria.php:893 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" - -#: application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:910 -msgid "The value has to be numeric" -msgstr "应该为数字" - -#: application/forms/SmartBlockCriteria.php:915 -msgid "The value should be less then 2147483648" -msgstr "不能大于2147483648" - -#: application/forms/SmartBlockCriteria.php:920 -msgid "The value cannot be empty" -msgstr "" - -#: application/forms/SmartBlockCriteria.php:925 -#, php-format -msgid "The value should be less than %s characters" -msgstr "不能小于%s个字符" - -#: application/forms/SmartBlockCriteria.php:932 -msgid "Value cannot be empty" -msgstr "不能为空" - -#: application/forms/StreamSetting.php:26 -msgid "Stream Label:" -msgstr "流标签:" - -#: application/forms/StreamSetting.php:28 -msgid "Artist - Title" -msgstr "歌手 - 歌名" - -#: application/forms/StreamSetting.php:29 -msgid "Show - Artist - Title" -msgstr "节目 - 歌手 - 歌名" - -#: application/forms/StreamSetting.php:30 -msgid "Station name - Show name" -msgstr "电台名 - 节目名" - -#: application/forms/StreamSetting.php:38 -msgid "Off Air Metadata" -msgstr "非直播状态下的输出流元数据" - -#: application/forms/StreamSetting.php:45 -msgid "Enable Replay Gain" -msgstr "启用回放增益" - -#: application/forms/StreamSetting.php:52 -msgid "Replay Gain Modifier" -msgstr "回放增益调整" - -#: application/forms/StreamSetting.php:60 -msgid "Hardware Audio Output:" -msgstr "" - -#: application/forms/StreamSetting.php:69 -msgid "Output Type" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:35 -msgid "Enabled:" -msgstr "启用:" - -#: application/forms/StreamSettingSubForm.php:43 -msgid "Mobile:" -msgstr "" - -#: application/forms/StreamSettingSubForm.php:51 -msgid "Stream Type:" -msgstr "流格式:" - -#: application/forms/StreamSettingSubForm.php:59 -msgid "Bit Rate:" -msgstr "比特率:" - -#: application/forms/StreamSettingSubForm.php:67 -msgid "Service Type:" -msgstr "服务类型:" - -#: application/forms/StreamSettingSubForm.php:75 -msgid "Channels:" -msgstr "声道:" - -#: application/forms/StreamSettingSubForm.php:83 -msgid "Server" -msgstr "服务器" - -#: application/forms/StreamSettingSubForm.php:92 -msgid "Port" -msgstr "端口号" - -#: application/forms/StreamSettingSubForm.php:100 -msgid "Mount Point" -msgstr "加载点" - -#: application/forms/StreamSettingSubForm.php:109 -msgid "Name" -msgstr "名字" - -#: application/forms/StreamSettingSubForm.php:125 -msgid "URL" -msgstr "链接地址" - -#: application/forms/StreamSettingSubForm.php:142 -msgid "Stream URL" -msgstr "" - -#: application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: application/forms/TuneInPreferences.php:78 -#: application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: application/forms/WatchedDirPreferences.php:13 -msgid "Import Folder:" -msgstr "导入文件夹:" - -#: application/forms/WatchedDirPreferences.php:24 -msgid "Watched Folders:" -msgstr "监控文件夹:" - -#: application/forms/WatchedDirPreferences.php:39 -msgid "Not a valid Directory" -msgstr "无效的路径" - -#: application/forms/customvalidators/ConditionalNotEmpty.php:33 -#: application/forms/helpers/ValidationTypes.php:9 -msgid "Value is required and can't be empty" -msgstr "不能为空" - -#: application/forms/helpers/ValidationTypes.php:20 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" - -#: application/forms/helpers/ValidationTypes.php:34 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' 不符合格式要求: '%format%'" - -#: application/forms/helpers/ValidationTypes.php:60 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' 小于最小长度要求 %min% " - -#: application/forms/helpers/ValidationTypes.php:65 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' 大于最大长度要求 %max%" - -#: application/forms/helpers/ValidationTypes.php:77 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" - -#: application/forms/helpers/ValidationTypes.php:90 -msgid "Passwords do not match" -msgstr "两次密码输入不匹配" - -#: application/models/Auth.php:31 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: application/models/Auth.php:33 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: application/models/Auth.php:34 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: application/models/Auth.php:36 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: application/models/Block.php:833 application/models/Playlist.php:802 -msgid "Cue in and cue out are null." -msgstr "切入点和切出点均为空" - -#: application/models/Block.php:867 application/models/Block.php:922 -#: application/models/Playlist.php:840 application/models/Playlist.php:881 -msgid "Can't set cue out to be greater than file length." -msgstr "切出点不能超出文件原长度" - -#: application/models/Block.php:879 application/models/Block.php:899 -#: application/models/Playlist.php:832 application/models/Playlist.php:855 -msgid "Can't set cue in to be larger than cue out." -msgstr "切入点不能晚于切出点" - -#: application/models/Block.php:934 application/models/Playlist.php:873 -msgid "Can't set cue out to be smaller than cue in." -msgstr "切出点不能早于切入点" - -#: application/models/Block.php:1448 application/models/Block.php:1546 -msgid "Upload Time" -msgstr "" - -#: application/models/Library.php:36 application/models/Library.php:57 -msgid "None" -msgstr "" - -#: application/models/Preference.php:536 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: application/models/Preference.php:655 -msgid "Select Country" -msgstr "选择国家" - -#: application/models/Schedule.php:211 -msgid "livestream" -msgstr "" - -#: application/models/Scheduler.php:79 -msgid "Cannot move items out of linked shows" -msgstr "不能从绑定的节目系列里移出项目" - -#: application/models/Scheduler.php:125 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "当前节目内容表(内容部分)需要刷新" - -#: application/models/Scheduler.php:130 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "当前节目内容表(节目已更改)需要刷新" - -#: application/models/Scheduler.php:138 application/models/Scheduler.php:491 -#: application/models/Scheduler.php:529 application/models/Scheduler.php:568 -msgid "The schedule you're viewing is out of date!" -msgstr "当前节目内容需要刷新!" - -#: application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "没有赋予修改节目 %s 的权限。" - -#: application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "录音节目不能添加别的内容。" - -#: application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "节目%s已结束,不能在添加任何内容。" - -#: application/models/Scheduler.php:165 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "节目%s已经更改,需要刷新后再尝试。" - -#: application/models/Scheduler.php:187 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "某个选中的文件不存在。" - -#: application/models/Show.php:229 -msgid "Shows can have a max length of 24 hours." -msgstr "节目时长只能设置在24小时以内" - -#: application/models/Show.php:341 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"节目时间设置于其他的节目有冲突。\n" -"提示:修改系列节目中的一个,将影响整个节目系列" - -#: application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%s是%s的重播" - -#: application/models/Webstream.php:165 -msgid "Length needs to be greater than 0 minutes" -msgstr "节目时长必须大于0分钟" - -#: application/models/Webstream.php:169 -msgid "Length should be of form \"00h 00m\"" -msgstr "时间的格式应该是 \"00h 00m\"" - -#: application/models/Webstream.php:182 -msgid "URL should be of form \"https://example.org\"" -msgstr "地址的格式应该是 \"https://example.org\"" - -#: application/models/Webstream.php:185 -msgid "URL should be 512 characters or less" -msgstr "地址的最大长度不能超过512字节" - -#: application/models/Webstream.php:190 -msgid "No MIME type found for webstream." -msgstr "这个媒体流不存在MIME属性,无法添加" - -#: application/models/Webstream.php:206 -msgid "Webstream name cannot be empty" -msgstr "媒体流的名字不能为空" - -#: application/models/Webstream.php:276 -msgid "Could not parse XSPF playlist" -msgstr "发现XSPF格式的播放列表,但是格式错误" - -#: application/models/Webstream.php:297 -msgid "Could not parse PLS playlist" -msgstr "发现PLS格式的播放列表,但是格式错误" - -#: application/models/Webstream.php:316 -msgid "Could not parse M3U playlist" -msgstr "发现M3U格式的播放列表,但是格式错误" - -#: application/models/Webstream.php:329 -msgid "Invalid webstream - This appears to be a file download." -msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件" - -#: application/models/Webstream.php:333 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "未知的媒体流格式: %s" - -#: application/services/CalendarService.php:48 -msgid "Record file doesn't exist" -msgstr "录制文件不存在" - -#: application/services/CalendarService.php:53 -msgid "View Recorded File Metadata" -msgstr "查看录制文件的元数据" - -#: application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: application/services/CalendarService.php:121 -#: application/services/CalendarService.php:127 -msgid "Cancel Show" -msgstr "" - -#: application/services/CalendarService.php:149 -#: application/services/CalendarService.php:168 -msgid "Edit Instance" -msgstr "" - -#: application/services/CalendarService.php:161 -#: application/services/CalendarService.php:175 -msgid "Edit Show" -msgstr "编辑节目" - -#: application/services/CalendarService.php:199 -msgid "Delete Instance" -msgstr "" - -#: application/services/CalendarService.php:206 -msgid "Delete Instance and All Following" -msgstr "" - -#: application/services/CalendarService.php:264 -msgid "Permission denied" -msgstr "没有编辑权限" - -#: application/services/CalendarService.php:268 -msgid "Can't drag and drop repeating shows" -msgstr "系列中的节目无法拖拽" - -#: application/services/CalendarService.php:277 -msgid "Can't move a past show" -msgstr "已经结束的节目无法更改时间" - -#: application/services/CalendarService.php:312 -msgid "Can't move show into past" -msgstr "节目不能设置到已过去的时间点" - -#: application/services/CalendarService.php:336 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "录音和重播节目之间的间隔必须大于等于1小时。" - -#: application/services/CalendarService.php:347 -msgid "Show was deleted because recorded show does not exist!" -msgstr "录音节目不存在,节目已删除!" - -#: application/services/CalendarService.php:354 -msgid "Must wait 1 hour to rebroadcast." -msgstr "重播节目必须设置于1小时之后。" - -#: application/services/HistoryService.php:1062 -msgid "Track" -msgstr "曲目" - -#: application/services/HistoryService.php:1103 -msgid "Played" -msgstr "已播放" - -#: application/services/PodcastService.php:163 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#~ msgid " to " -#~ msgstr "到" - -#, php-format -#~ msgid "%s contains nested watched directory: %s" -#~ msgstr "%s 所含的子文件夹 %s 已经被监控" - -#, php-format -#~ msgid "%s doesn't exist in the watched list." -#~ msgstr "监控文件夹名单里不存在 %s " - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list" -#~ msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" - -#, php-format -#~ msgid "%s is already set as the current storage dir or in the watched folders list." -#~ msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" - -#, php-format -#~ msgid "%s is already watched." -#~ msgstr "%s 已经监控" - -#, php-format -#~ msgid "%s is nested within existing watched directory: %s" -#~ msgstr "%s 无法监控,因为父文件夹 %s 已经监控" - -#, php-format -#~ msgid "%s is not a valid directory." -#~ msgstr "%s 不是文件夹。" - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(为了推广您的电台,请启用‘发送支持反馈’)" - -#~ msgid "(Required)" -#~ msgstr "(必填)" - -#~ msgid "(Your radio station website)" -#~ msgstr "(你电台的网站)" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(仅作为验证目的使用,不会用于发布)" - -#~ msgid "(hh:mm:ss.t)" -#~ msgstr "(时:分:秒.分秒)" - -#~ msgid "(ss.t)" -#~ msgstr "(秒.分秒)" - -#~ msgid "1 - Mono" -#~ msgstr "1 - 单声道" - -#~ msgid "2 - Stereo" -#~ msgstr "2 - 立体声" - -#~ msgid "About" -#~ msgstr "关于" - -#~ msgid "Add New Field" -#~ msgstr "添加新项目" - -#~ msgid "Add more elements" -#~ msgstr "增加更多元素" - -#~ msgid "Add this show" -#~ msgstr "添加此节目" - -#~ msgid "Additional Options" -#~ msgstr "附属选项" - -#~ msgid "Admin Password" -#~ msgstr "管理员密码" - -#~ msgid "Admin User" -#~ msgstr "管理员用户名" - -#~ msgid "Advanced Search Options" -#~ msgstr "高级查询选项" - -#~ msgid "All rights are reserved" -#~ msgstr "版权所有" - -#~ msgid "Audio Track" -#~ msgstr "音频文件" - -#~ msgid "Choose Days:" -#~ msgstr "选择天数:" - -#~ msgid "Choose Show Instance" -#~ msgstr "选择节目项" - -#~ msgid "Choose folder" -#~ msgstr "选择文件夹" - -#~ msgid "City:" -#~ msgstr "城市:" - -#~ msgid "Clear" -#~ msgstr "清除" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容" - -#~ msgid "Country:" -#~ msgstr "国家:" - -#~ msgid "Creating File Summary Template" -#~ msgstr "创建文件播放记录模板" - -#~ msgid "Creating Log Sheet Template" -#~ msgstr "创建历史记录表单模板" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "知识共享署名" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "知识共享署名-不允许衍生" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "知识共享署名-非商业应用" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "知识共享署名-非商业应用且不允许衍生" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "知识共享署名-非商业应用且相同方式共享" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "知识共享署名-相同方式共享" - -#~ msgid "Cue In: " -#~ msgstr "切入:" - -#~ msgid "Cue Out: " -#~ msgstr "切出:" - -#~ msgid "Current Import Folder:" -#~ msgstr "当前的导入文件夹:" - -#~ msgid "Cursor" -#~ msgstr "设置游标" - -#~ msgid "Default Length:" -#~ msgstr "默认长度:" - -#~ msgid "Default License:" -#~ msgstr "默认版权策略:" - -#~ msgid "Disk Space" -#~ msgstr "磁盘空间" - -#~ msgid "Dynamic Smart Block" -#~ msgstr "动态智能模块" - -#~ msgid "Dynamic Smart Block Criteria: " -#~ msgstr "动态智能模块条件:" - -#~ msgid "Empty playlist content" -#~ msgstr "播放列表无内容" - -#~ msgid "Expand Dynamic Block" -#~ msgstr "展开动态智能模块" - -#~ msgid "Expand Static Block" -#~ msgstr "展开静态智能模块" - -#~ msgid "Fade in: " -#~ msgstr "淡入:" - -#~ msgid "Fade out: " -#~ msgstr "淡出:" - -#~ msgid "File Path:" -#~ msgstr "文件路径:" - -#~ msgid "File Summary" -#~ msgstr "文件播放记录" - -#~ msgid "File Summary Templates" -#~ msgstr "文件播放记录模板列表" - -#~ msgid "File import in progress..." -#~ msgstr "导入文件进行中..." - -#~ msgid "Filter History" -#~ msgstr "历史记录过滤" - -#~ msgid "Find" -#~ msgstr "查找" - -#~ msgid "Find Shows" -#~ msgstr "查找节目" - -#~ msgid "First Name" -#~ msgstr "名" - -#, php-format -#~ msgid "For more detailed help, read the %suser manual%s." -#~ msgstr "详细的指导,可以参考%s用户手册%s。" - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "更多的细节可以参阅%sAirtime用户手册%s" - -#~ msgid "Icecast Vorbis Metadata" -#~ msgstr "Icecast的Vorbis元数据" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "如果Airtime配置在路由器或者防火墙之后,你可能需要配置端口转发,所以当前文本框内的信息需要调整。在这种情况下,就需要人工指定该信息以确定所显示的主机名/端口/加载点的正确性,从而让节目编辑能连接的上。端口所允许的范围,介于1024到49151之间。" - -#~ msgid "Isrc Number:" -#~ msgstr "ISRC编号:" - -#~ msgid "Last Name" -#~ msgstr "姓" - -#~ msgid "Length:" -#~ msgstr "长度:" - -#~ msgid "Limit to " -#~ msgstr "限制到" - -#~ msgid "Listen" -#~ msgstr "收听" - -#~ msgid "Live Stream Input" -#~ msgstr "输入流设置" - -#~ msgid "Live stream" -#~ msgstr "插播流" - -#~ msgid "Log Sheet" -#~ msgstr "历史记录表单" - -#~ msgid "Log Sheet Templates" -#~ msgstr "历史记录表单模板" - -#~ msgid "Logout" -#~ msgstr "登出" - -#~ msgid "Looks like the page you were looking for doesn't exist!" -#~ msgstr "你所寻找的页面不存在!" - -#~ msgid "Manage Users" -#~ msgstr "用户管理" - -#~ msgid "Master Source" -#~ msgstr "主输入流" - -#~ msgid "Mount cannot be empty with Icecast server." -#~ msgstr "请填写“加载点”。" - -#~ msgid "New File Summary Template" -#~ msgstr "新建文件播放记录模板" - -#~ msgid "New Log Sheet Template" -#~ msgstr "新建历史记录模板" - -#~ msgid "New User" -#~ msgstr "新建用户" - -#~ msgid "New password" -#~ msgstr "新密码" - -#~ msgid "Next:" -#~ msgstr "之后的:" - -#~ msgid "No File Summary Templates" -#~ msgstr "无文件播放记录模板" - -#~ msgid "No Log Sheet Templates" -#~ msgstr "无历史记录表单模板" - -#~ msgid "No open playlist" -#~ msgstr "没有打开的播放列表" - -#~ msgid "No webstream" -#~ msgstr "没有网络流媒体" - -#~ msgid "OK" -#~ msgstr "确定" - -#~ msgid "ON AIR" -#~ msgstr "直播中" - -#~ msgid "Only numbers are allowed." -#~ msgstr "只允许输入数字" - -#~ msgid "Original Length:" -#~ msgstr "原始长度:" - -#~ msgid "Page not found!" -#~ msgstr "页面不存在!" - -#~ msgid "Phone:" -#~ msgstr "电话:" - -#~ msgid "Play" -#~ msgstr "试听" - -#~ msgid "Playlist Contents: " -#~ msgstr "播放列表内容:" - -#~ msgid "Playlist crossfade" -#~ msgstr "播放列表交错淡入淡出效果" - -#~ msgid "Please enter and confirm your new password in the fields below." -#~ msgstr "请再次输入你的新密码。" - -#~ msgid "Please upgrade to " -#~ msgstr "请升级到" - -#~ msgid "Port cannot be empty." -#~ msgstr "请填写“端口”。" - -#~ msgid "Previous:" -#~ msgstr "之前的:" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "节目主管的权限是:" - -#~ msgid "Register Airtime" -#~ msgstr "注册Airtime" - -#~ msgid "Remove watched directory" -#~ msgstr "移除监控文件夹" - -#~ msgid "Repeat Days:" -#~ msgstr "重复天数:" - -#~ msgid "Sample Rate:" -#~ msgstr "样本率:" - -#~ msgid "Save playlist" -#~ msgstr "保存播放列表" - -#~ msgid "Select stream:" -#~ msgstr "选择流:" - -#~ msgid "Server cannot be empty." -#~ msgstr "请填写“服务器”。" - -#~ msgid "Set" -#~ msgstr "设置" - -#~ msgid "Set Cue In" -#~ msgstr "设为切入时间" - -#~ msgid "Set Cue Out" -#~ msgstr "设为切出时间" - -#~ msgid "Set Default Template" -#~ msgstr "设为默认模板" - -#~ msgid "Share" -#~ msgstr "共享" - -#~ msgid "Show Source" -#~ msgstr "节目定制的输入流" - -#~ msgid "Show Summary" -#~ msgstr "节目播放记录" - -#~ msgid "Show Waveform" -#~ msgstr "显示波形图" - -#~ msgid "Show me what I am sending " -#~ msgstr "显示我所发送的信息" - -#~ msgid "Shuffle playlist" -#~ msgstr "随机打乱播放列表" - -#~ msgid "Source Streams" -#~ msgstr "输入流" - -#~ msgid "Static Smart Block" -#~ msgstr "静态智能模块" - -#~ msgid "Static Smart Block Contents: " -#~ msgstr "静态智能模块条件:" - -#~ msgid "Station Description:" -#~ msgstr "电台描述:" - -#~ msgid "Station Web Site:" -#~ msgstr "电台网址:" - -#~ msgid "Stop" -#~ msgstr "暂停" - -#~ msgid "Stream " -#~ msgstr "流" - -#~ msgid "Stream Settings" -#~ msgstr "流设定" - -#~ msgid "Stream URL:" -#~ msgstr "流的链接地址:" - -#~ msgid "Stream URL: " -#~ msgstr "流的链接地址:" - -#~ msgid "Style" -#~ msgstr "风格" - -#~ msgid "Support Feedback" -#~ msgstr "意见反馈" - -#~ msgid "Support setting updated." -#~ msgstr "支持设定已更新。" - -#~ msgid "Terms and Conditions" -#~ msgstr "使用条款" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "因为满足条件的声音文件数量有限,只能播放列表指定的时长可能无法达成。如果你不介意出现重复的项目,你可以启用此项。" - -#~ msgid "The following info will be displayed to listeners in their media player:" -#~ msgstr "以下内容将会在听众的媒体播放器上显示:" - -#~ msgid "The work is in the public domain" -#~ msgstr "公开" - -#~ msgid "This version is no longer supported." -#~ msgstr "这个版本即将停支持。" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "这个版本即将过时。" - -#, php-format -#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -#~ msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。" - -#~ msgid "Track:" -#~ msgstr "曲目编号:" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "请输入图像里的字符。" - -#~ msgid "Update Required" -#~ msgstr "需要更新升级" - -#~ msgid "Update show" -#~ msgstr "更新节目" - -#~ msgid "User Type" -#~ msgstr "用户类型" - -#~ msgid "Web Stream" -#~ msgstr "网络流媒体" - -#~ msgid "What" -#~ msgstr "名称" - -#~ msgid "When" -#~ msgstr "时间" - -#~ msgid "Who" -#~ msgstr "管理和编辑" - -#~ msgid "You are not watching any media folders." -#~ msgstr "你没有正在监控的文件夹。" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "请先接受隐私策略" - -#~ msgid "Your trial expires in" -#~ msgstr "你的试用天数还剩" - -#~ msgid "and" -#~ msgstr "和" - -#~ msgid "dB" -#~ msgstr "分贝" - -#~ msgid "files meet the criteria" -#~ msgstr "个文件符合条件" - -#~ msgid "id" -#~ msgstr "编号" - -#~ msgid "max volume" -#~ msgstr "最大音量" - -#~ msgid "mute" -#~ msgstr "静音" - -#~ msgid "next" -#~ msgstr "往后" - -#~ msgid "or" -#~ msgstr "或" - -#~ msgid "pause" -#~ msgstr "暂停" - -#~ msgid "play" -#~ msgstr "播放" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "请输入秒数‘00(.0)’" - -#~ msgid "previous" -#~ msgstr "往前" - -#~ msgid "stop" -#~ msgstr "停止" - -#~ msgid "unmute" -#~ msgstr "取消静音" From 3d973a92cc109d868d73f9dd1e82c1524fa6b713 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 12:02:18 -0400 Subject: [PATCH 38/70] chore: swap webfontloader for fontsource --- webapp/package.json | 5 ++--- webapp/src/plugins/index.ts | 5 +++-- webapp/src/plugins/webfontloader.ts | 17 ----------------- webapp/yarn.lock | 15 +++++---------- 4 files changed, 10 insertions(+), 32 deletions(-) delete mode 100644 webapp/src/plugins/webfontloader.ts diff --git a/webapp/package.json b/webapp/package.json index 761438143f..e29959d659 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -14,14 +14,13 @@ "cypress:run": "cypress run" }, "dependencies": { + "@fontsource/roboto": "^5.0.2", "@mdi/font": "7.0.96", "axios": "^1.4.0", - "roboto-fontface": "*", "vue": "^3.2.0", "vue-i18n": "9", "vue-router": "^4.0.0", - "vuetify": "^3.0.0", - "webfontloader": "^1.0.0" + "vuetify": "^3.0.0" }, "devDependencies": { "@babel/types": "^7.21.4", diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index 08560bb399..634e69bb89 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -5,15 +5,16 @@ */ // Plugins -import { loadFonts } from './webfontloader'; +// import { loadFonts } from './webfontloader'; import vuetify from './vuetify'; import router from '../router'; import i18n from './vuei18n'; +import '@fontsource/roboto' // Types import type { App } from 'vue'; export function registerPlugins(app: App) { - loadFonts(); + // loadFonts(); app.use(vuetify).use(router).use(i18n); } diff --git a/webapp/src/plugins/webfontloader.ts b/webapp/src/plugins/webfontloader.ts deleted file mode 100644 index ff9a74d917..0000000000 --- a/webapp/src/plugins/webfontloader.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * plugins/webfontloader.ts - * - * webfontloader documentation: https://github.com/typekit/webfontloader - */ - -export async function loadFonts() { - const webFontLoader = await import( - /* webpackChunkName: "webfontloader" */ 'webfontloader' - ); - - webFontLoader.load({ - google: { - families: ['Roboto:100,300,400,500,700,900&display=swap'], - }, - }); -} diff --git a/webapp/yarn.lock b/webapp/yarn.lock index b121d7e4df..4e0158ac56 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -1194,6 +1194,11 @@ resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4" integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ== +"@fontsource/roboto@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-5.0.2.tgz#06f10be117be622e6c720a1c6579b00475420bcd" + integrity sha512-SLw0o3kWwJ53/Ogyk8GGwSaULNX6Hogs+GsVempDdqpX8wm5hKBLYgUkdUPk+NogiViPp1x++OnkuLA+fAd9Kg== + "@humanwhocodes/config-array@^0.11.8": version "0.11.8" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" @@ -6866,11 +6871,6 @@ rimraf@~2.6.2: dependencies: glob "^7.1.3" -roboto-fontface@*: - version "0.10.0" - resolved "https://registry.yarnpkg.com/roboto-fontface/-/roboto-fontface-0.10.0.tgz#7eee40cfa18b1f7e4e605eaf1a2740afb6fd71b0" - integrity sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g== - "rollup@^2.25.0 || ^3.3.0", rollup@^3.21.0: version "3.21.6" resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" @@ -7795,11 +7795,6 @@ watchpack@^2.2.0: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" -webfontloader@^1.0.0: - version "1.6.28" - resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" - integrity sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ== - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" From fcc921c55241da37f78bae0bfa95ed3b81f0e91a Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 12:06:14 -0400 Subject: [PATCH 39/70] chore: remove storybook --- webapp/.storybook/main.ts | 17 - webapp/.storybook/preview.ts | 15 - webapp/package.json | 14 - webapp/src/stories/Button.stories.ts | 52 - webapp/src/stories/Button.vue | 51 - webapp/src/stories/Header.stories.ts | 42 - webapp/src/stories/Header.vue | 68 - webapp/src/stories/Introduction.mdx | 221 - webapp/src/stories/Page.stories.ts | 34 - webapp/src/stories/Page.vue | 96 - webapp/src/stories/assets/code-brackets.svg | 1 - webapp/src/stories/assets/colors.svg | 1 - webapp/src/stories/assets/comments.svg | 1 - webapp/src/stories/assets/direction.svg | 1 - webapp/src/stories/assets/flow.svg | 1 - webapp/src/stories/assets/plugin.svg | 1 - webapp/src/stories/assets/repo.svg | 1 - webapp/src/stories/assets/stackalt.svg | 1 - webapp/src/stories/button.css | 30 - webapp/src/stories/header.css | 32 - webapp/src/stories/page.css | 69 - webapp/yarn.lock | 5254 +------------------ 22 files changed, 114 insertions(+), 5889 deletions(-) delete mode 100644 webapp/.storybook/main.ts delete mode 100644 webapp/.storybook/preview.ts delete mode 100644 webapp/src/stories/Button.stories.ts delete mode 100644 webapp/src/stories/Button.vue delete mode 100644 webapp/src/stories/Header.stories.ts delete mode 100644 webapp/src/stories/Header.vue delete mode 100644 webapp/src/stories/Introduction.mdx delete mode 100644 webapp/src/stories/Page.stories.ts delete mode 100644 webapp/src/stories/Page.vue delete mode 100644 webapp/src/stories/assets/code-brackets.svg delete mode 100644 webapp/src/stories/assets/colors.svg delete mode 100644 webapp/src/stories/assets/comments.svg delete mode 100644 webapp/src/stories/assets/direction.svg delete mode 100644 webapp/src/stories/assets/flow.svg delete mode 100644 webapp/src/stories/assets/plugin.svg delete mode 100644 webapp/src/stories/assets/repo.svg delete mode 100644 webapp/src/stories/assets/stackalt.svg delete mode 100644 webapp/src/stories/button.css delete mode 100644 webapp/src/stories/header.css delete mode 100644 webapp/src/stories/page.css diff --git a/webapp/.storybook/main.ts b/webapp/.storybook/main.ts deleted file mode 100644 index a7a37c66ac..0000000000 --- a/webapp/.storybook/main.ts +++ /dev/null @@ -1,17 +0,0 @@ -import type { StorybookConfig } from "@storybook/vue3-vite"; -const config: StorybookConfig = { - stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], - addons: [ - "@storybook/addon-links", - "@storybook/addon-essentials", - "@storybook/addon-interactions", - ], - framework: { - name: "@storybook/vue3-vite", - options: {}, - }, - docs: { - autodocs: "tag", - }, -}; -export default config; diff --git a/webapp/.storybook/preview.ts b/webapp/.storybook/preview.ts deleted file mode 100644 index f119b17208..0000000000 --- a/webapp/.storybook/preview.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { Preview } from "@storybook/vue3"; - -const preview: Preview = { - parameters: { - actions: { argTypesRegex: "^on[A-Z].*" }, - controls: { - matchers: { - color: /(background|color)$/i, - date: /Date$/, - }, - }, - }, -}; - -export default preview; diff --git a/webapp/package.json b/webapp/package.json index e29959d659..78add4a4a8 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -6,8 +6,6 @@ "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", "lint": "eslint . --fix --ignore-path .eslintignore", - "storybook": "storybook dev -p 6006", - "build-storybook": "storybook build", "prettier": "prettier --write src", "prettier:check": "prettier --check src", "cypress:open": "cypress open", @@ -25,27 +23,15 @@ "devDependencies": { "@babel/types": "^7.21.4", "@intlify/unplugin-vue-i18n": "^0.10.0", - "@storybook/addon-essentials": "^7.0.11", - "@storybook/addon-interactions": "^7.0.11", - "@storybook/addon-links": "^7.0.11", - "@storybook/blocks": "^7.0.11", - "@storybook/testing-library": "^0.0.14-next.2", - "@storybook/vue3": "^7.0.11", - "@storybook/vue3-vite": "^7.0.11", "@types/node": "^18.15.0", - "@types/webfontloader": "^1.6.35", "@typescript-eslint/eslint-plugin": "^5.59.6", "@typescript-eslint/parser": "^5.59.6", "@vitejs/plugin-vue": "^3.2.0", "@vue/eslint-config-typescript": "^11.0.0", "cypress": "^12.12.0", "eslint": "^8.0.0", - "eslint-plugin-storybook": "^0.6.12", "eslint-plugin-vue": "^9.13.0", "eslint-plugin-vuetify": "^2.0.0-beta.4", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "storybook": "^7.0.11", "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", diff --git a/webapp/src/stories/Button.stories.ts b/webapp/src/stories/Button.stories.ts deleted file mode 100644 index c414d4a7b0..0000000000 --- a/webapp/src/stories/Button.stories.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; - -import Button from './Button.vue'; - -// More on how to set up stories at: https://storybook.js.org/docs/vue/writing-stories/introduction -const meta = { - title: 'Example/Button', - component: Button, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], - argTypes: { - size: { control: 'select', options: ['small', 'medium', 'large'] }, - backgroundColor: { control: 'color' }, - onClick: { action: 'clicked' }, - }, - args: { primary: false }, // default value -} satisfies Meta; - -export default meta; -type Story = StoryObj; -/* - *👇 Render functions are a framework specific feature to allow you control on how the component renders. - * See https://storybook.js.org/docs/vue/api/csf - * to learn how to use render functions. - */ -export const Primary: Story = { - args: { - primary: true, - label: 'Button', - }, -}; - -export const Secondary: Story = { - args: { - primary: false, - label: 'Button', - }, -}; - -export const Large: Story = { - args: { - label: 'Button', - size: 'large', - }, -}; - -export const Small: Story = { - args: { - label: 'Button', - size: 'small', - }, -}; diff --git a/webapp/src/stories/Button.vue b/webapp/src/stories/Button.vue deleted file mode 100644 index c4c3b47c48..0000000000 --- a/webapp/src/stories/Button.vue +++ /dev/null @@ -1,51 +0,0 @@ - - - diff --git a/webapp/src/stories/Header.stories.ts b/webapp/src/stories/Header.stories.ts deleted file mode 100644 index 7a65e2dfb7..0000000000 --- a/webapp/src/stories/Header.stories.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; - -import MyHeader from './Header.vue'; - -const meta = { - /* 👇 The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ - title: 'Example/Header', - component: MyHeader, - render: (args: any) => ({ - components: { MyHeader }, - setup() { - return { args }; - }, - template: '', - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/react/configure/story-layout - layout: 'fullscreen', - }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - -export const LoggedIn: Story = { - args: { - user: { - name: 'Jane Doe', - }, - }, -}; - -export const LoggedOut: Story = { - args: { - user: null, - }, -}; diff --git a/webapp/src/stories/Header.vue b/webapp/src/stories/Header.vue deleted file mode 100644 index 02fa7068aa..0000000000 --- a/webapp/src/stories/Header.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - diff --git a/webapp/src/stories/Introduction.mdx b/webapp/src/stories/Introduction.mdx deleted file mode 100644 index f1f9dd0e4c..0000000000 --- a/webapp/src/stories/Introduction.mdx +++ /dev/null @@ -1,221 +0,0 @@ -import { Meta } from "@storybook/blocks"; -import Code from "./assets/code-brackets.svg"; -import Colors from "./assets/colors.svg"; -import Comments from "./assets/comments.svg"; -import Direction from "./assets/direction.svg"; -import Flow from "./assets/flow.svg"; -import Plugin from "./assets/plugin.svg"; -import Repo from "./assets/repo.svg"; -import StackAlt from "./assets/stackalt.svg"; - - - - - -# Welcome to Storybook - -Storybook helps you build UI components in isolation from your app's business logic, data, and context. -That makes it easy to develop hard-to-reach states. Save these UI states as **stories** to revisit during development, testing, or QA. - -Browse example stories now by navigating to them in the sidebar. -View their code in the `stories` directory to learn how they work. -We recommend building UIs with a [**component-driven**](https://componentdriven.org) process starting with atomic components and ending with pages. - -
Configure
- - - -
Learn
- - - -
- TipEdit the Markdown in{" "} - stories/Introduction.stories.mdx -
diff --git a/webapp/src/stories/Page.stories.ts b/webapp/src/stories/Page.stories.ts deleted file mode 100644 index e998801581..0000000000 --- a/webapp/src/stories/Page.stories.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/vue3'; -import { within, userEvent } from '@storybook/testing-library'; -import MyPage from './Page.vue'; - -const meta = { - title: 'Example/Page', - component: MyPage, - render: () => ({ - components: { MyPage }, - template: '', - }), - parameters: { - // More on how to position stories at: https://storybook.js.org/docs/vue/configure/story-layout - layout: 'fullscreen', - }, - // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/autodocs - tags: ['autodocs'], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - -// More on interaction testing: https://storybook.js.org/docs/vue/writing-tests/interaction-testing -export const LoggedIn: Story = { - play: async ({ canvasElement }: any) => { - const canvas = within(canvasElement); - const loginButton = await canvas.getByRole('button', { - name: /Log in/i, - }); - await userEvent.click(loginButton); - }, -}; - -export const LoggedOut: Story = {}; diff --git a/webapp/src/stories/Page.vue b/webapp/src/stories/Page.vue deleted file mode 100644 index b233cd4681..0000000000 --- a/webapp/src/stories/Page.vue +++ /dev/null @@ -1,96 +0,0 @@ - - - diff --git a/webapp/src/stories/assets/code-brackets.svg b/webapp/src/stories/assets/code-brackets.svg deleted file mode 100644 index 73de947760..0000000000 --- a/webapp/src/stories/assets/code-brackets.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/code-brackets \ No newline at end of file diff --git a/webapp/src/stories/assets/colors.svg b/webapp/src/stories/assets/colors.svg deleted file mode 100644 index 17d58d516e..0000000000 --- a/webapp/src/stories/assets/colors.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/colors \ No newline at end of file diff --git a/webapp/src/stories/assets/comments.svg b/webapp/src/stories/assets/comments.svg deleted file mode 100644 index 6493a139f5..0000000000 --- a/webapp/src/stories/assets/comments.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/comments \ No newline at end of file diff --git a/webapp/src/stories/assets/direction.svg b/webapp/src/stories/assets/direction.svg deleted file mode 100644 index 65676ac272..0000000000 --- a/webapp/src/stories/assets/direction.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/direction \ No newline at end of file diff --git a/webapp/src/stories/assets/flow.svg b/webapp/src/stories/assets/flow.svg deleted file mode 100644 index 8ac27db403..0000000000 --- a/webapp/src/stories/assets/flow.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/flow \ No newline at end of file diff --git a/webapp/src/stories/assets/plugin.svg b/webapp/src/stories/assets/plugin.svg deleted file mode 100644 index 29e5c690c0..0000000000 --- a/webapp/src/stories/assets/plugin.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/plugin \ No newline at end of file diff --git a/webapp/src/stories/assets/repo.svg b/webapp/src/stories/assets/repo.svg deleted file mode 100644 index f386ee902c..0000000000 --- a/webapp/src/stories/assets/repo.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/repo \ No newline at end of file diff --git a/webapp/src/stories/assets/stackalt.svg b/webapp/src/stories/assets/stackalt.svg deleted file mode 100644 index 9b7ad27435..0000000000 --- a/webapp/src/stories/assets/stackalt.svg +++ /dev/null @@ -1 +0,0 @@ -illustration/stackalt \ No newline at end of file diff --git a/webapp/src/stories/button.css b/webapp/src/stories/button.css deleted file mode 100644 index 663afa404a..0000000000 --- a/webapp/src/stories/button.css +++ /dev/null @@ -1,30 +0,0 @@ -.storybook-button { - font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 700; - border: 0; - border-radius: 3em; - cursor: pointer; - display: inline-block; - line-height: 1; -} -.storybook-button--primary { - color: white; - background-color: #1ea7fd; -} -.storybook-button--secondary { - color: #333; - background-color: transparent; - box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; -} -.storybook-button--small { - font-size: 12px; - padding: 10px 16px; -} -.storybook-button--medium { - font-size: 14px; - padding: 11px 20px; -} -.storybook-button--large { - font-size: 16px; - padding: 12px 24px; -} diff --git a/webapp/src/stories/header.css b/webapp/src/stories/header.css deleted file mode 100644 index d418c42cef..0000000000 --- a/webapp/src/stories/header.css +++ /dev/null @@ -1,32 +0,0 @@ -.storybook-header { - font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - padding: 15px 20px; - display: flex; - align-items: center; - justify-content: space-between; -} - -.storybook-header svg { - display: inline-block; - vertical-align: top; -} - -.storybook-header h1 { - font-weight: 700; - font-size: 20px; - line-height: 1; - margin: 6px 0 6px 10px; - display: inline-block; - vertical-align: top; -} - -.storybook-header button + button { - margin-left: 10px; -} - -.storybook-header .welcome { - color: #333; - font-size: 14px; - margin-right: 10px; -} diff --git a/webapp/src/stories/page.css b/webapp/src/stories/page.css deleted file mode 100644 index 32fc9ecdc1..0000000000 --- a/webapp/src/stories/page.css +++ /dev/null @@ -1,69 +0,0 @@ -.storybook-page { - font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 24px; - padding: 48px 20px; - margin: 0 auto; - max-width: 600px; - color: #333; -} - -.storybook-page h2 { - font-weight: 700; - font-size: 32px; - line-height: 1; - margin: 0 0 4px; - display: inline-block; - vertical-align: top; -} - -.storybook-page p { - margin: 1em 0; -} - -.storybook-page a { - text-decoration: none; - color: #1ea7fd; -} - -.storybook-page ul { - padding-left: 30px; - margin: 1em 0; -} - -.storybook-page li { - margin-bottom: 8px; -} - -.storybook-page .tip { - display: inline-block; - border-radius: 1em; - font-size: 11px; - line-height: 12px; - font-weight: 700; - background: #e7fdd8; - color: #66bf3c; - padding: 4px 12px; - margin-right: 10px; - vertical-align: top; -} - -.storybook-page .tip-wrapper { - font-size: 13px; - line-height: 20px; - margin-top: 40px; - margin-bottom: 40px; -} - -.storybook-page .tip-wrapper svg { - display: inline-block; - height: 12px; - width: 12px; - margin-right: 4px; - vertical-align: top; - margin-top: 3px; -} - -.storybook-page .tip-wrapper svg path { - fill: #1ea7fd; -} diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 4e0158ac56..3aa5c6dd0f 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2,996 +2,22 @@ # yarn lockfile v1 -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@aw-web-design/x-default-browser@1.4.88": - version "1.4.88" - resolved "https://registry.yarnpkg.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz#33d869cb2a537cd6d2a8369d4dc8ea4988d4be89" - integrity sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA== - dependencies: - default-browser-id "3.0.0" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== - -"@babel/core@^7.11.6", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.20.2", "@babel/core@~7.21.0": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helpers" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - semver "^6.3.0" - -"@babel/generator@^7.21.5", "@babel/generator@~7.21.1": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== - dependencies: - "@babel/types" "^7.21.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz#817f73b6c59726ab39f6ba18c234268a519e5abb" - integrity sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== - dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz#205b26330258625ef8869672ebca1e0dee5a0f02" - integrity sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-member-expression-to-functions" "^7.21.5" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.21.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/helper-split-export-declaration" "^7.18.6" - semver "^6.3.0" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz#a7886f61c2e29e21fd4aaeaf1e473deba6b571dc" - integrity sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.3.1" - semver "^6.3.0" - -"@babel/helper-define-polyfill-provider@^0.3.3": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" - integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== - dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== - -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz#3b1a009af932e586af77c1030fba9ee0bde396c0" - integrity sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - -"@babel/helper-remap-async-to-generator@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7", "@babel/helper-replace-supers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz#a6ad005ba1c7d9bc2973dfde05a1bba7065dde3c" - integrity sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-member-expression-to-functions" "^7.21.5" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" - integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== - dependencies: - "@babel/types" "^7.20.0" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-string-parser@^7.21.5": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": +"@babel/helper-validator-identifier@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - -"@babel/helper-wrap-function@^7.18.9": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" - integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== - dependencies: - "@babel/helper-function-name" "^7.19.0" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.20.5" - "@babel/types" "^7.20.5" - -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.21.4", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6", "@babel/parser@~7.21.2": +"@babel/parser@^7.20.15", "@babel/parser@^7.21.3": version "7.21.8" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" - integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" - integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-proposal-optional-chaining" "^7.20.7" - -"@babel/plugin-proposal-async-generator-functions@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" - integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-class-static-block@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d" - integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" - integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" - integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" - integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" - integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" - integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - -"@babel/plugin-proposal-optional-catch-binding@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" - integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" - integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" - integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-private-property-in-object@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc" - integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-flow@^7.18.6": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107" - integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-syntax-import-assertions@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" - integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== - dependencies: - "@babel/helper-plugin-utils" "^7.19.0" - -"@babel/plugin-syntax-import-meta@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" - integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.20.0": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" - integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-arrow-functions@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz#9bb42a53de447936a57ba256fbf537fc312b6929" - integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - -"@babel/plugin-transform-async-to-generator@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" - integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== - dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" - -"@babel/plugin-transform-block-scoped-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" - integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-block-scoping@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02" - integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-classes@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665" - integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-split-export-declaration" "^7.18.6" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz#3a2d8bb771cd2ef1cd736435f6552fe502e11b44" - integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/template" "^7.20.7" - -"@babel/plugin-transform-destructuring@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401" - integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-duplicate-keys@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" - integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-exponentiation-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" - integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-flow-strip-types@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5" - integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-flow" "^7.18.6" - -"@babel/plugin-transform-for-of@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz#e890032b535f5a2e237a18535f56a9fdaa7b83fc" - integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - -"@babel/plugin-transform-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" - integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== - dependencies: - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" - integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-member-expression-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" - integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-modules-amd@^7.20.11": - version "7.20.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" - integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== - dependencies: - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc" - integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== - dependencies: - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-simple-access" "^7.21.5" - -"@babel/plugin-transform-modules-systemjs@^7.20.11": - version "7.20.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" - integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== - dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-validator-identifier" "^7.19.1" - -"@babel/plugin-transform-modules-umd@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" - integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" - integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.20.5" - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-new-target@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" - integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-object-super@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" - integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.6" - -"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" - integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-property-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" - integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-react-jsx@^7.19.0": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz#bd98f3b429688243e4fa131fe1cbb2ef31ce6f38" - integrity sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/plugin-syntax-jsx" "^7.21.4" - "@babel/types" "^7.21.5" - -"@babel/plugin-transform-regenerator@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz#576c62f9923f94bcb1c855adc53561fd7913724e" - integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - regenerator-transform "^0.15.1" - -"@babel/plugin-transform-reserved-words@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" - integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-shorthand-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" - integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-spread@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" - integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - -"@babel/plugin-transform-sticky-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" - integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-template-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" - integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typeof-symbol@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" - integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typescript@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b" - integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-typescript" "^7.20.0" - -"@babel/plugin-transform-unicode-escapes@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz#1e55ed6195259b0e9061d81f5ef45a9b009fb7f2" - integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - -"@babel/plugin-transform-unicode-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" - integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/preset-env@^7.20.2", "@babel/preset-env@~7.21.0": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.21.5.tgz#db2089d99efd2297716f018aeead815ac3decffb" - integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg== - dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7" - "@babel/plugin-proposal-async-generator-functions" "^7.20.7" - "@babel/plugin-proposal-class-properties" "^7.18.6" - "@babel/plugin-proposal-class-static-block" "^7.21.0" - "@babel/plugin-proposal-dynamic-import" "^7.18.6" - "@babel/plugin-proposal-export-namespace-from" "^7.18.9" - "@babel/plugin-proposal-json-strings" "^7.18.6" - "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" - "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.20.7" - "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" - "@babel/plugin-proposal-optional-chaining" "^7.21.0" - "@babel/plugin-proposal-private-methods" "^7.18.6" - "@babel/plugin-proposal-private-property-in-object" "^7.21.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.20.0" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.21.5" - "@babel/plugin-transform-async-to-generator" "^7.20.7" - "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.21.0" - "@babel/plugin-transform-classes" "^7.21.0" - "@babel/plugin-transform-computed-properties" "^7.21.5" - "@babel/plugin-transform-destructuring" "^7.21.3" - "@babel/plugin-transform-dotall-regex" "^7.18.6" - "@babel/plugin-transform-duplicate-keys" "^7.18.9" - "@babel/plugin-transform-exponentiation-operator" "^7.18.6" - "@babel/plugin-transform-for-of" "^7.21.5" - "@babel/plugin-transform-function-name" "^7.18.9" - "@babel/plugin-transform-literals" "^7.18.9" - "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.20.11" - "@babel/plugin-transform-modules-commonjs" "^7.21.5" - "@babel/plugin-transform-modules-systemjs" "^7.20.11" - "@babel/plugin-transform-modules-umd" "^7.18.6" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5" - "@babel/plugin-transform-new-target" "^7.18.6" - "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.21.3" - "@babel/plugin-transform-property-literals" "^7.18.6" - "@babel/plugin-transform-regenerator" "^7.21.5" - "@babel/plugin-transform-reserved-words" "^7.18.6" - "@babel/plugin-transform-shorthand-properties" "^7.18.6" - "@babel/plugin-transform-spread" "^7.20.7" - "@babel/plugin-transform-sticky-regex" "^7.18.6" - "@babel/plugin-transform-template-literals" "^7.18.9" - "@babel/plugin-transform-typeof-symbol" "^7.18.9" - "@babel/plugin-transform-unicode-escapes" "^7.21.5" - "@babel/plugin-transform-unicode-regex" "^7.18.6" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.21.5" - babel-plugin-polyfill-corejs2 "^0.3.3" - babel-plugin-polyfill-corejs3 "^0.6.0" - babel-plugin-polyfill-regenerator "^0.4.1" - core-js-compat "^3.25.1" - semver "^6.3.0" - -"@babel/preset-flow@^7.13.13": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.21.4.tgz#a5de2a1cafa61f0e0b3af9b30ff0295d38d3608f" - integrity sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-transform-flow-strip-types" "^7.21.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-typescript@^7.13.0": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz#68292c884b0e26070b4d66b202072d391358395f" - integrity sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA== - dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-syntax-jsx" "^7.21.4" - "@babel/plugin-transform-modules-commonjs" "^7.21.5" - "@babel/plugin-transform-typescript" "^7.21.3" - -"@babel/register@^7.13.16": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.21.0.tgz#c97bf56c2472e063774f31d344c592ebdcefa132" - integrity sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw== - dependencies: - clone-deep "^4.0.1" - find-cache-dir "^2.0.0" - make-dir "^2.1.0" - pirates "^4.0.5" - source-map-support "^0.5.16" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.8.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" - integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.18.10", "@babel/template@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.20.5", "@babel/traverse@^7.21.5", "@babel/traverse@~7.21.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.5" - "@babel/types" "^7.21.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6", "@babel/types@~7.21.2": +"@babel/types@^7.21.4": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== @@ -1037,16 +63,6 @@ debug "^3.1.0" lodash.once "^4.1.1" -"@discoveryjs/json-ext@^0.5.3": - version "0.5.7" - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" - integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== - -"@emotion/use-insertion-effect-with-fallbacks@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" - integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== - "@esbuild/android-arm64@0.17.18": version "0.17.18" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz#4aa8d8afcffb4458736ca9b32baa97d7cb5861ea" @@ -1189,11 +205,6 @@ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== -"@fal-works/esbuild-plugin-global-externals@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4" - integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ== - "@fontsource/roboto@^5.0.2": version "5.0.2" resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-5.0.2.tgz#06f10be117be622e6c720a1c6579b00475420bcd" @@ -1302,137 +313,16 @@ "@intlify/core-base" "9.2.2" "@intlify/shared" "9.2.2" -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== - dependencies: - "@sinclair/typebox" "^0.25.16" - -"@jest/transform@^29.3.1": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^2.0.0" - fast-json-stable-stringify "^2.1.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.2" - -"@jest/types@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" - integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^16.0.0" - chalk "^4.0.0" - -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== - dependencies: - "@jest/schemas" "^29.4.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13": +"@jridgewell/sourcemap-codec@^1.4.13": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@juggle/resize-observer@^3.3.1": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" - integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== - "@mdi/font@7.0.96": version "7.0.96" resolved "https://registry.yarnpkg.com/@mdi/font/-/font-7.0.96.tgz#9853c222623072f5575b4039c8c195ea929b61fc" integrity sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w== -"@mdx-js/react@^2.1.5": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3" - integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g== - dependencies: - "@types/mdx" "^2.0.0" - "@types/react" ">=16" - -"@ndelangen/get-tarball@^3.0.7": - version "3.0.7" - resolved "https://registry.yarnpkg.com/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz#87c7aef2df4ff4fbdbab6ac9ed32cee142c4b1a3" - integrity sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ== - dependencies: - gunzip-maybe "^1.4.2" - pump "^3.0.0" - tar-fs "^2.1.1" - "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -1463,906 +353,15 @@ estree-walker "^2.0.2" picomatch "^2.3.1" -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== +"@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== -"@storybook/addon-actions@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.0.11.tgz#359f964036d50bc498b5dcd58e0a592dffb5e1bb" - integrity sha512-kh5z6L5r5BOWVt0+xZgdMZjDJQkJIVcAOxahRS9MwWkw0NDpXjcPS7HsVXZ1DlnnzhfjLFr0BXadVdcc2FLj7A== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - dequal "^2.0.2" - lodash "^4.17.21" - polished "^4.2.2" - prop-types "^15.7.2" - react-inspector "^6.0.0" - telejson "^7.0.3" - ts-dedent "^2.0.0" - uuid "^9.0.0" - -"@storybook/addon-backgrounds@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.11.tgz#d7c76db94c8e4a318419a1617d905e1911cee899" - integrity sha512-kj0LQ1F9Z/6lWQ9d+crgWQKl8fgBXuTo/X3M36GTOf8kEEMGtb1Y71EjOfszwvvgK5GPmvFhOVYQL/D2/VbrHw== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - memoizerific "^1.11.3" - ts-dedent "^2.0.0" - -"@storybook/addon-controls@7.0.11": +"@types/json-schema@^7.0.9": version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.0.11.tgz#989602be818a2b70f6df5cdd181586813b3b29f4" - integrity sha512-ZmzSEBQLEW6vhvemUFFmMD4rA/fYTe8LJ+iahx1RnE7cV4CuyRJ23wlxL21WYHpkhbYdZMlJDTlvDS8GHthIQw== - dependencies: - "@storybook/blocks" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/manager-api" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - lodash "^4.17.21" - ts-dedent "^2.0.0" - -"@storybook/addon-docs@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-7.0.11.tgz#5b05f9d25e819443fab58c565ff2f31cfa37886e" - integrity sha512-WmNEQSiFJrjf47VtQg8uOb5q8M5V4MaolhV9zsN6GSTViduY2P7ti+Fk7ZE6QyO1Yy9Vm4WJLPz/vLcfW73IHw== - dependencies: - "@babel/core" "^7.20.2" - "@babel/plugin-transform-react-jsx" "^7.19.0" - "@jest/transform" "^29.3.1" - "@mdx-js/react" "^2.1.5" - "@storybook/blocks" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/csf-plugin" "7.0.11" - "@storybook/csf-tools" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/mdx2-csf" "^1.0.0" - "@storybook/node-logger" "7.0.11" - "@storybook/postinstall" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/react-dom-shim" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - fs-extra "^11.1.0" - remark-external-links "^8.0.0" - remark-slug "^6.0.0" - ts-dedent "^2.0.0" - -"@storybook/addon-essentials@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-7.0.11.tgz#2f7aa6b117b7da4170980ab9aa0bcdf66f407708" - integrity sha512-46nIoGJXC0clbjgE4Y0xUW9eT1h4uvDXugb2Z79m5L+KvmRk+J0/rqiRpHz5Gou9iFLxAFCRT9Y3BUP2zOXTZQ== - dependencies: - "@storybook/addon-actions" "7.0.11" - "@storybook/addon-backgrounds" "7.0.11" - "@storybook/addon-controls" "7.0.11" - "@storybook/addon-docs" "7.0.11" - "@storybook/addon-highlight" "7.0.11" - "@storybook/addon-measure" "7.0.11" - "@storybook/addon-outline" "7.0.11" - "@storybook/addon-toolbars" "7.0.11" - "@storybook/addon-viewport" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/manager-api" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@storybook/preview-api" "7.0.11" - ts-dedent "^2.0.0" - -"@storybook/addon-highlight@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-7.0.11.tgz#459e4e8f18169b31d8180c4683e1a5389e7ca9f5" - integrity sha512-5nElNxnWAO9Oqr4J8A1vJRhe1zbr9n2hOKMWR4UAqF2CAel5qwPFT6ierGW/k/ymui7pz9wxdxawTr8yTpyQWg== - dependencies: - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/preview-api" "7.0.11" - -"@storybook/addon-interactions@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-interactions/-/addon-interactions-7.0.11.tgz#4d0dfa27aba2d9f470131fce2176ed904f7ec860" - integrity sha512-mIcv64Yo1z6Mmj/5/Ulyk2peFeUNT3YcZ5oqsq29MdQf3V4xJz+9KYaLHr8eZn2VpjsKtc0Hq21BUp/FIduYQg== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/instrumenter" "7.0.11" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - jest-mock "^27.0.6" - polished "^4.2.2" - ts-dedent "^2.2.0" - -"@storybook/addon-links@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-7.0.11.tgz#a3109b2fccea331551b8ccbe730b2b8e5b0a54d3" - integrity sha512-6UpRCs3lIYN0V+0kP+VHChc836sJN/n35OVnfZNd/lRBzewBmuOW6s7Hy2iNZtYg1vWlXR2/wOFzljkkjiWtSQ== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/router" "7.0.11" - "@storybook/types" "7.0.11" - prop-types "^15.7.2" - ts-dedent "^2.0.0" - -"@storybook/addon-measure@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-7.0.11.tgz#5154a7d0b3a55c609dffeeb1e120cfeb3d19afd1" - integrity sha512-u6yNwgjXr6AcJibKi9NqBn75WsYBtHrgmGX3/ZIPQ20dYIiRHXRKu2lcTfSeA2drz0b1SDPN4gqMlOKm1ly6mw== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/types" "7.0.11" - -"@storybook/addon-outline@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-7.0.11.tgz#54c1fb76d0580803cb9fb08236f3d666dd0e260c" - integrity sha512-Ftld7dkVHPKo1CbBwJ7X4HNQUAqLhdV/mOB+Tswfvb+niSkFspAaK4ChQoYVsDaLwF7Kmn6jh8ACRTaDvIbN8g== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/types" "7.0.11" - ts-dedent "^2.0.0" - -"@storybook/addon-toolbars@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.0.11.tgz#8072ef59fb2a9501f08ddf709ec049d4f54b79d8" - integrity sha512-rPd7Ph7fEvWdDWBLQ6GUOEsw+W3FIyqkXl8UEckypE+qILNwZj4C9g8GhaLK65N8aEl3lIO/myx6mUjvySiODA== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - -"@storybook/addon-viewport@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-7.0.11.tgz#7964d1fd2aab891d058013183f9a52359ef4e936" - integrity sha512-O2Wu/jWSFDvvjP2ERc3wXbRuKvfM3Ttj8MJQZ0FphPwIxe1zSSAA5jk3mhXmEyIJfAe+upyAhV9EqIs8+L6kLg== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - memoizerific "^1.11.3" - prop-types "^15.7.2" - -"@storybook/blocks@7.0.11", "@storybook/blocks@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.0.11.tgz#6329dda62b972e17322a3368fce2e25b42810a08" - integrity sha512-WfqRnKLk3Ke9Pr9G7BrtGJZKuOj32WxbQUbPlCi9oVysYQm69hgcO3+MTft96ur62p8e7gcoIFKrhFi0x4rXiw== - dependencies: - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/components" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/docs-tools" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/manager-api" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - "@types/lodash" "^4.14.167" - color-convert "^2.0.1" - dequal "^2.0.2" - lodash "^4.17.21" - markdown-to-jsx "^7.1.8" - memoizerific "^1.11.3" - polished "^4.2.2" - react-colorful "^5.1.2" - telejson "^7.0.3" - ts-dedent "^2.0.0" - util-deprecate "^1.0.2" - -"@storybook/builder-manager@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.0.11.tgz#a611e3e6ed28d7f93186991b1213816d26082583" - integrity sha512-ifSZzdC0CItMRPkEYxEziHpTfZO8JWVBIhaOrhT1TDvSameCFXa91yv9djMu9fBnJkfLsj9lyV9OjEyy7NN3uQ== - dependencies: - "@fal-works/esbuild-plugin-global-externals" "^2.1.2" - "@storybook/core-common" "7.0.11" - "@storybook/manager" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@types/ejs" "^3.1.1" - "@types/find-cache-dir" "^3.2.1" - "@yarnpkg/esbuild-plugin-pnp" "^3.0.0-rc.10" - browser-assert "^1.2.1" - ejs "^3.1.8" - esbuild "^0.17.0" - esbuild-plugin-alias "^0.2.1" - express "^4.17.3" - find-cache-dir "^3.0.0" - fs-extra "^11.1.0" - process "^0.11.10" - util "^0.12.4" - -"@storybook/builder-vite@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/builder-vite/-/builder-vite-7.0.11.tgz#de6f175b6db4a8e79d0fdb14f61ba7c5fdaae6c4" - integrity sha512-qFT2WDJexbcxJjLD7k/whEiHbqIZ0wsHFfiGX5JyTEba4a7UTQ6a6yDCUb1KuLnyUOa056FwEag9ghw3WRowmA== - dependencies: - "@storybook/channel-postmessage" "7.0.11" - "@storybook/channel-websocket" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/csf-plugin" "7.0.11" - "@storybook/mdx2-csf" "^1.0.0" - "@storybook/node-logger" "7.0.11" - "@storybook/preview" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/types" "7.0.11" - browser-assert "^1.2.1" - es-module-lexer "^0.9.3" - express "^4.17.3" - fs-extra "^11.1.0" - glob "^8.1.0" - glob-promise "^6.0.2" - magic-string "^0.27.0" - remark-external-links "^8.0.0" - remark-slug "^6.0.0" - rollup "^2.25.0 || ^3.3.0" - -"@storybook/channel-postmessage@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-7.0.11.tgz#f71213dee292a06a6a7f8c0518fd3f52f261792e" - integrity sha512-6ARow3o2thnXLO4i3+tluHAPqqSrB30U/Oxg3JqC5/2FJin3UFBOMCj04V7FPUN8jQfZpERoYgiUYE9JddT39g== - dependencies: - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - qs "^6.10.0" - telejson "^7.0.3" - -"@storybook/channel-websocket@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/channel-websocket/-/channel-websocket-7.0.11.tgz#c9b5b68e37e3d8d699081805d80ec6580adfb532" - integrity sha512-AeoOFDA0Rkf4Jx5PgX76tlehUYbC0AHDA63ZLVol9O/P4ch2Ju5cxsiFv0brdcnv4t2ibNZkqFdsrut9O/wacg== - dependencies: - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/global" "^5.0.0" - telejson "^7.0.3" - -"@storybook/channels@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-7.0.11.tgz#c753d37ade4b85bf5cb5a8ebaf81d535f21ee547" - integrity sha512-1cVgju7ViN7GDeUNUS5hp3GZLT2EgxgXj7zuGbCZwsF8lFsM0IWeXma8TV0UfcBiyQjP4edYRmUn0vy6CMc/WA== - -"@storybook/cli@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.0.11.tgz#5554ceda9163a136de88663c77bdf18184ae20ca" - integrity sha512-qe2jxFs7bT/9vgLo41u+OikWCUPjinL7+3Mo88Fa/kFsKMQ3AB/UuKKJ3atJEeTjfZapnB/OU9Y7V9shAcju7g== - dependencies: - "@babel/core" "^7.20.2" - "@babel/preset-env" "^7.20.2" - "@ndelangen/get-tarball" "^3.0.7" - "@storybook/codemod" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/core-server" "7.0.11" - "@storybook/csf-tools" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@storybook/telemetry" "7.0.11" - "@storybook/types" "7.0.11" - "@types/semver" "^7.3.4" - boxen "^5.1.2" - chalk "^4.1.0" - commander "^6.2.1" - cross-spawn "^7.0.3" - detect-indent "^6.1.0" - envinfo "^7.7.3" - execa "^5.0.0" - express "^4.17.3" - find-up "^5.0.0" - fs-extra "^11.1.0" - get-npm-tarball-url "^2.0.3" - get-port "^5.1.1" - giget "^1.0.0" - globby "^11.0.2" - jscodeshift "^0.14.0" - leven "^3.1.0" - prettier "^2.8.0" - prompts "^2.4.0" - puppeteer-core "^2.1.1" - read-pkg-up "^7.0.1" - semver "^7.3.7" - shelljs "^0.8.5" - simple-update-notifier "^1.0.0" - strip-json-comments "^3.0.1" - tempy "^1.0.1" - ts-dedent "^2.0.0" - util-deprecate "^1.0.2" - -"@storybook/client-logger@7.0.11", "@storybook/client-logger@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.0.11.tgz#0210ec715be79a930f9d17ebff62b73fb7104337" - integrity sha512-3p+vXogcwPI9/9PgjqhJSzJsbcJUnvVyZ4rM4sQhwbXQkMjwl2j/LjI86zuYbQe9yQpKND1Yc4HPJd24225H/Q== - dependencies: - "@storybook/global" "^5.0.0" - -"@storybook/codemod@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-7.0.11.tgz#160e811aae572e0915d90a464a8d7f476219e810" - integrity sha512-BRELZzEUqsZ3KOVrTEikjaYPy9M4+sU4XfV4wWeZ6N6rUdWy+Db2C+tL3lqPVYYocoYmwAxab/dLdbcGp4/Evg== - dependencies: - "@babel/core" "~7.21.0" - "@babel/preset-env" "~7.21.0" - "@babel/types" "~7.21.2" - "@storybook/csf" "^0.1.0" - "@storybook/csf-tools" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@storybook/types" "7.0.11" - cross-spawn "^7.0.3" - globby "^11.0.2" - jscodeshift "^0.14.0" - lodash "^4.17.21" - prettier "^2.8.0" - recast "^0.23.1" - -"@storybook/components@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-7.0.11.tgz#4d710869014b369d347fcc3f9e41a5ecf352b036" - integrity sha512-U8JyhFppGTv7ul3gofQqIzlrAx1NEF0ckTMAwtbE6ke4AIbcoPvpWwwH5EoLR1cAVwoNjYeah/pVdG9IZSlyJA== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/global" "^5.0.0" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - memoizerific "^1.11.3" - use-resize-observer "^9.1.0" - util-deprecate "^1.0.2" - -"@storybook/core-client@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-7.0.11.tgz#05909f7d6561bd0c3dbdad9d95ce386fff782de5" - integrity sha512-ALm4hpGa9cnhKAc6TbRPRV32cwH0I2F6vUYduVrDd/yq8a/o2rJQwvNOr7dJiakTWI/3IACeSlQMuStYqS8r+w== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/preview-api" "7.0.11" - -"@storybook/core-common@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.0.11.tgz#2f6ba1d3ed424de6f4738e0de31119ecae3d7d57" - integrity sha512-orVhH92V9lwtwu3Cv78ys26vrRZXsKYGtTGdWPv/K3G0ihIKY6JgV2wJOGNH+urY2pmno1ALOkv1FvtwkKIxsA== - dependencies: - "@storybook/node-logger" "7.0.11" - "@storybook/types" "7.0.11" - "@types/node" "^16.0.0" - "@types/pretty-hrtime" "^1.0.0" - chalk "^4.1.0" - esbuild "^0.17.0" - esbuild-register "^3.4.0" - file-system-cache "^2.0.0" - find-up "^5.0.0" - fs-extra "^11.1.0" - glob "^8.1.0" - glob-promise "^6.0.2" - handlebars "^4.7.7" - lazy-universal-dotenv "^4.0.0" - picomatch "^2.3.0" - pkg-dir "^5.0.0" - pretty-hrtime "^1.0.3" - resolve-from "^5.0.0" - ts-dedent "^2.0.0" - -"@storybook/core-events@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.0.11.tgz#9d11fc7c7f60f3450fd379476fd7ef9c7c7d556f" - integrity sha512-azEjQMpMx61h4o11OV8l78ab6Jxiwc5nlbqEUa1FVCupyRKFxrbK7zovmWyVL3cTllCSiJf4v3o/MadtuH4lcw== - -"@storybook/core-server@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.0.11.tgz#bf27d793f6b8b1b03e15b2beac599e2c1c49130a" - integrity sha512-lBt24X6MDYdVv68y77qzYwlTOAfJF4grJ8/f4VYOgU0EWxf++IyCwAnsXDrpvatIhiikCtMllnUq5U+QlEgcLg== - dependencies: - "@aw-web-design/x-default-browser" "1.4.88" - "@discoveryjs/json-ext" "^0.5.3" - "@storybook/builder-manager" "7.0.11" - "@storybook/core-common" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/csf-tools" "7.0.11" - "@storybook/docs-mdx" "^0.1.0" - "@storybook/global" "^5.0.0" - "@storybook/manager" "7.0.11" - "@storybook/node-logger" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/telemetry" "7.0.11" - "@storybook/types" "7.0.11" - "@types/detect-port" "^1.3.0" - "@types/node" "^16.0.0" - "@types/node-fetch" "^2.5.7" - "@types/pretty-hrtime" "^1.0.0" - "@types/semver" "^7.3.4" - better-opn "^2.1.1" - boxen "^5.1.2" - chalk "^4.1.0" - cli-table3 "^0.6.1" - compression "^1.7.4" - detect-port "^1.3.0" - express "^4.17.3" - fs-extra "^11.1.0" - globby "^11.0.2" - ip "^2.0.0" - lodash "^4.17.21" - node-fetch "^2.6.7" - open "^8.4.0" - pretty-hrtime "^1.0.3" - prompts "^2.4.0" - read-pkg-up "^7.0.1" - semver "^7.3.7" - serve-favicon "^2.5.0" - telejson "^7.0.3" - ts-dedent "^2.0.0" - util-deprecate "^1.0.2" - watchpack "^2.2.0" - ws "^8.2.3" - -"@storybook/csf-plugin@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.0.11.tgz#23c12e11f4f72f2b6be946a604152abaa4d99b7a" - integrity sha512-TL52rXruFf8kuw4y9CFfPUoF5KWYXaoxy3zStTognY+kZpDr424JJO/IHYFNp72YVZ1pygeOdZnGCKCDlw5vUQ== - dependencies: - "@storybook/csf-tools" "7.0.11" - unplugin "^0.10.2" - -"@storybook/csf-tools@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-7.0.11.tgz#93bd1cf80e50ff787de3731c9975adb15c58a2f2" - integrity sha512-hW2Mw/EZ+sCwFByR1FCaElw3LqIh2/wRGVg/zJk36L9Y1vPkpneZU+Gdy5rds2hBCCYXYkJpcVKemky15Z1HJg== - dependencies: - "@babel/generator" "~7.21.1" - "@babel/parser" "~7.21.2" - "@babel/traverse" "~7.21.2" - "@babel/types" "~7.21.2" - "@storybook/csf" "^0.1.0" - "@storybook/types" "7.0.11" - fs-extra "^11.1.0" - recast "^0.23.1" - ts-dedent "^2.0.0" - -"@storybook/csf@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6" - integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw== - dependencies: - lodash "^4.17.15" - -"@storybook/csf@^0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.0.tgz#62315bf9704f3aa4e0d4d909b9033833774ddfbe" - integrity sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ== - dependencies: - type-fest "^2.19.0" - -"@storybook/docs-mdx@^0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz#33ba0e39d1461caf048b57db354b2cc410705316" - integrity sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg== - -"@storybook/docs-tools@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/docs-tools/-/docs-tools-7.0.11.tgz#106e0048140f3f9a240788e6dee296be4ae16a38" - integrity sha512-irHZ4hYRA5HGCCtYHoLdb4j5NlfXgn9JWXXnWb4+6LaLanDQSFTGz+H4+qnet6nBEzXuzNWlsY/Wg18AYOZOfg== - dependencies: - "@babel/core" "^7.12.10" - "@storybook/core-common" "7.0.11" - "@storybook/preview-api" "7.0.11" - "@storybook/types" "7.0.11" - "@types/doctrine" "^0.0.3" - doctrine "^3.0.0" - lodash "^4.17.21" - -"@storybook/global@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed" - integrity sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ== - -"@storybook/instrumenter@7.0.11", "@storybook/instrumenter@^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.0.11.tgz#801a90b9cceb131bcd3a3efd0c394aea5fc66eb2" - integrity sha512-sBwV0AGN2DrJTMWGRZHU/HvjRFF0HJ1ynnwnVqT2n1q2oi/8Xa3xYit5bvcyMGStnXdfo38nRKuKZQ6UrNXEug== - dependencies: - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/preview-api" "7.0.11" - -"@storybook/manager-api@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-7.0.11.tgz#3ade5e8189017584a159b7f8a54bf3a86d29cbc7" - integrity sha512-xR7/h0EGGaUBPSpQ7vuEq6B//wKM9vKqOqvZ4xMsebxw0b2cf1GYAm1Z2rR9n+fMXJEiPvVzGcuZd9jekGf2mQ== - dependencies: - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/global" "^5.0.0" - "@storybook/router" "7.0.11" - "@storybook/theming" "7.0.11" - "@storybook/types" "7.0.11" - dequal "^2.0.2" - lodash "^4.17.21" - memoizerific "^1.11.3" - semver "^7.3.7" - store2 "^2.14.2" - telejson "^7.0.3" - ts-dedent "^2.0.0" - -"@storybook/manager@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.0.11.tgz#a45d0794501aac1a83d8ef9f29b7f2a67d019d2e" - integrity sha512-TvY+A3guncE6nGYBZ5fbodPaQGpO9FWUg2u1lPqjnMwecZCVZZomkWSMFpPsjanl5C7Q8j7ol/g8MnQg9V53MQ== - -"@storybook/mdx2-csf@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz#97f6df04d0bf616991cc1005a073ac004a7281e5" - integrity sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw== - -"@storybook/node-logger@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.0.11.tgz#cc0bfddeb52484c6cded5c717d3bd8c6357071b0" - integrity sha512-N28h8aU5QglfaaM/wjpk0e7AAX8f1KBQXKArnRePHeK9M5L6w/BQQ5BcRAhcvQKZ6eOpHyADaRMHqxCxkY8qmw== - dependencies: - "@types/npmlog" "^4.1.2" - chalk "^4.1.0" - npmlog "^5.0.1" - pretty-hrtime "^1.0.3" - -"@storybook/postinstall@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.0.11.tgz#447d0090e0b301ae42fdbb5f2f9dab2e20d4ef6c" - integrity sha512-bUKMQyu0LowxcxX7eO7TJYcs9WPeMfM6Ls2DTfExy7nU/z9EBfPlbXb7lXrMo4mdrHU1Cb+nGi8ZNiMwhggbqA== - -"@storybook/preview-api@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-7.0.11.tgz#a70453374bebb9e828646ecdd5d3ff548a4558c9" - integrity sha512-w86kKnoH46xmhoi+i0V2bPiuoKnjUhEtSHXtIOEM+gJCfrKECWzrlDVCu+fh2xv38uf7zrJcQSJg9Vmpsmiasw== - dependencies: - "@storybook/channel-postmessage" "7.0.11" - "@storybook/channels" "7.0.11" - "@storybook/client-logger" "7.0.11" - "@storybook/core-events" "7.0.11" - "@storybook/csf" "^0.1.0" - "@storybook/global" "^5.0.0" - "@storybook/types" "7.0.11" - "@types/qs" "^6.9.5" - dequal "^2.0.2" - lodash "^4.17.21" - memoizerific "^1.11.3" - qs "^6.10.0" - synchronous-promise "^2.0.15" - ts-dedent "^2.0.0" - util-deprecate "^1.0.2" - -"@storybook/preview@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.0.11.tgz#1bd08e91daa16ca92aa3ab0a86b2126e3318d435" - integrity sha512-xsWyTggxCoSDJ+E0yNcVrShL/y8g8Tnx+3niVve9dTypa5QhcNWhJC1kZAi42F+WjQAmolJMWBpk9auCasuY7A== - -"@storybook/react-dom-shim@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.0.11.tgz#2474bc0cbe0e81758ca3909683a277cf98751710" - integrity sha512-G7fdaIdDlED6m7f4c+5adXLb5LCaSv3aWrW1mL+pwaFboFzUMR5VAF4XwVFadYgasLZRxcrPdWRY1AZ+y6/dlw== - -"@storybook/router@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.0.11.tgz#517497f03e675f06675deb77e106ccd3fa84f718" - integrity sha512-yOboVh3iNEno4QG2XYj/2ly7w8wzckeUWl7q6s/kkHUQbiEgrAhxTTLezSLn7LlhaaiCzvYH1GEZZFzpGHHDkg== - dependencies: - "@storybook/client-logger" "7.0.11" - memoizerific "^1.11.3" - qs "^6.10.0" - -"@storybook/telemetry@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/telemetry/-/telemetry-7.0.11.tgz#a821e5c8af5e2acc73364db95baf0d25531c7cb4" - integrity sha512-7zE5PkudTwMQ1iF0vs8/TowpLph79765IA1cJT08ngGhzD+mZW9s9ePp2LI/l4U/JTe01LexcIlVAuXKkI7I0g== - dependencies: - "@storybook/client-logger" "7.0.11" - "@storybook/core-common" "7.0.11" - chalk "^4.1.0" - detect-package-manager "^2.0.1" - fetch-retry "^5.0.2" - fs-extra "^11.1.0" - isomorphic-unfetch "^3.1.0" - nanoid "^3.3.1" - read-pkg-up "^7.0.1" - -"@storybook/testing-library@^0.0.14-next.2": - version "0.0.14-next.2" - resolved "https://registry.yarnpkg.com/@storybook/testing-library/-/testing-library-0.0.14-next.2.tgz#458e6c7623118e24826ba73b80db0a887f3f57e8" - integrity sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg== - dependencies: - "@storybook/client-logger" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0" - "@storybook/instrumenter" "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0" - "@testing-library/dom" "^8.3.0" - "@testing-library/user-event" "^13.2.1" - ts-dedent "^2.2.0" - -"@storybook/theming@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.0.11.tgz#e84907d1268d91a43c0fe9f5281b3b0350916ced" - integrity sha512-wJtqHJBtIK1/HXXeanOAeUQEZfKBNn/qonq82BmHKb+Js+IGtnKW9upDQkzYa0oDD5IskBavN+LpQkT6ECjEYQ== - dependencies: - "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" - "@storybook/client-logger" "7.0.11" - "@storybook/global" "^5.0.0" - memoizerific "^1.11.3" - -"@storybook/types@7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/types/-/types-7.0.11.tgz#b4b0dfd68cf1558f10b30616997c55f37aff8c41" - integrity sha512-VOnef/u/HvYbk6LxWkwMlu31VD1ly6BTyHDOMUfYas03uNflX1KldGooWphmXVFrkkoLJoF5V4wsTShHSizi2A== - dependencies: - "@storybook/channels" "7.0.11" - "@types/babel__core" "^7.0.0" - "@types/express" "^4.7.0" - file-system-cache "^2.0.0" - -"@storybook/vue3-vite@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/vue3-vite/-/vue3-vite-7.0.11.tgz#fe627073fe338b94d6acdf51018417156d1c9926" - integrity sha512-TWZSZ+uoXaRmlyL6R7FInmaAwlfH2WEZmzwckiiCxOFgmSNe/QBXhqddij8uvVhAUcrjkbWjvo/K0KEiR2f8Hw== - dependencies: - "@storybook/builder-vite" "7.0.11" - "@storybook/core-server" "7.0.11" - "@storybook/vue3" "7.0.11" - "@vitejs/plugin-vue" "^4.0.0" - magic-string "^0.27.0" - vue-docgen-api "^4.40.0" - -"@storybook/vue3@7.0.11", "@storybook/vue3@^7.0.11": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@storybook/vue3/-/vue3-7.0.11.tgz#a617932f927d68a28283c3c98bc3cf6643b30768" - integrity sha512-KPw9hImQ9Z0MX++7udXtz3HiKxPlrtiCCwO3df0w6A0K8BA6ieeMNFJ9DYWhnKv4yK4qLU5LnHWKKhgeGTcRyg== - dependencies: - "@storybook/core-client" "7.0.11" - "@storybook/docs-tools" "7.0.11" - "@storybook/global" "^5.0.0" - "@storybook/preview-api" "7.0.11" - "@storybook/types" "7.0.11" - ts-dedent "^2.0.0" - type-fest "2.19.0" - -"@testing-library/dom@^8.3.0": - version "8.20.0" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6" - integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/runtime" "^7.12.5" - "@types/aria-query" "^5.0.1" - aria-query "^5.0.0" - chalk "^4.1.0" - dom-accessibility-api "^0.5.9" - lz-string "^1.4.4" - pretty-format "^27.0.2" - -"@testing-library/user-event@^13.2.1": - version "13.5.0" - resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295" - integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg== - dependencies: - "@babel/runtime" "^7.12.5" - -"@types/aria-query@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc" - integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q== - -"@types/babel__core@^7.0.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" - integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== - dependencies: - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" - integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== - dependencies: - "@babel/types" "^7.3.0" - -"@types/body-parser@*": - version "1.19.2" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" - integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/connect@*": - version "3.4.35" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" - integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== - dependencies: - "@types/node" "*" - -"@types/detect-port@^1.3.0": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/detect-port/-/detect-port-1.3.2.tgz#8c06a975e472803b931ee73740aeebd0a2eb27ae" - integrity sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g== - -"@types/doctrine@^0.0.3": - version "0.0.3" - resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.3.tgz#e892d293c92c9c1d3f9af72c15a554fbc7e0895a" - integrity sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA== - -"@types/ejs@^3.1.1": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.2.tgz#75d277b030bc11b3be38c807e10071f45ebc78d9" - integrity sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g== - -"@types/estree@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" - integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== - -"@types/express-serve-static-core@^4.17.33": - version "4.17.34" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz#c119e85b75215178bc127de588e93100698ab4cc" - integrity sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w== - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - "@types/send" "*" - -"@types/express@^4.7.0": - version "4.17.17" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" - integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.33" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/find-cache-dir@^3.2.1": - version "3.2.1" - resolved "https://registry.yarnpkg.com/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz#7b959a4b9643a1e6a1a5fe49032693cc36773501" - integrity sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw== - -"@types/glob@^8.0.0": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" - integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== - dependencies: - "@types/minimatch" "^5.1.2" - "@types/node" "*" - -"@types/graceful-fs@^4.1.3": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" - integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/lodash@^4.14.167": - version "4.14.194" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" - integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== - -"@types/mdx@^2.0.0": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.5.tgz#9a85a8f70c7c4d9e695a21d5ae5c93645eda64b1" - integrity sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg== - -"@types/mime-types@^2.1.0": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@types/mime-types/-/mime-types-2.1.1.tgz#d9ba43490fa3a3df958759adf69396c3532cf2c1" - integrity sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw== - -"@types/mime@*": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" - integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== - -"@types/mime@^1": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" - integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== - -"@types/minimatch@^5.1.2": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - -"@types/node-fetch@^2.5.7": - version "2.6.3" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80" - integrity sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w== - dependencies: - "@types/node" "*" - form-data "^3.0.0" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== "@types/node@*": version "20.1.3" @@ -2374,81 +373,16 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.46.tgz#ffc5a96cbe4fb5af9d16ac08e50229de30969487" integrity sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng== -"@types/node@^16.0.0": - version "16.18.29" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.29.tgz#4b5e19b078513fa5e828b98aede649525e5d1750" - integrity sha512-cal+XTYF4JBwG82kw3m9ktTOyUj7GXcO9i2o+t49y/OF+3asYfpHqTROF1UbV91e71g/UB5wNeL5hfqPthzp8Q== - "@types/node@^18.15.0": version "18.16.8" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.8.tgz#fcd9bd0a793aba2701caff4aeae7c988d4da6ce5" integrity sha512-p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA== -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/npmlog@^4.1.2": - version "4.1.4" - resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.4.tgz#30eb872153c7ead3e8688c476054ddca004115f6" - integrity sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ== - -"@types/pretty-hrtime@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz#72a26101dc567b0d68fd956cf42314556e42d601" - integrity sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ== - -"@types/prop-types@*": - version "15.7.5" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== - -"@types/qs@*", "@types/qs@^6.9.5": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/range-parser@*": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" - integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== - -"@types/react@>=16": - version "18.2.6" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" - integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/scheduler@*": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" - integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== - -"@types/semver@^7.3.12", "@types/semver@^7.3.4": +"@types/semver@^7.3.12": version "7.5.0" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== -"@types/send@*": - version "0.17.1" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" - integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== - dependencies: - "@types/mime" "^1" - "@types/node" "*" - -"@types/serve-static@*": - version "1.15.1" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d" - integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ== - dependencies: - "@types/mime" "*" - "@types/node" "*" - "@types/sinonjs__fake-timers@8.1.1": version "8.1.1" resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz#b49c2c70150141a15e0fa7e79cf1f92a72934ce3" @@ -2459,35 +393,6 @@ resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef" integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== -"@types/unist@^2.0.0": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/webfontloader@^1.6.35": - version "1.6.35" - resolved "https://registry.yarnpkg.com/@types/webfontloader/-/webfontloader-1.6.35.tgz#c9cedff2995c61ee9b2064714e7f7d7763ac50bd" - integrity sha512-IJlrsiDWq6KghQ7tPlL5tcwSUyOxLDceT+AFUY7Ylj0Fcv3/h3QkANqQxZ0B5mEpEKxhTw76vDmvrruSMV9n9Q== - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^16.0.0": - version "16.0.5" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3" - integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^17.0.8": - version "17.0.24" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" - integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== - dependencies: - "@types/yargs-parser" "*" - "@types/yauzl@^2.9.1": version "2.10.0" resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" @@ -2619,7 +524,7 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.59.5", "@typescript-eslint/utils@^5.45.0": +"@typescript-eslint/utils@5.59.5": version "5.59.5" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== @@ -2668,11 +573,6 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" integrity sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw== -"@vitejs/plugin-vue@^4.0.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" - integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== - "@volar/language-core@1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" @@ -2737,7 +637,7 @@ estree-walker "^2.0.2" source-map-js "^1.0.2" -"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.2.0", "@vue/compiler-dom@^3.3.0-beta.3": +"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz#2012ef4879375a4ca4ee68012a9256398b848af2" integrity sha512-6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw== @@ -2753,7 +653,7 @@ "@vue/compiler-core" "3.3.4" "@vue/shared" "3.3.4" -"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.2.0", "@vue/compiler-sfc@^3.3.0-beta.3": +"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.3.0-beta.3": version "3.3.2" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz#d6467acba8446655bcee7e751441232e5ddebcbf" integrity sha512-jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ== @@ -2887,21 +787,6 @@ find-cache-dir "^3.3.2" upath "^2.0.1" -"@yarnpkg/esbuild-plugin-pnp@^3.0.0-rc.10": - version "3.0.0-rc.15" - resolved "https://registry.yarnpkg.com/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz#4e40e7d2eb28825c9a35ab9d04c363931d7c0e67" - integrity sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA== - dependencies: - tslib "^2.4.0" - -accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - acorn-jsx@^5.2.0, acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" @@ -2917,23 +802,6 @@ acorn@^8.8.0, acorn@^8.8.2: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== -address@^1.0.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" - integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== - -agent-base@5: - version "5.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" - integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" @@ -2952,13 +820,6 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-align@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" - integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== - dependencies: - string-width "^4.1.0" - ansi-colors@^4.1.1: version "4.1.3" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" @@ -2976,13 +837,6 @@ ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" @@ -2990,12 +844,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -anymatch@^3.0.3, anymatch@~3.1.2: +anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== @@ -3003,71 +852,21 @@ anymatch@^3.0.3, anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" -app-root-dir@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" - integrity sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g== - -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== -are-we-there-yet@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" - integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@^5.0.0: - version "5.1.3" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== - dependencies: - deep-equal "^2.0.5" - -array-buffer-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" - integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== - dependencies: - call-bind "^1.0.2" - is-array-buffer "^3.0.1" - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - array-union@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - asn1@~0.2.3: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -3075,51 +874,17 @@ asn1@~0.2.3: dependencies: safer-buffer "~2.1.0" -assert-never@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" - integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== - assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^2.0.0: +astral-regex@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" - integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== - dependencies: - es6-object-assign "^1.1.0" - is-nan "^1.2.1" - object-is "^1.0.1" - util "^0.12.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -ast-types@0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" - integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== - dependencies: - tslib "^2.0.1" - -ast-types@^0.16.1: - version "0.16.1" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.16.1.tgz#7a9da1617c9081bc121faafe91711b4c8bb81da2" - integrity sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg== - dependencies: - tslib "^2.0.1" - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async-limiter@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" - integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== - -async@^3.2.0, async@^3.2.3: +async@^3.2.0: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== @@ -3134,11 +899,6 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -3158,53 +918,6 @@ axios@^1.4.0: form-data "^4.0.0" proxy-from-env "^1.1.0" -babel-core@^7.0.0-bridge.0: - version "7.0.0-bridge.0" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" - integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-polyfill-corejs2@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" - integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== - dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.3.3" - semver "^6.1.1" - -babel-plugin-polyfill-corejs3@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" - integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.3" - core-js-compat "^3.25.1" - -babel-plugin-polyfill-regenerator@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" - integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.3" - -babel-walk@3.0.0-canary-5: - version "3.0.0-canary-5" - resolved "https://registry.yarnpkg.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11" - integrity sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw== - dependencies: - "@babel/types" "^7.9.6" - balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -3222,32 +935,11 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -better-opn@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6" - integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA== - dependencies: - open "^7.0.3" - -big-integer@^1.6.44: - version "1.6.51" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== - binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - blob-util@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" @@ -3258,50 +950,11 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== -boxen@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" - integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== - dependencies: - ansi-align "^3.0.0" - camelcase "^6.2.0" - chalk "^4.1.0" - cli-boxes "^2.2.1" - string-width "^4.2.2" - type-fest "^0.20.2" - widest-line "^3.1.0" - wrap-ansi "^7.0.0" - -bplist-parser@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" - integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== - dependencies: - big-integer "^1.6.44" - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -3324,46 +977,12 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" -browser-assert@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/browser-assert/-/browser-assert-1.2.1.tgz#9aaa5a2a8c74685c2ae05bfe46efd606f068c200" - integrity sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ== - -browserify-zlib@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" - integrity sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ== - dependencies: - pako "~0.2.0" - -browserslist@^4.21.3, browserslist@^4.21.5: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== - dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.5.0, buffer@^5.6.0: +buffer@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -3371,22 +990,12 @@ buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - cachedir@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== -call-bind@^1.0.0, call-bind@^1.0.2: +call-bind@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -3399,36 +1008,12 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001449: - version "1.0.30001486" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" - integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== - caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -3436,13 +1021,6 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -character-parser@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - integrity sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== - dependencies: - is-regex "^1.0.3" - check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" @@ -3463,16 +1041,6 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - ci-info@^3.2.0: version "3.8.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" @@ -3483,11 +1051,6 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cli-boxes@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" - integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== - cli-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" @@ -3495,7 +1058,7 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-table3@^0.6.1, cli-table3@~0.6.1: +cli-table3@~0.6.1: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== @@ -3512,22 +1075,6 @@ cli-truncate@^2.1.0: slice-ansi "^3.0.0" string-width "^4.2.0" -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -3535,22 +1082,12 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-support@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -colorette@^2.0.16, colorette@^2.0.19: +colorette@^2.0.16: version "2.0.20" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== @@ -3577,104 +1114,17 @@ commondir@^1.0.1: resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@^1.6.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -console-control-strings@^1.0.0, console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -constantinople@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151" - integrity sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw== - dependencies: - "@babel/parser" "^7.6.0" - "@babel/types" "^7.6.1" - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" - integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -core-js-compat@^3.25.1: - version "3.30.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b" - integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA== - dependencies: - browserslist "^4.21.5" - core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -3683,17 +1133,12 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crypto-random-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== - cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -csstype@^3.0.2, csstype@^3.1.1: +csstype@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== @@ -3763,20 +1208,6 @@ de-indent@^1.0.2: resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== -debug@2.6.9, debug@^2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - debug@^3.1.0: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -3784,120 +1215,23 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -deep-equal@^2.0.5: - version "2.2.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" - integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ== - dependencies: - array-buffer-byte-length "^1.0.0" - call-bind "^1.0.2" - es-get-iterator "^1.1.3" - get-intrinsic "^1.2.0" - is-arguments "^1.1.1" - is-array-buffer "^3.0.2" - is-date-object "^1.0.5" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - isarray "^2.0.5" - object-is "^1.1.5" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.5.0" - side-channel "^1.0.4" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.1" - which-typed-array "^1.1.9" +debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" deep-is@^0.1.3, deep-is@~0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -default-browser-id@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" - integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== - dependencies: - bplist-parser "^0.2.0" - untildify "^4.0.0" - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" - integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -defu@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.2.tgz#1217cba167410a1765ba93893c6dbac9ed9d9e5c" - integrity sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ== - -del@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" - integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== - dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" - delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -dequal@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" - integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-indent@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" - integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== - -detect-package-manager@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-package-manager/-/detect-package-manager-2.0.1.tgz#6b182e3ae5e1826752bfef1de9a7b828cffa50d8" - integrity sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A== - dependencies: - execa "^5.1.1" - -detect-port@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" - integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== - dependencies: - address "^1.0.1" - debug "4" - dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -3912,36 +1246,6 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -doctypes@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - integrity sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== - -dom-accessibility-api@^0.5.9: - version "0.5.16" - resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" - integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== - -dotenv-expand@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" - integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A== - -dotenv@^16.0.0: - version "16.0.3" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" - integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== - -duplexify@^3.5.0, duplexify@^3.6.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" - ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -3950,34 +1254,12 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -ejs@^3.1.8: - version "3.1.9" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" - integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== - dependencies: - jake "^10.8.5" - -electron-to-chromium@^1.4.284: - version "1.4.392" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.392.tgz#57ec91fa02393ab32e46df6925ef309642a44680" - integrity sha512-TXQOMW9tnhIms3jGy/lJctLjICOgyueZFJ1KUtm6DTQ+QpxX3p7ZBwB6syuZ9KBuT5S4XX7bgY1ECPgfxKUdOg== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: +end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -3991,56 +1273,7 @@ enquirer@^2.3.6: dependencies: ansi-colors "^4.1.1" -envinfo@^7.7.3: - version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-get-iterator@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" - integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - has-symbols "^1.0.3" - is-arguments "^1.1.1" - is-map "^2.0.2" - is-set "^2.0.2" - is-string "^1.0.7" - isarray "^2.0.5" - stop-iteration-iterator "^1.0.0" - -es-module-lexer@^0.9.3: - version "0.9.3" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" - integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== - -es6-object-assign@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" - integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== - -esbuild-plugin-alias@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz#45a86cb941e20e7c2bc68a2bea53562172494fcb" - integrity sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ== - -esbuild-register@^3.4.0: - version "3.4.2" - resolved "https://registry.yarnpkg.com/esbuild-register/-/esbuild-register-3.4.2.tgz#1e39ee0a77e8f320a9790e68c64c3559620b9175" - integrity sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q== - dependencies: - debug "^4.3.4" - -esbuild@^0.17.0, esbuild@^0.17.5: +esbuild@^0.17.5: version "0.17.18" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.18.tgz#f4f8eb6d77384d68cd71c53eb6601c7efe05e746" integrity sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== @@ -4068,16 +1301,6 @@ esbuild@^0.17.0, esbuild@^0.17.5: "@esbuild/win32-ia32" "0.17.18" "@esbuild/win32-x64" "0.17.18" -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -4100,16 +1323,6 @@ escodegen@^2.0.0: optionalDependencies: source-map "~0.6.1" -eslint-plugin-storybook@^0.6.12: - version "0.6.12" - resolved "https://registry.yarnpkg.com/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.12.tgz#7bdb3392bb03bebde40ed19accfd61246e9d6301" - integrity sha512-XbIvrq6hNVG6rpdBr+eBw63QhOMLpZneQVSooEDow8aQCWGCk/5vqtap1yxpVydNfSxi3S/3mBBRLQqKUqQRww== - dependencies: - "@storybook/csf" "^0.0.1" - "@typescript-eslint/utils" "^5.45.0" - requireindex "^1.1.0" - ts-dedent "^2.2.0" - eslint-plugin-vue@^9.13.0, eslint-plugin-vue@^9.6.0: version "9.13.0" resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.13.0.tgz#adb21448e65a7c1502af66103ff5f215632c5319" @@ -4228,7 +1441,7 @@ espree@^9.3.1, espree@^9.5.2: acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" -esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: +esprima@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== @@ -4267,11 +1480,6 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - eventemitter2@6.4.7: version "6.4.7" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" @@ -4292,21 +1500,6 @@ execa@4.1.0: signal-exit "^3.0.2" strip-final-newline "^2.0.0" -execa@^5.0.0, execa@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - executable@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" @@ -4314,44 +1507,7 @@ executable@^4.1.1: dependencies: pify "^2.2.0" -express@^4.17.3: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.11.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -extend@^3.0.0, extend@~3.0.2: +extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== @@ -4367,16 +1523,6 @@ extract-zip@2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" -extract-zip@^1.6.6: - version "1.7.0" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" - integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== - dependencies: - concat-stream "^1.6.2" - debug "^2.6.9" - mkdirp "^0.5.4" - yauzl "^2.10.0" - extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -4403,7 +1549,7 @@ fast-glob@^3.2.12, fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: +fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -4420,13 +1566,6 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -4434,11 +1573,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fetch-retry@^5.0.2: - version "5.0.5" - resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.5.tgz#61079b816b6651d88a022ebd45d51d83aa72b521" - integrity sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A== - figures@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -4453,21 +1587,6 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" -file-system-cache@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-2.1.1.tgz#25bb4019f7d62b458f4bed45452b638e41f6412b" - integrity sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg== - dependencies: - fs-extra "^11.1.0" - ramda "^0.28.0" - -filelist@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== - dependencies: - minimatch "^5.0.1" - fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -4475,29 +1594,7 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-cache-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - -find-cache-dir@^3.0.0, find-cache-dir@^3.3.2: +find-cache-dir@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== @@ -4506,14 +1603,7 @@ find-cache-dir@^3.0.0, find-cache-dir@^3.3.2: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: +find-up@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -4542,37 +1632,16 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== -flow-parser@0.*: - version "0.206.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef" - integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w== - follow-redirects@^1.15.0: version "1.15.2" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - form-data@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" @@ -4591,30 +1660,6 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@^11.1.0: - version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" @@ -4625,19 +1670,12 @@ fs-extra@^9.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^2.3.2, fsevents@~2.3.2: +fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -4647,32 +1685,7 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gauge@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" - integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.2" - console-control-strings "^1.0.0" - has-unicode "^2.0.1" - object-assign "^4.1.1" - signal-exit "^3.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.2" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: +get-intrinsic@^1.0.2: version "1.2.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== @@ -4681,21 +1694,6 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@ has "^1.0.3" has-symbols "^1.0.3" -get-npm-tarball-url@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz#67dff908d699e9e2182530ae6e939a93e5f8dfdb" - integrity sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-port@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" - integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== - get-stream@^5.0.0, get-stream@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" @@ -4703,11 +1701,6 @@ get-stream@^5.0.0, get-stream@^5.1.0: dependencies: pump "^3.0.0" -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - getos@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" @@ -4722,24 +1715,6 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -giget@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" - integrity sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A== - dependencies: - colorette "^2.0.19" - defu "^6.1.2" - https-proxy-agent "^5.0.1" - mri "^1.2.0" - node-fetch-native "^1.0.2" - pathe "^1.1.0" - tar "^6.1.13" - -github-slugger@^1.0.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" - integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== - glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -4754,19 +1729,7 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob-promise@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-6.0.2.tgz#7c7f2a223e3aaa8f7bd7ff5f24d0ab2352724b31" - integrity sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ== - dependencies: - "@types/glob" "^8.0.0" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: +glob@^7.1.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -4778,17 +1741,6 @@ glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - global-dirs@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" @@ -4796,11 +1748,6 @@ global-dirs@^3.0.0: dependencies: ini "2.0.0" -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - globals@^13.19.0: version "13.20.0" resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" @@ -4808,7 +1755,7 @@ globals@^13.19.0: dependencies: type-fest "^0.20.2" -globby@^11.0.1, globby@^11.0.2, globby@^11.1.0: +globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -4820,14 +1767,7 @@ globby@^11.0.1, globby@^11.0.2, globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: +graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -4837,69 +1777,16 @@ grapheme-splitter@^1.0.4: resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== -gunzip-maybe@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz#b913564ae3be0eda6f3de36464837a9cd94b98ac" - integrity sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw== - dependencies: - browserify-zlib "^0.1.4" - is-deflate "^1.0.0" - is-gzip "^1.0.0" - peek-stream "^1.1.0" - pumpify "^1.3.3" - through2 "^2.0.3" - -handlebars@^4.7.7: - version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -has-bigints@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-symbols@^1.0.2, has-symbols@^1.0.3: +has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -4907,32 +1794,11 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" -hash-sum@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" - integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== - he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - http-signature@~1.3.6: version "1.3.6" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9" @@ -4942,39 +1808,11 @@ http-signature@~1.3.6: jsprim "^2.0.2" sshpk "^1.14.1" -https-proxy-agent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" - integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== - dependencies: - agent-base "5" - debug "4" - -https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - human-signals@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" @@ -5011,7 +1849,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@2: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -5021,64 +1859,6 @@ ini@2.0.0: resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== -internal-slot@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== - dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" - side-channel "^1.0.4" - -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-absolute-url@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" - integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== - -is-arguments@^1.0.4, is-arguments@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" - integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - is-typed-array "^1.1.10" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -5086,19 +1866,6 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-callable@^1.1.3: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - is-ci@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -5106,38 +1873,6 @@ is-ci@^3.0.0: dependencies: ci-info "^3.2.0" -is-core-module@^2.11.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" - integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-deflate@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-deflate/-/is-deflate-1.0.0.tgz#c862901c3c161fb09dac7cdc7e784f80e98f2f14" - integrity sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ== - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-expression@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab" - integrity sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A== - dependencies: - acorn "^7.1.1" - object-assign "^4.1.1" - is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -5148,13 +1883,6 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -5162,11 +1890,6 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" -is-gzip@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" - integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== - is-installed-globally@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" @@ -5175,103 +1898,21 @@ is-installed-globally@~0.4.0: global-dirs "^3.0.0" is-path-inside "^3.0.2" -is-map@^2.0.1, is-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" - integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== - -is-nan@^1.2.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" - integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-promise@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - -is-regex@^1.0.3, is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-set@^2.0.1, is-set@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" - integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - is-stream@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-typed-array@^1.1.10, is-typed-array@^1.1.3: - version "1.1.10" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" @@ -5282,162 +1923,21 @@ is-unicode-supported@^0.1.0: resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== -is-weakmap@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" - integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== - -is-weakset@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" - integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -is-wsl@^2.1.1, is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -isomorphic-unfetch@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" - integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== - dependencies: - node-fetch "^2.6.1" - unfetch "^4.2.0" - isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== -istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^5.0.4: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -jake@^10.8.5: - version "10.8.5" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" - integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== - dependencies: - async "^3.2.3" - chalk "^4.0.2" - filelist "^1.0.1" - minimatch "^3.0.4" - -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== - dependencies: - "@jest/types" "^29.5.0" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-mock@^27.0.6: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" - integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== - dependencies: - "@jest/types" "^27.5.1" - "@types/node" "*" - -jest-regex-util@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" - integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== - -jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== - dependencies: - "@types/node" "*" - jest-util "^29.5.0" - merge-stream "^2.0.0" - supports-color "^8.0.0" - js-sdsl@^4.1.4: version "4.4.0" resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== -js-stringify@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - integrity sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -5450,46 +1950,6 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== -jscodeshift@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" - integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA== - dependencies: - "@babel/core" "^7.13.16" - "@babel/parser" "^7.13.16" - "@babel/plugin-proposal-class-properties" "^7.13.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" - "@babel/plugin-proposal-optional-chaining" "^7.13.12" - "@babel/plugin-transform-modules-commonjs" "^7.13.8" - "@babel/preset-flow" "^7.13.13" - "@babel/preset-typescript" "^7.13.0" - "@babel/register" "^7.13.16" - babel-core "^7.0.0-bridge.0" - chalk "^4.1.2" - flow-parser "0.*" - graceful-fs "^4.2.4" - micromatch "^4.0.4" - neo-async "^2.5.0" - node-dir "^0.1.17" - recast "^0.21.0" - temp "^0.8.4" - write-file-atomic "^2.3.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -5510,7 +1970,7 @@ json-stringify-safe@~5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.2, json5@^2.2.3: +json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -5545,43 +2005,11 @@ jsprim@^2.0.2: json-schema "0.4.0" verror "1.10.0" -jstransformer@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - integrity sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== - dependencies: - is-promise "^2.0.0" - promise "^7.0.1" - -kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== -lazy-universal-dotenv@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz#0b220c264e89a042a37181a4928cdd298af73422" - integrity sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg== - dependencies: - app-root-dir "^1.0.2" - dotenv "^16.0.0" - dotenv-expand "^10.0.0" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -5598,11 +2026,6 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - listr2@^3.8.3: version "3.14.0" resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" @@ -5617,14 +2040,6 @@ listr2@^3.8.3: through "^2.3.8" wrap-ansi "^7.0.0" -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - locate-path@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" @@ -5639,11 +2054,6 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" @@ -5654,7 +2064,7 @@ lodash.once@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== -lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21: +lodash@^4.17.20, lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -5677,20 +2087,6 @@ log-update@^4.0.0: slice-ansi "^4.0.0" wrap-ansi "^6.2.0" -loose-envify@^1.1.0, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -5698,23 +2094,6 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-cache@^8.0.3: - version "8.0.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-8.0.5.tgz#983fe337f3e176667f8e567cfcce7cb064ea214e" - integrity sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA== - -lz-string@^1.4.4: - version "1.5.0" - resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" - integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== - -magic-string@^0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz#e4a3413b4bab6d98d2becffd48b4a257effdbbf3" - integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== - dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" - magic-string@^0.30.0: version "0.30.0" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" @@ -5722,14 +2101,6 @@ magic-string@^0.30.0: dependencies: "@jridgewell/sourcemap-codec" "^1.4.13" -make-dir@^2.0.0, make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - make-dir@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" @@ -5737,52 +2108,6 @@ make-dir@^3.0.2: dependencies: semver "^6.0.0" -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-or-similar@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" - integrity sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg== - -markdown-to-jsx@^7.1.8: - version "7.2.0" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz#e7b46b65955f6a04d48a753acd55874a14bdda4b" - integrity sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg== - -mdast-util-definitions@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" - integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== - dependencies: - unist-util-visit "^2.0.0" - -mdast-util-to-string@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" - integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -memoizerific@^1.11.3: - version "1.11.3" - resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a" - integrity sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog== - dependencies: - map-or-similar "^1.5.0" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -5793,11 +2118,6 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" @@ -5806,47 +2126,30 @@ micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": +mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.25, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12, mime-types@~2.1.19: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mime@^2.0.3: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" - integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== - mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== - dependencies: - brace-expansion "^2.0.1" - minimatch@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" @@ -5854,69 +2157,17 @@ minimatch@^9.0.0: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8: +minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^0.5.4: - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -mkdirp@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mri@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" - integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== - ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.1.1: +ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -5926,7 +2177,7 @@ muggle-string@^0.2.2: resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.2.2.tgz#786aa53fea1652c61c6a59e1f839292b262bc72a" integrity sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg== -nanoid@^3.3.1, nanoid@^3.3.6: +nanoid@^3.3.6: version "3.3.6" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== @@ -5941,77 +2192,18 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.5.0, neo-async@^2.6.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -node-dir@^0.1.17: - version "0.1.17" - resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" - integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== - dependencies: - minimatch "^3.0.2" - -node-fetch-native@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.1.1.tgz#b8977dd7fe6c5599e417301ed3987bca787d3d6f" - integrity sha512-9VvspTSUp2Sxbl+9vbZTlFGq9lHwE8GDVVekxx6YsNd1YH59sb3Ba8v3Y3cD8PkLNcileGGcA21PFjVl0jzDaw== - -node-fetch@^2.6.1, node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -npm-run-path@^4.0.0, npm-run-path@^4.0.1: +npm-run-path@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" -npmlog@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" - integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== - dependencies: - are-we-there-yet "^2.0.0" - console-control-strings "^1.1.0" - gauge "^3.0.0" - set-blocking "^2.0.0" - nth-check@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" @@ -6019,51 +2211,11 @@ nth-check@^2.0.1: dependencies: boolbase "^1.0.0" -object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - object-inspect@^1.9.0: version "1.12.3" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-is@^1.0.1, object-is@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -6071,30 +2223,13 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0, onetime@^5.1.2: +onetime@^5.1.0: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" -open@^7.0.3: - version "7.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" - integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== - dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" - -open@^8.4.0: - version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" - integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - optionator@^0.8.1: version "0.8.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" @@ -6124,7 +2259,7 @@ ospath@^1.2.2: resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== -p-limit@^2.0.0, p-limit@^2.2.0: +p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== @@ -6138,13 +2273,6 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - p-locate@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" @@ -6171,11 +2299,6 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -pako@~0.2.0: - version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" - integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -6183,26 +2306,6 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -6218,35 +2321,16 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pathe@^1.0.0, pathe@^1.1.0: +pathe@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== -peek-stream@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" - integrity sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA== - dependencies: - buffer-from "^1.0.0" - duplexify "^3.5.0" - through2 "^2.0.3" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -6262,7 +2346,7 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -6272,23 +2356,6 @@ pify@^2.2.0: resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pirates@^4.0.4, pirates@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== - -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - pkg-dir@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" @@ -6296,20 +2363,6 @@ pkg-dir@^4.1.0: dependencies: find-up "^4.0.0" -pkg-dir@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" - integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== - dependencies: - find-up "^5.0.0" - -polished@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" - integrity sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ== - dependencies: - "@babel/runtime" "^7.17.8" - postcss-selector-parser@^6.0.9: version "6.0.12" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" @@ -6334,472 +2387,60 @@ prelude-ls@^1.2.1: prelude-ls@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -prettier@^2.8.0: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== - -pretty-bytes@^5.6.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" - integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== - -pretty-format@^27.0.2: - version "27.5.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -pretty-hrtime@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" - integrity sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== - -progress@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise@^7.0.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -prompts@^2.4.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -prop-types@^15.7.2: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -proxy-from-env@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" - integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== - -proxy-from-env@^1.0.0, proxy-from-env@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -psl@^1.1.28: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -pug-attrs@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41" - integrity sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA== - dependencies: - constantinople "^4.0.1" - js-stringify "^1.0.2" - pug-runtime "^3.0.0" - -pug-code-gen@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce" - integrity sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg== - dependencies: - constantinople "^4.0.1" - doctypes "^1.1.0" - js-stringify "^1.0.2" - pug-attrs "^3.0.0" - pug-error "^2.0.0" - pug-runtime "^3.0.0" - void-elements "^3.1.0" - with "^7.0.0" - -pug-error@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5" - integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ== - -pug-filters@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e" - integrity sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A== - dependencies: - constantinople "^4.0.1" - jstransformer "1.0.0" - pug-error "^2.0.0" - pug-walk "^2.0.0" - resolve "^1.15.1" - -pug-lexer@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5" - integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== - dependencies: - character-parser "^2.2.0" - is-expression "^4.0.0" - pug-error "^2.0.0" - -pug-linker@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708" - integrity sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw== - dependencies: - pug-error "^2.0.0" - pug-walk "^2.0.0" - -pug-load@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662" - integrity sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ== - dependencies: - object-assign "^4.1.1" - pug-walk "^2.0.0" - -pug-parser@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260" - integrity sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw== - dependencies: - pug-error "^2.0.0" - token-stream "1.0.0" - -pug-runtime@^3.0.0, pug-runtime@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7" - integrity sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg== - -pug-strip-comments@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e" - integrity sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ== - dependencies: - pug-error "^2.0.0" - -pug-walk@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe" - integrity sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ== - -pug@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/pug/-/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535" - integrity sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw== - dependencies: - pug-code-gen "^3.0.2" - pug-filters "^4.0.0" - pug-lexer "^5.0.1" - pug-linker "^4.0.0" - pug-load "^3.0.0" - pug-parser "^6.0.0" - pug-runtime "^3.0.1" - pug-strip-comments "^2.0.0" - -pump@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pumpify@^1.3.3: - version "1.5.1" - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== - dependencies: - duplexify "^3.6.0" - inherits "^2.0.3" - pump "^2.0.0" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -puppeteer-core@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-2.1.1.tgz#e9b3fbc1237b4f66e25999832229e9db3e0b90ed" - integrity sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w== - dependencies: - "@types/mime-types" "^2.1.0" - debug "^4.1.0" - extract-zip "^1.6.6" - https-proxy-agent "^4.0.0" - mime "^2.0.3" - mime-types "^2.1.25" - progress "^2.0.1" - proxy-from-env "^1.0.0" - rimraf "^2.6.1" - ws "^6.1.0" - -qs@6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -qs@^6.10.0: - version "6.11.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.1.tgz#6c29dff97f0c0060765911ba65cbc9764186109f" - integrity sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ== - dependencies: - side-channel "^1.0.4" - -qs@~6.10.3: - version "6.10.5" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" - integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== - dependencies: - side-channel "^1.0.4" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -ramda@^0.28.0: - version "0.28.0" - resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.28.0.tgz#acd785690100337e8b063cab3470019be427cc97" - integrity sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA== - -range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -react-colorful@^5.1.2: - version "5.6.1" - resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.6.1.tgz#7dc2aed2d7c72fac89694e834d179e32f3da563b" - integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== - -react-dom@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" - integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.0" - -react-inspector@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-6.0.1.tgz#1a37f0165d9df81ee804d63259eaaeabe841287d" - integrity sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg== - -react-is@^16.13.1: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -react@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -recast@^0.21.0: - version "0.21.5" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" - integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== - dependencies: - ast-types "0.15.2" - esprima "~4.0.0" - source-map "~0.6.1" - tslib "^2.0.1" - -recast@^0.23.1: - version "0.23.2" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.23.2.tgz#d3dda3e8f0a3366860d7508c00e34a338ac52b41" - integrity sha512-Qv6cPfVZyMOtPszK6PgW70pUgm7gPlFitAPf0Q69rlOA0zLw2XdDcNmPbVGYicFGT9O8I7TZ/0ryJD+6COvIPw== - dependencies: - assert "^2.0.0" - ast-types "^0.16.1" - esprima "~4.0.0" - source-map "~0.6.1" - tslib "^2.0.1" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== - dependencies: - resolve "^1.1.6" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -regenerate-unicode-properties@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" - integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== - dependencies: - regenerate "^1.4.2" +pretty-bytes@^5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== +proxy-from-env@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" + integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== -regenerator-runtime@^0.13.11: - version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== -regenerator-transform@^0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" - integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== - dependencies: - "@babel/runtime" "^7.8.4" +psl@^1.1.28: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== -regexp.prototype.flags@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" - integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - functions-have-names "^1.2.3" + end-of-stream "^1.1.0" + once "^1.3.1" -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" +punycode@^2.1.0, punycode@^2.1.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== +qs@~6.10.3: + version "6.10.5" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" + integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== dependencies: - jsesc "~0.5.0" + side-channel "^1.0.4" -remark-external-links@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345" - integrity sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA== - dependencies: - extend "^3.0.0" - is-absolute-url "^3.0.0" - mdast-util-definitions "^4.0.0" - space-separated-tokens "^1.0.0" - unist-util-visit "^2.0.0" +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -remark-slug@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.1.0.tgz#0503268d5f0c4ecb1f33315c00465ccdd97923ce" - integrity sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ== +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: - github-slugger "^1.0.0" - mdast-util-to-string "^1.0.0" - unist-util-visit "^2.0.0" + picomatch "^2.2.1" request-progress@^3.0.0: version "3.0.0" @@ -6808,7 +2449,7 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" -requireindex@^1.1.0, requireindex@^1.2.0: +requireindex@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== @@ -6818,20 +2459,6 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.15.1: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -6850,13 +2477,6 @@ rfdc@^1.3.0: resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== -rimraf@^2.6.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -6864,14 +2484,7 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - -"rollup@^2.25.0 || ^3.3.0", rollup@^3.21.0: +rollup@^3.21.0: version "3.21.6" resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" integrity sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== @@ -6892,39 +2505,17 @@ rxjs@^7.5.1: dependencies: tslib "^2.1.0" -safe-buffer@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" - integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@^5.1.2: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -scheduler@^0.23.0: - version "0.23.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" - integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== - dependencies: - loose-envify "^1.1.0" - -"semver@2 || 3 || 4 || 5", semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -6936,68 +2527,6 @@ semver@^7.3.2, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: dependencies: lru-cache "^6.0.0" -semver@~7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -serve-favicon@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" - integrity sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA== - dependencies: - etag "~1.8.1" - fresh "0.5.2" - ms "2.1.1" - parseurl "~1.3.2" - safe-buffer "5.1.1" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -7010,15 +2539,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shelljs@^0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -7028,23 +2548,11 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: +signal-exit@^3.0.2: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -simple-update-notifier@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" - integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg== - dependencies: - semver "~7.0.0" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -7073,55 +2581,11 @@ source-map-js@^1.0.2: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-support@^0.5.16: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -space-separated-tokens@^1.0.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" - integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.13" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" - integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - sshpk@^1.14.1: version "1.17.0" resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" @@ -7137,36 +2601,7 @@ sshpk@^1.14.1: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -stop-iteration-iterator@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" - integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== - dependencies: - internal-slot "^1.0.4" - -store2@^2.14.2: - version "2.14.2" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.14.2.tgz#56138d200f9fe5f582ad63bc2704dbc0e4a45068" - integrity sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w== - -storybook@^7.0.11: - version "7.0.11" - resolved "https://registry.yarnpkg.com/storybook/-/storybook-7.0.11.tgz#b13876720de6920d11ea7360e8de85c01b23a4ce" - integrity sha512-3MdQ90doYuGZpC052zyMnWLIK1GqyPrYN0sCkGyiNAO8wdxcuCG8jHK2s4b1I/yWLCGv03jCjoc6w9F5iRcrHw== - dependencies: - "@storybook/cli" "7.0.11" - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -7175,20 +2610,6 @@ stream-shift@^1.0.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -7201,18 +2622,11 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -7220,95 +2634,13 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.0.0, supports-color@^8.1.1: +supports-color@^8.1.1: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -synchronous-promise@^2.0.15: - version "2.0.17" - resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.17.tgz#38901319632f946c982152586f2caf8ddc25c032" - integrity sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g== - -tar-fs@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.1.13: - version "6.1.14" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.14.tgz#e87926bec1cfe7c9e783a77a79f3e81c1cfa3b66" - integrity sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -telejson@^7.0.3: - version "7.1.0" - resolved "https://registry.yarnpkg.com/telejson/-/telejson-7.1.0.tgz#1ef7a0dd57eeb52cde933126f61bcc296c170f52" - integrity sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA== - dependencies: - memoizerific "^1.11.3" - -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - -temp@^0.8.4: - version "0.8.4" - resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" - integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== - dependencies: - rimraf "~2.6.2" - -tempy@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tempy/-/tempy-1.0.1.tgz#30fe901fd869cfb36ee2bd999805aa72fbb035de" - integrity sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w== - dependencies: - del "^6.0.0" - is-stream "^2.0.0" - temp-dir "^2.0.0" - type-fest "^0.16.0" - unique-string "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -7319,14 +2651,6 @@ throttleit@^1.0.0: resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== -through2@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -7339,11 +2663,6 @@ tmp@~0.2.1: dependencies: rimraf "^3.0.0" -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -7356,16 +2675,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -token-stream@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4" - integrity sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg== - tough-cookie@~2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" @@ -7374,27 +2683,12 @@ tough-cookie@~2.5.0: psl "^1.1.28" punycode "^2.1.1" -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -ts-dedent@^2.0.0, ts-dedent@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" - integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== - -ts-map@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/ts-map/-/ts-map-1.0.3.tgz#1c4d218dec813d2103b7e04e4bcf348e1471c1ff" - integrity sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w== - tslib@^1.8.1: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: +tslib@^2.1.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== @@ -7432,16 +2726,6 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -type-fest@2.19.0, type-fest@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - -type-fest@^0.16.0: - version "0.16.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" - integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== - type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -7452,116 +2736,16 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - typescript@^5.0.0: version "5.0.4" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== -uglify-js@^3.1.4: - version "3.17.4" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" - integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== - -unfetch@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" - integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - -unique-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== - dependencies: - crypto-random-string "^2.0.0" - -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== - -unist-util-visit-parents@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" - integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - -unist-util-visit@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" - integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - unist-util-visit-parents "^3.0.0" - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -unplugin@^0.10.2: - version "0.10.2" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-0.10.2.tgz#0f7089c3666f592cc448d746e39e7f41e9afb01a" - integrity sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA== - dependencies: - acorn "^8.8.0" - chokidar "^3.5.3" - webpack-sources "^3.2.3" - webpack-virtual-modules "^0.4.5" - unplugin@^1.1.0: version "1.3.1" resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.3.1.tgz#7af993ba8695d17d61b0845718380caf6af5109f" @@ -7582,14 +2766,6 @@ upath@^2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.10: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -7597,57 +2773,16 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -use-resize-observer@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/use-resize-observer/-/use-resize-observer-9.1.0.tgz#14735235cf3268569c1ea468f8a90c5789fc5c6c" - integrity sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow== - dependencies: - "@juggle/resize-observer" "^3.3.1" - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: +util-deprecate@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@^0.12.0, util@^0.12.4: - version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" - integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - which-typed-array "^1.1.2" - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - uuid@^8.3.2: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== -uuid@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" - integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" @@ -7677,28 +2812,6 @@ vite@^4.2.0: optionalDependencies: fsevents "~2.3.2" -void-elements@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" - integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== - -vue-docgen-api@^4.40.0: - version "4.71.0" - resolved "https://registry.yarnpkg.com/vue-docgen-api/-/vue-docgen-api-4.71.0.tgz#c3d9031e0801c2315b7b11b91791b916f5bbb4fc" - integrity sha512-90uxlQ5VGJ42IxkZg8Tz9jb0eyFYaL+LyHhlNfkos66ODhGoKk22gA8XW1UjjSE7zMyQB7SvMBr6oaWEOorMJg== - dependencies: - "@babel/parser" "^7.21.4" - "@babel/types" "^7.21.4" - "@vue/compiler-dom" "^3.2.0" - "@vue/compiler-sfc" "^3.2.0" - ast-types "^0.16.1" - hash-sum "^2.0.0" - lru-cache "^8.0.3" - pug "^3.0.2" - recast "^0.23.1" - ts-map "^1.0.3" - vue-inbrowser-compiler-independent-utils "^4.69.0" - vue-eslint-parser@^9.1.1: version "9.2.1" resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz#b011a5520ea7c24cadc832c8552122faaccfd2e6" @@ -7735,11 +2848,6 @@ vue-i18n@9: "@intlify/vue-devtools" "9.2.2" "@vue/devtools-api" "^6.2.1" -vue-inbrowser-compiler-independent-utils@^4.69.0: - version "4.71.1" - resolved "https://registry.yarnpkg.com/vue-inbrowser-compiler-independent-utils/-/vue-inbrowser-compiler-independent-utils-4.71.1.tgz#dc6830b204f7cfdc30ffc4f31ba81b0c72c52136" - integrity sha512-K3wt3iVmNGaFEOUR4JIThQRWfqokxLfnPslD41FDZB2ajXp789+wCqJyGYlIFsvEQ2P61PInw6/ph5iiqg51gg== - vue-router@^4.0.0: version "4.2.0" resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.0.tgz#558f31978a21ce3accf5122ffdf2cec34a5d2517" @@ -7780,82 +2888,16 @@ vuetify@^3.0.0: resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.2.4.tgz#e31e23305b23d2a08ccbb845e295ff07d4c1a71f" integrity sha512-Lj3fXSTY/lLXpuzAM0n2B/9o7WKpHsqv2USanXyFVXbePsl9kx7XY4HPrMqTDEYRlY9AyMjF9ilTbkQ8IovPmQ== -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -watchpack@^2.2.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - webpack-sources@^3.2.3: version "3.2.3" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack-virtual-modules@^0.4.5: - version "0.4.6" - resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" - integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== - webpack-virtual-modules@^0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz#362f14738a56dae107937ab98ea7062e8bdd3b6c" integrity sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw== -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-collection@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" - integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== - dependencies: - is-map "^2.0.1" - is-set "^2.0.1" - is-weakmap "^2.0.1" - is-weakset "^2.0.1" - -which-typed-array@^1.1.2, which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -7863,40 +2905,11 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -wide-align@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -widest-line@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" - integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== - dependencies: - string-width "^4.0.0" - -with@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" - integrity sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w== - dependencies: - "@babel/parser" "^7.9.6" - "@babel/types" "^7.9.6" - assert-never "^1.2.1" - babel-walk "3.0.0-canary-5" - word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== - wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" @@ -7920,50 +2933,11 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -write-file-atomic@^2.3.0: - version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -write-file-atomic@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" - integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -ws@^6.1.0: - version "6.2.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" - integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== - dependencies: - async-limiter "~1.0.0" - -ws@^8.2.3: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - xml-name-validator@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== -xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" From dcca756ee69daec449a3e406483994db61096b2e Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 12:35:58 -0400 Subject: [PATCH 40/70] feat: vite handles vue-i18n bundling --- webapp/src/plugins/vuei18n.ts | 58 +++++------------------------------ 1 file changed, 7 insertions(+), 51 deletions(-) diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts index 69bfc1d1ee..d9dfef96c0 100644 --- a/webapp/src/plugins/vuei18n.ts +++ b/webapp/src/plugins/vuei18n.ts @@ -1,57 +1,13 @@ import { createI18n } from 'vue-i18n'; +import messages from '@intlify/unplugin-vue-i18n/messages'; -// import csCZ from '../locale/cs_CZ.json'; -// import deAT from '../locale/de_AT.json'; -// import deDE from '../locale/de_DE.json'; -// import elGR from '../locale/el_GR.json'; -// import enCA from '../locale/en_CA.json'; -// import enGB from '../locale/en_GB.json'; -import enUS from '../locale/en_US.json'; -// import esES from '../locale/es_ES.json'; -// import frFR from '../locale/fr_FR.json'; -// import hrHR from '../locale/hr_HR.json'; -// import huHU from '../locale/hu_HU.json'; -// import itIT from '../locale/it_IT.json'; -// import jaJP from '../locale/ja_JP.json'; -// import koKR from '../locale/ko_KR.json'; -// import nlNL from '../locale/nl_NL.json'; -// import plPL from '../locale/nl_NL.json'; -// import ptBR from '../locale/pt_BR.json'; -// import ruRU from '../locale/ru_RU.json'; -// import srRS from '../locale/sr_RS.json'; -// import trTR from '../locale/tr_TR.json'; -// import ukUA from '../locale/uk_UA.json'; -// import zhCN from '../locale/zh_CN.json'; +export const allLocales: string[] = ['en_GB, en_US']; -const i18n = createI18n({ +export const i18n = createI18n({ legacy: false, - locale: 'en_US', - fallbackLocale: 'en_US', globalInjection: true, - messages: { - // csCZ, - // deAT, - // deDE, - // elGR, - // enCA, - // enGB, - enUS, - // esES, - // frFR, - // hrHR, - // huHU, - // itIT, - // jaJP, - // koKR, - // nlNL, - // plPL, - // ptBR, - // ruRU, - // srRS, - // trTR, - // ukUA, - // zhCN, - }, -}); - + locale: 'en_us', + fallbackLocale: 'en_us', + messages: messages +}) export default i18n; From c82656be2841e21dad7131fa55bb8453d61c7205 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 12:45:24 -0400 Subject: [PATCH 41/70] chore: removing HTML from translation keys --- webapp/src/locale/cs_CZ.json | 10 +++++----- webapp/src/locale/de_AT.json | 10 +++++----- webapp/src/locale/de_DE.json | 10 +++++----- webapp/src/locale/el_GR.json | 12 ++++++------ webapp/src/locale/en_CA.json | 10 +++++----- webapp/src/locale/en_GB.json | 10 +++++----- webapp/src/locale/en_US.json | 10 +++++----- webapp/src/locale/es_ES.json | 10 +++++----- webapp/src/locale/fr_FR.json | 10 +++++----- webapp/src/locale/hr_HR.json | 10 +++++----- webapp/src/locale/hu_HU.json | 10 +++++----- webapp/src/locale/it_IT.json | 10 +++++----- webapp/src/locale/ja_JP.json | 10 +++++----- webapp/src/locale/ko_KR.json | 12 ++++++------ webapp/src/locale/nl_NL.json | 10 +++++----- webapp/src/locale/pl_PL.json | 10 +++++----- webapp/src/locale/pt_BR.json | 10 +++++----- webapp/src/locale/ru_RU.json | 10 +++++----- webapp/src/locale/sr_RS.json | 10 +++++----- webapp/src/locale/tr_TR.json | 10 +++++----- webapp/src/locale/uk_UA.json | 10 +++++----- webapp/src/locale/zh_CN.json | 10 +++++----- 22 files changed, 112 insertions(+), 112 deletions(-) diff --git a/webapp/src/locale/cs_CZ.json b/webapp/src/locale/cs_CZ.json index 9fc1665cea..52cd4f7eb3 100644 --- a/webapp/src/locale/cs_CZ.json +++ b/webapp/src/locale/cs_CZ.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Vypnuto", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/de_AT.json b/webapp/src/locale/de_AT.json index d05e3a23a1..bb8a1342f7 100644 --- a/webapp/src/locale/de_AT.json +++ b/webapp/src/locale/de_AT.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Deaktiviert", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/de_DE.json b/webapp/src/locale/de_DE.json index 3ac6693ea6..2bd6b641fc 100644 --- a/webapp/src/locale/de_DE.json +++ b/webapp/src/locale/de_DE.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Seite nicht gefunden.", "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", @@ -584,14 +584,14 @@ "Disabled": "Deaktiviert", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/el_GR.json b/webapp/src/locale/el_GR.json index 68d7f81fd8..1590b65d82 100644 --- a/webapp/src/locale/el_GR.json +++ b/webapp/src/locale/el_GR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must: 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must: Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first: Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -494,7 +494,7 @@ "View listener stats": "Προβολή στατιστικών των ακροατών", "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", "Columns": "", - "From {from} to {to}": "Από {από} σε {σε}", + "From {from} to {to}": "Από {from} σε {to}", "kbps": "Kbps", "yyyy-mm-dd": "εεεε-μμ-ηη", "hh:mm:ss.t": "ωω:λλ:δδ.t", @@ -584,14 +584,14 @@ "Disabled": "Απενεργοποιημένο", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/en_CA.json b/webapp/src/locale/en_CA.json index 8399b91aa1..e18c011c6e 100644 --- a/webapp/src/locale/en_CA.json +++ b/webapp/src/locale/en_CA.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", "There is no source connected to this input.": "There is no source connected to this input.", "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Disabled", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/en_GB.json b/webapp/src/locale/en_GB.json index 0ae64ab10e..57c15fea25 100644 --- a/webapp/src/locale/en_GB.json +++ b/webapp/src/locale/en_GB.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", "There is no source connected to this input.": "There is no source connected to this input.", "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Page not found.", "The requested action is not supported.": "The requested action is not supported.", "You do not have permission to access this resource.": "You do not have permission to access this resource.", @@ -584,14 +584,14 @@ "Disabled": "Disabled", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "Smart Block", "Webstream preview": "", diff --git a/webapp/src/locale/en_US.json b/webapp/src/locale/en_US.json index b2e7f5594c..130f6bb55c 100644 --- a/webapp/src/locale/en_US.json +++ b/webapp/src/locale/en_US.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", "There is no source connected to this input.": "There is no source connected to this input.", "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Disabled", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/es_ES.json b/webapp/src/locale/es_ES.json index e6128c3ff6..2d7dfc4e71 100644 --- a/webapp/src/locale/es_ES.json +++ b/webapp/src/locale/es_ES.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:

\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer
\n 2. Active la API pública LibreTime en Configuración -> Preferencias", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:

\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer 2. Active la API pública LibreTime en Configuración -> Preferencias", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", "Page not found.": "Página no encontrada.", "The requested action is not supported.": "No se admite la acción solicitada.", "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", @@ -584,14 +584,14 @@ "Disabled": "Desactivado", "Cancel upload": "Cancelar la carga", "Type": "Tipo", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", "Podcast settings saved": "Configuración del podcasts guardado", "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", "You haven't published any episodes!": "¡No has publicado ningún episodio!", "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", "Try it now": "Pruebalo ahora", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.

Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.

", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.", "Playlist preview": "Vista previa de la lista de reproducción", "Smart Block": "Bloque Inteligente", "Webstream preview": "Vista previa de la transmisión web", diff --git a/webapp/src/locale/fr_FR.json b/webapp/src/locale/fr_FR.json index 1075ae1a05..2fb62c6620 100644 --- a/webapp/src/locale/fr_FR.json +++ b/webapp/src/locale/fr_FR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :

\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux
\n 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :

\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :\n Activer l'API publique LibreTime dans Préférences -> Préférences", "Page not found.": "Page introuvable.", "The requested action is not supported.": "L'action requise n'est pas implémentée.", "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", @@ -584,14 +584,14 @@ "Disabled": "Désactivé", "Cancel upload": "Annuler le téléversement", "Type": "Type", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", "Podcast settings saved": "Préférences des podcasts enregistrées", "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", "Can't delete yourself!": "Impossible de vous supprimer vous-même !", "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", "Try it now": "Essayer maintenant", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.

Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.

", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.", "Playlist preview": "Aperçu de la liste de lecture", "Smart Block": "Bloc intelligent", "Webstream preview": "Aperçu du webstream", diff --git a/webapp/src/locale/hr_HR.json b/webapp/src/locale/hr_HR.json index 7acc48489c..f640ebeba1 100644 --- a/webapp/src/locale/hr_HR.json +++ b/webapp/src/locale/hr_HR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Stranica nije pronađena.", "The requested action is not supported.": "", "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", @@ -584,14 +584,14 @@ "Disabled": "Deaktivirano", "Cancel upload": "Prekini prijenos", "Type": "Vrsta", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "Postavke podcasta su spremljene", "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", "Can't delete yourself!": "Ne možeš sebe izbrisati!", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "Pregled playliste", "Smart Block": "Pametni blok", "Webstream preview": "Pregled internetskog prijenosa", diff --git a/webapp/src/locale/hu_HU.json b/webapp/src/locale/hu_HU.json index 7be6d9948d..c8409e93c2 100644 --- a/webapp/src/locale/hu_HU.json +++ b/webapp/src/locale/hu_HU.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", "Page not found.": "Oldal nem található.", "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", @@ -584,14 +584,14 @@ "Disabled": "Letiltva", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "Okosblokk", "Webstream preview": "", diff --git a/webapp/src/locale/it_IT.json b/webapp/src/locale/it_IT.json index d5a642f1ef..8f11a8fda2 100644 --- a/webapp/src/locale/it_IT.json +++ b/webapp/src/locale/it_IT.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Disattivato", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/ja_JP.json b/webapp/src/locale/ja_JP.json index 9676bef32b..4d62e5984c 100644 --- a/webapp/src/locale/ja_JP.json +++ b/webapp/src/locale/ja_JP.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", "You don't have permission to switch source.": "ソースを切り替える権限がありません。", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "無効", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/ko_KR.json b/webapp/src/locale/ko_KR.json index 59d02187a3..53b8a9f574 100644 --- a/webapp/src/locale/ko_KR.json +++ b/webapp/src/locale/ko_KR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", "There is no source connected to this input.": "연결된 소스가 없습니다", "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -494,7 +494,7 @@ "View listener stats": "청취자 통계 보기", "Show / hide columns": "컬럼 보이기/숨기기", "Columns": "", - "From {from} to {to}": " {from}부터 {to}까지", + "From {from} to {to}": "{from}부터 {to}까지", "kbps": "", "yyyy-mm-dd": "", "hh:mm:ss.t": "", @@ -584,14 +584,14 @@ "Disabled": "미사용", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/nl_NL.json b/webapp/src/locale/nl_NL.json index eb7ba785dc..2efe325153 100644 --- a/webapp/src/locale/nl_NL.json +++ b/webapp/src/locale/nl_NL.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Pagina niet gevonden", "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", @@ -584,14 +584,14 @@ "Disabled": "Uitgeschakeld", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/pl_PL.json b/webapp/src/locale/pl_PL.json index 41a4c1b33d..249b5210b4 100644 --- a/webapp/src/locale/pl_PL.json +++ b/webapp/src/locale/pl_PL.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Wyłączone", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/pt_BR.json b/webapp/src/locale/pt_BR.json index 4a364df781..75dbc2524a 100644 --- a/webapp/src/locale/pt_BR.json +++ b/webapp/src/locale/pt_BR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Página não encontrada.", "The requested action is not supported.": "A ação solicitada não é suportada.", "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", @@ -584,14 +584,14 @@ "Disabled": "Inativo", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/ru_RU.json b/webapp/src/locale/ru_RU.json index 9932c7b617..e05c236a2b 100644 --- a/webapp/src/locale/ru_RU.json +++ b/webapp/src/locale/ru_RU.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", "You don't have permission to switch source.": "У вас нет прав для переключения источника.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:

\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", "Page not found.": "Страница не найдена.", "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", @@ -584,14 +584,14 @@ "Disabled": "Отключено", "Cancel upload": "Отменить загрузку", "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "Настройки подкаста сохранены", "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", "Can't delete yourself!": "Вы не можете удалить себя!", "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", "Try it now": "Попробовать сейчас", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": " Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности. Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок. ", "Playlist preview": "Предпросмотр плейлиста", "Smart Block": "Смарт-блок", "Webstream preview": "Предпросмотр веб-потока", diff --git a/webapp/src/locale/sr_RS.json b/webapp/src/locale/sr_RS.json index 3715bf614a..f64a55728c 100644 --- a/webapp/src/locale/sr_RS.json +++ b/webapp/src/locale/sr_RS.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", "You don't have permission to switch source.": "Немаш дозволу за промену извора.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Онемогућено", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/tr_TR.json b/webapp/src/locale/tr_TR.json index e98f802261..51013fb94c 100644 --- a/webapp/src/locale/tr_TR.json +++ b/webapp/src/locale/tr_TR.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "", "There is no source connected to this input.": "", "You don't have permission to switch source.": "", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "Sayfa bulunamadı.", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "Devre dışı", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", diff --git a/webapp/src/locale/uk_UA.json b/webapp/src/locale/uk_UA.json index 3491f145c3..190f1d4715 100644 --- a/webapp/src/locale/uk_UA.json +++ b/webapp/src/locale/uk_UA.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", "There is no source connected to this input.": "До цього входу не підключено джерело.", "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:

\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки
\n 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:

\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", "Page not found.": "Сторінку не знайдено.", "The requested action is not supported.": "Задана дія не підтримується.", "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", @@ -584,14 +584,14 @@ "Disabled": "Вимкнено", "Cancel upload": "Скасувати завантаження", "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", "Podcast settings saved": "Налаштування подкасту збережено", "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", "Can't delete yourself!": "Неможливо видалити себе!", "You haven't published any episodes!": "Ви не опублікували жодного випуску!", "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", "Try it now": "Спробуй зараз", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "

Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.

Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.

", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.", "Playlist preview": "Попередній перегляд плейлиста", "Smart Block": "Смарт-блок", "Webstream preview": "Попередній перегляд веб-потоку", diff --git a/webapp/src/locale/zh_CN.json b/webapp/src/locale/zh_CN.json index b4d8b0ed9f..c47a277398 100644 --- a/webapp/src/locale/zh_CN.json +++ b/webapp/src/locale/zh_CN.json @@ -191,9 +191,9 @@ "You don't have permission to disconnect source.": "你没有断开输入源的权限。", "There is no source connected to this input.": "没有连接上的输入源。", "You don't have permission to switch source.": "你没有切换的权限。", - "To configure and use the embeddable player you must:

\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:

\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:

\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", "Page not found.": "", "The requested action is not supported.": "", "You do not have permission to access this resource.": "", @@ -584,14 +584,14 @@ "Disabled": "禁用", "Cancel upload": "", "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", "Podcast settings saved": "", "Are you sure you want to delete this user?": "", "Can't delete yourself!": "", "You haven't published any episodes!": "", "You can publish your uploaded content from the 'Tracks' view.": "", "Try it now": "", - "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", "Playlist preview": "", "Smart Block": "", "Webstream preview": "", From 1629d7461a093bdd70a8b26b65f8fa074019ce86 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 12:48:34 -0400 Subject: [PATCH 42/70] chore: adding node to types --- webapp/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json index 8bb3298e59..7ce9fe5840 100644 --- a/webapp/tsconfig.json +++ b/webapp/tsconfig.json @@ -13,7 +13,7 @@ "lib": ["ESNext", "DOM"], "skipLibCheck": true, "noEmit": true, - "types": ["@intlify/unplugin-vue-i18n/messages"], + "types": ["@intlify/unplugin-vue-i18n/messages", "node"], "paths": { "@/*": [ "src/*" From a2c36c244e9d403b2a4543f2efd63ea8bc1be8d4 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 13:35:23 -0400 Subject: [PATCH 43/70] feat: adding custom primary and secondary colors --- webapp/src/plugins/vuetify.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/plugins/vuetify.ts b/webapp/src/plugins/vuetify.ts index ee9d432528..8f584c5d36 100644 --- a/webapp/src/plugins/vuetify.ts +++ b/webapp/src/plugins/vuetify.ts @@ -17,8 +17,8 @@ export default createVuetify({ themes: { light: { colors: { - primary: '#1867C0', - secondary: '#5CBBF6', + primary: '#ee4b28', + secondary: '#b42c0e', }, }, }, From 3fee54f49b31d4225d51633edf7e625fa29b6d67 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 15:46:53 -0400 Subject: [PATCH 44/70] !broken feat:create locale picker --- webapp/src/components/HelloWorld.vue | 7 +++--- webapp/src/components/LocaleSelect.vue | 31 ++++++++++++++++++++++++++ webapp/src/plugins/index.ts | 2 +- webapp/src/plugins/vuei18n.ts | 30 +++++++++++++++++++++++-- webapp/vite.config.ts | 5 ++++- 5 files changed, 68 insertions(+), 7 deletions(-) create mode 100644 webapp/src/components/LocaleSelect.vue diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index 963da40d9a..0fafbd89b0 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -53,13 +53,14 @@ Community + + + diff --git a/webapp/src/components/LocaleSelect.vue b/webapp/src/components/LocaleSelect.vue new file mode 100644 index 0000000000..450a8f7039 --- /dev/null +++ b/webapp/src/components/LocaleSelect.vue @@ -0,0 +1,31 @@ + + + \ No newline at end of file diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index 634e69bb89..1e91d21601 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -8,7 +8,7 @@ // import { loadFonts } from './webfontloader'; import vuetify from './vuetify'; import router from '../router'; -import i18n from './vuei18n'; +import {i18n} from './vuei18n'; import '@fontsource/roboto' // Types diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts index d9dfef96c0..41f2dcc502 100644 --- a/webapp/src/plugins/vuei18n.ts +++ b/webapp/src/plugins/vuei18n.ts @@ -1,7 +1,7 @@ import { createI18n } from 'vue-i18n'; import messages from '@intlify/unplugin-vue-i18n/messages'; -export const allLocales: string[] = ['en_GB, en_US']; +export const allLocales: string[] = ['cs_CZ', 'de_AT', 'de_DE', 'el_GR', 'en_CA', 'en_GB', 'en_US', 'es_ES', 'fr_FR', 'hr_HR', 'hu_HU', 'it_IT', 'ja_JP', 'ko_KR', 'nl_NL', 'pl_PL', 'pt_BR', 'ru_RU', 'sr_RS', 'tr_TR', 'uk_UA', 'zh_CN']; export const i18n = createI18n({ legacy: false, @@ -10,4 +10,30 @@ export const i18n = createI18n({ fallbackLocale: 'en_us', messages: messages }) -export default i18n; + +export async function setLocale (locale: string) { + if (!i18n.global.availableLocales.includes(locale)) { + const messages = await loadLocale(locale); + + if (messages === undefined) { + return; + } + + i18n.global.setLocaleMessage(locale, messages) + } + + i18n.global.locale.value = locale; +} + +function loadLocale(locale: string) { + return fetch(`@/locale/${locale}.json`) + .then((response) => { + if (response.ok) { + return response.json(); + } + throw new Error('There was a problem importing the translation file') + }) + .catch((error) => { + console.log(error) + }); +} \ No newline at end of file diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 9074d22346..912a86e0ca 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -2,6 +2,7 @@ import vue from '@vitejs/plugin-vue' import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'; +import { splitVendorChunkPlugin } from 'vite' // Utilities import { defineConfig } from 'vite' @@ -19,7 +20,9 @@ export default defineConfig({ }), VueI18nPlugin({ include: [path.resolve(__dirname, './src/locale/*.json')], - })], + escapeHtml: true + }), + splitVendorChunkPlugin()], define: { 'process.env': {} }, resolve: { alias: { From 2fd9c3d8ad20768788b29190da018487d5ad1819 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 2 Jun 2023 19:43:35 -0400 Subject: [PATCH 45/70] fix: remove unused variable --- webapp/src/components/LocaleSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/LocaleSelect.vue b/webapp/src/components/LocaleSelect.vue index 450a8f7039..3a33c41752 100644 --- a/webapp/src/components/LocaleSelect.vue +++ b/webapp/src/components/LocaleSelect.vue @@ -7,7 +7,7 @@ - - + +
+ + diff --git a/webapp/package.json b/webapp/package.json index 09f34c38ae..1701158136 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -31,6 +31,7 @@ "eslint": "^8.0.0", "eslint-plugin-vue": "^9.13.0", "eslint-plugin-vuetify": "^2.0.0-beta.4", + "prettier": "2.8.8", "typescript": "^5.0.0", "vite": "^4.2.0", "vite-plugin-vuetify": "^1.0.0", diff --git a/webapp/src/App.vue b/webapp/src/App.vue index e2b793d269..4a88c8b05c 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -7,5 +7,5 @@ diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index f38db337b0..1ee9499f21 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -62,5 +62,5 @@ diff --git a/webapp/src/components/LocaleSelect.vue b/webapp/src/components/LocaleSelect.vue index 962dae1496..def05c085d 100644 --- a/webapp/src/components/LocaleSelect.vue +++ b/webapp/src/components/LocaleSelect.vue @@ -1,31 +1,31 @@ - \ No newline at end of file + }, +} + diff --git a/webapp/src/layouts/default/Default.vue b/webapp/src/layouts/default/Default.vue index 37cef6d4ad..f8c81a2f9b 100644 --- a/webapp/src/layouts/default/Default.vue +++ b/webapp/src/layouts/default/Default.vue @@ -5,5 +5,5 @@ diff --git a/webapp/src/main.ts b/webapp/src/main.ts index 62278a32f3..dd928bccbf 100644 --- a/webapp/src/main.ts +++ b/webapp/src/main.ts @@ -5,16 +5,16 @@ */ // Components -import App from './App.vue'; +import App from "./App.vue" // Composables -import { createApp } from 'vue'; +import { createApp } from "vue" // Plugins -import { registerPlugins } from '@/plugins'; +import { registerPlugins } from "@/plugins" -const app = createApp(App); +const app = createApp(App) -registerPlugins(app); +registerPlugins(app) -app.mount('#app'); +app.mount("#app") diff --git a/webapp/src/plugins/index.ts b/webapp/src/plugins/index.ts index 1e91d21601..dfed4d1e43 100644 --- a/webapp/src/plugins/index.ts +++ b/webapp/src/plugins/index.ts @@ -6,15 +6,15 @@ // Plugins // import { loadFonts } from './webfontloader'; -import vuetify from './vuetify'; -import router from '../router'; -import {i18n} from './vuei18n'; -import '@fontsource/roboto' +import vuetify from "./vuetify" +import router from "../router" +import { i18n } from "./vuei18n" +import "@fontsource/roboto" // Types -import type { App } from 'vue'; +import type { App } from "vue" export function registerPlugins(app: App) { - // loadFonts(); - app.use(vuetify).use(router).use(i18n); + // loadFonts(); + app.use(vuetify).use(router).use(i18n) } diff --git a/webapp/src/plugins/vuei18n.ts b/webapp/src/plugins/vuei18n.ts index 20708265e8..b25bd54e9e 100644 --- a/webapp/src/plugins/vuei18n.ts +++ b/webapp/src/plugins/vuei18n.ts @@ -1,26 +1,49 @@ -import { createI18n } from 'vue-i18n'; +import { createI18n } from "vue-i18n" // import messages from '@intlify/unplugin-vue-i18n/messages'; -import en_US from '@/locale/en_US.json' +import en_US from "@/locale/en_US.json" -export const allLocales: string[] = ['cs_CZ', 'de_AT', 'de_DE', 'el_GR', 'en_CA', 'en_GB', 'en_US', 'es_ES', 'fr_FR', 'hr_HR', 'hu_HU', 'it_IT', 'ja_JP', 'ko_KR', 'nl_NL', 'pl_PL', 'pt_BR', 'ru_RU', 'sr_RS', 'tr_TR', 'uk_UA', 'zh_CN']; +export const allLocales: string[] = [ + "cs_CZ", + "de_AT", + "de_DE", + "el_GR", + "en_CA", + "en_GB", + "en_US", + "es_ES", + "fr_FR", + "hr_HR", + "hu_HU", + "it_IT", + "ja_JP", + "ko_KR", + "nl_NL", + "pl_PL", + "pt_BR", + "ru_RU", + "sr_RS", + "tr_TR", + "uk_UA", + "zh_CN", +] export const i18n = createI18n({ - legacy: false, - globalInjection: true, - locale: 'en_US', - messages: { en_US } + legacy: false, + globalInjection: true, + locale: "en_US", + messages: { en_US }, }) -export async function setLocale (locale: any) { - if (!i18n.global.availableLocales.includes(locale)) { - const messages = await import(`@/locale/${locale}.json`) +export async function setLocale(locale: any) { + if (!i18n.global.availableLocales.includes(locale)) { + const messages = await import(`@/locale/${locale}.json`) - if (messages === undefined) { - return; - } + if (messages === undefined) { + return + } - i18n.global.setLocaleMessage(locale, messages) - } + i18n.global.setLocaleMessage(locale, messages) + } - i18n.global.locale.value = locale; + i18n.global.locale.value = locale } diff --git a/webapp/src/plugins/vuetify.ts b/webapp/src/plugins/vuetify.ts index 8f584c5d36..9a3ee2c61e 100644 --- a/webapp/src/plugins/vuetify.ts +++ b/webapp/src/plugins/vuetify.ts @@ -5,22 +5,22 @@ */ // Styles -import '@mdi/font/css/materialdesignicons.css'; -import 'vuetify/styles'; +import "@mdi/font/css/materialdesignicons.css" +import "vuetify/styles" // Composables -import { createVuetify } from 'vuetify'; +import { createVuetify } from "vuetify" // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides export default createVuetify({ - theme: { - themes: { - light: { - colors: { - primary: '#ee4b28', - secondary: '#b42c0e', + theme: { + themes: { + light: { + colors: { + primary: "#ee4b28", + secondary: "#b42c0e", + }, + }, }, - }, }, - }, -}); +}) diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index 69334f70da..fee519855d 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -1,23 +1,27 @@ // Composables -import { createRouter, createWebHistory } from 'vue-router'; +import { createRouter, createWebHistory } from "vue-router" -const routes = [{ - path: '/', - component: () => import('@/layouts/default/Default.vue'), - children: [{ - path: '', - name: 'Home', - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => - import(/* webpackChunkName: "home" */ '@/views/Home.vue'), - },], -},]; +const routes = [ + { + path: "/", + component: () => import("@/layouts/default/Default.vue"), + children: [ + { + path: "", + name: "Home", + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => + import(/* webpackChunkName: "home" */ "@/views/Home.vue"), + }, + ], + }, +] const router = createRouter({ - history: createWebHistory(process.env.BASE_URL), - routes, -}); + history: createWebHistory(process.env.BASE_URL), + routes, +}) -export default router; +export default router diff --git a/webapp/src/views/Home.vue b/webapp/src/views/Home.vue index e90d0318ba..183eb092d8 100644 --- a/webapp/src/views/Home.vue +++ b/webapp/src/views/Home.vue @@ -3,5 +3,5 @@ diff --git a/webapp/src/vite-env.d.ts b/webapp/src/vite-env.d.ts index 899b0bc987..2b9976afb2 100644 --- a/webapp/src/vite-env.d.ts +++ b/webapp/src/vite-env.d.ts @@ -1,7 +1,7 @@ /// declare module "*.vue" { - import type { DefineComponent } from "vue"; - const component: DefineComponent<{}, {}, any>; - export default component; + import type { DefineComponent } from "vue" + const component: DefineComponent<{}, {}, any> + export default component } diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json index 7ce9fe5840..5dcfe0b5c9 100644 --- a/webapp/tsconfig.json +++ b/webapp/tsconfig.json @@ -1,26 +1,24 @@ { - "compilerOptions": { - "baseUrl": ".", - "target": "ESNext", - "useDefineForClassFields": true, - "module": "ESNext", - "moduleResolution": "Node", - "strict": true, - "jsx": "preserve", - "resolveJsonModule": true, - "isolatedModules": true, - "esModuleInterop": true, - "lib": ["ESNext", "DOM"], - "skipLibCheck": true, - "noEmit": true, - "types": ["@intlify/unplugin-vue-i18n/messages", "node"], - "paths": { - "@/*": [ - "src/*" - ] - } - }, - "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], - "references": [{ "path": "./tsconfig.node.json" }], - "exclude": ["node_modules"] + "compilerOptions": { + "baseUrl": ".", + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "Node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ESNext", "DOM"], + "skipLibCheck": true, + "noEmit": true, + "types": ["@intlify/unplugin-vue-i18n/messages", "node"], + "paths": { + "@/*": ["src/*"] + } + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }], + "exclude": ["node_modules"] } diff --git a/webapp/tsconfig.node.json b/webapp/tsconfig.node.json index 9d31e2aed9..13b35d0ba8 100644 --- a/webapp/tsconfig.node.json +++ b/webapp/tsconfig.node.json @@ -1,9 +1,9 @@ { - "compilerOptions": { - "composite": true, - "module": "ESNext", - "moduleResolution": "Node", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] } diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 3d655b1b02..911f51e3b5 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -1,36 +1,32 @@ // Plugins -import vue from '@vitejs/plugin-vue' -import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' -// import VueI18n from '@intlify/unplugin-vue-i18n/vite'; -// import { splitVendorChunkPlugin } from 'vite' +import vue from "@vitejs/plugin-vue" +import vuetify, { transformAssetUrls } from "vite-plugin-vuetify" +// import VueI18n from "@intlify/unplugin-vue-i18n/vite"; +// import { splitVendorChunkPlugin } from "vite" // Utilities -import { defineConfig } from 'vite' -import { fileURLToPath, URL } from 'node:url' -// import path from 'path' +import { defineConfig } from "vite" +import { fileURLToPath, URL } from "node:url" +// import path from "path" // https://vitejs.dev/config/ export default defineConfig({ - plugins: [vue({ - template: { transformAssetUrls } - }), - // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin - vuetify({ - autoImport: true, - })], - resolve: { - alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + ], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], + }, + server: { + port: 8080, }, - extensions: ['.js', - '.json', - '.jsx', - '.mjs', - '.ts', - '.tsx', - '.vue',], - }, - server: { - port: 8080, - }, }) diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 867ff1c4ed..e8d93b36df 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2367,6 +2367,11 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== +prettier@2.8.8: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + pretty-bytes@^5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" From 9efcb5a75c5feff5fde2f7dcb40231745bbba547 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:08:48 -0400 Subject: [PATCH 52/70] chore: run prettier on translations --- webapp/.prettierignore | 2 +- webapp/src/locale/cs_CZ.json | 1878 +++++++++++++++++----------------- webapp/src/locale/de_AT.json | 1878 +++++++++++++++++----------------- webapp/src/locale/de_DE.json | 1878 +++++++++++++++++----------------- webapp/src/locale/el_GR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/en_CA.json | 1878 +++++++++++++++++----------------- webapp/src/locale/en_GB.json | 1878 +++++++++++++++++----------------- webapp/src/locale/en_US.json | 1878 +++++++++++++++++----------------- webapp/src/locale/es_ES.json | 1878 +++++++++++++++++----------------- webapp/src/locale/fr_FR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/hr_HR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/hu_HU.json | 1878 +++++++++++++++++----------------- webapp/src/locale/it_IT.json | 1878 +++++++++++++++++----------------- webapp/src/locale/ja_JP.json | 1878 +++++++++++++++++----------------- webapp/src/locale/ko_KR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/nl_NL.json | 1878 +++++++++++++++++----------------- webapp/src/locale/pl_PL.json | 1878 +++++++++++++++++----------------- webapp/src/locale/pt_BR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/ru_RU.json | 1878 +++++++++++++++++----------------- webapp/src/locale/sr_RS.json | 1878 +++++++++++++++++----------------- webapp/src/locale/tr_TR.json | 1878 +++++++++++++++++----------------- webapp/src/locale/uk_UA.json | 1878 +++++++++++++++++----------------- webapp/src/locale/zh_CN.json | 1878 +++++++++++++++++----------------- 23 files changed, 20659 insertions(+), 20659 deletions(-) diff --git a/webapp/.prettierignore b/webapp/.prettierignore index 1c9c4d0d41..0f15ad2baa 100644 --- a/webapp/.prettierignore +++ b/webapp/.prettierignore @@ -1,5 +1,5 @@ dist node_modules public -src/locale +// src/locale package.json \ No newline at end of file diff --git a/webapp/src/locale/cs_CZ.json b/webapp/src/locale/cs_CZ.json index 52cd4f7eb3..3a64ae7b88 100644 --- a/webapp/src/locale/cs_CZ.json +++ b/webapp/src/locale/cs_CZ.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Rok %s musí být v rozmezí 1753 - 9999", - "%s-%s-%s is not a valid date": "%s - %s - %s není platné datum", - "%s:%s:%s is not a valid time": "%s : %s : %s není platný čas", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalendář", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Uživatelé", - "Track Types": "", - "Streams": "Streamy", - "Status": "Stav", - "Analytics": "", - "Playout History": "Historie odvysílaného", - "History Templates": "Historie nastavení", - "Listener Stats": "Statistiky poslechovost", - "Show Listener Stats": "", - "Help": "Nápověda", - "Getting Started": "Začínáme", - "User Manual": "Návod k obsluze", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Nemáte udělen přístup k tomuto zdroji.", - "You are not allowed to access this resource. ": "Nemáte udělen přístup k tomuto zdroji. ", - "File does not exist in %s": "Soubor neexistuje v %s", - "Bad request. no 'mode' parameter passed.": "Špatný požadavek. Žádný 'mode' parametr neprošel.", - "Bad request. 'mode' parameter is invalid": "Špatný požadavek. 'Mode' parametr je neplatný.", - "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", - "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", - "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nenalezen", - "Something went wrong.": "Něco je špatně.", - "Preview": "Náhled", - "Add to Playlist": "Přidat do Playlistu", - "Add to Smart Block": "Přidat do chytrého bloku", - "Delete": "Smazat", - "Edit...": "", - "Download": "Stáhnout", - "Duplicate Playlist": "Duplikátní Playlist", - "Duplicate Smartblock": "", - "No action available": "Žádná akce není k dispozici", - "You don't have permission to delete selected items.": "Nemáte oprávnění odstranit vybrané položky.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopie %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka.", - "Audio Player": "Audio přehrávač", - "Something went wrong!": "", - "Recording:": "Nahrávání:", - "Master Stream": "Mastr stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nic není naplánované", - "Current Show:": "Stávající vysílání:", - "Current": "Stávající", - "You are running the latest version": "Používáte nejnovější verzi", - "New version available: ": "Nová verze k dispozici: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Přidat do aktuálního playlistu", - "Add to current smart block": "Přidat do aktuálního chytrého bloku", - "Adding 1 Item": "Přidat 1 položku", - "Adding %s Items": "Přidat %s položek", - "You can only add tracks to smart blocks.": "Můžete přidat skladby pouze do chytrých bloků.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů.", - "Please select a cursor position on timeline.": "Prosím vyberte si pozici kurzoru na časové ose.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Přidat", - "New": "", - "Edit": "Upravit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Odstranit", - "Edit Metadata": "Upravit metadata", - "Add to selected show": "Přidat k vybranému vysílání", - "Select": "Vyberte", - "Select this page": "Vyberte tuto stránku", - "Deselect this page": "Zrušte označení této stránky", - "Deselect all": "Zrušte zaškrtnutí všech", - "Are you sure you want to delete the selected item(s)?": "Jste si jisti, že chcete smazat vybranou položku(y)?", - "Scheduled": "Naplánováno", - "Tracks": "", - "Playlist": "", - "Title": "Název", - "Creator": "Tvůrce", - "Album": "Album", - "Bit Rate": "Rychlost přenosu", - "BPM": "BPM", - "Composer": "Skladatel", - "Conductor": "Dirigent", - "Copyright": "Autorská práva", - "Encoded By": "Zakódováno", - "Genre": "Žánr", - "ISRC": "ISRC", - "Label": "Označení ", - "Language": "Jazyk", - "Last Modified": "Naposledy změněno", - "Last Played": "Naposledy vysíláno", - "Length": "Délka", - "Mime": "Mime", - "Mood": "Nálada", - "Owner": "Vlastník", - "Replay Gain": "Opakovat Gain", - "Sample Rate": "Vzorkovací rychlost", - "Track Number": "Číslo stopy", - "Uploaded": "Nahráno", - "Website": "Internetové stránky", - "Year": "Rok ", - "Loading...": "Nahrávání ...", - "All": "Vše", - "Files": "Soubory", - "Playlists": "Playlisty", - "Smart Blocks": "Chytré bloky", - "Web Streams": "Webové streamy", - "Unknown type: ": "Neznámý typ: ", - "Are you sure you want to delete the selected item?": "Jste si jisti, že chcete smazat vybranou položku?", - "Uploading in progress...": "Probíhá nahrávání...", - "Retrieving data from the server...": "Získávání dat ze serveru...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Chybný kód: ", - "Error msg: ": "Chyba msg: ", - "Input must be a positive number": "Vstup musí být kladné číslo", - "Input must be a number": "Vstup musí být číslo", - "Input must be in the format: yyyy-mm-dd": "Vstup musí být ve formátu: rrrr-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Vstup musí být ve formátu: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?", - "Open Media Builder": "Otevřít Media Builder", - "please put in a time '00:00:00 (.0)'": "prosím nastavte čas '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: ", - "Dynamic block is not previewable": "Dynamický blok není možno ukázat předem", - "Limit to: ": "Omezeno na: ", - "Playlist saved": "Playlist uložen", - "Playlist shuffled": "Playlist zamíchán", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'.", - "Listener Count on %s: %s": "Počítat posluchače %s : %s", - "Remind me in 1 week": "Připomenout za 1 týden", - "Remind me never": "Nikdy nepřipomínat", - "Yes, help Airtime": "Ano, pomoc Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Obrázek musí být buď jpg, jpeg, png nebo gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Chytré bloky promíchány", - "Smart block generated and criteria saved": "Chytrý blok generován a kritéria uložena", - "Smart block saved": "Chytrý blok uložen", - "Processing...": "Zpracovává se...", - "Select modifier": "Vyberte modifikátor", - "contains": "obsahuje", - "does not contain": "neobsahuje", - "is": "je", - "is not": "není", - "starts with": "začíná s", - "ends with": "končí s", - "is greater than": "je větší než", - "is less than": "je menší než", - "is in the range": "se pohybuje v rozmezí", - "Generate": "Generovat", - "Choose Storage Folder": "Vyberte složku k uložení", - "Choose Folder to Watch": "Vyberte složku ke sledování", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Jste si jisti, že chcete změnit složku úložiště ?\nTímto odstraníte soubry z vaší Airtime knihovny!", - "Manage Media Folders": "Správa složek médií", - "Are you sure you want to remove the watched folder?": "Jste si jisti, že chcete odstranit sledovanou složku?", - "This path is currently not accessible.": "Tato cesta není v současné době dostupná.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány.", - "Connected to the streaming server": "Připojeno k streamovacímu serveru", - "The stream is disabled": "Stream je vypnut", - "Getting information from the server...": "Získávání informací ze serveru...", - "Can not connect to the streaming server": "Nelze se připojit k streamovacímu serveru", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti.", - "Warning: You cannot change this field while the show is currently playing": "Upozornění: Nelze změnit toto pole v průběhu vysílání programu", - "No result found": "Žádný výsledek nenalezen", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit.", - "Specify custom authentication which will work only for this show.": "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání.", - "The show instance doesn't exist anymore!": "Ukázka vysílání již neexistuje!", - "Warning: Shows cannot be re-linked": "Varování: Vysílání nemohou být znovu linkována.", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. ", - "Show": "Vysílání", - "Show is empty": "Vysílání je prázdné", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Získávání dat ze serveru ...", - "This show has no scheduled content.": "Toto vysílání nemá naplánovaný obsah.", - "This show is not completely filled with content.": "Toto vysílání není zcela vyplněno.", - "January": "Leden", - "February": "Únor", - "March": "Březen", - "April": "Duben", - "May": "Květen", - "June": "Červen", - "July": "Červenec", - "August": "Srpen", - "September": "Září", - "October": "Říjen", - "November": "Listopad", - "December": "Prosinec", - "Jan": "Leden", - "Feb": "Únor", - "Mar": "Březen", - "Apr": "Duben", - "Jun": "Červen", - "Jul": "Červenec", - "Aug": "Srpen", - "Sep": "Září", - "Oct": "Říjen", - "Nov": "Listopad", - "Dec": "Prosinec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Neděle", - "Monday": "Pondělí", - "Tuesday": "Úterý", - "Wednesday": "Středa", - "Thursday": "Čtvrtek", - "Friday": "Pátek", - "Saturday": "Sobota", - "Sun": "Ne", - "Mon": "Po", - "Tue": "Út", - "Wed": "St", - "Thu": "Čt", - "Fri": "Pá", - "Sat": "So", - "Shows longer than their scheduled time will be cut off by a following show.": "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání.", - "Cancel Current Show?": "Zrušit aktuální vysílání?", - "Stop recording current show?": "Zastavit nahrávání aktuálního vysílání?", - "Ok": "OK", - "Contents of Show": "Obsah vysílání", - "Remove all content?": "Odstranit veškerý obsah?", - "Delete selected item(s)?": "Odstranit vybranou položku(y)?", - "Start": "Začátek", - "End": "Konec", - "Duration": "Trvání", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue in", - "Cue Out": "Cue out", - "Fade In": "Pozvolné zesilování ", - "Fade Out": "Pozvolné zeslabování", - "Show Empty": "Vysílání prázdné", - "Recording From Line In": "Nahrávání z Line In", - "Track preview": "Náhled stopy", - "Cannot schedule outside a show.": "Nelze naplánovat mimo vysílání.", - "Moving 1 Item": "Posunutí 1 položky", - "Moving %s Items": "Posunutí %s položek", - "Save": "Uložit", - "Cancel": "Zrušit", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API", - "Select all": "Vybrat vše", - "Select none": "Nic nevybrat", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Odebrat vybrané naplánované položky", - "Jump to the current playing track": "Přejít na aktuálně přehrávanou skladbu", - "Jump to Current": "", - "Cancel current show": "Zrušit aktuální vysílání", - "Open library to add or remove content": "Otevřít knihovnu pro přidání nebo odebrání obsahu", - "Add / Remove Content": "Přidat / Odebrat obsah", - "in use": "používá se", - "Disk": "Disk", - "Look in": "Podívat se", - "Open": "Otevřít", - "Admin": "Administrátor", - "DJ": "DJ", - "Program Manager": "Program manager", - "Guest": "Host", - "Guests can do the following:": "Hosté mohou dělat následující:", - "View schedule": "Zobrazit plán", - "View show content": "Zobrazit obsah vysílání", - "DJs can do the following:": "DJ může dělat následující:", - "Manage assigned show content": "Spravovat přidělený obsah vysílání", - "Import media files": "Import media souborů", - "Create playlists, smart blocks, and webstreams": "Vytvořit playlisty, smart bloky a webstreamy", - "Manage their own library content": "Spravovat obsah vlastní knihovny", - "Program Managers can do the following:": "", - "View and manage show content": "Zobrazit a spravovat obsah vysílání", - "Schedule shows": "Plán ukazuje", - "Manage all library content": "Spravovat celý obsah knihovny", - "Admins can do the following:": "Správci mohou provést následující:", - "Manage preferences": "Správa předvoleb", - "Manage users": "Správa uživatelů", - "Manage watched folders": "Správa sledovaných složek", - "Send support feedback": "Odeslat zpětnou vazbu", - "View system status": "Zobrazit stav systému", - "Access playout history": "Přístup playout historii", - "View listener stats": "Zobrazit posluchače statistiky", - "Show / hide columns": "Zobrazit / skrýt sloupce", - "Columns": "", - "From {from} to {to}": "Z {z} do {do}", - "kbps": "kbps", - "yyyy-mm-dd": "rrrr-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Ne", - "Mo": "Po", - "Tu": "Út", - "We": "St", - "Th": "Čt", - "Fr": "Pá", - "Sa": "So", - "Close": "Zavřít", - "Hour": "Hodina", - "Minute": "Minuta", - "Done": "Hotovo", - "Select files": "Vyberte soubory", - "Add files to the upload queue and click the start button.": "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start.", - "Filename": "", - "Size": "", - "Add Files": "Přidat soubory.", - "Stop Upload": "Zastavit Nahrávání", - "Start upload": "Začít nahrávat", - "Start Upload": "", - "Add files": "Přidat soubory", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Nahráno %d / %d souborů", - "N/A": "Nedostupné", - "Drag files here.": "Soubory přetáhněte zde.", - "File extension error.": "Chybná přípona souboru", - "File size error.": "Chybná velikost souboru.", - "File count error.": "Chybný součet souborů.", - "Init error.": "Chyba Init.", - "HTTP Error.": "Chyba HTTP.", - "Security error.": "Chyba zabezpečení.", - "Generic error.": "Obecná chyba. ", - "IO error.": "CHyba IO.", - "File: %s": "Soubor: %s", - "%d files queued": "%d souborů ve frontě", - "File: %f, size: %s, max file size: %m": "Soubor: %f , velikost: %s , max. velikost souboru:% m", - "Upload URL might be wrong or doesn't exist": "Přidané URL může být špatné nebo neexistuje", - "Error: File too large: ": "Chyba: Soubor je příliš velký: ", - "Error: Invalid file extension: ": "Chyba: Neplatná přípona souboru: ", - "Set Default": "Nastavit jako default", - "Create Entry": "Vytvořit vstup", - "Edit History Record": "Editovat historii nahrávky", - "No Show": "Žádné vysílání", - "Copied %s row%s to the clipboard": "Kopírovat %s řádků %s do schránky", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Popis", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Povoleno", - "Disabled": "Vypnuto", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu.", - "You are viewing an older version of %s": "Prohlížíte si starší verzi %s", - "You cannot add tracks to dynamic blocks.": "Nemůžete přidávat skladby do dynamických bloků.", - "You don't have permission to delete selected %s(s).": "Nemáte oprávnění odstranit vybrané %s (s).", - "You can only add tracks to smart block.": "Můžete pouze přidat skladby do chytrého bloku.", - "Untitled Playlist": "Playlist bez názvu", - "Untitled Smart Block": "Chytrý block bez názvu", - "Unknown Playlist": "Neznámý Playlist", - "Preferences updated.": "Preference aktualizovány.", - "Stream Setting Updated.": "Nastavení streamu aktualizováno.", - "path should be specified": "cesta by měla být specifikována", - "Problem with Liquidsoap...": "Problém s Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Znovu spustit vysílaní %s od %s na %s", - "Select cursor": "Vybrat kurzor", - "Remove cursor": "Odstranit kurzor", - "show does not exist": "vysílání neexistuje", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Uživatel byl úspěšně přidán!", - "User updated successfully!": "Uživatel byl úspěšně aktualizován!", - "Settings updated successfully!": "Nastavení úspěšně aktualizováno!", - "Untitled Webstream": "Webstream bez názvu", - "Webstream saved.": "Webstream uložen.", - "Invalid form values.": "Neplatná forma hodnot.", - "Invalid character entered": "Zadán neplatný znak ", - "Day must be specified": "Den musí být zadán", - "Time must be specified": "Čas musí být zadán", - "Must wait at least 1 hour to rebroadcast": "Musíte počkat alespoň 1 hodinu před dalším vysíláním", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "Použij %s ověření pravosti:", - "Use Custom Authentication:": "Použít ověření uživatele:", - "Custom Username": "Uživatelské jméno", - "Custom Password": "Uživatelské heslo", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Uživatelské jméno musí být zadáno.", - "Password field cannot be empty.": "Heslo musí být zadáno.", - "Record from Line In?": "Nahráno z Line In?", - "Rebroadcast?": "Vysílat znovu?", - "days": "dny", - "Link:": "Link:", - "Repeat Type:": "Typ opakování:", - "weekly": "týdně", - "every 2 weeks": "každé 2 týdny", - "every 3 weeks": "každé 3 týdny", - "every 4 weeks": "každé 4 týdny", - "monthly": "měsíčně", - "Select Days:": "Vyberte dny:", - "Repeat By:": "Opakovat:", - "day of the month": "den v měsíci", - "day of the week": "den v týdnu", - "Date End:": "Datum ukončení:", - "No End?": "Nekončí?", - "End date must be after start date": "Datum ukončení musí být po počátečním datumu", - "Please select a repeat day": "Prosím vyberte den opakování", - "Background Colour:": "Barva pozadí:", - "Text Colour:": "Barva textu:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Název:", - "Untitled Show": "Pořad bez názvu", - "URL:": "URL", - "Genre:": "Žánr:", - "Description:": "Popis:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Doba trvání:", - "Timezone:": "Časová zó", - "Repeats?": "Opakovat?", - "Cannot create show in the past": "Nelze vytvořit vysílání v minulosti", - "Cannot modify start date/time of the show that is already started": "Nelze měnit datum/čas vysílání, které bylo již spuštěno", - "End date/time cannot be in the past": "Datum/čas ukončení nemůže být v minulosti", - "Cannot have duration < 0m": "Nelze mít dobu trvání < 0m", - "Cannot have duration 00h 00m": "Nelze nastavit dobu trvání 00h 00m", - "Cannot have duration greater than 24h": "Nelze mít dobu trvání delší než 24 hodin", - "Cannot schedule overlapping shows": "Nelze nastavit překrývající se vysílání.", - "Search Users:": "Hledat uživatele:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Uživatelské jméno:", - "Password:": "Heslo:", - "Verify Password:": "Ověřit heslo:", - "Firstname:": "Jméno:", - "Lastname:": "Příjmení:", - "Email:": "E-mail:", - "Mobile Phone:": "Mobilní telefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Typ uživatele:", - "Login name is not unique.": "Přihlašovací jméno není jedinečné.", - "Delete All Tracks in Library": "", - "Date Start:": "Datum zahájení:", - "Title:": "Název:", - "Creator:": "Tvůrce:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Rok:", - "Label:": "Označení:", - "Composer:": "Skladatel:", - "Conductor:": "Dirigent:", - "Mood:": "Nálada:", - "BPM:": "BPM:", - "Copyright:": "Autorská práva:", - "ISRC Number:": "ISRC číslo:", - "Website:": "Internetová stránka:", - "Language:": "Jazyk:", - "Publish...": "", - "Start Time": "Čas začátku", - "End Time": "Čas konce", - "Interface Timezone:": "Časové pásmo uživatelského rozhraní", - "Station Name": "Název stanice", - "Station Description": "", - "Station Logo:": "Logo stanice:", - "Note: Anything larger than 600x600 will be resized.": "Poznámka: Cokoli většího než 600x600 bude zmenšeno.", - "Default Crossfade Duration (s):": "Defoltní nastavení doby plynulého přechodu", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Přednastavení Fade In:", - "Default Fade Out (s):": "Přednastavení Fade Out:", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Časové pásmo stanice", - "Week Starts On": "Týden začíná", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Přihlásit", - "Password": "Heslo", - "Confirm new password": "Potvrďte nové heslo", - "Password confirmation does not match your password.": "Potvrzené heslo neodpovídá vašemu heslu.", - "Email": "", - "Username": "Uživatelské jméno", - "Reset password": "Obnovit heslo", - "Back": "", - "Now Playing": "Právě se přehrává", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Všechna má vysílání:", - "My Shows": "", - "Select criteria": "Vyberte kritéria", - "Bit Rate (Kbps)": "Kvalita (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Vzorkovací frekvence (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hodiny", - "minutes": "minuty", - "items": "položka", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamický", - "Static": "Statický", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generovat obsah playlistu a uložit kritéria", - "Shuffle playlist content": "Promíchat obsah playlistu", - "Shuffle": "Promíchat", - "Limit cannot be empty or smaller than 0": "Limit nemůže být prázdný nebo menší než 0", - "Limit cannot be more than 24 hrs": "Limit nemůže být větší než 24 hodin", - "The value should be an integer": "Hodnota by měla být celé číslo", - "500 is the max item limit value you can set": "500 je max hodnota položky, kterou lze nastavit", - "You must select Criteria and Modifier": "Musíte vybrat kritéria a modifikátor", - "'Length' should be in '00:00:00' format": "'Délka' by měla být ve formátu '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Hodnota musí být číslo", - "The value should be less then 2147483648": "Hodnota by měla být menší než 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Hodnota by měla mít méně znaků než %s", - "Value cannot be empty": "Hodnota nemůže být prázdná", - "Stream Label:": "Označení streamu:", - "Artist - Title": "Umělec - Název", - "Show - Artist - Title": "Vysílání - Umělec - Název", - "Station name - Show name": "Název stanice - Název vysílání", - "Off Air Metadata": "Off Air metadata", - "Enable Replay Gain": "Povolit Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifikátor", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Povoleno:", - "Mobile:": "", - "Stream Type:": "Typ streamu:", - "Bit Rate:": "Bit frekvence:", - "Service Type:": "Typ služby:", - "Channels:": "Kanály:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Přípojný bod", - "Name": "Jméno", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Importovaná složka:", - "Watched Folders:": "Sledované složky:", - "Not a valid Directory": "Neplatný adresář", - "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", - "{msg} is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", - "{msg} is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", - "{msg} is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", - "Passwords do not match": "Hesla se neshodují", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "%s Heslo onboveno", - "Cue in and cue out are null.": "Cue in a cue out jsou prázné.", - "Can't set cue out to be greater than file length.": "Nelze nastavit delší cue out než je délka souboru.", - "Can't set cue in to be larger than cue out.": "Nelze nastavit větší cue in než cue out.", - "Can't set cue out to be smaller than cue in.": "Nelze nastavit menší cue out než je cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Vyberte zemi", - "livestream": "", - "Cannot move items out of linked shows": "Nemůže přesunout položky z linkovaných vysílání", - "The schedule you're viewing is out of date! (sched mismatch)": "Program, který si prohlížíte, je zastaralý!", - "The schedule you're viewing is out of date! (instance mismatch)": "Program který si prohlížíte je zastaralý!", - "The schedule you're viewing is out of date!": "Program který si prohlížíte je zastaralý! ", - "You are not allowed to schedule show %s.": "Nemáte povoleno plánovat vysílání %s .", - "You cannot add files to recording shows.": "Nemůžete přidávat soubory do nahrávaného vysílání.", - "The show %s is over and cannot be scheduled.": "Vysílání %s skončilo a nemůže být nasazeno.", - "The show %s has been previously updated!": "Vysílání %s bylo již dříve aktualizováno!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Nelze naplánovat playlist, který obsahuje chybějící soubory.", - "A selected File does not exist!": "Vybraný soubor neexistuje!", - "Shows can have a max length of 24 hours.": "Vysílání může mít max. délku 24 hodin.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nelze naplánovat překrývající se vysílání.\nPoznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání.", - "Rebroadcast of %s from %s": "Znovu odvysílat %s od %s", - "Length needs to be greater than 0 minutes": "Délka musí být větší než 0 minut", - "Length should be of form \"00h 00m\"": "Délka by měla mít tvar \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL by měla mít tvar \"https://example.org\"", - "URL should be 512 characters or less": "URL by měla mít 512 znaků nebo méně", - "No MIME type found for webstream.": "Nenalezen žádný MIME typ pro webstream.", - "Webstream name cannot be empty": "Název webstreamu nemůže být prázdný", - "Could not parse XSPF playlist": "Nelze zpracovat XSPF playlist", - "Could not parse PLS playlist": "Nelze zpracovat PLS playlist", - "Could not parse M3U playlist": "Nelze zpracovat M3U playlist", - "Invalid webstream - This appears to be a file download.": "Neplatný webstream - tento vypadá jako stažení souboru.", - "Unrecognized stream type: %s": "Neznámý typ streamu: %s", - "Record file doesn't exist": "Soubor s nahrávkou neexistuje", - "View Recorded File Metadata": "Zobrazit nahraný soubor metadat", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Upravit vysílání", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Přístup odepřen", - "Can't drag and drop repeating shows": "Nelze přetáhnout opakujícící se vysílání", - "Can't move a past show": "Nelze přesunout vysílání z minulosti", - "Can't move show into past": "Nelze přesunout vysílání do minulosti", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno.", - "Show was deleted because recorded show does not exist!": "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!", - "Must wait 1 hour to rebroadcast.": "Musíte počkat 1 hodinu před dalším vysíláním.", - "Track": "Stopa", - "Played": "Přehráno", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Rok %s musí být v rozmezí 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s není platné datum", + "%s:%s:%s is not a valid time": "%s : %s : %s není platný čas", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendář", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Uživatelé", + "Track Types": "", + "Streams": "Streamy", + "Status": "Stav", + "Analytics": "", + "Playout History": "Historie odvysílaného", + "History Templates": "Historie nastavení", + "Listener Stats": "Statistiky poslechovost", + "Show Listener Stats": "", + "Help": "Nápověda", + "Getting Started": "Začínáme", + "User Manual": "Návod k obsluze", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nemáte udělen přístup k tomuto zdroji.", + "You are not allowed to access this resource. ": "Nemáte udělen přístup k tomuto zdroji. ", + "File does not exist in %s": "Soubor neexistuje v %s", + "Bad request. no 'mode' parameter passed.": "Špatný požadavek. Žádný 'mode' parametr neprošel.", + "Bad request. 'mode' parameter is invalid": "Špatný požadavek. 'Mode' parametr je neplatný.", + "You don't have permission to disconnect source.": "Nemáte oprávnění k odpojení zdroje.", + "There is no source connected to this input.": "Neexistuje zdroj připojený k tomuto vstupu.", + "You don't have permission to switch source.": "Nemáte oprávnění ke změně zdroje.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nenalezen", + "Something went wrong.": "Něco je špatně.", + "Preview": "Náhled", + "Add to Playlist": "Přidat do Playlistu", + "Add to Smart Block": "Přidat do chytrého bloku", + "Delete": "Smazat", + "Edit...": "", + "Download": "Stáhnout", + "Duplicate Playlist": "Duplikátní Playlist", + "Duplicate Smartblock": "", + "No action available": "Žádná akce není k dispozici", + "You don't have permission to delete selected items.": "Nemáte oprávnění odstranit vybrané položky.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka.", + "Audio Player": "Audio přehrávač", + "Something went wrong!": "", + "Recording:": "Nahrávání:", + "Master Stream": "Mastr stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nic není naplánované", + "Current Show:": "Stávající vysílání:", + "Current": "Stávající", + "You are running the latest version": "Používáte nejnovější verzi", + "New version available: ": "Nová verze k dispozici: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Přidat do aktuálního playlistu", + "Add to current smart block": "Přidat do aktuálního chytrého bloku", + "Adding 1 Item": "Přidat 1 položku", + "Adding %s Items": "Přidat %s položek", + "You can only add tracks to smart blocks.": "Můžete přidat skladby pouze do chytrých bloků.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů.", + "Please select a cursor position on timeline.": "Prosím vyberte si pozici kurzoru na časové ose.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Přidat", + "New": "", + "Edit": "Upravit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Odstranit", + "Edit Metadata": "Upravit metadata", + "Add to selected show": "Přidat k vybranému vysílání", + "Select": "Vyberte", + "Select this page": "Vyberte tuto stránku", + "Deselect this page": "Zrušte označení této stránky", + "Deselect all": "Zrušte zaškrtnutí všech", + "Are you sure you want to delete the selected item(s)?": "Jste si jisti, že chcete smazat vybranou položku(y)?", + "Scheduled": "Naplánováno", + "Tracks": "", + "Playlist": "", + "Title": "Název", + "Creator": "Tvůrce", + "Album": "Album", + "Bit Rate": "Rychlost přenosu", + "BPM": "BPM", + "Composer": "Skladatel", + "Conductor": "Dirigent", + "Copyright": "Autorská práva", + "Encoded By": "Zakódováno", + "Genre": "Žánr", + "ISRC": "ISRC", + "Label": "Označení ", + "Language": "Jazyk", + "Last Modified": "Naposledy změněno", + "Last Played": "Naposledy vysíláno", + "Length": "Délka", + "Mime": "Mime", + "Mood": "Nálada", + "Owner": "Vlastník", + "Replay Gain": "Opakovat Gain", + "Sample Rate": "Vzorkovací rychlost", + "Track Number": "Číslo stopy", + "Uploaded": "Nahráno", + "Website": "Internetové stránky", + "Year": "Rok ", + "Loading...": "Nahrávání ...", + "All": "Vše", + "Files": "Soubory", + "Playlists": "Playlisty", + "Smart Blocks": "Chytré bloky", + "Web Streams": "Webové streamy", + "Unknown type: ": "Neznámý typ: ", + "Are you sure you want to delete the selected item?": "Jste si jisti, že chcete smazat vybranou položku?", + "Uploading in progress...": "Probíhá nahrávání...", + "Retrieving data from the server...": "Získávání dat ze serveru...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Chybný kód: ", + "Error msg: ": "Chyba msg: ", + "Input must be a positive number": "Vstup musí být kladné číslo", + "Input must be a number": "Vstup musí být číslo", + "Input must be in the format: yyyy-mm-dd": "Vstup musí být ve formátu: rrrr-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Vstup musí být ve formátu: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?", + "Open Media Builder": "Otevřít Media Builder", + "please put in a time '00:00:00 (.0)'": "prosím nastavte čas '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: ", + "Dynamic block is not previewable": "Dynamický blok není možno ukázat předem", + "Limit to: ": "Omezeno na: ", + "Playlist saved": "Playlist uložen", + "Playlist shuffled": "Playlist zamíchán", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'.", + "Listener Count on %s: %s": "Počítat posluchače %s : %s", + "Remind me in 1 week": "Připomenout za 1 týden", + "Remind me never": "Nikdy nepřipomínat", + "Yes, help Airtime": "Ano, pomoc Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obrázek musí být buď jpg, jpeg, png nebo gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Chytré bloky promíchány", + "Smart block generated and criteria saved": "Chytrý blok generován a kritéria uložena", + "Smart block saved": "Chytrý blok uložen", + "Processing...": "Zpracovává se...", + "Select modifier": "Vyberte modifikátor", + "contains": "obsahuje", + "does not contain": "neobsahuje", + "is": "je", + "is not": "není", + "starts with": "začíná s", + "ends with": "končí s", + "is greater than": "je větší než", + "is less than": "je menší než", + "is in the range": "se pohybuje v rozmezí", + "Generate": "Generovat", + "Choose Storage Folder": "Vyberte složku k uložení", + "Choose Folder to Watch": "Vyberte složku ke sledování", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Jste si jisti, že chcete změnit složku úložiště ?\nTímto odstraníte soubry z vaší Airtime knihovny!", + "Manage Media Folders": "Správa složek médií", + "Are you sure you want to remove the watched folder?": "Jste si jisti, že chcete odstranit sledovanou složku?", + "This path is currently not accessible.": "Tato cesta není v současné době dostupná.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány.", + "Connected to the streaming server": "Připojeno k streamovacímu serveru", + "The stream is disabled": "Stream je vypnut", + "Getting information from the server...": "Získávání informací ze serveru...", + "Can not connect to the streaming server": "Nelze se připojit k streamovacímu serveru", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti.", + "Warning: You cannot change this field while the show is currently playing": "Upozornění: Nelze změnit toto pole v průběhu vysílání programu", + "No result found": "Žádný výsledek nenalezen", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit.", + "Specify custom authentication which will work only for this show.": "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání.", + "The show instance doesn't exist anymore!": "Ukázka vysílání již neexistuje!", + "Warning: Shows cannot be re-linked": "Varování: Vysílání nemohou být znovu linkována.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. ", + "Show": "Vysílání", + "Show is empty": "Vysílání je prázdné", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Získávání dat ze serveru ...", + "This show has no scheduled content.": "Toto vysílání nemá naplánovaný obsah.", + "This show is not completely filled with content.": "Toto vysílání není zcela vyplněno.", + "January": "Leden", + "February": "Únor", + "March": "Březen", + "April": "Duben", + "May": "Květen", + "June": "Červen", + "July": "Červenec", + "August": "Srpen", + "September": "Září", + "October": "Říjen", + "November": "Listopad", + "December": "Prosinec", + "Jan": "Leden", + "Feb": "Únor", + "Mar": "Březen", + "Apr": "Duben", + "Jun": "Červen", + "Jul": "Červenec", + "Aug": "Srpen", + "Sep": "Září", + "Oct": "Říjen", + "Nov": "Listopad", + "Dec": "Prosinec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Neděle", + "Monday": "Pondělí", + "Tuesday": "Úterý", + "Wednesday": "Středa", + "Thursday": "Čtvrtek", + "Friday": "Pátek", + "Saturday": "Sobota", + "Sun": "Ne", + "Mon": "Po", + "Tue": "Út", + "Wed": "St", + "Thu": "Čt", + "Fri": "Pá", + "Sat": "So", + "Shows longer than their scheduled time will be cut off by a following show.": "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání.", + "Cancel Current Show?": "Zrušit aktuální vysílání?", + "Stop recording current show?": "Zastavit nahrávání aktuálního vysílání?", + "Ok": "OK", + "Contents of Show": "Obsah vysílání", + "Remove all content?": "Odstranit veškerý obsah?", + "Delete selected item(s)?": "Odstranit vybranou položku(y)?", + "Start": "Začátek", + "End": "Konec", + "Duration": "Trvání", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue in", + "Cue Out": "Cue out", + "Fade In": "Pozvolné zesilování ", + "Fade Out": "Pozvolné zeslabování", + "Show Empty": "Vysílání prázdné", + "Recording From Line In": "Nahrávání z Line In", + "Track preview": "Náhled stopy", + "Cannot schedule outside a show.": "Nelze naplánovat mimo vysílání.", + "Moving 1 Item": "Posunutí 1 položky", + "Moving %s Items": "Posunutí %s položek", + "Save": "Uložit", + "Cancel": "Zrušit", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API", + "Select all": "Vybrat vše", + "Select none": "Nic nevybrat", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Odebrat vybrané naplánované položky", + "Jump to the current playing track": "Přejít na aktuálně přehrávanou skladbu", + "Jump to Current": "", + "Cancel current show": "Zrušit aktuální vysílání", + "Open library to add or remove content": "Otevřít knihovnu pro přidání nebo odebrání obsahu", + "Add / Remove Content": "Přidat / Odebrat obsah", + "in use": "používá se", + "Disk": "Disk", + "Look in": "Podívat se", + "Open": "Otevřít", + "Admin": "Administrátor", + "DJ": "DJ", + "Program Manager": "Program manager", + "Guest": "Host", + "Guests can do the following:": "Hosté mohou dělat následující:", + "View schedule": "Zobrazit plán", + "View show content": "Zobrazit obsah vysílání", + "DJs can do the following:": "DJ může dělat následující:", + "Manage assigned show content": "Spravovat přidělený obsah vysílání", + "Import media files": "Import media souborů", + "Create playlists, smart blocks, and webstreams": "Vytvořit playlisty, smart bloky a webstreamy", + "Manage their own library content": "Spravovat obsah vlastní knihovny", + "Program Managers can do the following:": "", + "View and manage show content": "Zobrazit a spravovat obsah vysílání", + "Schedule shows": "Plán ukazuje", + "Manage all library content": "Spravovat celý obsah knihovny", + "Admins can do the following:": "Správci mohou provést následující:", + "Manage preferences": "Správa předvoleb", + "Manage users": "Správa uživatelů", + "Manage watched folders": "Správa sledovaných složek", + "Send support feedback": "Odeslat zpětnou vazbu", + "View system status": "Zobrazit stav systému", + "Access playout history": "Přístup playout historii", + "View listener stats": "Zobrazit posluchače statistiky", + "Show / hide columns": "Zobrazit / skrýt sloupce", + "Columns": "", + "From {from} to {to}": "Z {z} do {do}", + "kbps": "kbps", + "yyyy-mm-dd": "rrrr-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Út", + "We": "St", + "Th": "Čt", + "Fr": "Pá", + "Sa": "So", + "Close": "Zavřít", + "Hour": "Hodina", + "Minute": "Minuta", + "Done": "Hotovo", + "Select files": "Vyberte soubory", + "Add files to the upload queue and click the start button.": "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start.", + "Filename": "", + "Size": "", + "Add Files": "Přidat soubory.", + "Stop Upload": "Zastavit Nahrávání", + "Start upload": "Začít nahrávat", + "Start Upload": "", + "Add files": "Přidat soubory", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Nahráno %d / %d souborů", + "N/A": "Nedostupné", + "Drag files here.": "Soubory přetáhněte zde.", + "File extension error.": "Chybná přípona souboru", + "File size error.": "Chybná velikost souboru.", + "File count error.": "Chybný součet souborů.", + "Init error.": "Chyba Init.", + "HTTP Error.": "Chyba HTTP.", + "Security error.": "Chyba zabezpečení.", + "Generic error.": "Obecná chyba. ", + "IO error.": "CHyba IO.", + "File: %s": "Soubor: %s", + "%d files queued": "%d souborů ve frontě", + "File: %f, size: %s, max file size: %m": "Soubor: %f , velikost: %s , max. velikost souboru:% m", + "Upload URL might be wrong or doesn't exist": "Přidané URL může být špatné nebo neexistuje", + "Error: File too large: ": "Chyba: Soubor je příliš velký: ", + "Error: Invalid file extension: ": "Chyba: Neplatná přípona souboru: ", + "Set Default": "Nastavit jako default", + "Create Entry": "Vytvořit vstup", + "Edit History Record": "Editovat historii nahrávky", + "No Show": "Žádné vysílání", + "Copied %s row%s to the clipboard": "Kopírovat %s řádků %s do schránky", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Popis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Povoleno", + "Disabled": "Vypnuto", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu.", + "You are viewing an older version of %s": "Prohlížíte si starší verzi %s", + "You cannot add tracks to dynamic blocks.": "Nemůžete přidávat skladby do dynamických bloků.", + "You don't have permission to delete selected %s(s).": "Nemáte oprávnění odstranit vybrané %s (s).", + "You can only add tracks to smart block.": "Můžete pouze přidat skladby do chytrého bloku.", + "Untitled Playlist": "Playlist bez názvu", + "Untitled Smart Block": "Chytrý block bez názvu", + "Unknown Playlist": "Neznámý Playlist", + "Preferences updated.": "Preference aktualizovány.", + "Stream Setting Updated.": "Nastavení streamu aktualizováno.", + "path should be specified": "cesta by měla být specifikována", + "Problem with Liquidsoap...": "Problém s Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Znovu spustit vysílaní %s od %s na %s", + "Select cursor": "Vybrat kurzor", + "Remove cursor": "Odstranit kurzor", + "show does not exist": "vysílání neexistuje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Uživatel byl úspěšně přidán!", + "User updated successfully!": "Uživatel byl úspěšně aktualizován!", + "Settings updated successfully!": "Nastavení úspěšně aktualizováno!", + "Untitled Webstream": "Webstream bez názvu", + "Webstream saved.": "Webstream uložen.", + "Invalid form values.": "Neplatná forma hodnot.", + "Invalid character entered": "Zadán neplatný znak ", + "Day must be specified": "Den musí být zadán", + "Time must be specified": "Čas musí být zadán", + "Must wait at least 1 hour to rebroadcast": "Musíte počkat alespoň 1 hodinu před dalším vysíláním", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Použij %s ověření pravosti:", + "Use Custom Authentication:": "Použít ověření uživatele:", + "Custom Username": "Uživatelské jméno", + "Custom Password": "Uživatelské heslo", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Uživatelské jméno musí být zadáno.", + "Password field cannot be empty.": "Heslo musí být zadáno.", + "Record from Line In?": "Nahráno z Line In?", + "Rebroadcast?": "Vysílat znovu?", + "days": "dny", + "Link:": "Link:", + "Repeat Type:": "Typ opakování:", + "weekly": "týdně", + "every 2 weeks": "každé 2 týdny", + "every 3 weeks": "každé 3 týdny", + "every 4 weeks": "každé 4 týdny", + "monthly": "měsíčně", + "Select Days:": "Vyberte dny:", + "Repeat By:": "Opakovat:", + "day of the month": "den v měsíci", + "day of the week": "den v týdnu", + "Date End:": "Datum ukončení:", + "No End?": "Nekončí?", + "End date must be after start date": "Datum ukončení musí být po počátečním datumu", + "Please select a repeat day": "Prosím vyberte den opakování", + "Background Colour:": "Barva pozadí:", + "Text Colour:": "Barva textu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Název:", + "Untitled Show": "Pořad bez názvu", + "URL:": "URL", + "Genre:": "Žánr:", + "Description:": "Popis:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "'%hodnota%' nesedí formát času 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Doba trvání:", + "Timezone:": "Časová zó", + "Repeats?": "Opakovat?", + "Cannot create show in the past": "Nelze vytvořit vysílání v minulosti", + "Cannot modify start date/time of the show that is already started": "Nelze měnit datum/čas vysílání, které bylo již spuštěno", + "End date/time cannot be in the past": "Datum/čas ukončení nemůže být v minulosti", + "Cannot have duration < 0m": "Nelze mít dobu trvání < 0m", + "Cannot have duration 00h 00m": "Nelze nastavit dobu trvání 00h 00m", + "Cannot have duration greater than 24h": "Nelze mít dobu trvání delší než 24 hodin", + "Cannot schedule overlapping shows": "Nelze nastavit překrývající se vysílání.", + "Search Users:": "Hledat uživatele:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Uživatelské jméno:", + "Password:": "Heslo:", + "Verify Password:": "Ověřit heslo:", + "Firstname:": "Jméno:", + "Lastname:": "Příjmení:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobilní telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ uživatele:", + "Login name is not unique.": "Přihlašovací jméno není jedinečné.", + "Delete All Tracks in Library": "", + "Date Start:": "Datum zahájení:", + "Title:": "Název:", + "Creator:": "Tvůrce:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Označení:", + "Composer:": "Skladatel:", + "Conductor:": "Dirigent:", + "Mood:": "Nálada:", + "BPM:": "BPM:", + "Copyright:": "Autorská práva:", + "ISRC Number:": "ISRC číslo:", + "Website:": "Internetová stránka:", + "Language:": "Jazyk:", + "Publish...": "", + "Start Time": "Čas začátku", + "End Time": "Čas konce", + "Interface Timezone:": "Časové pásmo uživatelského rozhraní", + "Station Name": "Název stanice", + "Station Description": "", + "Station Logo:": "Logo stanice:", + "Note: Anything larger than 600x600 will be resized.": "Poznámka: Cokoli většího než 600x600 bude zmenšeno.", + "Default Crossfade Duration (s):": "Defoltní nastavení doby plynulého přechodu", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Přednastavení Fade In:", + "Default Fade Out (s):": "Přednastavení Fade Out:", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Časové pásmo stanice", + "Week Starts On": "Týden začíná", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Přihlásit", + "Password": "Heslo", + "Confirm new password": "Potvrďte nové heslo", + "Password confirmation does not match your password.": "Potvrzené heslo neodpovídá vašemu heslu.", + "Email": "", + "Username": "Uživatelské jméno", + "Reset password": "Obnovit heslo", + "Back": "", + "Now Playing": "Právě se přehrává", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Všechna má vysílání:", + "My Shows": "", + "Select criteria": "Vyberte kritéria", + "Bit Rate (Kbps)": "Kvalita (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Vzorkovací frekvence (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hodiny", + "minutes": "minuty", + "items": "položka", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamický", + "Static": "Statický", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generovat obsah playlistu a uložit kritéria", + "Shuffle playlist content": "Promíchat obsah playlistu", + "Shuffle": "Promíchat", + "Limit cannot be empty or smaller than 0": "Limit nemůže být prázdný nebo menší než 0", + "Limit cannot be more than 24 hrs": "Limit nemůže být větší než 24 hodin", + "The value should be an integer": "Hodnota by měla být celé číslo", + "500 is the max item limit value you can set": "500 je max hodnota položky, kterou lze nastavit", + "You must select Criteria and Modifier": "Musíte vybrat kritéria a modifikátor", + "'Length' should be in '00:00:00' format": "'Délka' by měla být ve formátu '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Hodnota musí být číslo", + "The value should be less then 2147483648": "Hodnota by měla být menší než 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Hodnota by měla mít méně znaků než %s", + "Value cannot be empty": "Hodnota nemůže být prázdná", + "Stream Label:": "Označení streamu:", + "Artist - Title": "Umělec - Název", + "Show - Artist - Title": "Vysílání - Umělec - Název", + "Station name - Show name": "Název stanice - Název vysílání", + "Off Air Metadata": "Off Air metadata", + "Enable Replay Gain": "Povolit Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifikátor", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Povoleno:", + "Mobile:": "", + "Stream Type:": "Typ streamu:", + "Bit Rate:": "Bit frekvence:", + "Service Type:": "Typ služby:", + "Channels:": "Kanály:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Přípojný bod", + "Name": "Jméno", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importovaná složka:", + "Watched Folders:": "Sledované složky:", + "Not a valid Directory": "Neplatný adresář", + "Value is required and can't be empty": "Hodnota je požadována a nemůže zůstat prázdná", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "'%hodnota%' není platná e-mailová adresa v základním formátu local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "'%hodnota%' neodpovídá formátu datumu '%formátu%'", + "{msg} is less than %min% characters long": "'%hodnota%' je kratší než požadovaných %min% znaků", + "{msg} is more than %max% characters long": "'%hodnota%' je více než %max% znaků dlouhá", + "{msg} is not between '%min%' and '%max%', inclusively": "'%hodnota%' není mezi '%min%' a '%max%', včetně", + "Passwords do not match": "Hesla se neshodují", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s Heslo onboveno", + "Cue in and cue out are null.": "Cue in a cue out jsou prázné.", + "Can't set cue out to be greater than file length.": "Nelze nastavit delší cue out než je délka souboru.", + "Can't set cue in to be larger than cue out.": "Nelze nastavit větší cue in než cue out.", + "Can't set cue out to be smaller than cue in.": "Nelze nastavit menší cue out než je cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Vyberte zemi", + "livestream": "", + "Cannot move items out of linked shows": "Nemůže přesunout položky z linkovaných vysílání", + "The schedule you're viewing is out of date! (sched mismatch)": "Program, který si prohlížíte, je zastaralý!", + "The schedule you're viewing is out of date! (instance mismatch)": "Program který si prohlížíte je zastaralý!", + "The schedule you're viewing is out of date!": "Program který si prohlížíte je zastaralý! ", + "You are not allowed to schedule show %s.": "Nemáte povoleno plánovat vysílání %s .", + "You cannot add files to recording shows.": "Nemůžete přidávat soubory do nahrávaného vysílání.", + "The show %s is over and cannot be scheduled.": "Vysílání %s skončilo a nemůže být nasazeno.", + "The show %s has been previously updated!": "Vysílání %s bylo již dříve aktualizováno!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nelze naplánovat playlist, který obsahuje chybějící soubory.", + "A selected File does not exist!": "Vybraný soubor neexistuje!", + "Shows can have a max length of 24 hours.": "Vysílání může mít max. délku 24 hodin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nelze naplánovat překrývající se vysílání.\nPoznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání.", + "Rebroadcast of %s from %s": "Znovu odvysílat %s od %s", + "Length needs to be greater than 0 minutes": "Délka musí být větší než 0 minut", + "Length should be of form \"00h 00m\"": "Délka by měla mít tvar \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL by měla mít tvar \"https://example.org\"", + "URL should be 512 characters or less": "URL by měla mít 512 znaků nebo méně", + "No MIME type found for webstream.": "Nenalezen žádný MIME typ pro webstream.", + "Webstream name cannot be empty": "Název webstreamu nemůže být prázdný", + "Could not parse XSPF playlist": "Nelze zpracovat XSPF playlist", + "Could not parse PLS playlist": "Nelze zpracovat PLS playlist", + "Could not parse M3U playlist": "Nelze zpracovat M3U playlist", + "Invalid webstream - This appears to be a file download.": "Neplatný webstream - tento vypadá jako stažení souboru.", + "Unrecognized stream type: %s": "Neznámý typ streamu: %s", + "Record file doesn't exist": "Soubor s nahrávkou neexistuje", + "View Recorded File Metadata": "Zobrazit nahraný soubor metadat", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Upravit vysílání", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Přístup odepřen", + "Can't drag and drop repeating shows": "Nelze přetáhnout opakujícící se vysílání", + "Can't move a past show": "Nelze přesunout vysílání z minulosti", + "Can't move show into past": "Nelze přesunout vysílání do minulosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno.", + "Show was deleted because recorded show does not exist!": "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!", + "Must wait 1 hour to rebroadcast.": "Musíte počkat 1 hodinu před dalším vysíláním.", + "Track": "Stopa", + "Played": "Přehráno", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/de_AT.json b/webapp/src/locale/de_AT.json index bb8a1342f7..8efc790eb1 100644 --- a/webapp/src/locale/de_AT.json +++ b/webapp/src/locale/de_AT.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen", - "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", - "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalender", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Benutzer", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout Verlauf", - "History Templates": "Verlaufsvorlagen", - "Listener Stats": "Hörerstatistiken", - "Show Listener Stats": "", - "Help": "Hilfe", - "Getting Started": "Kurzanleitung", - "User Manual": "Benutzerhandbuch", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", - "You are not allowed to access this resource. ": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter.", - "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig.", - "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", - "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", - "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nicht gefunden", - "Something went wrong.": "Etwas ist falsch gelaufen.", - "Preview": "Vorschau", - "Add to Playlist": "Zu Playlist hinzufügen", - "Add to Smart Block": "Hinzufügen zu Smart Block", - "Delete": "Löschen", - "Edit...": "", - "Download": "Herunterladen", - "Duplicate Playlist": "Playlist duplizieren", - "Duplicate Smartblock": "", - "No action available": "Keine Aktion verfügbar", - "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopie von %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Aufzeichnung:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nichts geplant", - "Current Show:": "Aktuelle Sendung:", - "Current": "Aktuell", - "You are running the latest version": "Sie verwenden die aktuellste Version", - "New version available: ": "Neue Version verfügbar:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Zu aktueller Playlist hinzufügen", - "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", - "Adding 1 Item": "Füge 1 Objekt hinzu", - "Adding %s Items": "Füge %s Objekte hinzu", - "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", - "Please select a cursor position on timeline.": "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Hinzufügen", - "New": "", - "Edit": "Bearbeiten", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Entfernen", - "Edit Metadata": "Metadaten bearbeiten", - "Add to selected show": "Zu gewählter Sendung hinzufügen", - "Select": "Auswahl", - "Select this page": "Ganze Seite markieren", - "Deselect this page": "Ganze Seite nicht markieren", - "Deselect all": "Keines Markieren", - "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", - "Scheduled": "Geplant", - "Tracks": "", - "Playlist": "", - "Title": "Titel", - "Creator": "Interpret", - "Album": "Album", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Komponist", - "Conductor": "Dirigent", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Sprache", - "Last Modified": "Zuletzt geändert", - "Last Played": "Zuletzt gespielt", - "Length": "Dauer", - "Mime": "Mime", - "Mood": "Stimmung", - "Owner": "Besitzer", - "Replay Gain": "Replay Gain", - "Sample Rate": "Samplerate", - "Track Number": "Titelnummer", - "Uploaded": "Hochgeladen", - "Website": "Webseite", - "Year": "Jahr", - "Loading...": "wird geladen...", - "All": "Alle", - "Files": "Dateien", - "Playlists": "Playlisten", - "Smart Blocks": "Smart Blöcke", - "Web Streams": "Web Streams", - "Unknown type: ": "Unbekannter Typ:", - "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", - "Uploading in progress...": "Hochladen wird durchgeführt...", - "Retrieving data from the server...": "Daten werden vom Server abgerufen...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Fehler Code:", - "Error msg: ": "Fehlermeldung:", - "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", - "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", - "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:", - "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", - "Limit to: ": "Beschränkung auf:", - "Playlist saved": "Playlist gespeichert", - "Playlist shuffled": "Playlist durchgemischt", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", - "Listener Count on %s: %s": "Hörerzahl %s: %s", - "Remind me in 1 week": "In einer Woche erinnern", - "Remind me never": "Niemals erinnern", - "Yes, help Airtime": "Ja, Airtime helfen", - "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein.", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart Block durchgemischt", - "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", - "Smart block saved": "Smart Block gespeichert", - "Processing...": "In Bearbeitung...", - "Select modifier": "Wähle Modifikator", - "contains": "enthält", - "does not contain": "enthält nicht", - "is": "ist", - "is not": "ist nicht", - "starts with": "beginnt mit", - "ends with": "endet mit", - "is greater than": "ist größer als", - "is less than": "ist kleiner als", - "is in the range": "ist im Bereich", - "Generate": "Erstellen", - "Choose Storage Folder": "Wähle Storage-Verzeichnis", - "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Wollen sie wirklich das Storage-Verzeichnis ändern?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", - "Manage Media Folders": "Verwalte Medienverzeichnisse", - "Are you sure you want to remove the watched folder?": "Wollen sie den überwachten Ordner wirklich entfernen?", - "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt.", - "Connected to the streaming server": "Mit Streaming-Server verbunden", - "The stream is disabled": "Der Stream ist deaktiviert", - "Getting information from the server...": "Erhalte Information vom Server...", - "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast.", - "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", - "No result found": "Kein Ergebnis gefunden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", - "Specify custom authentication which will work only for this show.": "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird.", - "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", - "Warning: Shows cannot be re-linked": "Warnung: Sendungen können nicht erneut verknüpft werden.", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", - "Show": "Sendung", - "Show is empty": "Sendung ist leer", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Daten werden vom Server abgerufen...", - "This show has no scheduled content.": "Diese Sendung hat keinen geplanten Inhalt.", - "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt.", - "January": "Januar", - "February": "Februar", - "March": "März", - "April": "April", - "May": "Mai", - "June": "Juni", - "July": "Juli", - "August": "August", - "September": "September", - "October": "Oktober", - "November": "November", - "December": "Dezember", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mär", - "Apr": "Apr", - "Jun": "Mai", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Okt", - "Nov": "Nov", - "Dec": "Dez", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sonntag", - "Monday": "Montag", - "Tuesday": "Dienstag", - "Wednesday": "Mittwoch", - "Thursday": "Donnerstag", - "Friday": "Freitag", - "Saturday": "Samstag", - "Sun": "SO", - "Mon": "MO", - "Tue": "DI", - "Wed": "MI", - "Thu": "DO", - "Fri": "FR", - "Sat": "SA", - "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten.", - "Cancel Current Show?": "Aktuelle Sendung abbrechen?", - "Stop recording current show?": "Aufzeichnung der aktuellen Sendung stoppen?", - "Ok": "OK", - "Contents of Show": "Sendungsinhalt", - "Remove all content?": "Gesamten Inhalt entfernen?", - "Delete selected item(s)?": "Gewählte Objekte löschen?", - "Start": "Beginn", - "End": "Ende", - "Duration": "Dauer", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Sendung leer", - "Recording From Line In": "Aufzeichnen von Line-In", - "Track preview": "Titelvorschau", - "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", - "Moving 1 Item": "Verschiebe 1 Objekt", - "Moving %s Items": "Verschiebe %s Objekte", - "Save": "Speichern", - "Cancel": "Abbrechen", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen", - "Select all": "Alle markieren", - "Select none": "Nichts Markieren", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Gewähltes Objekt entfernen", - "Jump to the current playing track": "Springe zu aktuellem Titel", - "Jump to Current": "", - "Cancel current show": "Aktuelle Sendung abbrechen", - "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", - "Add / Remove Content": "Inhalt hinzufügen / entfernen", - "in use": "In Verwendung", - "Disk": "Disk", - "Look in": "Suchen in", - "Open": "Öffnen", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programm Manager", - "Guest": "Gast", - "Guests can do the following:": "Gäste können folgendes tun:", - "View schedule": "Kalender betrachten", - "View show content": "Sendungsinhalt betrachten", - "DJs can do the following:": "DJ's können folgendes tun:", - "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", - "Import media files": "Mediendateien importieren", - "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", - "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", - "Program Managers can do the following:": "", - "View and manage show content": "Sendungsinhalte betrachten und verwalten", - "Schedule shows": "Sendungen festlegen", - "Manage all library content": "Verwalten der gesamten Bibliothek", - "Admins can do the following:": "Admins können folgendes tun:", - "Manage preferences": "Einstellungen verwalten", - "Manage users": "Benutzer verwalten", - "Manage watched folders": "Verwalten überwachter Ordner", - "Send support feedback": "Support Feedback senden", - "View system status": "System Status betrachten", - "Access playout history": "Zugriff auf Playout Verlauf", - "View listener stats": "Hörerstatistiken betrachten", - "Show / hide columns": "Spalten zeigen / verbergen", - "Columns": "", - "From {from} to {to}": "Von {from} bis {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "So", - "Mo": "Mo", - "Tu": "Di", - "We": "Mi", - "Th": "Do", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Schließen", - "Hour": "Stunde", - "Minute": "Minute", - "Done": "Fertig", - "Select files": "Dateien wählen", - "Add files to the upload queue and click the start button.": "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start.", - "Filename": "", - "Size": "", - "Add Files": "Dateien hinzufügen", - "Stop Upload": "Hochladen stoppen", - "Start upload": "Hochladen starten", - "Start Upload": "", - "Add files": "Dateien hinzufügen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", - "N/A": "Nicht Verfügbar", - "Drag files here.": "Dateien hierher ziehen", - "File extension error.": "Dateierweiterungsfehler", - "File size error.": "Dateigrößenfehler", - "File count error.": "Dateianzahlfehler", - "Init error.": "Init Fehler", - "HTTP Error.": "HTTP-Fehler", - "Security error.": "Sicherheitsfehler", - "Generic error.": "Allgemeiner Fehler", - "IO error.": "IO-Fehler", - "File: %s": "Datei: %s", - "%d files queued": "%d Dateien in der Warteschlange", - "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", - "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", - "Error: File too large: ": "Fehler: Datei zu groß", - "Error: Invalid file extension: ": "Fehler: Ungültige Dateierweiterung:", - "Set Default": "Standard festlegen", - "Create Entry": "Eintrag erstellen", - "Edit History Record": "Verlaufsprotokoll bearbeiten", - "No Show": "Keine Sendung", - "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Beschreibung", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktiviert", - "Disabled": "Deaktiviert", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut.", - "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", - "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen.", - "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. ", - "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", - "Untitled Playlist": "Unbenannte Playlist", - "Untitled Smart Block": "Unbenannter Smart Block", - "Unknown Playlist": "Unbenannte Playlist", - "Preferences updated.": "Einstellungen aktualisiert", - "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", - "path should be specified": "Pfad muß angegeben werden", - "Problem with Liquidsoap...": "Problem mit Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung % s vom %s um %s", - "Select cursor": "Cursor wählen", - "Remove cursor": "Cursor entfernen", - "show does not exist": "Sendung existiert nicht.", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Benutzer erfolgreich hinzugefügt!", - "User updated successfully!": "Benutzer erfolgreich aktualisiert!", - "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", - "Untitled Webstream": "Unbenannter Webstream", - "Webstream saved.": "Webstream gespeichert", - "Invalid form values.": "Ungültiger Eingabewert", - "Invalid character entered": "Ungültiges Zeichen eingeben", - "Day must be specified": "Tag muß angegeben werden", - "Time must be specified": "Zeit muß angegeben werden", - "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Benutzerdefinierte Authentifizierung:", - "Custom Username": "Benutzerdefinierter Benutzername", - "Custom Password": "Benutzerdefiniertes Passwort", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", - "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", - "Record from Line In?": "Aufzeichnen von Line-In?", - "Rebroadcast?": "Wiederholen?", - "days": "Tage", - "Link:": "Verknüpfen:", - "Repeat Type:": "Wiederholungstyp:", - "weekly": "Wöchentlich", - "every 2 weeks": "jede Zweite Woche", - "every 3 weeks": "jede Dritte Woche", - "every 4 weeks": "jede Vierte Woche", - "monthly": "Monatlich", - "Select Days:": "Tage wählen:", - "Repeat By:": "Wiederholung am:", - "day of the month": "Tag des Monats", - "day of the week": "Tag der Woche", - "Date End:": "Zeitpunkt Ende:", - "No End?": "Kein Enddatum?", - "End date must be after start date": "Enddatum muß nach Startdatum liegen.", - "Please select a repeat day": "Bitte Tag zum Wiederholen wählen", - "Background Colour:": "Hintergrundfarbe:", - "Text Colour:": "Textfarbe:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Unbenannte Sendung", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Beschreibung:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Dauer:", - "Timezone:": "Zeitzone:", - "Repeats?": "Wiederholungen?", - "Cannot create show in the past": "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden", - "Cannot modify start date/time of the show that is already started": "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden", - "End date/time cannot be in the past": "Enddatum / Endzeit darf nicht in der Vergangheit liegen.", - "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", - "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", - "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", - "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", - "Search Users:": "Benutzer suchen:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Benutzername:", - "Password:": "Passwort:", - "Verify Password:": "Passwort bestätigen:", - "Firstname:": "Vorname:", - "Lastname:": "Nachname:", - "Email:": "E-Mail:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Benutzertyp:", - "Login name is not unique.": "Benutzername ist nicht einmalig.", - "Delete All Tracks in Library": "", - "Date Start:": "Zeitpunkt Start:", - "Title:": "Titel", - "Creator:": "Interpret:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jahr:", - "Label:": "Label:", - "Composer:": "Komponist:", - "Conductor:": "Dirigent:", - "Mood:": "Stimmung:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Nummer:", - "Website:": "Webseite:", - "Language:": "Sprache:", - "Publish...": "", - "Start Time": "Beginn", - "End Time": "Ende", - "Interface Timezone:": "Zeitzone Interface", - "Station Name": "Sendername", - "Station Description": "", - "Station Logo:": "Sender Logo:", - "Note: Anything larger than 600x600 will be resized.": "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert.", - "Default Crossfade Duration (s):": "Standarddauer Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Standard Fade In (s):", - "Default Fade Out (s):": "Standard Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Zeitzone Radiostation", - "Week Starts On": "Woche startet mit ", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Anmeldung", - "Password": "Passwort", - "Confirm new password": "Neues Passwort bestätigen", - "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein", - "Email": "", - "Username": "Benutzername", - "Reset password": "Passwort zurücksetzen", - "Back": "", - "Now Playing": "Jetzt", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Alle meine Sendungen:", - "My Shows": "", - "Select criteria": "Kriterien wählen", - "Bit Rate (Kbps)": "Bitrate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (KHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Stunden", - "minutes": "Minuten", - "items": "Objekte", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "Statisch", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", - "Shuffle playlist content": "Shuffle Playlist-Inhalt (Durchmischen)", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein.", - "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", - "The value should be an integer": "Der Wert muß eine ganze Zahl sein.", - "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt.", - "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", - "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", - "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", - "Value cannot be empty": "Wert kann nicht leer sein", - "Stream Label:": "Streambezeichnung:", - "Artist - Title": "Artist - Titel", - "Show - Artist - Title": "Sendung - Interpret - Titel", - "Station name - Show name": "Radiostation - Sendung", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Replay Gain aktivieren", - "Replay Gain Modifier": "Replay Gain Modifikator", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktiviert:", - "Mobile:": "", - "Stream Type:": "Stream Typ:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Service Typ:", - "Channels:": "Kanäle:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Verzeichnis:", - "Watched Folders:": "Überwachte Verzeichnisse:", - "Not a valid Directory": "Kein gültiges Verzeichnis", - "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Standardformat local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", - "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", - "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", - "Passwords do not match": "Passwörter stimmen nicht überein", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", - "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtdauer der Datei sein.", - "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", - "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Land wählen", - "livestream": "", - "Cannot move items out of linked shows": "Objekte aus einer verknüpften Sendung können nicht verschoben werden.", - "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)", - "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)", - "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell.", - "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", - "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", - "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht festgelegt werden.", - "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert.", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", - "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", - "Rebroadcast of %s from %s": "Wiederholung von %s am %s", - "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", - "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", - "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", - "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", - "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", - "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", - "Could not parse XSPF playlist": "XSPF-Playlist konnte nicht aufgeschlüsselt werden.", - "Could not parse PLS playlist": "PLS-Playlist konnte nicht aufgeschlüsselt werden.", - "Could not parse M3U playlist": "M3U-Playlist konnte nicht aufgeschlüsselt werden.", - "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", - "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", - "Record file doesn't exist": "Aufeichnung existiert nicht", - "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei ansehen", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Sendung bearbeiten", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Zugriff verweigert", - "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", - "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", - "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", - "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert.", - "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Track": "Titel", - "Played": "Abgespielt", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Benutzer", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "You are not allowed to access this resource. ": "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig.", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist keine Quelle verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zu Playlist hinzufügen", + "Add to Smart Block": "Hinzufügen zu Smart Block", + "Delete": "Löschen", + "Edit...": "", + "Download": "Herunterladen", + "Duplicate Playlist": "Playlist duplizieren", + "Duplicate Smartblock": "", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Aufzeichnung:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Aktuell", + "You are running the latest version": "Sie verwenden die aktuellste Version", + "New version available: ": "Neue Version verfügbar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "Füge 1 Objekt hinzu", + "Adding %s Items": "Füge %s Objekte hinzu", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Hinzufügen", + "New": "", + "Edit": "Bearbeiten", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten bearbeiten", + "Add to selected show": "Zu gewählter Sendung hinzufügen", + "Select": "Auswahl", + "Select this page": "Ganze Seite markieren", + "Deselect this page": "Ganze Seite nicht markieren", + "Deselect all": "Keines Markieren", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "", + "Playlist": "", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "Zuletzt geändert", + "Last Played": "Zuletzt gespielt", + "Length": "Dauer", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ:", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Hochladen wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehler Code:", + "Error msg: ": "Fehlermeldung:", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränkung auf:", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playlist durchgemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein.", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block durchgemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": "Wähle Modifikator", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Storage-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Wollen sie wirklich das Storage-Verzeichnis ändern?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Verwalte Medienverzeichnisse", + "Are you sure you want to remove the watched folder?": "Wollen sie den überwachten Ordner wirklich entfernen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt.", + "Connected to the streaming server": "Mit Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Sendungen können nicht erneut verknüpft werden.", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen geplanten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mär", + "Apr": "Apr", + "Jun": "Mai", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "SO", + "Mon": "MO", + "Tue": "DI", + "Wed": "MI", + "Thu": "DO", + "Fri": "FR", + "Sat": "SA", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufzeichnung der aktuellen Sendung stoppen?", + "Ok": "OK", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung leer", + "Recording From Line In": "Aufzeichnen von Line-In", + "Track preview": "Titelvorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alle markieren", + "Select none": "Nichts Markieren", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Gewähltes Objekt entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJ's können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Ordner", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playout Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten zeigen / verbergen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien wählen", + "Add files to the upload queue and click the start button.": "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Hochladen stoppen", + "Start upload": "Hochladen starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "Nicht Verfügbar", + "Drag files here.": "Dateien hierher ziehen", + "File extension error.": "Dateierweiterungsfehler", + "File size error.": "Dateigrößenfehler", + "File count error.": "Dateianzahlfehler", + "Init error.": "Init Fehler", + "HTTP Error.": "HTTP-Fehler", + "Security error.": "Sicherheitsfehler", + "Generic error.": "Allgemeiner Fehler", + "IO error.": "IO-Fehler", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß", + "Error: Invalid file extension: ": "Fehler: Ungültige Dateierweiterung:", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschreibung", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. ", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbenannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung % s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht.", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert", + "Invalid form values.": "Ungültiger Eingabewert", + "Invalid character entered": "Ungültiges Zeichen eingeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefinierte Authentifizierung:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "Wöchentlich", + "every 2 weeks": "jede Zweite Woche", + "every 3 weeks": "jede Dritte Woche", + "every 4 weeks": "jede Vierte Woche", + "monthly": "Monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung am:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach Startdatum liegen.", + "Please select a repeat day": "Bitte Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden", + "End date/time cannot be in the past": "Enddatum / Endzeit darf nicht in der Vergangheit liegen.", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Benutzer suchen:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist nicht einmalig.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Start:", + "Title:": "Titel", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Nummer:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "", + "Start Time": "Beginn", + "End Time": "Ende", + "Interface Timezone:": "Zeitzone Interface", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert.", + "Default Crossfade Duration (s):": "Standarddauer Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Zeitzone Radiostation", + "Week Starts On": "Woche startet mit ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": "Kriterien wählen", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Objekte", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Shuffle Playlist-Inhalt (Durchmischen)", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein.", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein.", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt.", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Wert kann nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Interpret - Titel", + "Station name - Show name": "Radiostation - Sendung", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert erforderlich. Feld darf nicht leer sein.", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Standardformat local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} wurde nicht im erforderlichen Datumsformat '%format%' eingegeben", + "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", + "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtdauer der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Objekte aus einer verknüpften Sendung können nicht verschoben werden.", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell.", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht festgelegt werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert.", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung von %s am %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "XSPF-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse PLS playlist": "PLS-Playlist konnte nicht aufgeschlüsselt werden.", + "Could not parse M3U playlist": "M3U-Playlist konnte nicht aufgeschlüsselt werden.", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei ansehen", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung bearbeiten", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert.", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/de_DE.json b/webapp/src/locale/de_DE.json index 3eb9a37bc0..e05ea89726 100644 --- a/webapp/src/locale/de_DE.json +++ b/webapp/src/locale/de_DE.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein", - "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", - "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", - "English": "Englisch", - "Afar": "Afar", - "Abkhazian": "Abchasisch", - "Afrikaans": "Afrikaans", - "Amharic": "Amharisch", - "Arabic": "Arabisch", - "Assamese": "Assamesisch", - "Aymara": "Aymarisch", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkirisch", - "Belarusian": "Belarussisch", - "Bulgarian": "Bulgarisch", - "Bihari": "Biharisch", - "Bislama": "Bislamisch", - "Bengali/Bangla": "Bengalisch", - "Tibetan": "Tibetanisch", - "Breton": "Bretonisch", - "Catalan": "Katalanisch", - "Corsican": "Korsisch", - "Czech": "Tschechisch", - "Welsh": "Walisisch", - "Danish": "Dänisch", - "German": "Deutsch", - "Bhutani": "Dzongkha", - "Greek": "Griechisch", - "Esperanto": "Esperanto", - "Spanish": "Spanisch", - "Estonian": "Estnisch", - "Basque": "Baskisch", - "Persian": "Persisch", - "Finnish": "Finnisch", - "Fiji": "Fijianisch", - "Faeroese": "Färöisch", - "French": "Französisch", - "Frisian": "Friesisch", - "Irish": "Irisch", - "Scots/Gaelic": "Schottisches Gälisch", - "Galician": "Galizisch", - "Guarani": "Guarani", - "Gujarati": "Gujaratisch", - "Hausa": "Haussa", - "Hindi": "Hindi", - "Croatian": "Kroatisch", - "Hungarian": "Ungarisch", - "Armenian": "Armenisch", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesisch", - "Icelandic": "Isländisch", - "Italian": "Italienisch", - "Hebrew": "Hebräisch", - "Japanese": "Japanisch", - "Yiddish": "Jiddisch", - "Javanese": "Javanisch", - "Georgian": "Georgisch", - "Kazakh": "Kasachisch", - "Greenlandic": "Kalaallisut", - "Cambodian": "Kambodschanisch", - "Kannada": "Kannada", - "Korean": "Koreanisch", - "Kashmiri": "Kaschmirisch", - "Kurdish": "Kurdisch", - "Kirghiz": "Kirgisisch", - "Latin": "Latein", - "Lingala": "Lingala", - "Laothian": "Laotisch", - "Lithuanian": "Litauisch", - "Latvian/Lettish": "Lettisch", - "Malagasy": "Madagassisch", - "Maori": "Maorisch", - "Macedonian": "Mazedonisch", - "Malayalam": "Malayalam", - "Mongolian": "Mongolisch", - "Moldavian": "Moldavisch", - "Marathi": "Marathi", - "Malay": "Malaysisch", - "Maltese": "Maltesisch", - "Burmese": "Burmesisch", - "Nauru": "Nauruisch", - "Nepali": "Nepalesisch", - "Dutch": "Niederländisch", - "Norwegian": "Norwegisch", - "Occitan": "Okzitanisch", - "(Afan)/Oromoor/Oriya": "Oriya", - "Punjabi": "Pandschabi", - "Polish": "Polnisch", - "Pashto/Pushto": "Paschtu", - "Portuguese": "Portugiesisch", - "Quechua": "Quechua", - "Rhaeto-Romance": "Rätoromanisch", - "Kirundi": "Kirundisch", - "Romanian": "Rumänisch", - "Russian": "Russisch", - "Kinyarwanda": "Kijarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sango", - "Serbo-Croatian": "Serbokroatisch", - "Singhalese": "Singhalesisch", - "Slovak": "Slowakisch", - "Slovenian": "Slowenisch", - "Samoan": "Samoanisch", - "Shona": "Schonisch", - "Somali": "Somalisch", - "Albanian": "Albanisch", - "Serbian": "Serbisch", - "Siswati": "Swasiländisch", - "Sesotho": "Sesothisch", - "Sundanese": "Sundanesisch", - "Swedish": "Schwedisch", - "Swahili": "Swahili", - "Tamil": "Tamilisch", - "Tegulu": "Tegulu", - "Tajik": "Tadschikisch", - "Thai": "Thai", - "Tigrinya": "Tigrinja", - "Turkmen": "Türkmenisch", - "Tagalog": "Tagalog", - "Setswana": "Sezuan", - "Tonga": "Tongaisch", - "Turkish": "Türkisch", - "Tsonga": "Tsongaisch", - "Tatar": "Tatarisch", - "Twi": "Twi", - "Ukrainian": "Ukrainisch", - "Urdu": "Urdu", - "Uzbek": "Usbekisch", - "Vietnamese": "Vietnamesisch", - "Volapuk": "Volapük", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinesisch", - "Zulu": "Zulu", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s.", - "Click the 'New Show' button and fill out the required fields.": "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen.", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "LibreTime Playout Service", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "LibreTime Liquidsoap Service", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "LibreTime API Service", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Radio Seite", - "Calendar": "Kalender", - "Widgets": "Widgets", - "Player": "Player", - "Weekly Schedule": "Wochenprogramm", - "Settings": "Einstellungen", - "General": "Allgemein", - "My Profile": "Mein Profil", - "Users": "Benutzer", - "Track Types": "Track-Typ", - "Streams": "Streams", - "Status": "Staat", - "Analytics": "Statistiken", - "Playout History": "Playout Verlauf", - "History Templates": "Verlaufsvorlagen", - "Listener Stats": "Hörerstatistiken", - "Show Listener Stats": "Zuhörer:innen Statistik anzeigen", - "Help": "Hilfe", - "Getting Started": "Kurzanleitung", - "User Manual": "Benutzerhandbuch", - "Get Help Online": "", - "Contribute to LibreTime": "Bei LibreTime mitmachen", - "What's New?": "Was ist neu?", - "You are not allowed to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen", - "You are not allowed to access this resource. ": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", - "File does not exist in %s": "Datei existiert nicht in %s.", - "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben.", - "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig", - "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", - "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", - "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Seite nicht gefunden.", - "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", - "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", - "An internal application error has occurred.": "Ein interner Fehler ist aufgetreten.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Es wurden noch keine Tracks veröffentlicht.", - "%s not found": "%s nicht gefunden", - "Something went wrong.": "Etwas ist falsch gelaufen.", - "Preview": "Vorschau", - "Add to Playlist": "Zur Playlist hinzufügen", - "Add to Smart Block": "Zum Smart Block hinzufügen", - "Delete": "Löschen", - "Edit...": "Bearbeiten …", - "Download": "Herunterladen", - "Duplicate Playlist": "Duplizierte Playlist", - "Duplicate Smartblock": "Smartblock duplizieren", - "No action available": "Keine Aktion verfügbar", - "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", - "Could not delete file because it is scheduled in the future.": "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist.", - "Could not delete file(s).": "Datei(en) konnten nicht gelöscht werden.", - "Copy of %s": "Kopie von %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist.", - "Audio Player": "Audio Player", - "Something went wrong!": "Etwas ist falsch gelaufen!", - "Recording:": "Aufnahme:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Es ist nichts geplant", - "Current Show:": "Aktuelle Sendung:", - "Current": "Jetzt", - "You are running the latest version": "Sie verwenden die neueste Version", - "New version available: ": "Neue Version verfügbar: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "Es ist ein Patch für deine LibreTime Installation verfügbar.", - "A feature update for your LibreTime installation is available.": "Es ist ein Feature-Update für deine LibreTime Installation verfügbar.", - "A major update for your LibreTime installation is available.": "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich.", - "Add to current playlist": "Zu aktueller Playlist hinzufügen", - "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", - "Adding 1 Item": "1 Objekt hinzufügen", - "Adding %s Items": "%s Objekte hinzufügen", - "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", - "Please select a cursor position on timeline.": "Bitte wählen sie eine Cursor-Position auf der Zeitleiste.", - "You haven't added any tracks": "Keine Tracks hinzugefügt", - "You haven't added any playlists": "Keine Playlisten hinzugefügt", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "Keine Smart Blöcke hinzugefügt", - "You haven't added any webstreams": "Keine Webstreams hinzugefügt", - "Learn about tracks": "Erfahre mehr über Tracks", - "Learn about playlists": "Erfahre mehr über Playlisten", - "Learn about podcasts": "Erfahre mehr über Podcasts", - "Learn about smart blocks": "Erfahre mehr über Smart Blöcke", - "Learn about webstreams": "Erfahre mehr über Webstreams", - "Click 'New' to create one.": "", - "Add": "Hinzufüg.", - "New": "", - "Edit": "Ändern", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Veröffentlichen", - "Remove": "Entfernen", - "Edit Metadata": "Metadaten ändern", - "Add to selected show": "Zur ausgewählten Sendungen hinzufügen", - "Select": "Auswählen", - "Select this page": "Wählen sie diese Seite", - "Deselect this page": "Wählen sie diese Seite ab", - "Deselect all": "Alle Abwählen", - "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", - "Scheduled": "Geplant", - "Tracks": "Tracks", - "Playlist": "Playliste", - "Title": "Titel", - "Creator": "Interpret", - "Album": "Album", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Komponist", - "Conductor": "Dirigent", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Sprache", - "Last Modified": "geändert am", - "Last Played": "Zuletzt gespielt", - "Length": "Länge", - "Mime": "Mime", - "Mood": "Stimmung", - "Owner": "Besitzer", - "Replay Gain": "Replay Gain", - "Sample Rate": "Samplerate", - "Track Number": "Titelnummer", - "Uploaded": "Hochgeladen", - "Website": "Webseite", - "Year": "Jahr", - "Loading...": "wird geladen...", - "All": "Alle", - "Files": "Dateien", - "Playlists": "Playlisten", - "Smart Blocks": "Smart Blöcke", - "Web Streams": "Web Streams", - "Unknown type: ": "Unbekannter Typ: ", - "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", - "Uploading in progress...": "Upload wird durchgeführt...", - "Retrieving data from the server...": "Daten werden vom Server abgerufen...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Fehlercode: ", - "Error msg: ": "Fehlermeldung: ", - "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", - "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", - "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", - "My Podcast": "Mein Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?", - "Open Media Builder": "Medienordner", - "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: ", - "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", - "Limit to: ": "Beschränken auf: ", - "Playlist saved": "Playlist gespeichert", - "Playlist shuffled": "Playliste gemischt", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", - "Listener Count on %s: %s": "Hörerzahl %s: %s", - "Remind me in 1 week": "In einer Woche erinnern", - "Remind me never": "Niemals erinnern", - "Yes, help Airtime": "Ja, Airtime helfen", - "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart Block gemischt", - "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", - "Smart block saved": "Smart Block gespeichert", - "Processing...": "In Bearbeitung...", - "Select modifier": " - Attribut - ", - "contains": "enthält", - "does not contain": "enthält nicht", - "is": "ist", - "is not": "ist nicht", - "starts with": "beginnt mit", - "ends with": "endet mit", - "is greater than": "ist größer als", - "is less than": "ist kleiner als", - "is in the range": "ist im Bereich", - "Generate": "Erstellen", - "Choose Storage Folder": "Wähle Speicher-Verzeichnis", - "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", - "Manage Media Folders": "Medienverzeichnisse verwalten", - "Are you sure you want to remove the watched folder?": "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?", - "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt.", - "Connected to the streaming server": "Mit dem Streaming-Server verbunden", - "The stream is disabled": "Der Stream ist deaktiviert", - "Getting information from the server...": "Erhalte Information vom Server...", - "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet.", - "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", - "No result found": "Kein Ergebnis gefunden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", - "Specify custom authentication which will work only for this show.": "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird.", - "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", - "Warning: Shows cannot be re-linked": "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", - "Show": "Sendung", - "Show is empty": "Sendung ist leer", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Daten werden vom Server abgerufen...", - "This show has no scheduled content.": "Diese Sendung hat keinen festgelegten Inhalt.", - "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt.", - "January": "Januar", - "February": "Februar", - "March": "März", - "April": "April", - "May": "Mai", - "June": "Juni", - "July": "Juli", - "August": "August", - "September": "September", - "October": "Oktober", - "November": "November", - "December": "Dezember", - "Jan": "Jan.", - "Feb": "Feb.", - "Mar": "Mrz.", - "Apr": "Apr.", - "Jun": "Jun.", - "Jul": "Jul.", - "Aug": "Aug.", - "Sep": "Sep.", - "Oct": "Okt.", - "Nov": "Nov.", - "Dec": "Dez.", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sonntag", - "Monday": "Montag", - "Tuesday": "Dienstag", - "Wednesday": "Mittwoch", - "Thursday": "Donnerstag", - "Friday": "Freitag", - "Saturday": "Samstag", - "Sun": "So.", - "Mon": "Mo.", - "Tue": "Di.", - "Wed": "Mi.", - "Thu": "Do.", - "Fri": "Fr.", - "Sat": "Sa.", - "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten.", - "Cancel Current Show?": "Aktuelle Sendung abbrechen?", - "Stop recording current show?": "Aufnahme der aktuellen Sendung stoppen?", - "Ok": "Speichern", - "Contents of Show": "Sendungsinhalt", - "Remove all content?": "Gesamten Inhalt entfernen?", - "Delete selected item(s)?": "Gewählte Objekte löschen?", - "Start": "Beginn", - "End": "Ende", - "Duration": "Dauer", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Sendung ist leer", - "Recording From Line In": "Aufnehmen über Line In", - "Track preview": "Titel Vorschau", - "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", - "Moving 1 Item": "Verschiebe 1 Objekt", - "Moving %s Items": "Verschiebe %s Objekte", - "Save": "Speichern", - "Cancel": "Abbrechen", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen", - "Select all": "Alles auswählen", - "Select none": "Nichts auswählen", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Ausgewählte Elemente aus dem Programm entfernen", - "Jump to the current playing track": "Springe zu aktuellem Titel", - "Jump to Current": "", - "Cancel current show": "Aktuelle Sendung abbrechen", - "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", - "Add / Remove Content": "Inhalt hinzufügen / entfernen", - "in use": "In Verwendung", - "Disk": "Disk", - "Look in": "Suchen in", - "Open": "Öffnen", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programm Manager", - "Guest": "Gast", - "Guests can do the following:": "Gäste können folgendes tun:", - "View schedule": "Kalender betrachten", - "View show content": "Sendungsinhalt betrachten", - "DJs can do the following:": "DJs können folgendes tun:", - "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", - "Import media files": "Mediendateien importieren", - "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", - "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", - "Program Managers can do the following:": "", - "View and manage show content": "Sendungsinhalte betrachten und verwalten", - "Schedule shows": "Sendungen festlegen", - "Manage all library content": "Verwalten der gesamten Bibliothek", - "Admins can do the following:": "Admins können folgendes tun:", - "Manage preferences": "Einstellungen verwalten", - "Manage users": "Benutzer verwalten", - "Manage watched folders": "Verwalten überwachter Verzeichnisse", - "Send support feedback": "Support Feedback senden", - "View system status": "System Status betrachten", - "Access playout history": "Zugriff auf Playlist Verlauf", - "View listener stats": "Hörerstatistiken betrachten", - "Show / hide columns": "Spalten auswählen", - "Columns": "", - "From {from} to {to}": "Von {from} bis {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "So", - "Mo": "Mo", - "Tu": "Di", - "We": "Mi", - "Th": "Do", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Schließen", - "Hour": "Stunde", - "Minute": "Minute", - "Done": "Fertig", - "Select files": "Dateien auswählen", - "Add files to the upload queue and click the start button.": "Dateien zur Uploadliste hinzufügen und den Startbutton klicken.", - "Filename": "", - "Size": "", - "Add Files": "Dateien hinzufügen", - "Stop Upload": "Upload stoppen", - "Start upload": "Upload starten", - "Start Upload": "", - "Add files": "Dateien hinzufügen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", - "N/A": "N/A", - "Drag files here.": "Dateien in dieses Feld ziehen.(Drag & Drop)", - "File extension error.": "Fehler in der Dateierweiterung.", - "File size error.": "Fehler in der Dateigröße.", - "File count error.": "Fehler in der Dateianzahl", - "Init error.": "Init Fehler.", - "HTTP Error.": "HTTP Fehler.", - "Security error.": "Sicherheitsfehler.", - "Generic error.": "Allgemeiner Fehler.", - "IO error.": "IO Fehler.", - "File: %s": "Datei: %s", - "%d files queued": "%d Dateien in der Warteschlange", - "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", - "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", - "Error: File too large: ": "Fehler: Datei zu groß: ", - "Error: Invalid file extension: ": "Fehler: ungültige Dateierweiterung: ", - "Set Default": "Standard festlegen", - "Create Entry": "Eintrag erstellen", - "Edit History Record": "Verlaufsprotokoll bearbeiten", - "No Show": "Keine Sendung", - "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "Autor", - "Description": "Beschreibung", - "Link": "Link", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktiviert", - "Disabled": "Deaktiviert", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut.", - "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", - "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine Titel hinzufügen.", - "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung.", - "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", - "Untitled Playlist": "Unbenannte Playlist", - "Untitled Smart Block": "Unbenannter Smart Block", - "Unknown Playlist": "Unbekannte Playlist", - "Preferences updated.": "Einstellungen aktualisiert.", - "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", - "path should be specified": "Pfad muß angegeben werden", - "Problem with Liquidsoap...": "Problem mit Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung %s vom %s um %s", - "Select cursor": "Cursor wählen", - "Remove cursor": "Cursor entfernen", - "show does not exist": "Sendung existiert nicht", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Benutzer erfolgreich hinzugefügt!", - "User updated successfully!": "Benutzer erfolgreich aktualisiert!", - "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", - "Untitled Webstream": "Unbenannter Webstream", - "Webstream saved.": "Webstream gespeichert.", - "Invalid form values.": "Ungültige Formularwerte.", - "Invalid character entered": "Ungültiges Zeichen eingegeben", - "Day must be specified": "Tag muß angegeben werden", - "Time must be specified": "Zeit muß angegeben werden", - "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Benutzerdefiniertes Login:", - "Custom Username": "Benutzerdefinierter Benutzername", - "Custom Password": "Benutzerdefiniertes Passwort", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", - "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", - "Record from Line In?": "Aufzeichnen von Line-In?", - "Rebroadcast?": "Wiederholen?", - "days": "Tage", - "Link:": "Verknüpfen:", - "Repeat Type:": "Wiederholungstyp:", - "weekly": "wöchentlich", - "every 2 weeks": "jede zweite Woche", - "every 3 weeks": "jede dritte Woche", - "every 4 weeks": "jede vierte Woche", - "monthly": "monatlich", - "Select Days:": "Tage wählen:", - "Repeat By:": "Wiederholung von:", - "day of the month": "Tag des Monats", - "day of the week": "Tag der Woche", - "Date End:": "Zeitpunkt Ende:", - "No End?": "Kein Enddatum?", - "End date must be after start date": "Enddatum muß nach dem Startdatum liegen", - "Please select a repeat day": "Bitte einen Tag zum Wiederholen wählen", - "Background Colour:": "Hintergrundfarbe:", - "Text Colour:": "Textfarbe:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Unbenannte Sendung", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Beschreibung:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Dauer:", - "Timezone:": "Zeitzone:", - "Repeats?": "Wiederholungen?", - "Cannot create show in the past": "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden", - "Cannot modify start date/time of the show that is already started": "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat.", - "End date/time cannot be in the past": "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen", - "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", - "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", - "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", - "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", - "Search Users:": "Suche Benutzer:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Benutzername:", - "Password:": "Passwort:", - "Verify Password:": "Passwort bestätigen:", - "Firstname:": "Vorname:", - "Lastname:": "Nachname:", - "Email:": "E-Mail:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Benutzertyp:", - "Login name is not unique.": "Benutzername ist bereits vorhanden.", - "Delete All Tracks in Library": "", - "Date Start:": "Zeitpunkt Beginn:", - "Title:": "Titel:", - "Creator:": "Interpret:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jahr:", - "Label:": "Label:", - "Composer:": "Komponist:", - "Conductor:": "Dirigent:", - "Mood:": "Stimmung:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC-Nr.:", - "Website:": "Webseite:", - "Language:": "Sprache:", - "Publish...": "Veröffentlichen...", - "Start Time": "Startzeit", - "End Time": "Endzeit", - "Interface Timezone:": "Interface Zeitzone:", - "Station Name": "Sendername", - "Station Description": "", - "Station Logo:": "Sender Logo:", - "Note: Anything larger than 600x600 will be resized.": "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert.", - "Default Crossfade Duration (s):": "Standard Crossfade Dauer (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Standard Fade In (s):", - "Default Fade Out (s):": "Standard Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Sendestation Zeitzone", - "Week Starts On": "Woche beginnt am", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Anmeldung", - "Password": "Passwort", - "Confirm new password": "Neues Passwort bestätigen", - "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein.", - "Email": "", - "Username": "Benutzername", - "Reset password": "Passwort zurücksetzen", - "Back": "", - "Now Playing": "Jetzt", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Alle meine Sendungen:", - "My Shows": "", - "Select criteria": " - Kriterien - ", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Stunden", - "minutes": "Minuten", - "items": "Titel", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "Statisch", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", - "Shuffle playlist content": "Inhalt der Playlist Mischen", - "Shuffle": "Mischen", - "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein", - "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", - "The value should be an integer": "Der Wert muß eine ganze Zahl sein", - "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt", - "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", - "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", - "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", - "Value cannot be empty": "Der Wert darf nicht leer sein", - "Stream Label:": "Streambezeichnung:", - "Artist - Title": "Artist - Titel", - "Show - Artist - Title": "Sendung - Artist - Titel", - "Station name - Show name": "Sender - Sendung", - "Off Air Metadata": "Off Air Metadaten", - "Enable Replay Gain": "Replay Gain aktivieren", - "Replay Gain Modifier": "Replay Gain Modifikator", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktiviert:", - "Mobile:": "", - "Stream Type:": "Stream Typ:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Service Typ:", - "Channels:": "Kanäle:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Verzeichnis:", - "Watched Folders:": "Überwachte Verzeichnisse:", - "Not a valid Directory": "Kein gültiges Verzeichnis", - "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Format local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} entspricht nicht dem erforderlichen Datumsformat '%format%'", - "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", - "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", - "Passwords do not match": "Passwörter stimmen nicht überein", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", - "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtlänge der Datei sein.", - "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", - "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Land wählen", - "livestream": "", - "Cannot move items out of linked shows": "Inhalte aus verknüpften Sendungen können nicht verschoben werden", - "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)", - "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)", - "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell!", - "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", - "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", - "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht verändert werden.", - "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", - "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", - "Rebroadcast of %s from %s": "Wiederholung der Sendung %s von %s", - "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", - "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", - "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", - "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", - "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", - "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", - "Could not parse XSPF playlist": "Die XSPF Playlist konnte nicht eingelesen werden", - "Could not parse PLS playlist": "Die PLS Playlist konnte nicht eingelesen werden", - "Could not parse M3U playlist": "Die M3U Playlist konnte nicht eingelesen werden", - "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", - "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", - "Record file doesn't exist": "Aufzeichnung existiert nicht", - "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei anzeigen", - "Schedule Tracks": "Sendungsinhalte verwalten", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Sendung ändern", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Zugriff verweigert", - "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", - "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", - "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", - "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!", - "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", - "Track": "Titel", - "Played": "Abgespielt", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein", + "%s-%s-%s is not a valid date": "%s-%s-%s ist kein gültiges Datum", + "%s:%s:%s is not a valid time": "%s-%s-%s ist kein gültiger Zeitpunkt", + "English": "Englisch", + "Afar": "Afar", + "Abkhazian": "Abchasisch", + "Afrikaans": "Afrikaans", + "Amharic": "Amharisch", + "Arabic": "Arabisch", + "Assamese": "Assamesisch", + "Aymara": "Aymarisch", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkirisch", + "Belarusian": "Belarussisch", + "Bulgarian": "Bulgarisch", + "Bihari": "Biharisch", + "Bislama": "Bislamisch", + "Bengali/Bangla": "Bengalisch", + "Tibetan": "Tibetanisch", + "Breton": "Bretonisch", + "Catalan": "Katalanisch", + "Corsican": "Korsisch", + "Czech": "Tschechisch", + "Welsh": "Walisisch", + "Danish": "Dänisch", + "German": "Deutsch", + "Bhutani": "Dzongkha", + "Greek": "Griechisch", + "Esperanto": "Esperanto", + "Spanish": "Spanisch", + "Estonian": "Estnisch", + "Basque": "Baskisch", + "Persian": "Persisch", + "Finnish": "Finnisch", + "Fiji": "Fijianisch", + "Faeroese": "Färöisch", + "French": "Französisch", + "Frisian": "Friesisch", + "Irish": "Irisch", + "Scots/Gaelic": "Schottisches Gälisch", + "Galician": "Galizisch", + "Guarani": "Guarani", + "Gujarati": "Gujaratisch", + "Hausa": "Haussa", + "Hindi": "Hindi", + "Croatian": "Kroatisch", + "Hungarian": "Ungarisch", + "Armenian": "Armenisch", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesisch", + "Icelandic": "Isländisch", + "Italian": "Italienisch", + "Hebrew": "Hebräisch", + "Japanese": "Japanisch", + "Yiddish": "Jiddisch", + "Javanese": "Javanisch", + "Georgian": "Georgisch", + "Kazakh": "Kasachisch", + "Greenlandic": "Kalaallisut", + "Cambodian": "Kambodschanisch", + "Kannada": "Kannada", + "Korean": "Koreanisch", + "Kashmiri": "Kaschmirisch", + "Kurdish": "Kurdisch", + "Kirghiz": "Kirgisisch", + "Latin": "Latein", + "Lingala": "Lingala", + "Laothian": "Laotisch", + "Lithuanian": "Litauisch", + "Latvian/Lettish": "Lettisch", + "Malagasy": "Madagassisch", + "Maori": "Maorisch", + "Macedonian": "Mazedonisch", + "Malayalam": "Malayalam", + "Mongolian": "Mongolisch", + "Moldavian": "Moldavisch", + "Marathi": "Marathi", + "Malay": "Malaysisch", + "Maltese": "Maltesisch", + "Burmese": "Burmesisch", + "Nauru": "Nauruisch", + "Nepali": "Nepalesisch", + "Dutch": "Niederländisch", + "Norwegian": "Norwegisch", + "Occitan": "Okzitanisch", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Pandschabi", + "Polish": "Polnisch", + "Pashto/Pushto": "Paschtu", + "Portuguese": "Portugiesisch", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rätoromanisch", + "Kirundi": "Kirundisch", + "Romanian": "Rumänisch", + "Russian": "Russisch", + "Kinyarwanda": "Kijarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbokroatisch", + "Singhalese": "Singhalesisch", + "Slovak": "Slowakisch", + "Slovenian": "Slowenisch", + "Samoan": "Samoanisch", + "Shona": "Schonisch", + "Somali": "Somalisch", + "Albanian": "Albanisch", + "Serbian": "Serbisch", + "Siswati": "Swasiländisch", + "Sesotho": "Sesothisch", + "Sundanese": "Sundanesisch", + "Swedish": "Schwedisch", + "Swahili": "Swahili", + "Tamil": "Tamilisch", + "Tegulu": "Tegulu", + "Tajik": "Tadschikisch", + "Thai": "Thai", + "Tigrinya": "Tigrinja", + "Turkmen": "Türkmenisch", + "Tagalog": "Tagalog", + "Setswana": "Sezuan", + "Tonga": "Tongaisch", + "Turkish": "Türkisch", + "Tsonga": "Tsongaisch", + "Tatar": "Tatarisch", + "Twi": "Twi", + "Ukrainian": "Ukrainisch", + "Urdu": "Urdu", + "Uzbek": "Usbekisch", + "Vietnamese": "Vietnamesisch", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinesisch", + "Zulu": "Zulu", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Lade Tracks hoch, um sie deiner Bibliotheke hinzuzufügen!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s.", + "Click the 'New Show' button and fill out the required fields.": "Klicke den „Neue Sendung“-Knopf und fülle die erforderlichen Felder aus.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Klicke auf die aktuelle Sendung und wähle „Sendungsinhalte verwalten“, um mit der Übertragung zu beginnen.", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "Klicke auf die nächste Sendung und wähle „Sendungsinhalte verwalten“", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "LibreTime Playout Service", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "LibreTime Liquidsoap Service", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "LibreTime API Service", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Seite", + "Calendar": "Kalender", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Wochenprogramm", + "Settings": "Einstellungen", + "General": "Allgemein", + "My Profile": "Mein Profil", + "Users": "Benutzer", + "Track Types": "Track-Typ", + "Streams": "Streams", + "Status": "Staat", + "Analytics": "Statistiken", + "Playout History": "Playout Verlauf", + "History Templates": "Verlaufsvorlagen", + "Listener Stats": "Hörerstatistiken", + "Show Listener Stats": "Zuhörer:innen Statistik anzeigen", + "Help": "Hilfe", + "Getting Started": "Kurzanleitung", + "User Manual": "Benutzerhandbuch", + "Get Help Online": "", + "Contribute to LibreTime": "Bei LibreTime mitmachen", + "What's New?": "Was ist neu?", + "You are not allowed to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen", + "You are not allowed to access this resource. ": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "File does not exist in %s": "Datei existiert nicht in %s.", + "Bad request. no 'mode' parameter passed.": "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben.", + "Bad request. 'mode' parameter is invalid": "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig", + "You don't have permission to disconnect source.": "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen.", + "There is no source connected to this input.": "Mit diesem Eingang ist kein Signal verbunden.", + "You don't have permission to switch source.": "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Seite nicht gefunden.", + "The requested action is not supported.": "Die angefragte Aktion wird nicht unterstützt.", + "You do not have permission to access this resource.": "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. ", + "An internal application error has occurred.": "Ein interner Fehler ist aufgetreten.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Es wurden noch keine Tracks veröffentlicht.", + "%s not found": "%s nicht gefunden", + "Something went wrong.": "Etwas ist falsch gelaufen.", + "Preview": "Vorschau", + "Add to Playlist": "Zur Playlist hinzufügen", + "Add to Smart Block": "Zum Smart Block hinzufügen", + "Delete": "Löschen", + "Edit...": "Bearbeiten …", + "Download": "Herunterladen", + "Duplicate Playlist": "Duplizierte Playlist", + "Duplicate Smartblock": "Smartblock duplizieren", + "No action available": "Keine Aktion verfügbar", + "You don't have permission to delete selected items.": "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen.", + "Could not delete file because it is scheduled in the future.": "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist.", + "Could not delete file(s).": "Datei(en) konnten nicht gelöscht werden.", + "Copy of %s": "Kopie von %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist.", + "Audio Player": "Audio Player", + "Something went wrong!": "Etwas ist falsch gelaufen!", + "Recording:": "Aufnahme:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Es ist nichts geplant", + "Current Show:": "Aktuelle Sendung:", + "Current": "Jetzt", + "You are running the latest version": "Sie verwenden die neueste Version", + "New version available: ": "Neue Version verfügbar: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "Es ist ein Patch für deine LibreTime Installation verfügbar.", + "A feature update for your LibreTime installation is available.": "Es ist ein Feature-Update für deine LibreTime Installation verfügbar.", + "A major update for your LibreTime installation is available.": "Es ist eine neue Major-Version für deine LibreTime Installation verfügbar.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Mehrere Major-Updates sind für deine LibreTime Installation verfügbar. Bitte aktualisieren Sie so bald wie möglich.", + "Add to current playlist": "Zu aktueller Playlist hinzufügen", + "Add to current smart block": "Zu aktuellem Smart Block hinzufügen", + "Adding 1 Item": "1 Objekt hinzufügen", + "Adding %s Items": "%s Objekte hinzufügen", + "You can only add tracks to smart blocks.": "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen.", + "Please select a cursor position on timeline.": "Bitte wählen sie eine Cursor-Position auf der Zeitleiste.", + "You haven't added any tracks": "Keine Tracks hinzugefügt", + "You haven't added any playlists": "Keine Playlisten hinzugefügt", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Keine Smart Blöcke hinzugefügt", + "You haven't added any webstreams": "Keine Webstreams hinzugefügt", + "Learn about tracks": "Erfahre mehr über Tracks", + "Learn about playlists": "Erfahre mehr über Playlisten", + "Learn about podcasts": "Erfahre mehr über Podcasts", + "Learn about smart blocks": "Erfahre mehr über Smart Blöcke", + "Learn about webstreams": "Erfahre mehr über Webstreams", + "Click 'New' to create one.": "", + "Add": "Hinzufüg.", + "New": "", + "Edit": "Ändern", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Veröffentlichen", + "Remove": "Entfernen", + "Edit Metadata": "Metadaten ändern", + "Add to selected show": "Zur ausgewählten Sendungen hinzufügen", + "Select": "Auswählen", + "Select this page": "Wählen sie diese Seite", + "Deselect this page": "Wählen sie diese Seite ab", + "Deselect all": "Alle Abwählen", + "Are you sure you want to delete the selected item(s)?": "Wollen sie die gewählten Objekte wirklich löschen?", + "Scheduled": "Geplant", + "Tracks": "Tracks", + "Playlist": "Playliste", + "Title": "Titel", + "Creator": "Interpret", + "Album": "Album", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Komponist", + "Conductor": "Dirigent", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Sprache", + "Last Modified": "geändert am", + "Last Played": "Zuletzt gespielt", + "Length": "Länge", + "Mime": "Mime", + "Mood": "Stimmung", + "Owner": "Besitzer", + "Replay Gain": "Replay Gain", + "Sample Rate": "Samplerate", + "Track Number": "Titelnummer", + "Uploaded": "Hochgeladen", + "Website": "Webseite", + "Year": "Jahr", + "Loading...": "wird geladen...", + "All": "Alle", + "Files": "Dateien", + "Playlists": "Playlisten", + "Smart Blocks": "Smart Blöcke", + "Web Streams": "Web Streams", + "Unknown type: ": "Unbekannter Typ: ", + "Are you sure you want to delete the selected item?": "Wollen sie das gewählte Objekt wirklich löschen?", + "Uploading in progress...": "Upload wird durchgeführt...", + "Retrieving data from the server...": "Daten werden vom Server abgerufen...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Fehlercode: ", + "Error msg: ": "Fehlermeldung: ", + "Input must be a positive number": "Der eingegeben Wert muß eine positive Zahl sein", + "Input must be a number": "Der eingegebene Wert muß eine Zahl sein", + "Input must be in the format: yyyy-mm-dd": "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t", + "My Podcast": "Mein Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?", + "Open Media Builder": "Medienordner", + "please put in a time '00:00:00 (.0)'": "Bitte geben sie eine Zeit an '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: ", + "Dynamic block is not previewable": "Bei einem Dynamischen Block ist keine Vorschau möglich", + "Limit to: ": "Beschränken auf: ", + "Playlist saved": "Playlist gespeichert", + "Playlist shuffled": "Playliste gemischt", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime kann den Status dieser Datei nicht bestimmen.\nDas kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird.", + "Listener Count on %s: %s": "Hörerzahl %s: %s", + "Remind me in 1 week": "In einer Woche erinnern", + "Remind me never": "Niemals erinnern", + "Yes, help Airtime": "Ja, Airtime helfen", + "Image must be one of jpg, jpeg, png, or gif": "Ein Bild muß jpg, jpeg, png, oder gif sein", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\nDadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ein Dynamischer Smart Block speichert nur die Kriterien.\nDabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart Block gemischt", + "Smart block generated and criteria saved": "Smart Block erstellt und Kriterien gespeichert", + "Smart block saved": "Smart Block gespeichert", + "Processing...": "In Bearbeitung...", + "Select modifier": " - Attribut - ", + "contains": "enthält", + "does not contain": "enthält nicht", + "is": "ist", + "is not": "ist nicht", + "starts with": "beginnt mit", + "ends with": "endet mit", + "is greater than": "ist größer als", + "is less than": "ist kleiner als", + "is in the range": "ist im Bereich", + "Generate": "Erstellen", + "Choose Storage Folder": "Wähle Speicher-Verzeichnis", + "Choose Folder to Watch": "Wähle zu überwachendes Verzeichnis", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\nDieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!", + "Manage Media Folders": "Medienverzeichnisse verwalten", + "Are you sure you want to remove the watched folder?": "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?", + "This path is currently not accessible.": "Dieser Pfad ist derzeit nicht erreichbar.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt.", + "Connected to the streaming server": "Mit dem Streaming-Server verbunden", + "The stream is disabled": "Der Stream ist deaktiviert", + "Getting information from the server...": "Erhalte Information vom Server...", + "Can not connect to the streaming server": "Verbindung mit Streaming-Server kann nicht hergestellt werden.", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Diese Option aktiviert Metadaten für Ogg-Streams.\n(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\nVLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet.", + "Warning: You cannot change this field while the show is currently playing": "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird.", + "No result found": "Kein Ergebnis gefunden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden.", + "Specify custom authentication which will work only for this show.": "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird.", + "The show instance doesn't exist anymore!": "Die Sendungsinstanz existiert nicht mehr!", + "Warning: Shows cannot be re-linked": "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant.", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde.", + "Show": "Sendung", + "Show is empty": "Sendung ist leer", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Daten werden vom Server abgerufen...", + "This show has no scheduled content.": "Diese Sendung hat keinen festgelegten Inhalt.", + "This show is not completely filled with content.": "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt.", + "January": "Januar", + "February": "Februar", + "March": "März", + "April": "April", + "May": "Mai", + "June": "Juni", + "July": "Juli", + "August": "August", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Dezember", + "Jan": "Jan.", + "Feb": "Feb.", + "Mar": "Mrz.", + "Apr": "Apr.", + "Jun": "Jun.", + "Jul": "Jul.", + "Aug": "Aug.", + "Sep": "Sep.", + "Oct": "Okt.", + "Nov": "Nov.", + "Dec": "Dez.", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sonntag", + "Monday": "Montag", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Sun": "So.", + "Mon": "Mo.", + "Tue": "Di.", + "Wed": "Mi.", + "Thu": "Do.", + "Fri": "Fr.", + "Sat": "Sa.", + "Shows longer than their scheduled time will be cut off by a following show.": "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten.", + "Cancel Current Show?": "Aktuelle Sendung abbrechen?", + "Stop recording current show?": "Aufnahme der aktuellen Sendung stoppen?", + "Ok": "Speichern", + "Contents of Show": "Sendungsinhalt", + "Remove all content?": "Gesamten Inhalt entfernen?", + "Delete selected item(s)?": "Gewählte Objekte löschen?", + "Start": "Beginn", + "End": "Ende", + "Duration": "Dauer", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Sendung ist leer", + "Recording From Line In": "Aufnehmen über Line In", + "Track preview": "Titel Vorschau", + "Cannot schedule outside a show.": "Es ist keine Planung außerhalb einer Sendung möglich.", + "Moving 1 Item": "Verschiebe 1 Objekt", + "Moving %s Items": "Verschiebe %s Objekte", + "Save": "Speichern", + "Cancel": "Abbrechen", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen", + "Select all": "Alles auswählen", + "Select none": "Nichts auswählen", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ausgewählte Elemente aus dem Programm entfernen", + "Jump to the current playing track": "Springe zu aktuellem Titel", + "Jump to Current": "", + "Cancel current show": "Aktuelle Sendung abbrechen", + "Open library to add or remove content": "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden", + "Add / Remove Content": "Inhalt hinzufügen / entfernen", + "in use": "In Verwendung", + "Disk": "Disk", + "Look in": "Suchen in", + "Open": "Öffnen", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programm Manager", + "Guest": "Gast", + "Guests can do the following:": "Gäste können folgendes tun:", + "View schedule": "Kalender betrachten", + "View show content": "Sendungsinhalt betrachten", + "DJs can do the following:": "DJs können folgendes tun:", + "Manage assigned show content": "Verwalten zugewiesener Sendungsinhalte", + "Import media files": "Mediendateien importieren", + "Create playlists, smart blocks, and webstreams": "Erstellen von Playlisten, Smart Blöcken und Webstreams", + "Manage their own library content": "Verwalten eigener Bibliotheksinhalte", + "Program Managers can do the following:": "", + "View and manage show content": "Sendungsinhalte betrachten und verwalten", + "Schedule shows": "Sendungen festlegen", + "Manage all library content": "Verwalten der gesamten Bibliothek", + "Admins can do the following:": "Admins können folgendes tun:", + "Manage preferences": "Einstellungen verwalten", + "Manage users": "Benutzer verwalten", + "Manage watched folders": "Verwalten überwachter Verzeichnisse", + "Send support feedback": "Support Feedback senden", + "View system status": "System Status betrachten", + "Access playout history": "Zugriff auf Playlist Verlauf", + "View listener stats": "Hörerstatistiken betrachten", + "Show / hide columns": "Spalten auswählen", + "Columns": "", + "From {from} to {to}": "Von {from} bis {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "So", + "Mo": "Mo", + "Tu": "Di", + "We": "Mi", + "Th": "Do", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Schließen", + "Hour": "Stunde", + "Minute": "Minute", + "Done": "Fertig", + "Select files": "Dateien auswählen", + "Add files to the upload queue and click the start button.": "Dateien zur Uploadliste hinzufügen und den Startbutton klicken.", + "Filename": "", + "Size": "", + "Add Files": "Dateien hinzufügen", + "Stop Upload": "Upload stoppen", + "Start upload": "Upload starten", + "Start Upload": "", + "Add files": "Dateien hinzufügen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d Dateien hochgeladen", + "N/A": "N/A", + "Drag files here.": "Dateien in dieses Feld ziehen.(Drag & Drop)", + "File extension error.": "Fehler in der Dateierweiterung.", + "File size error.": "Fehler in der Dateigröße.", + "File count error.": "Fehler in der Dateianzahl", + "Init error.": "Init Fehler.", + "HTTP Error.": "HTTP Fehler.", + "Security error.": "Sicherheitsfehler.", + "Generic error.": "Allgemeiner Fehler.", + "IO error.": "IO Fehler.", + "File: %s": "Datei: %s", + "%d files queued": "%d Dateien in der Warteschlange", + "File: %f, size: %s, max file size: %m": "Datei: %f, Größe: %s, Maximale Dateigröße: %m", + "Upload URL might be wrong or doesn't exist": "Upload-URL scheint falsch zu sein oder existiert nicht", + "Error: File too large: ": "Fehler: Datei zu groß: ", + "Error: Invalid file extension: ": "Fehler: ungültige Dateierweiterung: ", + "Set Default": "Standard festlegen", + "Create Entry": "Eintrag erstellen", + "Edit History Record": "Verlaufsprotokoll bearbeiten", + "No Show": "Keine Sendung", + "Copied %s row%s to the clipboard": "%s Reihen%s in die Zwischenablage kopiert", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "Autor", + "Description": "Beschreibung", + "Link": "Link", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktiviert", + "Disabled": "Deaktiviert", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut.", + "You are viewing an older version of %s": "Sie betrachten eine ältere Version von %s", + "You cannot add tracks to dynamic blocks.": "Sie können einem Dynamischen Smart Block keine Titel hinzufügen.", + "You don't have permission to delete selected %s(s).": "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung.", + "You can only add tracks to smart block.": "Sie können einem Smart Block nur Titel hinzufügen.", + "Untitled Playlist": "Unbenannte Playlist", + "Untitled Smart Block": "Unbenannter Smart Block", + "Unknown Playlist": "Unbekannte Playlist", + "Preferences updated.": "Einstellungen aktualisiert.", + "Stream Setting Updated.": "Stream-Einstellungen aktualisiert.", + "path should be specified": "Pfad muß angegeben werden", + "Problem with Liquidsoap...": "Problem mit Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Wiederholung der Sendung %s vom %s um %s", + "Select cursor": "Cursor wählen", + "Remove cursor": "Cursor entfernen", + "show does not exist": "Sendung existiert nicht", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Benutzer erfolgreich hinzugefügt!", + "User updated successfully!": "Benutzer erfolgreich aktualisiert!", + "Settings updated successfully!": "Einstellungen erfolgreich aktualisiert!", + "Untitled Webstream": "Unbenannter Webstream", + "Webstream saved.": "Webstream gespeichert.", + "Invalid form values.": "Ungültige Formularwerte.", + "Invalid character entered": "Ungültiges Zeichen eingegeben", + "Day must be specified": "Tag muß angegeben werden", + "Time must be specified": "Zeit muß angegeben werden", + "Must wait at least 1 hour to rebroadcast": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Benutzerdefiniertes Login:", + "Custom Username": "Benutzerdefinierter Benutzername", + "Custom Password": "Benutzerdefiniertes Passwort", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Das Feld Benutzername darf nicht leer sein.", + "Password field cannot be empty.": "Das Feld Passwort darf nicht leer sein.", + "Record from Line In?": "Aufzeichnen von Line-In?", + "Rebroadcast?": "Wiederholen?", + "days": "Tage", + "Link:": "Verknüpfen:", + "Repeat Type:": "Wiederholungstyp:", + "weekly": "wöchentlich", + "every 2 weeks": "jede zweite Woche", + "every 3 weeks": "jede dritte Woche", + "every 4 weeks": "jede vierte Woche", + "monthly": "monatlich", + "Select Days:": "Tage wählen:", + "Repeat By:": "Wiederholung von:", + "day of the month": "Tag des Monats", + "day of the week": "Tag der Woche", + "Date End:": "Zeitpunkt Ende:", + "No End?": "Kein Enddatum?", + "End date must be after start date": "Enddatum muß nach dem Startdatum liegen", + "Please select a repeat day": "Bitte einen Tag zum Wiederholen wählen", + "Background Colour:": "Hintergrundfarbe:", + "Text Colour:": "Textfarbe:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Unbenannte Sendung", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Beschreibung:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} ist nicht im Format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Dauer:", + "Timezone:": "Zeitzone:", + "Repeats?": "Wiederholungen?", + "Cannot create show in the past": "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden", + "Cannot modify start date/time of the show that is already started": "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat.", + "End date/time cannot be in the past": "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen", + "Cannot have duration < 0m": "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein.", + "Cannot have duration 00h 00m": "Die Dauer einer Sendung kann nicht 00h 00m sein", + "Cannot have duration greater than 24h": "Die Dauer einer Sendung kann nicht länger als 24h sein", + "Cannot schedule overlapping shows": "Sendungen können nicht überlappend geplant werden.", + "Search Users:": "Suche Benutzer:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Benutzername:", + "Password:": "Passwort:", + "Verify Password:": "Passwort bestätigen:", + "Firstname:": "Vorname:", + "Lastname:": "Nachname:", + "Email:": "E-Mail:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Benutzertyp:", + "Login name is not unique.": "Benutzername ist bereits vorhanden.", + "Delete All Tracks in Library": "", + "Date Start:": "Zeitpunkt Beginn:", + "Title:": "Titel:", + "Creator:": "Interpret:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jahr:", + "Label:": "Label:", + "Composer:": "Komponist:", + "Conductor:": "Dirigent:", + "Mood:": "Stimmung:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC-Nr.:", + "Website:": "Webseite:", + "Language:": "Sprache:", + "Publish...": "Veröffentlichen...", + "Start Time": "Startzeit", + "End Time": "Endzeit", + "Interface Timezone:": "Interface Zeitzone:", + "Station Name": "Sendername", + "Station Description": "", + "Station Logo:": "Sender Logo:", + "Note: Anything larger than 600x600 will be resized.": "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert.", + "Default Crossfade Duration (s):": "Standard Crossfade Dauer (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Standard Fade In (s):", + "Default Fade Out (s):": "Standard Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Sendestation Zeitzone", + "Week Starts On": "Woche beginnt am", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Anmeldung", + "Password": "Passwort", + "Confirm new password": "Neues Passwort bestätigen", + "Password confirmation does not match your password.": "Passwortbestätigung stimmt nicht mit Passwort überein.", + "Email": "", + "Username": "Benutzername", + "Reset password": "Passwort zurücksetzen", + "Back": "", + "Now Playing": "Jetzt", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Alle meine Sendungen:", + "My Shows": "", + "Select criteria": " - Kriterien - ", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Stunden", + "minutes": "Minuten", + "items": "Titel", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "Statisch", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Playlist-Inhalt erstellen und Kriterien speichern", + "Shuffle playlist content": "Inhalt der Playlist Mischen", + "Shuffle": "Mischen", + "Limit cannot be empty or smaller than 0": "Beschränkung kann nicht leer oder kleiner als 0 sein", + "Limit cannot be more than 24 hrs": "Beschränkung kann nicht größer als 24 Stunden sein", + "The value should be an integer": "Der Wert muß eine ganze Zahl sein", + "500 is the max item limit value you can set": "Die Anzahl der Objekte ist auf 500 beschränkt", + "You must select Criteria and Modifier": "Sie müssen Kriterium und Modifikator bestimmen", + "'Length' should be in '00:00:00' format": "Die 'Dauer' muß im Format '00:00:00' eingegeben werden", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Der eingegebene Wert muß aus Ziffern bestehen", + "The value should be less then 2147483648": "Der eingegebene Wert muß kleiner sein als 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen.", + "Value cannot be empty": "Der Wert darf nicht leer sein", + "Stream Label:": "Streambezeichnung:", + "Artist - Title": "Artist - Titel", + "Show - Artist - Title": "Sendung - Artist - Titel", + "Station name - Show name": "Sender - Sendung", + "Off Air Metadata": "Off Air Metadaten", + "Enable Replay Gain": "Replay Gain aktivieren", + "Replay Gain Modifier": "Replay Gain Modifikator", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktiviert:", + "Mobile:": "", + "Stream Type:": "Stream Typ:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Service Typ:", + "Channels:": "Kanäle:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Verzeichnis:", + "Watched Folders:": "Überwachte Verzeichnisse:", + "Not a valid Directory": "Kein gültiges Verzeichnis", + "Value is required and can't be empty": "Wert ist erforderlich und darf nicht leer sein", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} ist keine gültige E-Mail-Adresse im Format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} entspricht nicht dem erforderlichen Datumsformat '%format%'", + "{msg} is less than %min% characters long": "{msg} ist kürzer als %min% Zeichen lang", + "{msg} is more than %max% characters long": "{msg} ist mehr als %max% Zeichen lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} liegt nicht zwischen '%min%' und '%max%'", + "Passwords do not match": "Passwörter stimmen nicht überein", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue In und Cue Out sind Null.", + "Can't set cue out to be greater than file length.": "Cue In darf nicht größer als die Gesamtlänge der Datei sein.", + "Can't set cue in to be larger than cue out.": "Cue In darf nicht größer als Cue Out sein.", + "Can't set cue out to be smaller than cue in.": "Cue Out darf nicht kleiner als Cue In sein.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Land wählen", + "livestream": "", + "Cannot move items out of linked shows": "Inhalte aus verknüpften Sendungen können nicht verschoben werden", + "The schedule you're viewing is out of date! (sched mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)", + "The schedule you're viewing is out of date! (instance mismatch)": "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)", + "The schedule you're viewing is out of date!": "Der Kalender den sie sehen ist nicht mehr aktuell!", + "You are not allowed to schedule show %s.": "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen.", + "You cannot add files to recording shows.": "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden.", + "The show %s is over and cannot be scheduled.": "Die Sendung %s ist beendet und kann daher nicht verändert werden.", + "The show %s has been previously updated!": "Die Sendung %s wurde bereits aktualisiert!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Eine der gewählten Dateien existiert nicht!", + "Shows can have a max length of 24 hours.": "Die Maximaldauer einer Sendung beträgt 24 Stunden.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Sendungen können nicht überlappend geplant werden.\nBeachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus.", + "Rebroadcast of %s from %s": "Wiederholung der Sendung %s von %s", + "Length needs to be greater than 0 minutes": "Dauer muß länger als 0 Minuten sein.", + "Length should be of form \"00h 00m\"": "Dauer im Format \"00h 00m\" eingeben.", + "URL should be of form \"https://example.org\"": "URL im Format \"https://example.org\" eingeben.", + "URL should be 512 characters or less": "URL darf aus höchstens 512 Zeichen bestehen.", + "No MIME type found for webstream.": "Es konnte kein MIME-Typ für den Webstream gefunden werden.", + "Webstream name cannot be empty": "Die Bezeichnung eines Webstreams darf nicht leer sein.", + "Could not parse XSPF playlist": "Die XSPF Playlist konnte nicht eingelesen werden", + "Could not parse PLS playlist": "Die PLS Playlist konnte nicht eingelesen werden", + "Could not parse M3U playlist": "Die M3U Playlist konnte nicht eingelesen werden", + "Invalid webstream - This appears to be a file download.": "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein.", + "Unrecognized stream type: %s": "Unbekannter Stream-Typ: %s", + "Record file doesn't exist": "Aufzeichnung existiert nicht", + "View Recorded File Metadata": "Metadaten der aufgezeichneten Datei anzeigen", + "Schedule Tracks": "Sendungsinhalte verwalten", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Sendung ändern", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Zugriff verweigert", + "Can't drag and drop repeating shows": "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden.", + "Can't move a past show": "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden.", + "Can't move show into past": "Eine Sendung kann nicht in die Vergangenheit verschoben werden.", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt.", + "Show was deleted because recorded show does not exist!": "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!", + "Must wait 1 hour to rebroadcast.": "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich.", + "Track": "Titel", + "Played": "Abgespielt", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/el_GR.json b/webapp/src/locale/el_GR.json index 1590b65d82..b03ba8ccfd 100644 --- a/webapp/src/locale/el_GR.json +++ b/webapp/src/locale/el_GR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία", - "%s:%s:%s is not a valid time": "%s : %s : %s δεν αποτελεί έγκυρη ώρα", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Ημερολόγιο", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Xρήστες", - "Track Types": "", - "Streams": "Streams", - "Status": "Κατάσταση", - "Analytics": "", - "Playout History": "Ιστορικό Playout", - "History Templates": "Ιστορικό Template", - "Listener Stats": "Στατιστικές Ακροατών", - "Show Listener Stats": "", - "Help": "Βοήθεια", - "Getting Started": "Έναρξη", - "User Manual": "Εγχειρίδιο Χρήστη", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα", - "You are not allowed to access this resource. ": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε.", - "Bad request. 'mode' parameter is invalid": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη", - "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", - "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", - "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", - "To configure and use the embeddable player you must: 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must: Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first: Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s δεν βρέθηκε", - "Something went wrong.": "Κάτι πήγε στραβά.", - "Preview": "Προεπισκόπηση", - "Add to Playlist": "Προσθήκη στη λίστα αναπαραγωγής", - "Add to Smart Block": "Προσθήκη στο Smart Block", - "Delete": "Διαγραφή", - "Edit...": "", - "Download": "Λήψη", - "Duplicate Playlist": "Αντιγραφή Λίστας Αναπαραγωγής", - "Duplicate Smartblock": "", - "No action available": "Καμία διαθέσιμη δράση", - "You don't have permission to delete selected items.": "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Αντιγραφή από %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams.", - "Audio Player": "Αναπαραγωγή ήχου", - "Something went wrong!": "", - "Recording:": "Εγγραφή", - "Master Stream": "Κύριο Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Τίποτα δεν έχει προγραμματιστεί", - "Current Show:": "Τρέχουσα Εκπομπή:", - "Current": "Τρέχουσα", - "You are running the latest version": "Χρησιμοποιείτε την τελευταία έκδοση", - "New version available: ": "Νέα έκδοση διαθέσιμη: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής", - "Add to current smart block": "Προσθήκη στο τρέχον smart block", - "Adding 1 Item": "Προσθήκη 1 Στοιχείου", - "Adding %s Items": "Προσθήκη %s στοιχείου/ων", - "You can only add tracks to smart blocks.": "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής.", - "Please select a cursor position on timeline.": "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Προσθήκη", - "New": "", - "Edit": "Επεξεργασία", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Αφαίρεση", - "Edit Metadata": "Επεξεργασία Μεταδεδομένων", - "Add to selected show": "Προσθήκη στην επιλεγμένη εκπομπή", - "Select": "Επιλογή", - "Select this page": "Επιλέξτε αυτή τη σελίδα", - "Deselect this page": "Καταργήστε αυτήν την σελίδα", - "Deselect all": "Κατάργηση όλων", - "Are you sure you want to delete the selected item(s)?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;", - "Scheduled": "Προγραμματισμένο", - "Tracks": "", - "Playlist": "", - "Title": "Τίτλος", - "Creator": "Δημιουργός", - "Album": "Album", - "Bit Rate": "Ρυθμός Bit", - "BPM": "BPM", - "Composer": "Συνθέτης", - "Conductor": "Ενορχήστρωση", - "Copyright": "Copyright", - "Encoded By": "Κωδικοποιήθηκε από", - "Genre": "Είδος", - "ISRC": "ISRC", - "Label": "Εταιρεία", - "Language": "Γλώσσα", - "Last Modified": "Τελευταία τροποποίηση", - "Last Played": "Τελευταία αναπαραγωγή", - "Length": "Διάρκεια", - "Mime": "Μίμος", - "Mood": "Διάθεση", - "Owner": "Ιδιοκτήτης", - "Replay Gain": "Κέρδος Επανάληψης", - "Sample Rate": "Ρυθμός δειγματοληψίας", - "Track Number": "Αριθμός Κομματιού", - "Uploaded": "Φορτώθηκε", - "Website": "Ιστοσελίδα", - "Year": "Έτος", - "Loading...": "Φόρτωση...", - "All": "Όλα", - "Files": "Αρχεία", - "Playlists": "Λίστες αναπαραγωγής", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Άγνωστος τύπος: ", - "Are you sure you want to delete the selected item?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;", - "Uploading in progress...": "Ανέβασμα σε εξέλιξη...", - "Retrieving data from the server...": "Ανάκτηση δεδομένων από τον διακομιστή...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Κωδικός σφάλματος: ", - "Error msg: ": "Μήνυμα σφάλματος: ", - "Input must be a positive number": "Το input πρέπει να είναι θετικός αριθμός", - "Input must be a number": "Το input πρέπει να είναι αριθμός", - "Input must be in the format: yyyy-mm-dd": "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη", - "Input must be in the format: hh:mm:ss.t": "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;", - "Open Media Builder": "Άνοιγμα Δημιουργού Πολυμέσων", - "please put in a time '00:00:00 (.0)'": "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: ", - "Dynamic block is not previewable": "Αδύνατη η προεπισκόπιση του δυναμικού block", - "Limit to: ": "Όριο για: ", - "Playlist saved": "Οι λίστες αναπαραγωγής αποθηκεύτηκαν", - "Playlist shuffled": "Ανασχηματισμός λίστας αναπαραγωγής", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια.", - "Listener Count on %s: %s": "Καταμέτρηση Ακροατών για %s : %s", - "Remind me in 1 week": "Υπενθύμιση σε 1 εβδομάδα", - "Remind me never": "Καμία υπενθύμιση", - "Yes, help Airtime": "Ναι, βοηθώ το Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif ", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν", - "Smart block saved": "Το Smart block αποθηκεύτηκε", - "Processing...": "Επεξεργασία...", - "Select modifier": "Επιλέξτε τροποποιητή", - "contains": "περιέχει", - "does not contain": "δεν περιέχει", - "is": "είναι", - "is not": "δεν είναι", - "starts with": "ξεκινά με", - "ends with": "τελειώνει με", - "is greater than": "είναι μεγαλύτερος από", - "is less than": "είναι μικρότερος από", - "is in the range": "είναι στην κλίμακα", - "Generate": "Δημιουργία", - "Choose Storage Folder": "Επιλογή Φακέλου Αποθήκευσης", - "Choose Folder to Watch": "Επιλογή Φακέλου για Προβολή", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\nΑυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!", - "Manage Media Folders": "Διαχείριση Φακέλων Πολυμέσων", - "Are you sure you want to remove the watched folder?": "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;", - "This path is currently not accessible.": "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται.", - "Connected to the streaming server": "Συνδέθηκε με τον διακομιστή streaming ", - "The stream is disabled": "Το stream είναι απενεργοποιημένο", - "Getting information from the server...": "Λήψη πληροφοριών από το διακομιστή...", - "Can not connect to the streaming server": "Αδύνατη η σύνδεση με τον διακομιστή streaming ", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών.", - "Warning: You cannot change this field while the show is currently playing": "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής ", - "No result found": "Δεν βρέθηκαν αποτελέσματα", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν.", - "Specify custom authentication which will work only for this show.": "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή.", - "The show instance doesn't exist anymore!": "Η εκπομπή δεν υπάρχει πια!", - "Warning: Shows cannot be re-linked": "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη ", - "Show": "Εκπομπή", - "Show is empty": "Η εκπομπή είναι άδεια", - "1m": "1λ", - "5m": "5λ", - "10m": "10λ", - "15m": "15λ", - "30m": "30λ", - "60m": "60λ", - "Retreiving data from the server...": "Ανάκτηση δεδομένων από το διακομιστή...", - "This show has no scheduled content.": "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο.", - "This show is not completely filled with content.": "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο ", - "January": "Ιανουάριος", - "February": "Φεβρουάριος", - "March": "Μάρτιος", - "April": "Απρίλης", - "May": "Μάιος", - "June": "Ιούνιος", - "July": "Ιούλιος", - "August": "Αύγουστος", - "September": "Σεπτέμβριος", - "October": "Οκτώβριος", - "November": "Νοέμβριος", - "December": "Δεκέμβριος", - "Jan": "Ιαν", - "Feb": "Φεβ", - "Mar": "Μαρ", - "Apr": "Απρ", - "Jun": "Ιουν", - "Jul": "Ιουλ", - "Aug": "Αυγ", - "Sep": "Σεπ", - "Oct": "Οκτ", - "Nov": "Νοε", - "Dec": "Δεκ", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Κυριακή", - "Monday": "Δευτέρα", - "Tuesday": "Τρίτη", - "Wednesday": "Τετάρτη", - "Thursday": "Πέμπτη", - "Friday": "Παρασκευή", - "Saturday": "Σάββατο", - "Sun": "Κυρ", - "Mon": "Δευ", - "Tue": "Τρι", - "Wed": "Τετ", - "Thu": "Πεμ", - "Fri": "Παρ", - "Sat": "Σαβ", - "Shows longer than their scheduled time will be cut off by a following show.": "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή.", - "Cancel Current Show?": "Ακύρωση Τρέχουσας Εκπομπής;", - "Stop recording current show?": "Πάυση ηχογράφησης τρέχουσας εκπομπής;", - "Ok": "Οκ", - "Contents of Show": "Περιεχόμενα Εκπομπής", - "Remove all content?": "Αφαίρεση όλου του περιεχομένου;", - "Delete selected item(s)?": "Διαγραφή επιλεγμένου στοιχείου/ων;", - "Start": "Έναρξη", - "End": "Τέλος", - "Duration": "Διάρκεια", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Η εκπομπή είναι άδεια", - "Recording From Line In": "Ηχογράφηση Από Line In", - "Track preview": "Προεπισκόπηση κομματιού", - "Cannot schedule outside a show.": "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής.", - "Moving 1 Item": "Μετακίνηση 1 Στοιχείου", - "Moving %s Items": "Μετακίνηση Στοιχείων %s", - "Save": "Αποθήκευση", - "Cancel": "Ακύρωση", - "Fade Editor": "Επεξεργαστής Fade", - "Cue Editor": "Επεξεργαστής Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API", - "Select all": "Επιλογή όλων", - "Select none": "Καμία Επιλογή", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων ", - "Jump to the current playing track": "Μετάβαση στο τρέχον κομμάτι ", - "Jump to Current": "", - "Cancel current show": "Ακύρωση τρέχουσας εκπομπής", - "Open library to add or remove content": "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου", - "Add / Remove Content": "Προσθήκη / Αφαίρεση Περιεχομένου", - "in use": "σε χρήση", - "Disk": "Δίσκος", - "Look in": "Κοιτάξτε σε", - "Open": "Άνοιγμα", - "Admin": "Διαχειριστής", - "DJ": "DJ", - "Program Manager": "Διευθυντής Προγράμματος", - "Guest": "Επισκέπτης", - "Guests can do the following:": "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω", - "View schedule": "Προβολή Προγράμματος", - "View show content": "Προβολή περιεχομένου εκπομπής", - "DJs can do the following:": "Οι DJ μπορούν να κάνουν τα παρακάτω", - "Manage assigned show content": "Διαχείριση ανατεθημένου περιεχομένου εκπομπής", - "Import media files": "Εισαγωγή αρχείων πολυμέσων", - "Create playlists, smart blocks, and webstreams": "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams ", - "Manage their own library content": "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης", - "Program Managers can do the following:": "", - "View and manage show content": "Προβολή και διαχείριση περιεχομένου εκπομπής", - "Schedule shows": "Πρόγραμμα εκπομπών", - "Manage all library content": "Διαχείριση όλου του περιεχομένου βιβλιοθήκης", - "Admins can do the following:": "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:", - "Manage preferences": "Διαχείριση προτιμήσεων", - "Manage users": "Διαχείριση Χρηστών", - "Manage watched folders": "Διαχείριση προβεβλημένων φακέλων ", - "Send support feedback": "Αποστολή Σχολίων Υποστήριξης", - "View system status": "Προβολή κατάστασης συστήματος", - "Access playout history": "Πρόσβαση στην ιστορία playout", - "View listener stats": "Προβολή στατιστικών των ακροατών", - "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", - "Columns": "", - "From {from} to {to}": "Από {from} σε {to}", - "kbps": "Kbps", - "yyyy-mm-dd": "εεεε-μμ-ηη", - "hh:mm:ss.t": "ωω:λλ:δδ.t", - "kHz": "kHz", - "Su": "Κυ", - "Mo": "Δε", - "Tu": "Τρ", - "We": "Τε", - "Th": "Πε", - "Fr": "Πα", - "Sa": "Σα", - "Close": "Κλείσιμο", - "Hour": "Ώρα", - "Minute": "Λεπτό", - "Done": "Ολοκληρώθηκε", - "Select files": "Επιλογή αρχείων", - "Add files to the upload queue and click the start button.": "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης", - "Filename": "", - "Size": "", - "Add Files": "Προσθήκη Αρχείων", - "Stop Upload": "Στάση Ανεβάσματος", - "Start upload": "Έναρξη ανεβάσματος", - "Start Upload": "", - "Add files": "Προσθήκη αρχείων", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Ανέβηκαν %d/%d αρχεία", - "N/A": "N/A", - "Drag files here.": "Σύρετε αρχεία εδώ.", - "File extension error.": "Σφάλμα επέκτασης αρχείου.", - "File size error.": "Σφάλμα μεγέθους αρχείου.", - "File count error.": "Σφάλμα μέτρησης αρχείων.", - "Init error.": "Σφάλμα αρχικοποίησης.", - "HTTP Error.": "Σφάλμα HTTP.", - "Security error.": "Σφάλμα ασφάλειας.", - "Generic error.": "Γενικό σφάλμα.", - "IO error.": "Σφάλμα IO", - "File: %s": "Αρχείο: %s", - "%d files queued": "%d αρχεία σε αναμονή", - "File: %f, size: %s, max file size: %m": "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m", - "Upload URL might be wrong or doesn't exist": "Το URL είτε είναι λάθος ή δεν υφίσταται", - "Error: File too large: ": "Σφάλμα: Πολύ μεγάλο αρχείο: ", - "Error: Invalid file extension: ": "Σφάλμα: Μη έγκυρη προέκταση αρχείου: ", - "Set Default": "Ως Προεπιλογή", - "Create Entry": "Δημιουργία Εισόδου", - "Edit History Record": "Επεξεργασία Ιστορικού", - "No Show": "Καμία Εκπομπή", - "Copied %s row%s to the clipboard": "Αντιγράφηκαν %s σειρές%s στο πρόχειρο", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Περιγραφή", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ενεργοποιημένο", - "Disabled": "Απενεργοποιημένο", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά.", - "You are viewing an older version of %s": "Βλέπετε μια παλαιότερη έκδοση του %s", - "You cannot add tracks to dynamic blocks.": "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks.", - "You don't have permission to delete selected %s(s).": "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s).", - "You can only add tracks to smart block.": "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block.", - "Untitled Playlist": "Λίστα Αναπαραγωγής χωρίς Τίτλο", - "Untitled Smart Block": "Smart Block χωρίς Τίτλο", - "Unknown Playlist": "Άγνωστη λίστα αναπαραγωγής", - "Preferences updated.": "Οι προτιμήσεις ενημερώθηκαν.", - "Stream Setting Updated.": "Η Ρύθμιση Stream Ενημερώθηκε.", - "path should be specified": "η διαδρομή πρέπει να καθοριστεί", - "Problem with Liquidsoap...": "Πρόβλημα με Liquidsoap ...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Αναμετάδοση της εκπομπής %s από %s σε %s", - "Select cursor": "Επιλέξτε cursor", - "Remove cursor": "Αφαίρεση cursor", - "show does not exist": "η εκπομπή δεν υπάρχει", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Ο χρήστης προστέθηκε επιτυχώς!", - "User updated successfully!": "Ο χρήστης ενημερώθηκε με επιτυχία!", - "Settings updated successfully!": "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!", - "Untitled Webstream": "Webstream χωρίς Τίτλο", - "Webstream saved.": "Το Webstream αποθηκεύτηκε.", - "Invalid form values.": "Άκυρες μορφές αξίας.", - "Invalid character entered": "Εισαγωγή άκυρου χαρακτήρα", - "Day must be specified": "Η μέρα πρέπει να προσδιοριστεί", - "Time must be specified": "Η ώρα πρέπει να προσδιοριστεί", - "Must wait at least 1 hour to rebroadcast": "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Χρήση Προσαρμοσμένης Ταυτοποίησης:", - "Custom Username": "Προσαρμοσμένο Όνομα Χρήστη", - "Custom Password": "Προσαρμοσμένος Κωδικός Πρόσβασης", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό.", - "Password field cannot be empty.": "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό.", - "Record from Line In?": "Ηχογράφηση από Line In;", - "Rebroadcast?": "Αναμετάδοση;", - "days": "ημέρες", - "Link:": "Σύνδεσμος", - "Repeat Type:": "Τύπος Επανάληψης:", - "weekly": "εβδομαδιαία", - "every 2 weeks": "κάθε 2 εβδομάδες", - "every 3 weeks": "κάθε 3 εβδομάδες", - "every 4 weeks": "κάθε 4 εβδομάδες", - "monthly": "μηνιαία", - "Select Days:": "Επιλέξτε Ημέρες:", - "Repeat By:": "Επανάληψη από:", - "day of the month": "ημέρα του μήνα", - "day of the week": "ημέρα της εβδομάδας", - "Date End:": "Ημερομηνία Λήξης:", - "No End?": "Χωρίς Τέλος;", - "End date must be after start date": "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης", - "Please select a repeat day": "Επιλέξτε ημέρα επανάληψης", - "Background Colour:": "Χρώμα Φόντου:", - "Text Colour:": "Χρώμα Κειμένου:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Όνομα:", - "Untitled Show": "Εκπομπή χωρίς Τίτλο", - "URL:": "Διεύθυνση URL:", - "Genre:": "Είδος:", - "Description:": "Περιγραφή:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Διάρκεια:", - "Timezone:": "Ζώνη Ώρας", - "Repeats?": "Επαναλήψεις;", - "Cannot create show in the past": "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν", - "Cannot modify start date/time of the show that is already started": "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει", - "End date/time cannot be in the past": "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν", - "Cannot have duration < 0m": "Δεν μπορεί να έχει διάρκεια < 0m", - "Cannot have duration 00h 00m": "Δεν μπορεί να έχει διάρκεια 00h 00m", - "Cannot have duration greater than 24h": "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες", - "Cannot schedule overlapping shows": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών", - "Search Users:": "Αναζήτηση Χρηστών:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Όνομα Χρήστη:", - "Password:": "Κωδικός πρόσβασης:", - "Verify Password:": "Επαλήθευση κωδικού πρόσβασης", - "Firstname:": "Όνομα:", - "Lastname:": "Επώνυμο:", - "Email:": "Email:", - "Mobile Phone:": "Κινητό Τηλέφωνο:", - "Skype:": "Skype", - "Jabber:": "Jabber", - "User Type:": "Τύπος Χρήστη:", - "Login name is not unique.": "Το όνομα εισόδου δεν είναι μοναδικό.", - "Delete All Tracks in Library": "", - "Date Start:": "Ημερομηνία Έναρξης:", - "Title:": "Τίτλος:", - "Creator:": "Δημιουργός:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Έτος", - "Label:": "Δισκογραφική:", - "Composer:": "Συνθέτης:", - "Conductor:": "Μαέστρος:", - "Mood:": "Διάθεση:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Αριθμός ISRC:", - "Website:": "Ιστοσελίδα:", - "Language:": "Γλώσσα:", - "Publish...": "", - "Start Time": "Ώρα Έναρξης", - "End Time": "Ώρα Τέλους", - "Interface Timezone:": "Interface Ζώνης ώρας:", - "Station Name": "Όνομα Σταθμού", - "Station Description": "", - "Station Logo:": "Λογότυπο Σταθμού:", - "Note: Anything larger than 600x600 will be resized.": "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος.", - "Default Crossfade Duration (s):": "Προεπιλεγμένη Διάρκεια Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Προεπιλεγμένο Fade In (s):", - "Default Fade Out (s):": "Προεπιλεγμένο Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Ζώνη Ώρας Σταθμού", - "Week Starts On": "Η Εβδομάδα αρχίζει ", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Σύνδεση", - "Password": "Κωδικός πρόσβασης", - "Confirm new password": "Επιβεβαίωση νέου κωδικού πρόσβασης", - "Password confirmation does not match your password.": "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας.", - "Email": "", - "Username": "Όνομα Χρήστη", - "Reset password": "Επαναφορά κωδικού πρόσβασης", - "Back": "", - "Now Playing": "Αναπαραγωγή σε Εξέλιξη", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Όλες οι Εκπομπές μου:", - "My Shows": "", - "Select criteria": "Επιλέξτε κριτήρια", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Ρυθμός Δειγματοληψίας (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "ώρες", - "minutes": "λεπτά", - "items": "στοιχεία", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Δυναμικό", - "Static": "Στατικό", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων", - "Shuffle playlist content": "Περιεχόμενο λίστας Shuffle ", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0", - "Limit cannot be more than 24 hrs": "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες", - "The value should be an integer": "Η τιμή πρέπει να είναι ακέραιος αριθμός", - "500 is the max item limit value you can set": "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε", - "You must select Criteria and Modifier": "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή", - "'Length' should be in '00:00:00' format": "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Η τιμή πρέπει να είναι αριθμός", - "The value should be less then 2147483648": "Η τιμή πρέπει να είναι μικρότερη από 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες", - "Value cannot be empty": "Η αξία δεν μπορεί να είναι κενή", - "Stream Label:": "Stream Label:", - "Artist - Title": "Καλλιτέχνης - Τίτλος", - "Show - Artist - Title": "Εκπομπή - Καλλιτέχνης - Τίτλος", - "Station name - Show name": "Όνομα Σταθμού - Όνομα Εκπομπής", - "Off Air Metadata": "Μεταδεδομένα Off Air", - "Enable Replay Gain": "Ενεργοποίηση Επανάληψη Κέρδους", - "Replay Gain Modifier": "Τροποποιητής Επανάληψης Κέρδους", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Ενεργοποιημένο", - "Mobile:": "", - "Stream Type:": "Τύπος Stream:", - "Bit Rate:": "Ρυθμός Δεδομένων:", - "Service Type:": "Τύπος Υπηρεσίας:", - "Channels:": "Κανάλια", - "Server": "Διακομιστής", - "Port": "Θύρα", - "Mount Point": "Σημείο Προσάρτησης", - "Name": "Ονομασία", - "URL": "Διεύθυνση URL:", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Εισαγωγή Φακέλου:", - "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", - "Not a valid Directory": "Μη έγκυρο Ευρετήριο", - "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", - "{msg} is less than %min% characters long": "{msg} είναι λιγότερο από %min% χαρακτήρες ", - "{msg} is more than %max% characters long": "{msg} είναι περισσότερο από %max% χαρακτήρες ", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} δεν είναι μεταξύ '%min%' και '%max%', συνολικά", - "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in και cue out είναι μηδέν.", - "Can't set cue out to be greater than file length.": "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου.", - "Can't set cue in to be larger than cue out.": "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out.", - "Can't set cue out to be smaller than cue in.": "Το cue out δεν μπορεί να είναι μικρότερο από το cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Επιλέξτε Χώρα", - "livestream": "", - "Cannot move items out of linked shows": "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη.", - "The schedule you're viewing is out of date! (sched mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)", - "The schedule you're viewing is out of date! (instance mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)", - "The schedule you're viewing is out of date!": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!", - "You are not allowed to schedule show %s.": "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s..", - "You cannot add files to recording shows.": "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές.", - "The show %s is over and cannot be scheduled.": "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί.", - "The show %s has been previously updated!": "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Ένα επιλεγμένο αρχείο δεν υπάρχει!", - "Shows can have a max length of 24 hours.": "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της.", - "Rebroadcast of %s from %s": "Αναμετάδοση του %s από %s", - "Length needs to be greater than 0 minutes": "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά", - "Length should be of form \"00h 00m\"": "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"", - "URL should be of form \"https://example.org\"": "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"", - "URL should be 512 characters or less": "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες ", - "No MIME type found for webstream.": "Δεν βρέθηκε τύπος MIME για webstream.", - "Webstream name cannot be empty": "Το όνομα του webstream δεν μπορεί να είναι κενό", - "Could not parse XSPF playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF ", - "Could not parse PLS playlist": "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS", - "Could not parse M3U playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U", - "Invalid webstream - This appears to be a file download.": "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης.", - "Unrecognized stream type: %s": "Άγνωστος τύπος stream: %s", - "Record file doesn't exist": "Το αρχείο δεν υπάρχει", - "View Recorded File Metadata": "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων ", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Επεξεργασία Εκπομπής", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Δεν έχετε δικαίωμα πρόσβασης", - "Can't drag and drop repeating shows": "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών", - "Can't move a past show": "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής", - "Can't move show into past": "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της.", - "Show was deleted because recorded show does not exist!": "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!", - "Must wait 1 hour to rebroadcast.": "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση.", - "Track": "Κομμάτι", - "Played": "Παίχτηκε", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία", + "%s:%s:%s is not a valid time": "%s : %s : %s δεν αποτελεί έγκυρη ώρα", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Ημερολόγιο", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Xρήστες", + "Track Types": "", + "Streams": "Streams", + "Status": "Κατάσταση", + "Analytics": "", + "Playout History": "Ιστορικό Playout", + "History Templates": "Ιστορικό Template", + "Listener Stats": "Στατιστικές Ακροατών", + "Show Listener Stats": "", + "Help": "Βοήθεια", + "Getting Started": "Έναρξη", + "User Manual": "Εγχειρίδιο Χρήστη", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα", + "You are not allowed to access this resource. ": "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε.", + "Bad request. 'mode' parameter is invalid": "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη", + "You don't have permission to disconnect source.": "Δεν έχετε άδεια για αποσύνδεση πηγής.", + "There is no source connected to this input.": "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο.", + "You don't have permission to switch source.": "Δεν έχετε άδεια για αλλαγή πηγής.", + "To configure and use the embeddable player you must: 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must: Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first: Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s δεν βρέθηκε", + "Something went wrong.": "Κάτι πήγε στραβά.", + "Preview": "Προεπισκόπηση", + "Add to Playlist": "Προσθήκη στη λίστα αναπαραγωγής", + "Add to Smart Block": "Προσθήκη στο Smart Block", + "Delete": "Διαγραφή", + "Edit...": "", + "Download": "Λήψη", + "Duplicate Playlist": "Αντιγραφή Λίστας Αναπαραγωγής", + "Duplicate Smartblock": "", + "No action available": "Καμία διαθέσιμη δράση", + "You don't have permission to delete selected items.": "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Αντιγραφή από %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams.", + "Audio Player": "Αναπαραγωγή ήχου", + "Something went wrong!": "", + "Recording:": "Εγγραφή", + "Master Stream": "Κύριο Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Τίποτα δεν έχει προγραμματιστεί", + "Current Show:": "Τρέχουσα Εκπομπή:", + "Current": "Τρέχουσα", + "You are running the latest version": "Χρησιμοποιείτε την τελευταία έκδοση", + "New version available: ": "Νέα έκδοση διαθέσιμη: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής", + "Add to current smart block": "Προσθήκη στο τρέχον smart block", + "Adding 1 Item": "Προσθήκη 1 Στοιχείου", + "Adding %s Items": "Προσθήκη %s στοιχείου/ων", + "You can only add tracks to smart blocks.": "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής.", + "Please select a cursor position on timeline.": "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Προσθήκη", + "New": "", + "Edit": "Επεξεργασία", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Αφαίρεση", + "Edit Metadata": "Επεξεργασία Μεταδεδομένων", + "Add to selected show": "Προσθήκη στην επιλεγμένη εκπομπή", + "Select": "Επιλογή", + "Select this page": "Επιλέξτε αυτή τη σελίδα", + "Deselect this page": "Καταργήστε αυτήν την σελίδα", + "Deselect all": "Κατάργηση όλων", + "Are you sure you want to delete the selected item(s)?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;", + "Scheduled": "Προγραμματισμένο", + "Tracks": "", + "Playlist": "", + "Title": "Τίτλος", + "Creator": "Δημιουργός", + "Album": "Album", + "Bit Rate": "Ρυθμός Bit", + "BPM": "BPM", + "Composer": "Συνθέτης", + "Conductor": "Ενορχήστρωση", + "Copyright": "Copyright", + "Encoded By": "Κωδικοποιήθηκε από", + "Genre": "Είδος", + "ISRC": "ISRC", + "Label": "Εταιρεία", + "Language": "Γλώσσα", + "Last Modified": "Τελευταία τροποποίηση", + "Last Played": "Τελευταία αναπαραγωγή", + "Length": "Διάρκεια", + "Mime": "Μίμος", + "Mood": "Διάθεση", + "Owner": "Ιδιοκτήτης", + "Replay Gain": "Κέρδος Επανάληψης", + "Sample Rate": "Ρυθμός δειγματοληψίας", + "Track Number": "Αριθμός Κομματιού", + "Uploaded": "Φορτώθηκε", + "Website": "Ιστοσελίδα", + "Year": "Έτος", + "Loading...": "Φόρτωση...", + "All": "Όλα", + "Files": "Αρχεία", + "Playlists": "Λίστες αναπαραγωγής", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Άγνωστος τύπος: ", + "Are you sure you want to delete the selected item?": "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;", + "Uploading in progress...": "Ανέβασμα σε εξέλιξη...", + "Retrieving data from the server...": "Ανάκτηση δεδομένων από τον διακομιστή...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Κωδικός σφάλματος: ", + "Error msg: ": "Μήνυμα σφάλματος: ", + "Input must be a positive number": "Το input πρέπει να είναι θετικός αριθμός", + "Input must be a number": "Το input πρέπει να είναι αριθμός", + "Input must be in the format: yyyy-mm-dd": "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη", + "Input must be in the format: hh:mm:ss.t": "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;", + "Open Media Builder": "Άνοιγμα Δημιουργού Πολυμέσων", + "please put in a time '00:00:00 (.0)'": "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: ", + "Dynamic block is not previewable": "Αδύνατη η προεπισκόπιση του δυναμικού block", + "Limit to: ": "Όριο για: ", + "Playlist saved": "Οι λίστες αναπαραγωγής αποθηκεύτηκαν", + "Playlist shuffled": "Ανασχηματισμός λίστας αναπαραγωγής", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια.", + "Listener Count on %s: %s": "Καταμέτρηση Ακροατών για %s : %s", + "Remind me in 1 week": "Υπενθύμιση σε 1 εβδομάδα", + "Remind me never": "Καμία υπενθύμιση", + "Yes, help Airtime": "Ναι, βοηθώ το Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif ", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν", + "Smart block saved": "Το Smart block αποθηκεύτηκε", + "Processing...": "Επεξεργασία...", + "Select modifier": "Επιλέξτε τροποποιητή", + "contains": "περιέχει", + "does not contain": "δεν περιέχει", + "is": "είναι", + "is not": "δεν είναι", + "starts with": "ξεκινά με", + "ends with": "τελειώνει με", + "is greater than": "είναι μεγαλύτερος από", + "is less than": "είναι μικρότερος από", + "is in the range": "είναι στην κλίμακα", + "Generate": "Δημιουργία", + "Choose Storage Folder": "Επιλογή Φακέλου Αποθήκευσης", + "Choose Folder to Watch": "Επιλογή Φακέλου για Προβολή", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\nΑυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!", + "Manage Media Folders": "Διαχείριση Φακέλων Πολυμέσων", + "Are you sure you want to remove the watched folder?": "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;", + "This path is currently not accessible.": "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται.", + "Connected to the streaming server": "Συνδέθηκε με τον διακομιστή streaming ", + "The stream is disabled": "Το stream είναι απενεργοποιημένο", + "Getting information from the server...": "Λήψη πληροφοριών από το διακομιστή...", + "Can not connect to the streaming server": "Αδύνατη η σύνδεση με τον διακομιστή streaming ", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών.", + "Warning: You cannot change this field while the show is currently playing": "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής ", + "No result found": "Δεν βρέθηκαν αποτελέσματα", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν.", + "Specify custom authentication which will work only for this show.": "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή.", + "The show instance doesn't exist anymore!": "Η εκπομπή δεν υπάρχει πια!", + "Warning: Shows cannot be re-linked": "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη ", + "Show": "Εκπομπή", + "Show is empty": "Η εκπομπή είναι άδεια", + "1m": "1λ", + "5m": "5λ", + "10m": "10λ", + "15m": "15λ", + "30m": "30λ", + "60m": "60λ", + "Retreiving data from the server...": "Ανάκτηση δεδομένων από το διακομιστή...", + "This show has no scheduled content.": "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο.", + "This show is not completely filled with content.": "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο ", + "January": "Ιανουάριος", + "February": "Φεβρουάριος", + "March": "Μάρτιος", + "April": "Απρίλης", + "May": "Μάιος", + "June": "Ιούνιος", + "July": "Ιούλιος", + "August": "Αύγουστος", + "September": "Σεπτέμβριος", + "October": "Οκτώβριος", + "November": "Νοέμβριος", + "December": "Δεκέμβριος", + "Jan": "Ιαν", + "Feb": "Φεβ", + "Mar": "Μαρ", + "Apr": "Απρ", + "Jun": "Ιουν", + "Jul": "Ιουλ", + "Aug": "Αυγ", + "Sep": "Σεπ", + "Oct": "Οκτ", + "Nov": "Νοε", + "Dec": "Δεκ", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Κυριακή", + "Monday": "Δευτέρα", + "Tuesday": "Τρίτη", + "Wednesday": "Τετάρτη", + "Thursday": "Πέμπτη", + "Friday": "Παρασκευή", + "Saturday": "Σάββατο", + "Sun": "Κυρ", + "Mon": "Δευ", + "Tue": "Τρι", + "Wed": "Τετ", + "Thu": "Πεμ", + "Fri": "Παρ", + "Sat": "Σαβ", + "Shows longer than their scheduled time will be cut off by a following show.": "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή.", + "Cancel Current Show?": "Ακύρωση Τρέχουσας Εκπομπής;", + "Stop recording current show?": "Πάυση ηχογράφησης τρέχουσας εκπομπής;", + "Ok": "Οκ", + "Contents of Show": "Περιεχόμενα Εκπομπής", + "Remove all content?": "Αφαίρεση όλου του περιεχομένου;", + "Delete selected item(s)?": "Διαγραφή επιλεγμένου στοιχείου/ων;", + "Start": "Έναρξη", + "End": "Τέλος", + "Duration": "Διάρκεια", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Η εκπομπή είναι άδεια", + "Recording From Line In": "Ηχογράφηση Από Line In", + "Track preview": "Προεπισκόπηση κομματιού", + "Cannot schedule outside a show.": "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής.", + "Moving 1 Item": "Μετακίνηση 1 Στοιχείου", + "Moving %s Items": "Μετακίνηση Στοιχείων %s", + "Save": "Αποθήκευση", + "Cancel": "Ακύρωση", + "Fade Editor": "Επεξεργαστής Fade", + "Cue Editor": "Επεξεργαστής Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API", + "Select all": "Επιλογή όλων", + "Select none": "Καμία Επιλογή", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων ", + "Jump to the current playing track": "Μετάβαση στο τρέχον κομμάτι ", + "Jump to Current": "", + "Cancel current show": "Ακύρωση τρέχουσας εκπομπής", + "Open library to add or remove content": "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου", + "Add / Remove Content": "Προσθήκη / Αφαίρεση Περιεχομένου", + "in use": "σε χρήση", + "Disk": "Δίσκος", + "Look in": "Κοιτάξτε σε", + "Open": "Άνοιγμα", + "Admin": "Διαχειριστής", + "DJ": "DJ", + "Program Manager": "Διευθυντής Προγράμματος", + "Guest": "Επισκέπτης", + "Guests can do the following:": "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω", + "View schedule": "Προβολή Προγράμματος", + "View show content": "Προβολή περιεχομένου εκπομπής", + "DJs can do the following:": "Οι DJ μπορούν να κάνουν τα παρακάτω", + "Manage assigned show content": "Διαχείριση ανατεθημένου περιεχομένου εκπομπής", + "Import media files": "Εισαγωγή αρχείων πολυμέσων", + "Create playlists, smart blocks, and webstreams": "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams ", + "Manage their own library content": "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης", + "Program Managers can do the following:": "", + "View and manage show content": "Προβολή και διαχείριση περιεχομένου εκπομπής", + "Schedule shows": "Πρόγραμμα εκπομπών", + "Manage all library content": "Διαχείριση όλου του περιεχομένου βιβλιοθήκης", + "Admins can do the following:": "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:", + "Manage preferences": "Διαχείριση προτιμήσεων", + "Manage users": "Διαχείριση Χρηστών", + "Manage watched folders": "Διαχείριση προβεβλημένων φακέλων ", + "Send support feedback": "Αποστολή Σχολίων Υποστήριξης", + "View system status": "Προβολή κατάστασης συστήματος", + "Access playout history": "Πρόσβαση στην ιστορία playout", + "View listener stats": "Προβολή στατιστικών των ακροατών", + "Show / hide columns": "Εμφάνιση / απόκρυψη στηλών", + "Columns": "", + "From {from} to {to}": "Από {from} σε {to}", + "kbps": "Kbps", + "yyyy-mm-dd": "εεεε-μμ-ηη", + "hh:mm:ss.t": "ωω:λλ:δδ.t", + "kHz": "kHz", + "Su": "Κυ", + "Mo": "Δε", + "Tu": "Τρ", + "We": "Τε", + "Th": "Πε", + "Fr": "Πα", + "Sa": "Σα", + "Close": "Κλείσιμο", + "Hour": "Ώρα", + "Minute": "Λεπτό", + "Done": "Ολοκληρώθηκε", + "Select files": "Επιλογή αρχείων", + "Add files to the upload queue and click the start button.": "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης", + "Filename": "", + "Size": "", + "Add Files": "Προσθήκη Αρχείων", + "Stop Upload": "Στάση Ανεβάσματος", + "Start upload": "Έναρξη ανεβάσματος", + "Start Upload": "", + "Add files": "Προσθήκη αρχείων", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Ανέβηκαν %d/%d αρχεία", + "N/A": "N/A", + "Drag files here.": "Σύρετε αρχεία εδώ.", + "File extension error.": "Σφάλμα επέκτασης αρχείου.", + "File size error.": "Σφάλμα μεγέθους αρχείου.", + "File count error.": "Σφάλμα μέτρησης αρχείων.", + "Init error.": "Σφάλμα αρχικοποίησης.", + "HTTP Error.": "Σφάλμα HTTP.", + "Security error.": "Σφάλμα ασφάλειας.", + "Generic error.": "Γενικό σφάλμα.", + "IO error.": "Σφάλμα IO", + "File: %s": "Αρχείο: %s", + "%d files queued": "%d αρχεία σε αναμονή", + "File: %f, size: %s, max file size: %m": "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m", + "Upload URL might be wrong or doesn't exist": "Το URL είτε είναι λάθος ή δεν υφίσταται", + "Error: File too large: ": "Σφάλμα: Πολύ μεγάλο αρχείο: ", + "Error: Invalid file extension: ": "Σφάλμα: Μη έγκυρη προέκταση αρχείου: ", + "Set Default": "Ως Προεπιλογή", + "Create Entry": "Δημιουργία Εισόδου", + "Edit History Record": "Επεξεργασία Ιστορικού", + "No Show": "Καμία Εκπομπή", + "Copied %s row%s to the clipboard": "Αντιγράφηκαν %s σειρές%s στο πρόχειρο", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Περιγραφή", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ενεργοποιημένο", + "Disabled": "Απενεργοποιημένο", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά.", + "You are viewing an older version of %s": "Βλέπετε μια παλαιότερη έκδοση του %s", + "You cannot add tracks to dynamic blocks.": "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks.", + "You don't have permission to delete selected %s(s).": "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s).", + "You can only add tracks to smart block.": "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block.", + "Untitled Playlist": "Λίστα Αναπαραγωγής χωρίς Τίτλο", + "Untitled Smart Block": "Smart Block χωρίς Τίτλο", + "Unknown Playlist": "Άγνωστη λίστα αναπαραγωγής", + "Preferences updated.": "Οι προτιμήσεις ενημερώθηκαν.", + "Stream Setting Updated.": "Η Ρύθμιση Stream Ενημερώθηκε.", + "path should be specified": "η διαδρομή πρέπει να καθοριστεί", + "Problem with Liquidsoap...": "Πρόβλημα με Liquidsoap ...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Αναμετάδοση της εκπομπής %s από %s σε %s", + "Select cursor": "Επιλέξτε cursor", + "Remove cursor": "Αφαίρεση cursor", + "show does not exist": "η εκπομπή δεν υπάρχει", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Ο χρήστης προστέθηκε επιτυχώς!", + "User updated successfully!": "Ο χρήστης ενημερώθηκε με επιτυχία!", + "Settings updated successfully!": "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!", + "Untitled Webstream": "Webstream χωρίς Τίτλο", + "Webstream saved.": "Το Webstream αποθηκεύτηκε.", + "Invalid form values.": "Άκυρες μορφές αξίας.", + "Invalid character entered": "Εισαγωγή άκυρου χαρακτήρα", + "Day must be specified": "Η μέρα πρέπει να προσδιοριστεί", + "Time must be specified": "Η ώρα πρέπει να προσδιοριστεί", + "Must wait at least 1 hour to rebroadcast": "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Χρήση Προσαρμοσμένης Ταυτοποίησης:", + "Custom Username": "Προσαρμοσμένο Όνομα Χρήστη", + "Custom Password": "Προσαρμοσμένος Κωδικός Πρόσβασης", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό.", + "Password field cannot be empty.": "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό.", + "Record from Line In?": "Ηχογράφηση από Line In;", + "Rebroadcast?": "Αναμετάδοση;", + "days": "ημέρες", + "Link:": "Σύνδεσμος", + "Repeat Type:": "Τύπος Επανάληψης:", + "weekly": "εβδομαδιαία", + "every 2 weeks": "κάθε 2 εβδομάδες", + "every 3 weeks": "κάθε 3 εβδομάδες", + "every 4 weeks": "κάθε 4 εβδομάδες", + "monthly": "μηνιαία", + "Select Days:": "Επιλέξτε Ημέρες:", + "Repeat By:": "Επανάληψη από:", + "day of the month": "ημέρα του μήνα", + "day of the week": "ημέρα της εβδομάδας", + "Date End:": "Ημερομηνία Λήξης:", + "No End?": "Χωρίς Τέλος;", + "End date must be after start date": "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης", + "Please select a repeat day": "Επιλέξτε ημέρα επανάληψης", + "Background Colour:": "Χρώμα Φόντου:", + "Text Colour:": "Χρώμα Κειμένου:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Όνομα:", + "Untitled Show": "Εκπομπή χωρίς Τίτλο", + "URL:": "Διεύθυνση URL:", + "Genre:": "Είδος:", + "Description:": "Περιγραφή:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Διάρκεια:", + "Timezone:": "Ζώνη Ώρας", + "Repeats?": "Επαναλήψεις;", + "Cannot create show in the past": "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν", + "Cannot modify start date/time of the show that is already started": "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει", + "End date/time cannot be in the past": "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν", + "Cannot have duration < 0m": "Δεν μπορεί να έχει διάρκεια < 0m", + "Cannot have duration 00h 00m": "Δεν μπορεί να έχει διάρκεια 00h 00m", + "Cannot have duration greater than 24h": "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες", + "Cannot schedule overlapping shows": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών", + "Search Users:": "Αναζήτηση Χρηστών:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Όνομα Χρήστη:", + "Password:": "Κωδικός πρόσβασης:", + "Verify Password:": "Επαλήθευση κωδικού πρόσβασης", + "Firstname:": "Όνομα:", + "Lastname:": "Επώνυμο:", + "Email:": "Email:", + "Mobile Phone:": "Κινητό Τηλέφωνο:", + "Skype:": "Skype", + "Jabber:": "Jabber", + "User Type:": "Τύπος Χρήστη:", + "Login name is not unique.": "Το όνομα εισόδου δεν είναι μοναδικό.", + "Delete All Tracks in Library": "", + "Date Start:": "Ημερομηνία Έναρξης:", + "Title:": "Τίτλος:", + "Creator:": "Δημιουργός:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Έτος", + "Label:": "Δισκογραφική:", + "Composer:": "Συνθέτης:", + "Conductor:": "Μαέστρος:", + "Mood:": "Διάθεση:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Αριθμός ISRC:", + "Website:": "Ιστοσελίδα:", + "Language:": "Γλώσσα:", + "Publish...": "", + "Start Time": "Ώρα Έναρξης", + "End Time": "Ώρα Τέλους", + "Interface Timezone:": "Interface Ζώνης ώρας:", + "Station Name": "Όνομα Σταθμού", + "Station Description": "", + "Station Logo:": "Λογότυπο Σταθμού:", + "Note: Anything larger than 600x600 will be resized.": "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος.", + "Default Crossfade Duration (s):": "Προεπιλεγμένη Διάρκεια Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Προεπιλεγμένο Fade In (s):", + "Default Fade Out (s):": "Προεπιλεγμένο Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Ζώνη Ώρας Σταθμού", + "Week Starts On": "Η Εβδομάδα αρχίζει ", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Σύνδεση", + "Password": "Κωδικός πρόσβασης", + "Confirm new password": "Επιβεβαίωση νέου κωδικού πρόσβασης", + "Password confirmation does not match your password.": "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας.", + "Email": "", + "Username": "Όνομα Χρήστη", + "Reset password": "Επαναφορά κωδικού πρόσβασης", + "Back": "", + "Now Playing": "Αναπαραγωγή σε Εξέλιξη", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Όλες οι Εκπομπές μου:", + "My Shows": "", + "Select criteria": "Επιλέξτε κριτήρια", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Ρυθμός Δειγματοληψίας (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ώρες", + "minutes": "λεπτά", + "items": "στοιχεία", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Δυναμικό", + "Static": "Στατικό", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων", + "Shuffle playlist content": "Περιεχόμενο λίστας Shuffle ", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0", + "Limit cannot be more than 24 hrs": "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες", + "The value should be an integer": "Η τιμή πρέπει να είναι ακέραιος αριθμός", + "500 is the max item limit value you can set": "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε", + "You must select Criteria and Modifier": "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή", + "'Length' should be in '00:00:00' format": "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Η τιμή πρέπει να είναι αριθμός", + "The value should be less then 2147483648": "Η τιμή πρέπει να είναι μικρότερη από 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες", + "Value cannot be empty": "Η αξία δεν μπορεί να είναι κενή", + "Stream Label:": "Stream Label:", + "Artist - Title": "Καλλιτέχνης - Τίτλος", + "Show - Artist - Title": "Εκπομπή - Καλλιτέχνης - Τίτλος", + "Station name - Show name": "Όνομα Σταθμού - Όνομα Εκπομπής", + "Off Air Metadata": "Μεταδεδομένα Off Air", + "Enable Replay Gain": "Ενεργοποίηση Επανάληψη Κέρδους", + "Replay Gain Modifier": "Τροποποιητής Επανάληψης Κέρδους", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ενεργοποιημένο", + "Mobile:": "", + "Stream Type:": "Τύπος Stream:", + "Bit Rate:": "Ρυθμός Δεδομένων:", + "Service Type:": "Τύπος Υπηρεσίας:", + "Channels:": "Κανάλια", + "Server": "Διακομιστής", + "Port": "Θύρα", + "Mount Point": "Σημείο Προσάρτησης", + "Name": "Ονομασία", + "URL": "Διεύθυνση URL:", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Εισαγωγή Φακέλου:", + "Watched Folders:": "Παροβεβλημμένοι Φάκελοι:", + "Not a valid Directory": "Μη έγκυρο Ευρετήριο", + "Value is required and can't be empty": "Απαιτείται αξία και δεν μπορεί να είναι κενή", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'", + "{msg} is less than %min% characters long": "{msg} είναι λιγότερο από %min% χαρακτήρες ", + "{msg} is more than %max% characters long": "{msg} είναι περισσότερο από %max% χαρακτήρες ", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} δεν είναι μεταξύ '%min%' και '%max%', συνολικά", + "Passwords do not match": "Οι κωδικοί πρόσβασης δεν συμπίπτουν", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in και cue out είναι μηδέν.", + "Can't set cue out to be greater than file length.": "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου.", + "Can't set cue in to be larger than cue out.": "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out.", + "Can't set cue out to be smaller than cue in.": "Το cue out δεν μπορεί να είναι μικρότερο από το cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Επιλέξτε Χώρα", + "livestream": "", + "Cannot move items out of linked shows": "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη.", + "The schedule you're viewing is out of date! (sched mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)", + "The schedule you're viewing is out of date! (instance mismatch)": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)", + "The schedule you're viewing is out of date!": "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!", + "You are not allowed to schedule show %s.": "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s..", + "You cannot add files to recording shows.": "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές.", + "The show %s is over and cannot be scheduled.": "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί.", + "The show %s has been previously updated!": "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Ένα επιλεγμένο αρχείο δεν υπάρχει!", + "Shows can have a max length of 24 hours.": "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της.", + "Rebroadcast of %s from %s": "Αναμετάδοση του %s από %s", + "Length needs to be greater than 0 minutes": "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά", + "Length should be of form \"00h 00m\"": "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"", + "URL should be of form \"https://example.org\"": "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \"", + "URL should be 512 characters or less": "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες ", + "No MIME type found for webstream.": "Δεν βρέθηκε τύπος MIME για webstream.", + "Webstream name cannot be empty": "Το όνομα του webstream δεν μπορεί να είναι κενό", + "Could not parse XSPF playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF ", + "Could not parse PLS playlist": "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS", + "Could not parse M3U playlist": "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U", + "Invalid webstream - This appears to be a file download.": "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης.", + "Unrecognized stream type: %s": "Άγνωστος τύπος stream: %s", + "Record file doesn't exist": "Το αρχείο δεν υπάρχει", + "View Recorded File Metadata": "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων ", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Επεξεργασία Εκπομπής", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Δεν έχετε δικαίωμα πρόσβασης", + "Can't drag and drop repeating shows": "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών", + "Can't move a past show": "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής", + "Can't move show into past": "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της.", + "Show was deleted because recorded show does not exist!": "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!", + "Must wait 1 hour to rebroadcast.": "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση.", + "Track": "Κομμάτι", + "Played": "Παίχτηκε", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/en_CA.json b/webapp/src/locale/en_CA.json index 9edbbc29f2..e0790dc2a1 100644 --- a/webapp/src/locale/en_CA.json +++ b/webapp/src/locale/en_CA.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendar", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Users", - "Track Types": "Track Types", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "", - "Playlist": "", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Colour:", - "Text Colour:": "Text Colour:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "First name:", - "Lastname:": "Last name:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "", - "Username": "Username", - "Reset password": "Reset password", - "Back": "", - "Now Playing": "Now Playing", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Enabled:", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", - "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", - "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Select Country", - "livestream": "", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognized stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edit Show", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "Track Types", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "First name:", + "Lastname:": "Last name:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/en_GB.json b/webapp/src/locale/en_GB.json index 57c15fea25..6831ecd9b9 100644 --- a/webapp/src/locale/en_GB.json +++ b/webapp/src/locale/en_GB.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "English (United Kingdom)", - "Afar": "Afar", - "Abkhazian": "Abkhazian", - "Afrikaans": "Afrikaans", - "Amharic": "Amharic", - "Arabic": "Arabic", - "Assamese": "Assamese", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkir", - "Belarusian": "Bashkir", - "Bulgarian": "Bulgarian", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengali", - "Tibetan": "Tibetan", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corsican", - "Czech": "Czech", - "Welsh": "Welsh", - "Danish": "Danish", - "German": "German", - "Bhutani": "Bhutani", - "Greek": "Greek", - "Esperanto": "Esperanto", - "Spanish": "Spanish", - "Estonian": "Estonian", - "Basque": "Basque", - "Persian": "Persian", - "Finnish": "Finnish", - "Fiji": "Fiji", - "Faeroese": "Faeroese", - "French": "French", - "Frisian": "Frisian", - "Irish": "Irish", - "Scots/Gaelic": "Scots/Gaelic", - "Galician": "Galician", - "Guarani": "Guarani", - "Gujarati": "Gujarati", - "Hausa": "Hausa", - "Hindi": "Hindi", - "Croatian": "Croatian", - "Hungarian": "Hungarian", - "Armenian": "Armenian", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesian", - "Icelandic": "Icelandic", - "Italian": "Italian", - "Hebrew": "Hebrew", - "Japanese": "Japanese", - "Yiddish": "Yiddish", - "Javanese": "Javanese", - "Georgian": "Georgian", - "Kazakh": "Kazakh", - "Greenlandic": "Greenlandic", - "Cambodian": "Cambodian", - "Kannada": "Kannada", - "Korean": "Korean", - "Kashmiri": "Kashmiri", - "Kurdish": "Kurdish", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Laothian", - "Lithuanian": "Lithuanian", - "Latvian/Lettish": "Latvian/Lettish", - "Malagasy": "Malagasy", - "Maori": "Maori", - "Macedonian": "Macedonian", - "Malayalam": "Malayalam", - "Mongolian": "Mongolian", - "Moldavian": "Moldavian", - "Marathi": "Marathi", - "Malay": "Malay", - "Maltese": "Maltese", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Upload some tracks below to add them to your library!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.", - "Click the 'New Show' button and fill out the required fields.": "Please click the 'New Show' button and fill out the required fields.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "It looks like you don't have any shows scheduled yet. %sCreate a show now%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "To start broadcasting, click on the current show and select 'Schedule Tracks'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Click on the show starting next and select 'Schedule Tracks'", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "It looks like the next show is empty. %sAdd tracks to your show now%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Radio Page", - "Calendar": "Calendar", - "Widgets": "Widgets", - "Player": "Player", - "Weekly Schedule": "Weekly Schedule", - "Settings": "Settings", - "General": "General", - "My Profile": "My Profile", - "Users": "Users", - "Track Types": "", - "Streams": "Streams", - "Status": "Status", - "Analytics": "Analytics", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "Get Help Online", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "File does not exist in %s", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Page not found.", - "The requested action is not supported.": "The requested action is not supported.", - "You do not have permission to access this resource.": "You do not have permission to access this resource.", - "An internal application error has occurred.": "An internal application error has occurred.", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "Could not delete file because it is scheduled in the future.", - "Could not delete file(s).": "Could not delete file(s).", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "Something went wrong!", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "You haven't added any tracks", - "You haven't added any playlists": "You haven't added any playlists", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "You haven't added any smart blocks", - "You haven't added any webstreams": "You haven't added any webstreams", - "Learn about tracks": "Learn about tracks", - "Learn about playlists": "Learn about playlists", - "Learn about podcasts": "", - "Learn about smart blocks": "Learn about smart blocks", - "Learn about webstreams": "Learn about webstreams", - "Click 'New' to create one.": "Click 'New' to create one.", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "Tracks", - "Playlist": "Playlist", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "View", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "WARNING: This will restart your stream and may cause a short dropout for your listeners!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Today", - "Day": "Day", - "Week": "Week", - "Month": "Month", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "Filtering out ", - " of ": " of ", - " records": " records", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "Trim overbooked shows", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished.", - "New Show": "New Show", - "New Log Entry": "New Log Entry", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "Smart Block", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Please enter your username and password.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "There was a problem with the username or email address you entered.", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "Request method not accepted", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "Use %s Authentication:", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "Host:", - "Port:": "Port:", - "Mount:": "Mount:", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Colour:", - "Text Colour:": "Text Colour:", - "Current Logo:": "Current Logo:", - "Show Logo:": "Show Logo:", - "Logo Preview:": "Logo Preview:", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "Instance Description:", - "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", - "Start Time:": "Start Time:", - "In the Future:": "In the Future:", - "End Time:": "End Time:", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "Firstname:", - "Lastname:": "Lastname:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "Delete All Tracks in Library", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "Station Description", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "Please enter a time in seconds (e.g. 0.5)", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Required for embeddable schedule widget.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.", - "Default Language": "Default Language", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "Display login button on your Radio Page?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Auto Switch Off:", - "Auto Switch On:": "Auto Switch On:", - "Switch Transition Fade (s):": "Switch Transition Fade (s):", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "Email", - "Username": "Username", - "Reset password": "Reset password", - "Back": "Back", - "Now Playing": "Now Playing", - "Select Stream:": "Select Stream:", - "Auto detect the most appropriate stream to use.": "Auto-detect the most appropriate stream to use.", - "Select a stream:": "Select a stream:", - " - Mobile friendly": " - Mobile friendly", - " - The player does not support Opus streams.": " - The player does not support Opus streams.", - "Embeddable code:": "Embeddable code:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copy this code and paste it into your website's HTML to embed the player in your site.", - "Preview:": "Preview:", - "Feed Privacy": "", - "Public": "Public", - "Private": "Private", - "Station Language": "Station Language", - "Filter by Show": "Filter by Show", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "Randomly", - "Newest": "Newest", - "Oldest": "Oldest", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "Select Track Type", - "Type:": "Type:", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "Select track type", - "Allow Repeated Tracks:": "Allow Repeated Tracks:", - "Allow last track to exceed time limit:": "Allow last track to exceed time limit:", - "Sort Tracks:": "Sort Tracks:", - "Limit to:": "Limit to:", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value", - "You must select a time unit for a relative datetime.": "You must select a time unit for a relative date and time.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Only non-negative integer numbers are allowed for a relative date time", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "Hardware Audio Output:", - "Output Type": "Output Type", - "Enabled:": "Enabled:", - "Mobile:": "Mobile:", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Push metadata to your station on TuneIn?", - "Station ID:": "Station ID:", - "Partner Key:": "Partner Key:", - "Partner Id:": "Partner ID:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", - "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", - "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", - "\n\nThank you,\nThe %s Team": "\n\nThank you,\nThe %s Team", - "%s Password Reset": "%s Password Reset", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "Upload Time", - "None": "None", - "Powered by %s": "Powered by %s", - "Select Country": "Select Country", - "livestream": "livestream", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Cannot schedule a playlist that contains missing files.", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognised stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "Schedule Tracks", - "Clear Show": "Clear Show", - "Cancel Show": "Cancel Show", - "Edit Instance": "Edit Instance", - "Edit Show": "Edit Show", - "Delete Instance": "Delete Instance", - "Delete Instance and All Following": "Delete Instance and All Following", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "Auto-generated smart-block for podcast", - "Webstreams": "Webstreams" + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "English (United Kingdom)", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Bashkir", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "Hungarian", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Upload some tracks below to add them to your library!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.", + "Click the 'New Show' button and fill out the required fields.": "Please click the 'New Show' button and fill out the required fields.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "It looks like you don't have any shows scheduled yet. %sCreate a show now%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "To start broadcasting, click on the current show and select 'Schedule Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Click on the show starting next and select 'Schedule Tracks'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "It looks like the next show is empty. %sAdd tracks to your show now%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Radio Page", + "Calendar": "Calendar", + "Widgets": "Widgets", + "Player": "Player", + "Weekly Schedule": "Weekly Schedule", + "Settings": "Settings", + "General": "General", + "My Profile": "My Profile", + "Users": "Users", + "Track Types": "", + "Streams": "Streams", + "Status": "Status", + "Analytics": "Analytics", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "Get Help Online", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "File does not exist in %s", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Page not found.", + "The requested action is not supported.": "The requested action is not supported.", + "You do not have permission to access this resource.": "You do not have permission to access this resource.", + "An internal application error has occurred.": "An internal application error has occurred.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "Could not delete file because it is scheduled in the future.", + "Could not delete file(s).": "Could not delete file(s).", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "Something went wrong!", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "You haven't added any tracks", + "You haven't added any playlists": "You haven't added any playlists", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "You haven't added any smart blocks", + "You haven't added any webstreams": "You haven't added any webstreams", + "Learn about tracks": "Learn about tracks", + "Learn about playlists": "Learn about playlists", + "Learn about podcasts": "", + "Learn about smart blocks": "Learn about smart blocks", + "Learn about webstreams": "Learn about webstreams", + "Click 'New' to create one.": "Click 'New' to create one.", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "Tracks", + "Playlist": "Playlist", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "View", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "WARNING: This will restart your stream and may cause a short dropout for your listeners!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Today", + "Day": "Day", + "Week": "Week", + "Month": "Month", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "Filtering out ", + " of ": " of ", + " records": " records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "Trim overbooked shows", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished.", + "New Show": "New Show", + "New Log Entry": "New Log Entry", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "Smart Block", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Please enter your username and password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "There was a problem with the username or email address you entered.", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "Request method not accepted", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "Use %s Authentication:", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "Host:", + "Port:": "Port:", + "Mount:": "Mount:", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Colour:", + "Text Colour:": "Text Colour:", + "Current Logo:": "Current Logo:", + "Show Logo:": "Show Logo:", + "Logo Preview:": "Logo Preview:", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "Instance Description:", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", + "Start Time:": "Start Time:", + "In the Future:": "In the Future:", + "End Time:": "End Time:", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "Delete All Tracks in Library", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "Station Description", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "Please enter a time in seconds (e.g. 0.5)", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Required for embeddable schedule widget.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.", + "Default Language": "Default Language", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "Display login button on your Radio Page?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Auto Switch Off:", + "Auto Switch On:": "Auto Switch On:", + "Switch Transition Fade (s):": "Switch Transition Fade (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "Email", + "Username": "Username", + "Reset password": "Reset password", + "Back": "Back", + "Now Playing": "Now Playing", + "Select Stream:": "Select Stream:", + "Auto detect the most appropriate stream to use.": "Auto-detect the most appropriate stream to use.", + "Select a stream:": "Select a stream:", + " - Mobile friendly": " - Mobile friendly", + " - The player does not support Opus streams.": " - The player does not support Opus streams.", + "Embeddable code:": "Embeddable code:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copy this code and paste it into your website's HTML to embed the player in your site.", + "Preview:": "Preview:", + "Feed Privacy": "", + "Public": "Public", + "Private": "Private", + "Station Language": "Station Language", + "Filter by Show": "Filter by Show", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "Randomly", + "Newest": "Newest", + "Oldest": "Oldest", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "Select Track Type", + "Type:": "Type:", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "Select track type", + "Allow Repeated Tracks:": "Allow Repeated Tracks:", + "Allow last track to exceed time limit:": "Allow last track to exceed time limit:", + "Sort Tracks:": "Sort Tracks:", + "Limit to:": "Limit to:", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value", + "You must select a time unit for a relative datetime.": "You must select a time unit for a relative date and time.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Only non-negative integer numbers are allowed for a relative date time", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "Hardware Audio Output:", + "Output Type": "Output Type", + "Enabled:": "Enabled:", + "Mobile:": "Mobile:", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Push metadata to your station on TuneIn?", + "Station ID:": "Station ID:", + "Partner Key:": "Partner Key:", + "Partner Id:": "Partner ID:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hi %s, \n\nPlease click this link to reset your password: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nIf you have any problems, please contact our support team: %s", + "\n\nThank you,\nThe %s Team": "\n\nThank you,\nThe %s Team", + "%s Password Reset": "%s Password Reset", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "Upload Time", + "None": "None", + "Powered by %s": "Powered by %s", + "Select Country": "Select Country", + "livestream": "livestream", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Cannot schedule a playlist that contains missing files.", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognised stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "Schedule Tracks", + "Clear Show": "Clear Show", + "Cancel Show": "Cancel Show", + "Edit Instance": "Edit Instance", + "Edit Show": "Edit Show", + "Delete Instance": "Delete Instance", + "Delete Instance and All Following": "Delete Instance and All Following", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "Auto-generated smart-block for podcast", + "Webstreams": "Webstreams" } diff --git a/webapp/src/locale/en_US.json b/webapp/src/locale/en_US.json index 22944de1cc..2d30289526 100644 --- a/webapp/src/locale/en_US.json +++ b/webapp/src/locale/en_US.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", - "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendar", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Users", - "Track Types": "Track Types", - "Streams": "Streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout History", - "History Templates": "History Templates", - "Listener Stats": "Listener Stats", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Getting Started", - "User Manual": "User Manual", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "You are not allowed to access this resource.", - "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", - "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", - "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", - "There is no source connected to this input.": "There is no source connected to this input.", - "You don't have permission to switch source.": "You don't have permission to switch source.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s not found", - "Something went wrong.": "Something went wrong.", - "Preview": "Preview", - "Add to Playlist": "Add to Playlist", - "Add to Smart Block": "Add to Smart Block", - "Delete": "Delete", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Duplicate Playlist", - "Duplicate Smartblock": "", - "No action available": "No action available", - "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Copy of %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Recording:", - "Master Stream": "Master Stream", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Nothing Scheduled", - "Current Show:": "Current Show:", - "Current": "Current", - "You are running the latest version": "You are running the latest version", - "New version available: ": "New version available: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Add to current playlist", - "Add to current smart block": "Add to current smart block", - "Adding 1 Item": "Adding 1 Item", - "Adding %s Items": "Adding %s Items", - "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", - "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Add", - "New": "", - "Edit": "Edit", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Remove", - "Edit Metadata": "Edit Metadata", - "Add to selected show": "Add to selected show", - "Select": "Select", - "Select this page": "Select this page", - "Deselect this page": "Deselect this page", - "Deselect all": "Deselect all", - "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", - "Scheduled": "Scheduled", - "Tracks": "", - "Playlist": "", - "Title": "Title", - "Creator": "Creator", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Composer", - "Conductor": "Conductor", - "Copyright": "Copyright", - "Encoded By": "Encoded By", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Language", - "Last Modified": "Last Modified", - "Last Played": "Last Played", - "Length": "Length", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Owner", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track Number", - "Uploaded": "Uploaded", - "Website": "Website", - "Year": "Year", - "Loading...": "Loading...", - "All": "All", - "Files": "Files", - "Playlists": "Playlists", - "Smart Blocks": "Smart Blocks", - "Web Streams": "Web Streams", - "Unknown type: ": "Unknown type: ", - "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", - "Uploading in progress...": "Uploading in progress...", - "Retrieving data from the server...": "Retrieving data from the server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Error code: ", - "Error msg: ": "Error msg: ", - "Input must be a positive number": "Input must be a positive number", - "Input must be a number": "Input must be a number", - "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", - "Open Media Builder": "Open Media Builder", - "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", - "Dynamic block is not previewable": "Dynamic block is not previewable", - "Limit to: ": "Limit to: ", - "Playlist saved": "Playlist saved", - "Playlist shuffled": "Playlist shuffled", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", - "Listener Count on %s: %s": "Listener Count on %s: %s", - "Remind me in 1 week": "Remind me in 1 week", - "Remind me never": "Remind me never", - "Yes, help Airtime": "Yes, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block shuffled", - "Smart block generated and criteria saved": "Smart block generated and criteria saved", - "Smart block saved": "Smart block saved", - "Processing...": "Processing...", - "Select modifier": "Select modifier", - "contains": "contains", - "does not contain": "does not contain", - "is": "is", - "is not": "is not", - "starts with": "starts with", - "ends with": "ends with", - "is greater than": "is greater than", - "is less than": "is less than", - "is in the range": "is in the range", - "Generate": "Generate", - "Choose Storage Folder": "Choose Storage Folder", - "Choose Folder to Watch": "Choose Folder to Watch", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", - "Manage Media Folders": "Manage Media Folders", - "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", - "This path is currently not accessible.": "This path is currently not accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", - "Connected to the streaming server": "Connected to the streaming server", - "The stream is disabled": "The stream is disabled", - "Getting information from the server...": "Getting information from the server...", - "Can not connect to the streaming server": "Can not connect to the streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", - "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", - "No result found": "No result found", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", - "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", - "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", - "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", - "Show": "Show", - "Show is empty": "Show is empty", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retrieving data from the server...", - "This show has no scheduled content.": "This show has no scheduled content.", - "This show is not completely filled with content.": "This show is not completely filled with content.", - "January": "January", - "February": "February", - "March": "March", - "April": "April", - "May": "May", - "June": "June", - "July": "July", - "August": "August", - "September": "September", - "October": "October", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Aug", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Sun": "Sun", - "Mon": "Mon", - "Tue": "Tue", - "Wed": "Wed", - "Thu": "Thu", - "Fri": "Fri", - "Sat": "Sat", - "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", - "Cancel Current Show?": "Cancel Current Show?", - "Stop recording current show?": "Stop recording current show?", - "Ok": "Ok", - "Contents of Show": "Contents of Show", - "Remove all content?": "Remove all content?", - "Delete selected item(s)?": "Delete selected item(s)?", - "Start": "Start", - "End": "End", - "Duration": "Duration", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "Show Empty", - "Recording From Line In": "Recording From Line In", - "Track preview": "Track preview", - "Cannot schedule outside a show.": "Cannot schedule outside a show.", - "Moving 1 Item": "Moving 1 Item", - "Moving %s Items": "Moving %s Items", - "Save": "Save", - "Cancel": "Cancel", - "Fade Editor": "Fade Editor", - "Cue Editor": "Cue Editor", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", - "Select all": "Select all", - "Select none": "Select none", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remove selected scheduled items", - "Jump to the current playing track": "Jump to the current playing track", - "Jump to Current": "", - "Cancel current show": "Cancel current show", - "Open library to add or remove content": "Open library to add or remove content", - "Add / Remove Content": "Add / Remove Content", - "in use": "in use", - "Disk": "Disk", - "Look in": "Look in", - "Open": "Open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Program Manager", - "Guest": "Guest", - "Guests can do the following:": "Guests can do the following:", - "View schedule": "View schedule", - "View show content": "View show content", - "DJs can do the following:": "DJs can do the following:", - "Manage assigned show content": "Manage assigned show content", - "Import media files": "Import media files", - "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", - "Manage their own library content": "Manage their own library content", - "Program Managers can do the following:": "", - "View and manage show content": "View and manage show content", - "Schedule shows": "Schedule shows", - "Manage all library content": "Manage all library content", - "Admins can do the following:": "Admins can do the following:", - "Manage preferences": "Manage preferences", - "Manage users": "Manage users", - "Manage watched folders": "Manage watched folders", - "Send support feedback": "Send support feedback", - "View system status": "View system status", - "Access playout history": "Access playout history", - "View listener stats": "View listener stats", - "Show / hide columns": "Show / hide columns", - "Columns": "", - "From {from} to {to}": "From {from} to {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Su", - "Mo": "Mo", - "Tu": "Tu", - "We": "We", - "Th": "Th", - "Fr": "Fr", - "Sa": "Sa", - "Close": "Close", - "Hour": "Hour", - "Minute": "Minute", - "Done": "Done", - "Select files": "Select files", - "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", - "Filename": "", - "Size": "", - "Add Files": "Add Files", - "Stop Upload": "Stop Upload", - "Start upload": "Start upload", - "Start Upload": "", - "Add files": "Add files", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Uploaded %d/%d files", - "N/A": "N/A", - "Drag files here.": "Drag files here.", - "File extension error.": "File extension error.", - "File size error.": "File size error.", - "File count error.": "File count error.", - "Init error.": "Init error.", - "HTTP Error.": "HTTP Error.", - "Security error.": "Security error.", - "Generic error.": "Generic error.", - "IO error.": "IO error.", - "File: %s": "File: %s", - "%d files queued": "%d files queued", - "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", - "Error: File too large: ": "Error: File too large: ", - "Error: Invalid file extension: ": "Error: Invalid file extension: ", - "Set Default": "Set Default", - "Create Entry": "Create Entry", - "Edit History Record": "Edit History Record", - "No Show": "No Show", - "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Description", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Enabled", - "Disabled": "Disabled", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", - "You are viewing an older version of %s": "You are viewing an older version of %s", - "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", - "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", - "You can only add tracks to smart block.": "You can only add tracks to smart block.", - "Untitled Playlist": "Untitled Playlist", - "Untitled Smart Block": "Untitled Smart Block", - "Unknown Playlist": "Unknown Playlist", - "Preferences updated.": "Preferences updated.", - "Stream Setting Updated.": "Stream Setting Updated.", - "path should be specified": "path should be specified", - "Problem with Liquidsoap...": "Problem with Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", - "Select cursor": "Select cursor", - "Remove cursor": "Remove cursor", - "show does not exist": "show does not exist", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User added successfully!", - "User updated successfully!": "User updated successfully!", - "Settings updated successfully!": "Settings updated successfully!", - "Untitled Webstream": "Untitled Webstream", - "Webstream saved.": "Webstream saved.", - "Invalid form values.": "Invalid form values.", - "Invalid character entered": "Invalid character entered", - "Day must be specified": "Day must be specified", - "Time must be specified": "Time must be specified", - "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Use Custom Authentication:", - "Custom Username": "Custom Username", - "Custom Password": "Custom Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Username field cannot be empty.", - "Password field cannot be empty.": "Password field cannot be empty.", - "Record from Line In?": "Record from Line In?", - "Rebroadcast?": "Rebroadcast?", - "days": "days", - "Link:": "Link:", - "Repeat Type:": "Repeat Type:", - "weekly": "weekly", - "every 2 weeks": "every 2 weeks", - "every 3 weeks": "every 3 weeks", - "every 4 weeks": "every 4 weeks", - "monthly": "monthly", - "Select Days:": "Select Days:", - "Repeat By:": "Repeat By:", - "day of the month": "day of the month", - "day of the week": "day of the week", - "Date End:": "Date End:", - "No End?": "No End?", - "End date must be after start date": "End date must be after start date", - "Please select a repeat day": "Please select a repeat day", - "Background Colour:": "Background Color:", - "Text Colour:": "Text Color:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Name:", - "Untitled Show": "Untitled Show", - "URL:": "URL:", - "Genre:": "Genre:", - "Description:": "Description:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duration:", - "Timezone:": "Timezone:", - "Repeats?": "Repeats?", - "Cannot create show in the past": "Cannot create show in the past", - "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", - "End date/time cannot be in the past": "End date/time cannot be in the past", - "Cannot have duration < 0m": "Cannot have duration < 0m", - "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", - "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", - "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", - "Search Users:": "Search Users:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "Verify Password:", - "Firstname:": "Firstname:", - "Lastname:": "Lastname:", - "Email:": "Email:", - "Mobile Phone:": "Mobile Phone:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "User Type:", - "Login name is not unique.": "Login name is not unique.", - "Delete All Tracks in Library": "", - "Date Start:": "Date Start:", - "Title:": "Title:", - "Creator:": "Creator:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Year:", - "Label:": "Label:", - "Composer:": "Composer:", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC Number:", - "Website:": "Website:", - "Language:": "Language:", - "Publish...": "", - "Start Time": "Start Time", - "End Time": "End Time", - "Interface Timezone:": "Interface Timezone:", - "Station Name": "Station Name", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", - "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Default Fade In (s):", - "Default Fade Out (s):": "Default Fade Out (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Station Timezone", - "Week Starts On": "Week Starts On", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Login", - "Password": "Password", - "Confirm new password": "Confirm new password", - "Password confirmation does not match your password.": "Password confirmation does not match your password.", - "Email": "", - "Username": "Username", - "Reset password": "Reset password", - "Back": "", - "Now Playing": "Now Playing", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "All My Shows:", - "My Shows": "", - "Select criteria": "Select criteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "hours", - "minutes": "minutes", - "items": "items", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamic", - "Static": "Static", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Generate playlist content and save criteria", - "Shuffle playlist content": "Shuffle playlist content", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", - "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", - "The value should be an integer": "The value should be an integer", - "500 is the max item limit value you can set": "500 is the max item limit value you can set", - "You must select Criteria and Modifier": "You must select Criteria and Modifier", - "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "The value has to be numeric", - "The value should be less then 2147483648": "The value should be less then 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "The value should be less than %s characters", - "Value cannot be empty": "Value cannot be empty", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artist - Title", - "Show - Artist - Title": "Show - Artist - Title", - "Station name - Show name": "Station name - Show name", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Enable Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Enabled:", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "Channels:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Name", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Import Folder:", - "Watched Folders:": "Watched Folders:", - "Not a valid Directory": "Not a valid Directory", - "Value is required and can't be empty": "Value is required and can't be empty", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", - "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", - "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", - "Passwords do not match": "Passwords do not match", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in and cue out are null.", - "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", - "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", - "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Select Country", - "livestream": "", - "Cannot move items out of linked shows": "Cannot move items out of linked shows", - "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", - "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", - "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", - "You cannot add files to recording shows.": "You cannot add files to recording shows.", - "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", - "The show %s has been previously updated!": "The show %s has been previously updated!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "A selected File does not exist!", - "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", - "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", - "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL should be 512 characters or less", - "No MIME type found for webstream.": "No MIME type found for webstream.", - "Webstream name cannot be empty": "Webstream name cannot be empty", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Could not parse PLS playlist", - "Could not parse M3U playlist": "Could not parse M3U playlist", - "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", - "Unrecognized stream type: %s": "Unrecognized stream type: %s", - "Record file doesn't exist": "Record file doesn't exist", - "View Recorded File Metadata": "View Recorded File Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edit Show", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Permission denied", - "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", - "Can't move a past show": "Can't move a past show", - "Can't move show into past": "Can't move show into past", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", - "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", - "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", - "Track": "Track", - "Played": "Played", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "The year %s must be within the range of 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s is not a valid date", + "%s:%s:%s is not a valid time": "%s:%s:%s is not a valid time", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendar", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Users", + "Track Types": "Track Types", + "Streams": "Streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout History", + "History Templates": "History Templates", + "Listener Stats": "Listener Stats", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Getting Started", + "User Manual": "User Manual", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "You are not allowed to access this resource.", + "You are not allowed to access this resource. ": "You are not allowed to access this resource. ", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad request. no 'mode' parameter passed.", + "Bad request. 'mode' parameter is invalid": "Bad request. 'mode' parameter is invalid", + "You don't have permission to disconnect source.": "You don't have permission to disconnect source.", + "There is no source connected to this input.": "There is no source connected to this input.", + "You don't have permission to switch source.": "You don't have permission to switch source.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s not found", + "Something went wrong.": "Something went wrong.", + "Preview": "Preview", + "Add to Playlist": "Add to Playlist", + "Add to Smart Block": "Add to Smart Block", + "Delete": "Delete", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Duplicate Playlist", + "Duplicate Smartblock": "", + "No action available": "No action available", + "You don't have permission to delete selected items.": "You don't have permission to delete selected items.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Copy of %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Please make sure admin user/password is correct on Settings->Streams page.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Recording:", + "Master Stream": "Master Stream", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Nothing Scheduled", + "Current Show:": "Current Show:", + "Current": "Current", + "You are running the latest version": "You are running the latest version", + "New version available: ": "New version available: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Add to current playlist", + "Add to current smart block": "Add to current smart block", + "Adding 1 Item": "Adding 1 Item", + "Adding %s Items": "Adding %s Items", + "You can only add tracks to smart blocks.": "You can only add tracks to smart blocks.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "You can only add tracks, smart blocks, and webstreams to playlists.", + "Please select a cursor position on timeline.": "Please select a cursor position on timeline.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Add", + "New": "", + "Edit": "Edit", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Remove", + "Edit Metadata": "Edit Metadata", + "Add to selected show": "Add to selected show", + "Select": "Select", + "Select this page": "Select this page", + "Deselect this page": "Deselect this page", + "Deselect all": "Deselect all", + "Are you sure you want to delete the selected item(s)?": "Are you sure you want to delete the selected item(s)?", + "Scheduled": "Scheduled", + "Tracks": "", + "Playlist": "", + "Title": "Title", + "Creator": "Creator", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Composer", + "Conductor": "Conductor", + "Copyright": "Copyright", + "Encoded By": "Encoded By", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Language", + "Last Modified": "Last Modified", + "Last Played": "Last Played", + "Length": "Length", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Owner", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track Number", + "Uploaded": "Uploaded", + "Website": "Website", + "Year": "Year", + "Loading...": "Loading...", + "All": "All", + "Files": "Files", + "Playlists": "Playlists", + "Smart Blocks": "Smart Blocks", + "Web Streams": "Web Streams", + "Unknown type: ": "Unknown type: ", + "Are you sure you want to delete the selected item?": "Are you sure you want to delete the selected item?", + "Uploading in progress...": "Uploading in progress...", + "Retrieving data from the server...": "Retrieving data from the server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Error code: ", + "Error msg: ": "Error msg: ", + "Input must be a positive number": "Input must be a positive number", + "Input must be a number": "Input must be a number", + "Input must be in the format: yyyy-mm-dd": "Input must be in the format: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Input must be in the format: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?", + "Open Media Builder": "Open Media Builder", + "please put in a time '00:00:00 (.0)'": "please put in a time '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Your browser does not support playing this file type: ", + "Dynamic block is not previewable": "Dynamic block is not previewable", + "Limit to: ": "Limit to: ", + "Playlist saved": "Playlist saved", + "Playlist shuffled": "Playlist shuffled", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.", + "Listener Count on %s: %s": "Listener Count on %s: %s", + "Remind me in 1 week": "Remind me in 1 week", + "Remind me never": "Remind me never", + "Yes, help Airtime": "Yes, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Image must be one of jpg, jpeg, png, or gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block shuffled", + "Smart block generated and criteria saved": "Smart block generated and criteria saved", + "Smart block saved": "Smart block saved", + "Processing...": "Processing...", + "Select modifier": "Select modifier", + "contains": "contains", + "does not contain": "does not contain", + "is": "is", + "is not": "is not", + "starts with": "starts with", + "ends with": "ends with", + "is greater than": "is greater than", + "is less than": "is less than", + "is in the range": "is in the range", + "Generate": "Generate", + "Choose Storage Folder": "Choose Storage Folder", + "Choose Folder to Watch": "Choose Folder to Watch", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!", + "Manage Media Folders": "Manage Media Folders", + "Are you sure you want to remove the watched folder?": "Are you sure you want to remove the watched folder?", + "This path is currently not accessible.": "This path is currently not accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.", + "Connected to the streaming server": "Connected to the streaming server", + "The stream is disabled": "The stream is disabled", + "Getting information from the server...": "Getting information from the server...", + "Can not connect to the streaming server": "Can not connect to the streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Check this box to automatically switch off Master/Show source upon source disconnection.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Check this box to automatically switch on Master/Show source upon source connection.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "If your Icecast server expects a username of 'source', this field can be left blank.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "If your live streaming client does not ask for a username, this field should be 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.", + "Warning: You cannot change this field while the show is currently playing": "Warning: You cannot change this field while the show is currently playing", + "No result found": "No result found", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "This follows the same security pattern for the shows: only users assigned to the show can connect.", + "Specify custom authentication which will work only for this show.": "Specify custom authentication which will work only for this show.", + "The show instance doesn't exist anymore!": "The show instance doesn't exist anymore!", + "Warning: Shows cannot be re-linked": "Warning: Shows cannot be re-linked", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.", + "Show": "Show", + "Show is empty": "Show is empty", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retrieving data from the server...", + "This show has no scheduled content.": "This show has no scheduled content.", + "This show is not completely filled with content.": "This show is not completely filled with content.", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Aug", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Sun": "Sun", + "Mon": "Mon", + "Tue": "Tue", + "Wed": "Wed", + "Thu": "Thu", + "Fri": "Fri", + "Sat": "Sat", + "Shows longer than their scheduled time will be cut off by a following show.": "Shows longer than their scheduled time will be cut off by a following show.", + "Cancel Current Show?": "Cancel Current Show?", + "Stop recording current show?": "Stop recording current show?", + "Ok": "Ok", + "Contents of Show": "Contents of Show", + "Remove all content?": "Remove all content?", + "Delete selected item(s)?": "Delete selected item(s)?", + "Start": "Start", + "End": "End", + "Duration": "Duration", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "Show Empty", + "Recording From Line In": "Recording From Line In", + "Track preview": "Track preview", + "Cannot schedule outside a show.": "Cannot schedule outside a show.", + "Moving 1 Item": "Moving 1 Item", + "Moving %s Items": "Moving %s Items", + "Save": "Save", + "Cancel": "Cancel", + "Fade Editor": "Fade Editor", + "Cue Editor": "Cue Editor", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform features are available in a browser supporting the Web Audio API", + "Select all": "Select all", + "Select none": "Select none", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remove selected scheduled items", + "Jump to the current playing track": "Jump to the current playing track", + "Jump to Current": "", + "Cancel current show": "Cancel current show", + "Open library to add or remove content": "Open library to add or remove content", + "Add / Remove Content": "Add / Remove Content", + "in use": "in use", + "Disk": "Disk", + "Look in": "Look in", + "Open": "Open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Program Manager", + "Guest": "Guest", + "Guests can do the following:": "Guests can do the following:", + "View schedule": "View schedule", + "View show content": "View show content", + "DJs can do the following:": "DJs can do the following:", + "Manage assigned show content": "Manage assigned show content", + "Import media files": "Import media files", + "Create playlists, smart blocks, and webstreams": "Create playlists, smart blocks, and webstreams", + "Manage their own library content": "Manage their own library content", + "Program Managers can do the following:": "", + "View and manage show content": "View and manage show content", + "Schedule shows": "Schedule shows", + "Manage all library content": "Manage all library content", + "Admins can do the following:": "Admins can do the following:", + "Manage preferences": "Manage preferences", + "Manage users": "Manage users", + "Manage watched folders": "Manage watched folders", + "Send support feedback": "Send support feedback", + "View system status": "View system status", + "Access playout history": "Access playout history", + "View listener stats": "View listener stats", + "Show / hide columns": "Show / hide columns", + "Columns": "", + "From {from} to {to}": "From {from} to {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Su", + "Mo": "Mo", + "Tu": "Tu", + "We": "We", + "Th": "Th", + "Fr": "Fr", + "Sa": "Sa", + "Close": "Close", + "Hour": "Hour", + "Minute": "Minute", + "Done": "Done", + "Select files": "Select files", + "Add files to the upload queue and click the start button.": "Add files to the upload queue and click the start button.", + "Filename": "", + "Size": "", + "Add Files": "Add Files", + "Stop Upload": "Stop Upload", + "Start upload": "Start upload", + "Start Upload": "", + "Add files": "Add files", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Uploaded %d/%d files", + "N/A": "N/A", + "Drag files here.": "Drag files here.", + "File extension error.": "File extension error.", + "File size error.": "File size error.", + "File count error.": "File count error.", + "Init error.": "Init error.", + "HTTP Error.": "HTTP Error.", + "Security error.": "Security error.", + "Generic error.": "Generic error.", + "IO error.": "IO error.", + "File: %s": "File: %s", + "%d files queued": "%d files queued", + "File: %f, size: %s, max file size: %m": "File: %f, size: %s, max file size: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL might be wrong or doesn't exist", + "Error: File too large: ": "Error: File too large: ", + "Error: Invalid file extension: ": "Error: Invalid file extension: ", + "Set Default": "Set Default", + "Create Entry": "Create Entry", + "Edit History Record": "Edit History Record", + "No Show": "No Show", + "Copied %s row%s to the clipboard": "Copied %s row%s to the clipboard", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Description", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Enabled", + "Disabled": "Disabled", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email could not be sent. Check your mail server settings and ensure it has been configured properly.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Wrong username or password provided. Please try again.", + "You are viewing an older version of %s": "You are viewing an older version of %s", + "You cannot add tracks to dynamic blocks.": "You cannot add tracks to dynamic blocks.", + "You don't have permission to delete selected %s(s).": "You don't have permission to delete selected %s(s).", + "You can only add tracks to smart block.": "You can only add tracks to smart block.", + "Untitled Playlist": "Untitled Playlist", + "Untitled Smart Block": "Untitled Smart Block", + "Unknown Playlist": "Unknown Playlist", + "Preferences updated.": "Preferences updated.", + "Stream Setting Updated.": "Stream Setting Updated.", + "path should be specified": "path should be specified", + "Problem with Liquidsoap...": "Problem with Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Rebroadcast of show %s from %s at %s", + "Select cursor": "Select cursor", + "Remove cursor": "Remove cursor", + "show does not exist": "show does not exist", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User added successfully!", + "User updated successfully!": "User updated successfully!", + "Settings updated successfully!": "Settings updated successfully!", + "Untitled Webstream": "Untitled Webstream", + "Webstream saved.": "Webstream saved.", + "Invalid form values.": "Invalid form values.", + "Invalid character entered": "Invalid character entered", + "Day must be specified": "Day must be specified", + "Time must be specified": "Time must be specified", + "Must wait at least 1 hour to rebroadcast": "Must wait at least 1 hour to rebroadcast", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Use Custom Authentication:", + "Custom Username": "Custom Username", + "Custom Password": "Custom Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Username field cannot be empty.", + "Password field cannot be empty.": "Password field cannot be empty.", + "Record from Line In?": "Record from Line In?", + "Rebroadcast?": "Rebroadcast?", + "days": "days", + "Link:": "Link:", + "Repeat Type:": "Repeat Type:", + "weekly": "weekly", + "every 2 weeks": "every 2 weeks", + "every 3 weeks": "every 3 weeks", + "every 4 weeks": "every 4 weeks", + "monthly": "monthly", + "Select Days:": "Select Days:", + "Repeat By:": "Repeat By:", + "day of the month": "day of the month", + "day of the week": "day of the week", + "Date End:": "Date End:", + "No End?": "No End?", + "End date must be after start date": "End date must be after start date", + "Please select a repeat day": "Please select a repeat day", + "Background Colour:": "Background Color:", + "Text Colour:": "Text Color:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Name:", + "Untitled Show": "Untitled Show", + "URL:": "URL:", + "Genre:": "Genre:", + "Description:": "Description:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} does not fit the time format 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duration:", + "Timezone:": "Timezone:", + "Repeats?": "Repeats?", + "Cannot create show in the past": "Cannot create show in the past", + "Cannot modify start date/time of the show that is already started": "Cannot modify start date/time of the show that is already started", + "End date/time cannot be in the past": "End date/time cannot be in the past", + "Cannot have duration < 0m": "Cannot have duration < 0m", + "Cannot have duration 00h 00m": "Cannot have duration 00h 00m", + "Cannot have duration greater than 24h": "Cannot have duration greater than 24h", + "Cannot schedule overlapping shows": "Cannot schedule overlapping shows", + "Search Users:": "Search Users:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "Verify Password:", + "Firstname:": "Firstname:", + "Lastname:": "Lastname:", + "Email:": "Email:", + "Mobile Phone:": "Mobile Phone:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "User Type:", + "Login name is not unique.": "Login name is not unique.", + "Delete All Tracks in Library": "", + "Date Start:": "Date Start:", + "Title:": "Title:", + "Creator:": "Creator:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Year:", + "Label:": "Label:", + "Composer:": "Composer:", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC Number:", + "Website:": "Website:", + "Language:": "Language:", + "Publish...": "", + "Start Time": "Start Time", + "End Time": "End Time", + "Interface Timezone:": "Interface Timezone:", + "Station Name": "Station Name", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Note: Anything larger than 600x600 will be resized.", + "Default Crossfade Duration (s):": "Default Crossfade Duration (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Default Fade In (s):", + "Default Fade Out (s):": "Default Fade Out (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Station Timezone", + "Week Starts On": "Week Starts On", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Login", + "Password": "Password", + "Confirm new password": "Confirm new password", + "Password confirmation does not match your password.": "Password confirmation does not match your password.", + "Email": "", + "Username": "Username", + "Reset password": "Reset password", + "Back": "", + "Now Playing": "Now Playing", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "All My Shows:", + "My Shows": "", + "Select criteria": "Select criteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "hours", + "minutes": "minutes", + "items": "items", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamic", + "Static": "Static", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Generate playlist content and save criteria", + "Shuffle playlist content": "Shuffle playlist content", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limit cannot be empty or smaller than 0", + "Limit cannot be more than 24 hrs": "Limit cannot be more than 24 hrs", + "The value should be an integer": "The value should be an integer", + "500 is the max item limit value you can set": "500 is the max item limit value you can set", + "You must select Criteria and Modifier": "You must select Criteria and Modifier", + "'Length' should be in '00:00:00' format": "'Length' should be in '00:00:00' format", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "The value has to be numeric", + "The value should be less then 2147483648": "The value should be less then 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "The value should be less than %s characters", + "Value cannot be empty": "Value cannot be empty", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artist - Title", + "Show - Artist - Title": "Show - Artist - Title", + "Station name - Show name": "Station name - Show name", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Enable Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Enabled:", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "Channels:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Name", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Import Folder:", + "Watched Folders:": "Watched Folders:", + "Not a valid Directory": "Not a valid Directory", + "Value is required and can't be empty": "Value is required and can't be empty", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is no valid email address in the basic format local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} does not fit the date format '%format%'", + "{msg} is less than %min% characters long": "{msg} is less than %min% characters long", + "{msg} is more than %max% characters long": "{msg} is more than %max% characters long", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is not between '%min%' and '%max%', inclusively", + "Passwords do not match": "Passwords do not match", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in and cue out are null.", + "Can't set cue out to be greater than file length.": "Can't set cue out to be greater than file length.", + "Can't set cue in to be larger than cue out.": "Can't set cue in to be larger than cue out.", + "Can't set cue out to be smaller than cue in.": "Can't set cue out to be smaller than cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Select Country", + "livestream": "", + "Cannot move items out of linked shows": "Cannot move items out of linked shows", + "The schedule you're viewing is out of date! (sched mismatch)": "The schedule you're viewing is out of date! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "The schedule you're viewing is out of date! (instance mismatch)", + "The schedule you're viewing is out of date!": "The schedule you're viewing is out of date!", + "You are not allowed to schedule show %s.": "You are not allowed to schedule show %s.", + "You cannot add files to recording shows.": "You cannot add files to recording shows.", + "The show %s is over and cannot be scheduled.": "The show %s is over and cannot be scheduled.", + "The show %s has been previously updated!": "The show %s has been previously updated!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "A selected File does not exist!", + "Shows can have a max length of 24 hours.": "Shows can have a max length of 24 hours.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.", + "Rebroadcast of %s from %s": "Rebroadcast of %s from %s", + "Length needs to be greater than 0 minutes": "Length needs to be greater than 0 minutes", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL should be 512 characters or less", + "No MIME type found for webstream.": "No MIME type found for webstream.", + "Webstream name cannot be empty": "Webstream name cannot be empty", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Could not parse PLS playlist", + "Could not parse M3U playlist": "Could not parse M3U playlist", + "Invalid webstream - This appears to be a file download.": "Invalid webstream - This appears to be a file download.", + "Unrecognized stream type: %s": "Unrecognized stream type: %s", + "Record file doesn't exist": "Record file doesn't exist", + "View Recorded File Metadata": "View Recorded File Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edit Show", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Permission denied", + "Can't drag and drop repeating shows": "Can't drag and drop repeating shows", + "Can't move a past show": "Can't move a past show", + "Can't move show into past": "Can't move show into past", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Can't move a recorded show less than 1 hour before its rebroadcasts.", + "Show was deleted because recorded show does not exist!": "Show was deleted because recorded show does not exist!", + "Must wait 1 hour to rebroadcast.": "Must wait 1 hour to rebroadcast.", + "Track": "Track", + "Played": "Played", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/es_ES.json b/webapp/src/locale/es_ES.json index 2d7dfc4e71..337aa57171 100644 --- a/webapp/src/locale/es_ES.json +++ b/webapp/src/locale/es_ES.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "El año %s debe estar dentro del rango de 1753-9999", - "%s-%s-%s is not a valid date": "%s-%s-%s no es una fecha válida", - "%s:%s:%s is not a valid time": "%s:%s:%s no es una hora válida", - "English": "Inglés", - "Afar": "Pueblo afar", - "Abkhazian": "Abjasia", - "Afrikaans": "Afrikáans", - "Amharic": "Amhárico", - "Arabic": "Árabe", - "Assamese": "Asamés", - "Aymara": "Aimara", - "Azerbaijani": "Azerbaiyano", - "Bashkir": "Idioma Bashkir", - "Belarusian": "Bielorruso", - "Bulgarian": "Búlgaro", - "Bihari": "Lenguas Bihari", - "Bislama": "Bichelamar", - "Bengali/Bangla": "Bengalí/Bangla", - "Tibetan": "Tibetano", - "Breton": "Bretón", - "Catalan": "Catalán", - "Corsican": "Corso", - "Czech": "Checo", - "Welsh": "Galés", - "Danish": "Danés", - "German": "Alemán", - "Bhutani": "Butaní", - "Greek": "Griego", - "Esperanto": "Esperanto", - "Spanish": "Español", - "Estonian": "Estonia", - "Basque": "Vasco", - "Persian": "Persa", - "Finnish": "Finés", - "Fiji": "Fiyi", - "Faeroese": "Feroés", - "French": "Francés", - "Frisian": "Frisón", - "Irish": "Irlandés", - "Scots/Gaelic": "Escocés/Gaelico", - "Galician": "Galego", - "Guarani": "Guaraní", - "Gujarati": "Guyaratí", - "Hausa": "Idioma Hausa", - "Hindi": "Hindú", - "Croatian": "Croata", - "Hungarian": "Húngaro", - "Armenian": "Armenio", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue o Occidental", - "Inupiak": "Iñupiaq", - "Indonesian": "Indonesio", - "Icelandic": "Islandés", - "Italian": "Italiano", - "Hebrew": "Hebreo", - "Japanese": "Japonés", - "Yiddish": "Yidis", - "Javanese": "Javanés", - "Georgian": "Georgiano", - "Kazakh": "Kazajo", - "Greenlandic": "Groenlandés", - "Cambodian": "Camboyano", - "Kannada": "Canarés", - "Korean": "Coreano", - "Kashmiri": "Cachemir", - "Kurdish": "Kurdo", - "Kirghiz": "Kirguís", - "Latin": "Latín", - "Lingala": "Lingala", - "Laothian": "Laosiano", - "Lithuanian": "Lituano", - "Latvian/Lettish": "Letón", - "Malagasy": "Malgache", - "Maori": "Maorí", - "Macedonian": "Macedonio", - "Malayalam": "Malayo", - "Mongolian": "Mongol", - "Moldavian": "Moldavo", - "Marathi": "Maratí", - "Malay": "Malay", - "Maltese": "Maltés", - "Burmese": "Birmano", - "Nauru": "Nauru o Naurú", - "Nepali": "Nepalí", - "Dutch": "Holandés", - "Norwegian": "Noruego", - "Occitan": "Occitano o lengua de oc", - "(Afan)/Oromoor/Oriya": "Oriya", - "Punjabi": "Panyabí", - "Polish": "Polaco", - "Pashto/Pushto": "Pastún/Ushto", - "Portuguese": "Portugués", - "Quechua": "Quechua", - "Rhaeto-Romance": "Romanche", - "Kirundi": "Kirundi (Rundi)", - "Romanian": "Rumano", - "Russian": "Ruso", - "Kinyarwanda": "Kiñaruanda", - "Sanskrit": "Sánscrito", - "Sindhi": "Sindi", - "Sangro": "Sango", - "Serbo-Croatian": "Serbocroata", - "Singhalese": "Cingalés", - "Slovak": "Eslovaco", - "Slovenian": "Esloveno", - "Samoan": "Samoano", - "Shona": "Shona", - "Somali": "Somalí", - "Albanian": "Albanés", - "Serbian": "Serbio", - "Siswati": "Suazi", - "Sesotho": "Sesoto", - "Sundanese": "Sundanés", - "Swedish": "Sueco", - "Swahili": "Suajili", - "Tamil": "Tamil", - "Tegulu": "Télugu", - "Tajik": "Tayiko", - "Thai": "Tailandés", - "Tigrinya": "Tigriña", - "Turkmen": "Turkmeno o Turkeno", - "Tagalog": "Tagalo o tagálog", - "Setswana": "Setsuana", - "Tonga": "Tongano", - "Turkish": "Turco", - "Tsonga": "Tsonga", - "Tatar": "Tártaro", - "Twi": "Twi o Chuí", - "Ukrainian": "Ucraniano", - "Urdu": "Urdu", - "Uzbek": "Uzbeko", - "Vietnamese": "Vietnamita", - "Volapuk": "Volapük", - "Wolof": "Wólof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chino", - "Zulu": "Zulú", - "Use station default": "Usar el predeterminado de la estación", - "Upload some tracks below to add them to your library!": "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s.", - "Click the 'New Show' button and fill out the required fields.": "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Parece que no tienes shows programados. %sCrea un show ahora%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n %sCrear un show no enlazado ahora%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Parece que el programa actual necesita más pistas. %sAñade pistas a tu programa ahora%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s.", - "LibreTime media analyzer service": "Servicio de análisis multimedia LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Compruebe que el servicio libretime-analyzer está instalado correctamente en ", - " and ensure that it's running with ": " y asegúrate de que se ejecuta con ", - "If not, try ": "Si no, prueba ", - "LibreTime playout service": "Servicio de emisión de LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Compruebe que el servicio libretime-playout está instalado correctamente en ", - "LibreTime liquidsoap service": "Servicio LibreTime liquidsoap", - "Check that the libretime-liquidsoap service is installed correctly in ": "Comprueba que el servicio libretime-liquidsoap está instalado correctamente en ", - "LibreTime Celery Task service": "Servicio de tareas LibreTime Celery", - "Check that the libretime-worker service is installed correctly in ": "Compruebe que el servicio libretime-worker está instalado correctamente en ", - "LibreTime API service": "Servicio API de LibreTime", - "Check that the libretime-api service is installed correctly in ": "Comprueba que el servicio libretime-api está instalado correctamente en ", - "Radio Page": "Radio Web", - "Calendar": "Calendario", - "Widgets": "Widgets", - "Player": "Reproductor", - "Weekly Schedule": "Calendario Semanal", - "Settings": "Ajustes", - "General": "General", - "My Profile": "Mi Perfil", - "Users": "Usuarios", - "Track Types": "Tipos de pista", - "Streams": "Streamer", - "Status": "Estado", - "Analytics": "Estadísticas", - "Playout History": "Historial de reproducción", - "History Templates": "Plantillas Historial", - "Listener Stats": "Estadísticas de oyentes", - "Show Listener Stats": "Mostrar las estadísticas de los oyentes", - "Help": "Ayuda", - "Getting Started": "Cómo iniciar", - "User Manual": "Manual para el usuario", - "Get Help Online": "Conseguir ayuda en línea", - "Contribute to LibreTime": "Contribuir a LibreTime", - "What's New?": "¿Qué hay de nuevo?", - "You are not allowed to access this resource.": "No tienes permiso para acceder a este recurso.", - "You are not allowed to access this resource. ": "No tienes permiso para acceder a este recurso. ", - "File does not exist in %s": "El archivo no existe en %s", - "Bad request. no 'mode' parameter passed.": "Solicitud incorrecta. No se pasa el parámetro 'mode'.", - "Bad request. 'mode' parameter is invalid": "Solicitud incorrecta. El parámetro 'mode' pasado es inválido", - "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", - "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", - "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer 2. Active la API pública LibreTime en Configuración -> Preferencias", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", - "Page not found.": "Página no encontrada.", - "The requested action is not supported.": "No se admite la acción solicitada.", - "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", - "An internal application error has occurred.": "Se ha producido un error interno de la aplicación.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "No se han publicado pistas todavía.", - "%s not found": "No se encontró %s", - "Something went wrong.": "Algo salió mal.", - "Preview": "Previsualizar", - "Add to Playlist": "Añadir a la lista de reproducción", - "Add to Smart Block": "Agregar un bloque inteligente", - "Delete": "Eliminar", - "Edit...": "Editar...", - "Download": "Descargar", - "Duplicate Playlist": "Duplicar lista de reproducción", - "Duplicate Smartblock": "Bloque inteligente duplicado", - "No action available": "No hay acción disponible", - "You don't have permission to delete selected items.": "No tienes permiso para eliminar los elementos seleccionados.", - "Could not delete file because it is scheduled in the future.": "No se ha podido eliminar el archivo porque está programado para el futuro.", - "Could not delete file(s).": "No se pudo eliminar el archivo(s).", - "Copy of %s": "Copia de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Asegúrese de que el usuario/contraseña de administrador es correcto en la página Configuración->Streams.", - "Audio Player": "Reproductor de audio", - "Something went wrong!": "¡Algo salió mal!", - "Recording:": "Grabando:", - "Master Stream": "Stream maestro", - "Live Stream": "Stream en vivo", - "Nothing Scheduled": "Nada programado", - "Current Show:": "Show actual:", - "Current": "Actual", - "You are running the latest version": "Estás usando la versión más reciente", - "New version available: ": "Nueva versión disponible: ", - "You have a pre-release version of LibreTime intalled.": "Tienes una versión pre-lanzamiento de LibreTime instalada.", - "A patch update for your LibreTime installation is available.": "Hay disponible una actualización de parche para la instalación de LibreTime.", - "A feature update for your LibreTime installation is available.": "Hay disponible una actualización de funcionalidad para su instalación de LibreTime.", - "A major update for your LibreTime installation is available.": "Hay disponible una actualización importante para su instalación de LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible.", - "Add to current playlist": "Añadir a la lista de reproducción actual", - "Add to current smart block": "Añadir al bloque inteligente actual", - "Adding 1 Item": "Añadiendo 1 item", - "Adding %s Items": "Añadiendo %s elementos", - "You can only add tracks to smart blocks.": "Solo puede agregar canciones a los bloques inteligentes.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción.", - "Please select a cursor position on timeline.": "Indica tu selección en la lista de reproducción actual.", - "You haven't added any tracks": "No ha añadido ninguna pista", - "You haven't added any playlists": "No has añadido ninguna lista de reproducción", - "You haven't added any podcasts": "No has añadido ningún podcast", - "You haven't added any smart blocks": "No has añadido ningún bloque inteligente", - "You haven't added any webstreams": "No has añadido ningún webstream", - "Learn about tracks": "Aprenda sobre pistas", - "Learn about playlists": "Aprenda sobre listas de reproducción", - "Learn about podcasts": "Aprenda sobre podcasts", - "Learn about smart blocks": "Aprenda sobre bloques inteligentes", - "Learn about webstreams": "Aprenda sobre webstreams", - "Click 'New' to create one.": "Clic 'Nuevo' para crear uno.", - "Add": "Añadir", - "New": "Nuevo", - "Edit": "Editar", - "Add to Schedule": "Añadir al show próximo", - "Add to next show": "Añadir al show próximo", - "Add to current show": "Añadir al show actual", - "Add after selected items": "Añadir después de los elementos seleccionados", - "Publish": "Publicar", - "Remove": "Eliminar", - "Edit Metadata": "Editar metadatos", - "Add to selected show": "Añadir al show seleccionado", - "Select": "Seleccionar", - "Select this page": "Seleccionar esta página", - "Deselect this page": "Deseleccionar esta página", - "Deselect all": "Deseleccionar todo", - "Are you sure you want to delete the selected item(s)?": "¿De verdad quieres eliminar los ítems seleccionados?", - "Scheduled": "Programado", - "Tracks": "Pistas", - "Playlist": "Listas de reproducción", - "Title": "Título", - "Creator": "Creador", - "Album": "Álbum", - "Bit Rate": "Tasa de bits", - "BPM": "BPM", - "Composer": "Compositor", - "Conductor": "Director", - "Copyright": "Derechos de autor", - "Encoded By": "Codificado por", - "Genre": "Género", - "ISRC": "ISRC", - "Label": "Sello", - "Language": "Idioma", - "Last Modified": "Ult.Modificado", - "Last Played": "Ult.Reproducido", - "Length": "Duración", - "Mime": "Mime", - "Mood": "Estilo (mood)", - "Owner": "Propietario", - "Replay Gain": "Ganancia", - "Sample Rate": "Tasa de muestreo", - "Track Number": "Núm.Pista", - "Uploaded": "Subido", - "Website": "Sitio web", - "Year": "Año", - "Loading...": "Cargando...", - "All": "Todo", - "Files": "Archivos", - "Playlists": "Listas", - "Smart Blocks": "Bloques", - "Web Streams": "Web streams", - "Unknown type: ": "Tipo desconocido: ", - "Are you sure you want to delete the selected item?": "¿De verdad deseas eliminar el ítem seleccionado?", - "Uploading in progress...": "Carga en progreso...", - "Retrieving data from the server...": "Recolectando data desde el servidor...", - "Import": "Importar", - "Imported?": "Importado?", - "View": "Ver", - "Error code: ": "Código del error: ", - "Error msg: ": "Msg de error: ", - "Input must be a positive number": "La entrada debe ser un número positivo", - "Input must be a number": "La entrada debe ser un número", - "Input must be in the format: yyyy-mm-dd": "La entrada debe tener el formato: aaaa-mm-dd", - "Input must be in the format: hh:mm:ss.t": "La entrada debe tener el formato: hh:mm:ss.t", - "My Podcast": "Mi Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. %s¿Estás seguro de que quieres salir de la página?", - "Open Media Builder": "Abrir Media Builder", - "please put in a time '00:00:00 (.0)'": "Por favor introduce un tiempo '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Por favor introduce un tiempo en segundos válido. Ej. 0.5", - "Your browser does not support playing this file type: ": "Tu navegador no soporta la reproducción de este tipo de archivos: ", - "Dynamic block is not previewable": "Los bloques dinámicos no se pueden previsualizar", - "Limit to: ": "Limitado a: ", - "Playlist saved": "Se guardó la lista de reproducción", - "Playlist shuffled": "Lista de reproducción mezclada", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime no está seguro del estado de este archivo. Esto puede suceder cuando el archivo está en una unidad remota a la que no se puede acceder o el archivo está en un directorio que ya no se 'vigila'.", - "Listener Count on %s: %s": "Número de oyentes en %s: %s", - "Remind me in 1 week": "Recuérdame en 1 semana", - "Remind me never": "Nunca recordarme", - "Yes, help Airtime": "Sí, ayudar a Libretime", - "Image must be one of jpg, jpeg, png, or gif": "La imagen debe ser jpg, jpeg, png, o gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloque inteligente estático guardará los criterios y generará el contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la Biblioteca antes de añadirlo a un programa.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "No se alcanzará la longitud de bloque deseada si %s no puede encontrar suficientes pistas únicas que coincidan con sus criterios. Active esta opción si desea permitir que las pistas se añadan varias veces al bloque inteligente.", - "Smart block shuffled": "Se reprodujo el bloque inteligente de forma aleatoria", - "Smart block generated and criteria saved": "Bloque inteligente generado y criterios guardados", - "Smart block saved": "Bloque inteligente guardado", - "Processing...": "Procesando...", - "Select modifier": "Elige modificador", - "contains": "contiene", - "does not contain": "no contiene", - "is": "es", - "is not": "no es", - "starts with": "empieza con", - "ends with": "termina con", - "is greater than": "es mayor que", - "is less than": "es menor que", - "is in the range": "está en el rango de", - "Generate": "Generar", - "Choose Storage Folder": "Elegir carpeta de almacenamiento", - "Choose Folder to Watch": "Elegir carpeta a monitorizar", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n ¡Esto eliminará los archivos de tu biblioteca de Airtime!", - "Manage Media Folders": "Administrar las Carpetas de Medios", - "Are you sure you want to remove the watched folder?": "¿Estás seguro de que quieres quitar la carpeta monitorizada?", - "This path is currently not accessible.": "Esta ruta es actualmente inaccesible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s.", - "Connected to the streaming server": "Conectado al servidor de streaming", - "The stream is disabled": "Se desactivó el stream", - "Getting information from the server...": "Obteniendo información desde el servidor...", - "Can not connect to the streaming server": "No es posible conectar el servidor de streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s está detrás de un router o firewall, puede que necesites configurar el reenvío de puertos y la información de este campo será incorrecta. En este caso, tendrá que actualizar manualmente este campo para que muestre el host/puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido está entre 1024 y 49151.", - "For more details, please read the %s%s Manual%s": "Para más detalles, lea el %s%s Manual %s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opción para activar los metadatos para los flujos OGG (los metadatos del flujo son el título de la pista, el artista y el nombre del programa que se muestran en un reproductor de audio). VLC y mplayer tienen un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la información de metadatos: se desconectarán del flujo después de cada canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte para estos reproductores de audio, entonces siéntete libre de habilitar esta opción.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente).", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes.", - "Warning: You cannot change this field while the show is currently playing": "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show", - "No result found": "Sin resultados", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show.", - "Specify custom authentication which will work only for this show.": "Especifique una autenticación personalizada que funcione solo para este show.", - "The show instance doesn't exist anymore!": "¡La instancia de este show ya no existe!", - "Warning: Shows cannot be re-linked": "Advertencia: Los shows no pueden re-enlazarse", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario.", - "Show": "Mostrar", - "Show is empty": "El show está vacío", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Recopilando información desde el servidor...", - "This show has no scheduled content.": "Este show no cuenta con contenido programado.", - "This show is not completely filled with content.": "Este programa aún no está lleno de contenido.", - "January": "Enero", - "February": "Febrero", - "March": "Marzo", - "April": "Abril", - "May": "Mayo", - "June": "Junio", - "July": "Julio", - "August": "Agosto", - "September": "Septiembre", - "October": "Octubre", - "November": "Noviembre", - "December": "Diciembre", - "Jan": "Ene", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Abr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Ago", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dic", - "Today": "Hoy", - "Day": "Día", - "Week": "Semana", - "Month": "Mes", - "Sunday": "Domingo", - "Monday": "Lunes", - "Tuesday": "Martes", - "Wednesday": "Miércoles", - "Thursday": "Jueves", - "Friday": "Viernes", - "Saturday": "Sábado", - "Sun": "Dom", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mie", - "Thu": "Jue", - "Fri": "Vie", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Los shows más largos que su segmento programado serán cortados por el show que le sigue.", - "Cancel Current Show?": "¿Cancelar el show actual?", - "Stop recording current show?": "¿Detener la grabación del show actual?", - "Ok": "Ok", - "Contents of Show": "Contenidos del show", - "Remove all content?": "¿Eliminar todo el contenido?", - "Delete selected item(s)?": "¿Eliminar los ítems seleccionados?", - "Start": "Inicio", - "End": "Final", - "Duration": "Duración", - "Filtering out ": "Filtrando ", - " of ": " de ", - " records": " registros", - "There are no shows scheduled during the specified time period.": "No hay shows programados durante el período de tiempo especificado.", - "Cue In": "Señal de entrada", - "Cue Out": "Señal de salida", - "Fade In": "Unirse", - "Fade Out": "Desaparecer", - "Show Empty": "Show vacío", - "Recording From Line In": "Grabando desde la entrada", - "Track preview": "Previsualización de la pista", - "Cannot schedule outside a show.": "No es posible programar un show externo.", - "Moving 1 Item": "Moviendo 1 ítem", - "Moving %s Items": "Moviendo %s elementos", - "Save": "Guardar", - "Cancel": "Cancelar", - "Fade Editor": "Editor de desvanecimiento", - "Cue Editor": "Editor de Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio", - "Select all": "Seleccionar todos", - "Select none": "Seleccionar uno", - "Trim overbooked shows": "Recortar exceso de shows", - "Remove selected scheduled items": "Eliminar los ítems programados seleccionados", - "Jump to the current playing track": "Saltar a la pista en reproducción actual", - "Jump to Current": "Saltar a la pista actual", - "Cancel current show": "Cancelar el show actual", - "Open library to add or remove content": "Abrir biblioteca para agregar o eliminar contenido", - "Add / Remove Content": "Agregar / eliminar contenido", - "in use": "en uso", - "Disk": "Disco", - "Look in": "Buscar en", - "Open": "Abrir", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Administrador de programa", - "Guest": "Invitado", - "Guests can do the following:": "Los invitados pueden hacer lo siguiente:", - "View schedule": "Ver programación", - "View show content": "Ver contenido del show", - "DJs can do the following:": "Los DJ pueden hacer lo siguiente:", - "Manage assigned show content": "Administrar el contenido del show asignado", - "Import media files": "Importar archivos de medios", - "Create playlists, smart blocks, and webstreams": "Crear listas de reproducción, bloques inteligentes y webstreams", - "Manage their own library content": "Administrar su propia biblioteca de contenido", - "Program Managers can do the following:": "Los administradores de programas pueden hacer lo siguiente:", - "View and manage show content": "Ver y administrar contenido del show", - "Schedule shows": "Programar shows", - "Manage all library content": "Administrar el contenido de toda la biblioteca", - "Admins can do the following:": "Los administradores pueden:", - "Manage preferences": "Administrar preferencias", - "Manage users": "Administrar usuarios", - "Manage watched folders": "Administrar carpetas monitorizadas", - "Send support feedback": "Enviar opinión de soporte", - "View system status": "Ver el estado del sistema", - "Access playout history": "Acceder al historial de reproducción", - "View listener stats": "Ver estadísticas de oyentes", - "Show / hide columns": "Mostrar / ocultar columnas", - "Columns": "Columnas", - "From {from} to {to}": "De {from} para {to}", - "kbps": "kbps", - "yyyy-mm-dd": "dd-mm-yyyy", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Do", - "Mo": "Lu", - "Tu": "Ma", - "We": "Mi", - "Th": "Ju", - "Fr": "Vi", - "Sa": "Sa", - "Close": "Cerrar", - "Hour": "Hora", - "Minute": "Minuto", - "Done": "Hecho", - "Select files": "Seleccione los archivos", - "Add files to the upload queue and click the start button.": "Añade los archivos a la cola de carga y haz clic en el botón de iniciar.", - "Filename": "Nombre del archivo", - "Size": "Tamaño", - "Add Files": "Añadir archivos", - "Stop Upload": "Detener carga", - "Start upload": "Iniciar carga", - "Start Upload": "Empezar a cargar", - "Add files": "Añadir archivos", - "Stop current upload": "Detener la carga en curso", - "Start uploading queue": "Iniciar la carga en la cola", - "Uploaded %d/%d files": "Archivos %d/%d cargados", - "N/A": "No disponible", - "Drag files here.": "Arrastra los archivos a esta área.", - "File extension error.": "Error de extensión del archivo.", - "File size error.": "Error de tamaño del archivo.", - "File count error.": "Error de cuenta del archivo.", - "Init error.": "Error de inicialización.", - "HTTP Error.": "Error de HTTP.", - "Security error.": "Error de seguridad.", - "Generic error.": "Error genérico.", - "IO error.": "Error IO.", - "File: %s": "Archivo: %s", - "%d files queued": "%d archivos en cola", - "File: %f, size: %s, max file size: %m": "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m", - "Upload URL might be wrong or doesn't exist": "Puede que el URL de carga no esté funcionando o no exista", - "Error: File too large: ": "Error: Fichero demasiado grande: ", - "Error: Invalid file extension: ": "Error: Extensión de archivo no válida: ", - "Set Default": "Establecer predeterminado", - "Create Entry": "Crear Entrada", - "Edit History Record": "Editar historial", - "No Show": "No hay Show", - "Copied %s row%s to the clipboard": "Se copiaron %s celda%s al portapapeles", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sImprimir vista%sPor favor, utilice la función de impresión de su navegador para imprimir esta tabla. Pulse Escape cuando termine.", - "New Show": "Nuevo Show", - "New Log Entry": "Nueva entrada de registro", - "No data available in table": "No hay datos en la tabla", - "(filtered from _MAX_ total entries)": "(filtrado de _MAX_ entradas totales)", - "First": "Primero", - "Last": "Último", - "Next": "Siguiente", - "Previous": "Anterior", - "Search:": "Buscar:", - "No matching records found": "No se han encontrado coincidencias", - "Drag tracks here from the library": "Arrastre las pistas desde la biblioteca", - "No tracks were played during the selected time period.": "No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado.", - "Unpublish": "Despublicar", - "No matching results found.": "No se ha encontrado ningún resultado.", - "Author": "Autor", - "Description": "Descripción", - "Link": "Enlace", - "Publication Date": "Fecha de publicación", - "Import Status": "Estado de la importación", - "Actions": "Acciones", - "Delete from Library": "Eliminar de la biblioteca", - "Successfully imported": "Importado correctamente", - "Show _MENU_": "Mostrar el _MENU_", - "Show _MENU_ entries": "Mostrar las entradas del _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Mostrando el _START_ a _END_ del _TOTAL_ las pistas", - "Showing _START_ to _END_ of _TOTAL_ track types": "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas", - "Showing _START_ to _END_ of _TOTAL_ users": "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios", - "Showing 0 to 0 of 0 entries": "Mostrando 0 de 0 de 0 entradas", - "Showing 0 to 0 of 0 tracks": "Mostrando 0 a 0 de 0 pistas", - "Showing 0 to 0 of 0 track types": "Mostrando 0 a 0 de 0 tipos de pistas", - "(filtered from _MAX_ total track types)": "(filtrado de _MAX_ tipos de pistas totales)", - "Are you sure you want to delete this tracktype?": "¿Está seguro de que desea eliminar este tipo de pista?", - "No track types were found.": "No se encontró ningún tipo de pista.", - "No track types found": "No se han encontrado tipos de pista", - "No matching track types found": "No se ha encontrado ningún tipo de pista", - "Enabled": "Activado", - "Disabled": "Desactivado", - "Cancel upload": "Cancelar la carga", - "Type": "Tipo", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", - "Podcast settings saved": "Configuración del podcasts guardado", - "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", - "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", - "You haven't published any episodes!": "¡No has publicado ningún episodio!", - "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", - "Try it now": "Pruebalo ahora", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.", - "Playlist preview": "Vista previa de la lista de reproducción", - "Smart Block": "Bloque Inteligente", - "Webstream preview": "Vista previa de la transmisión web", - "You don't have permission to view the library.": "No tienes permiso para ver la biblioteca.", - "Now": "Ahora", - "Click 'New' to create one now.": "Haz clic en 'Nuevo' para crear uno ahora.", - "Click 'Upload' to add some now.": "Haz clic en 'Cargar' para agregar algunos ahora.", - "Feed URL": "URL para el canal", - "Import Date": "Fecha de importación", - "Add New Podcast": "Agregar un nuevo podcast", - "Cannot schedule outside a show.\nTry creating a show first.": "No se puede programar fuera de un programa.\nIntente crear primero un programa.", - "No files have been uploaded yet.": "Aún no se han cargado archivos.", - "On Air": "En directo", - "Off Air": "Fuera de antena", - "Offline": "Sin conexión", - "Nothing scheduled": "Nada programado", - "Click 'Add' to create one now.": "Haga clic en 'Agregar' para crear uno ahora.", - "Please enter your username and password.": "Por favor, introduzca su nombre de usuario y contraseña.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta.", - "That username or email address could not be found.": "No se ha podido encontrar ese nombre de usuario o dirección de correo electrónico.", - "There was a problem with the username or email address you entered.": "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste.", - "Wrong username or password provided. Please try again.": "Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo.", - "You are viewing an older version of %s": "Estas viendo una versión antigua de %s", - "You cannot add tracks to dynamic blocks.": "No puedes añadir pistas a los bloques dinámicos.", - "You don't have permission to delete selected %s(s).": "No tienes permiso para eliminar los %s(s) seleccionados.", - "You can only add tracks to smart block.": "Solo puedes añadir pistas a los bloques inteligentes.", - "Untitled Playlist": "Lista de reproducción sin nombre", - "Untitled Smart Block": "Bloque inteligente sin nombre", - "Unknown Playlist": "Lista de reproducción desconocida", - "Preferences updated.": "Se actualizaron las preferencias.", - "Stream Setting Updated.": "Se actualizaron las configuraciones del stream.", - "path should be specified": "se debe especificar la ruta", - "Problem with Liquidsoap...": "Hay un problema con Liquidsoap...", - "Request method not accepted": "Método de solicitud no aceptado", - "Rebroadcast of show %s from %s at %s": "Retransmisión del programa %s de %s en %s", - "Select cursor": "Elegir cursor", - "Remove cursor": "Eliminar cursor", - "show does not exist": "El show no existe", - "Track Type added successfully!": "¡Tipo de pista añadido con éxito!", - "Track Type updated successfully!": "¡Tipo de pista actualizado con éxito!", - "User added successfully!": "¡Usuario añadido correctamente!", - "User updated successfully!": "¡Usuario actualizado correctamente!", - "Settings updated successfully!": "¡Configuración actualizada correctamente!", - "Untitled Webstream": "Webstream sin título", - "Webstream saved.": "Transmisión web guardada.", - "Invalid form values.": "Los valores en el formulario son inválidos.", - "Invalid character entered": "Se introdujo un caracter inválido", - "Day must be specified": "Se debe especificar un día", - "Time must be specified": "Se debe especificar una hora", - "Must wait at least 1 hour to rebroadcast": "Debes esperar al menos 1 hora para reprogramar", - "Add Autoloading Playlist ?": "¿Programar Lista Auto-Cargada?", - "Select Playlist": "Seleccionar Lista", - "Repeat Playlist Until Show is Full ?": "Repitir lista hasta que termine el programa?", - "Use %s Authentication:": "Usar la autenticación %s:", - "Use Custom Authentication:": "Usar la autenticación personalizada:", - "Custom Username": "Usuario personalizado", - "Custom Password": "Contraseña personalizada", - "Host:": "Host:", - "Port:": "Puerto:", - "Mount:": "Montaje:", - "Username field cannot be empty.": "El campo de usuario no puede estar vacío.", - "Password field cannot be empty.": "El campo de contraseña no puede estar vacío.", - "Record from Line In?": "¿Grabar desde la entrada (line in)?", - "Rebroadcast?": "¿Reprogramar?", - "days": "días", - "Link:": "Enlace:", - "Repeat Type:": "Tipo de repetición:", - "weekly": "semanal", - "every 2 weeks": "cada 2 semanas", - "every 3 weeks": "cada 3 semanas", - "every 4 weeks": "cada 4 semanas", - "monthly": "mensual", - "Select Days:": "Seleccione días:", - "Repeat By:": "Repetir por:", - "day of the month": "día del mes", - "day of the week": "día de la semana", - "Date End:": "Fecha de Finalización:", - "No End?": "¿Sin fin?", - "End date must be after start date": "La fecha de finalización debe ser posterior a la inicio", - "Please select a repeat day": "Por favor, selecciona un día de repeticón", - "Background Colour:": "Color de fondo:", - "Text Colour:": "Color del texto:", - "Current Logo:": "Loco actual:", - "Show Logo:": "Logo del Show:", - "Logo Preview:": "Vista previa del Logo:", - "Name:": "Nombre:", - "Untitled Show": "Show sin nombre", - "URL:": "URL:", - "Genre:": "Género:", - "Description:": "Descripción:", - "Instance Description:": "Descripcin de instancia:", - "{msg} does not fit the time format 'HH:mm'": "{msg} no concuerda con el formato de tiempo 'HH:mm'", - "Start Time:": "Hora de inicio:", - "In the Future:": "En el Futuro:", - "End Time:": "Hora de fin:", - "Duration:": "Duración:", - "Timezone:": "Zona horaria:", - "Repeats?": "¿Se repite?", - "Cannot create show in the past": "No puedes crear un show en el pasado", - "Cannot modify start date/time of the show that is already started": "No puedes modificar la hora/fecha de inicio de un show que ya empezó", - "End date/time cannot be in the past": "La fecha/hora de finalización no puede ser anterior", - "Cannot have duration < 0m": "No puede tener una duración < 0min", - "Cannot have duration 00h 00m": "No puede tener una duración 00h 00m", - "Cannot have duration greater than 24h": "No puede tener una duración mayor a 24 horas", - "Cannot schedule overlapping shows": "No se pueden programar shows traslapados", - "Search Users:": "Buscar usuarios:", - "DJs:": "Disc-jockeys (DJs):", - "Type Name:": "Escribe un nombre:", - "Code:": "Código:", - "Visibility:": "Visibilidad:", - "Analyze cue points:": "Analizar los puntos de referencia:", - "Code is not unique.": "El código no es único.", - "Username:": "Usuario:", - "Password:": "Contraseña:", - "Verify Password:": "Verificar contraseña:", - "Firstname:": "Nombre:", - "Lastname:": "Apellido:", - "Email:": "Correo electrónico:", - "Mobile Phone:": "Teléfono móvil:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Tipo de usuario:", - "Login name is not unique.": "El nombre de usuario no es único.", - "Delete All Tracks in Library": "Eliminar todas las pistas de la biblioteca", - "Date Start:": "Fecha de Inicio:", - "Title:": "Título:", - "Creator:": "Creador:", - "Album:": "Álbum:", - "Owner:": "Propietario:", - "Select a Type": "Seleccionar un tipo", - "Track Type:": "Tipo de pista:", - "Year:": "Año:", - "Label:": "Sello:", - "Composer:": "Compositor:", - "Conductor:": "Conductor:", - "Mood:": "Ánimo (mood):", - "BPM:": "BPM:", - "Copyright:": "Derechos de autor:", - "ISRC Number:": "Número ISRC:", - "Website:": "Sitio web:", - "Language:": "Idioma:", - "Publish...": "Publicar...", - "Start Time": "Hora de Inicio", - "End Time": "Hora de Finalización", - "Interface Timezone:": "Zona horaria de la interfaz:", - "Station Name": "Nombre de la estación", - "Station Description": "Descripción de la estación", - "Station Logo:": "Logo de la estación:", - "Note: Anything larger than 600x600 will be resized.": "Nota: Cualquiera mayor que 600x600 será redimensionada.", - "Default Crossfade Duration (s):": "Duración predeterminada del Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "Por favor, escribe un valor en segundos (eg. 0.5)", - "Default Fade In (s):": "Fade In perdeterminado (s):", - "Default Fade Out (s):": "Fade Out preseterminado (s):", - "Track Type Upload Default": "Tipo de pista cargado predeterminado", - "Intro Autoloading Playlist": "Lista de reproducción automática", - "Outro Autoloading Playlist": "Lista de reproducción de salida automática", - "Overwrite Podcast Episode Metatags": "Sobrescribir el álbum del podcast", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Genere un bloque inteligente y una lista de reproducción al crear un nuevo podcast", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si esta opción está activada, se generará un nuevo bloque inteligente y una nueva lista de reproducción que coincidan con la pista más reciente de un podcast inmediatamente después de la creación de un nuevo podcast. Tenga en cuenta que la función \"Sobrescribir metatags de episodios de podcast\" también debe estar activada para que los smartblocks encuentren episodios de forma fiable.", - "Public LibreTime API": "API Pública de Libretime", - "Required for embeddable schedule widget.": "Requerido para el widget de programación.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Habilitar esta función permite a Libretime proporcionar datos de programación\n a widgets externos que se pueden integrar en tu sitio web.", - "Default Language": "Idioma predeterminado", - "Station Timezone": "Zona horaria de la Estación", - "Week Starts On": "La semana empieza el", - "Display login button on your Radio Page?": "¿Mostrar el botón de inicio de sesión en su página de radio?", - "Feature Previews": "Vistas previas de funciones", - "Enable this to opt-in to test new features.": "Active esta opción para probar nuevas funciones.", - "Auto Switch Off:": "Desconexión automática:", - "Auto Switch On:": "Encendido automático:", - "Switch Transition Fade (s):": "Transición de desvanecimiento (s):", - "Master Source Host:": "Host Fuente Maestro:", - "Master Source Port:": "Puerto Fuente Maestro:", - "Master Source Mount:": "Montaje Fuente Maestro:", - "Show Source Host:": "Host Fuente del Show:", - "Show Source Port:": "Puerto Fuente del Show:", - "Show Source Mount:": "Montaje Fuente del Show:", - "Login": "Iniciar sesión", - "Password": "Contraseña", - "Confirm new password": "Confirma nueva contraseña", - "Password confirmation does not match your password.": "La confirmación de la contraseña no coincide con tu contraseña.", - "Email": "Correo electrónico", - "Username": "Usuario", - "Reset password": "Restablecer contraseña", - "Back": "Atrás", - "Now Playing": "Reproduciéndose ahora", - "Select Stream:": "Seleccionar Stream:", - "Auto detect the most appropriate stream to use.": "Autodetectar el stream más apropiado a reproducir.", - "Select a stream:": "Selecciona un stream:", - " - Mobile friendly": " - Apto para móviles", - " - The player does not support Opus streams.": " - El reproductor no soporta streams Opus.", - "Embeddable code:": "Código de inserción:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio.", - "Preview:": "Vista previa:", - "Feed Privacy": "Privacidad del Feed", - "Public": "Público", - "Private": "Privado", - "Station Language": "Idioma de la Estación", - "Filter by Show": "Filtrar por Show", - "All My Shows:": "Todos mis shows:", - "My Shows": "Mis Shows", - "Select criteria": "Seleccionar criterio", - "Bit Rate (Kbps)": "Tasa de bits (Kbps)", - "Track Type": "Tipo de pista", - "Sample Rate (kHz)": "Tasa de muestreo (kHz)", - "before": "antes", - "after": "después", - "between": "entre", - "Select unit of time": "Seleccionar la unidad de tiempo", - "minute(s)": "minuto(s)", - "hour(s)": "hora(s)", - "day(s)": "día(s)", - "week(s)": "semana(s)", - "month(s)": "mes(es)", - "year(s)": "año(s)", - "hours": "horas", - "minutes": "minutos", - "items": "elementos", - "time remaining in show": "tiempo restante del programa", - "Randomly": "Aleatorio", - "Newest": "Más nuevo", - "Oldest": "Más antiguo", - "Most recently played": "Reproducido más recientemente", - "Least recently played": "Último reproducido", - "Select Track Type": "Seleccione el tipo de pista", - "Type:": "Tipo:", - "Dynamic": "Dinámico", - "Static": "Estático", - "Select track type": "Selecciona el tipo de pista", - "Allow Repeated Tracks:": "Permitir Pistas Repetidas:", - "Allow last track to exceed time limit:": "Permitir que la última pista supere el límite de tiempo:", - "Sort Tracks:": "Ordenar Pistas:", - "Limit to:": "Limitar a:", - "Generate playlist content and save criteria": "Generar contenido para la lista de reproducción y guardar criterios", - "Shuffle playlist content": "Reproducir de forma aleatoria los contenidos de la lista de reproducción", - "Shuffle": "Reproducción aleatoria", - "Limit cannot be empty or smaller than 0": "El límite no puede estar vacío o ser menor que 0", - "Limit cannot be more than 24 hrs": "El límite no puede ser mayor a 24 horas", - "The value should be an integer": "El valor debe ser un número entero", - "500 is the max item limit value you can set": "500 es el valor máximo de ítems que se pueden configurar", - "You must select Criteria and Modifier": "Debes elegir Criterios y Modificador", - "'Length' should be in '00:00:00' format": "'Longitud' debe estar en formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el valor del texto", - "You must select a time unit for a relative datetime.": "Debe seleccionar una unidad de tiempo para una fecha-hora relativa.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Sólo se permiten números enteros no negativos para una fecha-hora relativa", - "The value has to be numeric": "El valor debe ser numérico", - "The value should be less then 2147483648": "El valor debe ser menor a 2147483648", - "The value cannot be empty": "El valor no puede estar vacío", - "The value should be less than %s characters": "El valor debe ser menor que %s caracteres", - "Value cannot be empty": "El valor no puede estar vacío", - "Stream Label:": "Etiqueta del stream:", - "Artist - Title": "Artísta - Título", - "Show - Artist - Title": "Show - Artista - Título", - "Station name - Show name": "Nombre de la estación - nombre del show", - "Off Air Metadata": "Metadatos Off Air", - "Enable Replay Gain": "Activar ajuste del volumen", - "Replay Gain Modifier": "Modificar ajuste de volumen", - "Hardware Audio Output:": "Salida Hardware Audio:", - "Output Type": "Tipo de Salida", - "Enabled:": "Activado:", - "Mobile:": "Móvil:", - "Stream Type:": "Tipo de stream:", - "Bit Rate:": "Tasa de bits:", - "Service Type:": "Tipo de servicio:", - "Channels:": "Canales:", - "Server": "Servidor", - "Port": "Puerto", - "Mount Point": "Punto de montaje", - "Name": "Nombre", - "URL": "URL", - "Stream URL": "URL de la transmisión", - "Push metadata to your station on TuneIn?": "¿Actualizar metadatos de tu estación en TuneIn?", - "Station ID:": "ID Estación:", - "Partner Key:": "Clave Socio:", - "Partner Id:": "Id Socio:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo.", - "Import Folder:": "Carpeta de importación:", - "Watched Folders:": "Carpetas monitorizadas:", - "Not a valid Directory": "No es un directorio válido", - "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} no es una dirección de correo electrónico válida en el formato básico local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} no se ajusta al formato de fecha '%format%'", - "{msg} is less than %min% characters long": "{msg} tiene menos de %min% caracteres", - "{msg} is more than %max% characters long": "{msg} tiene más de %max% caracteres", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} no está entre '%min%' y '%max%', inclusive", - "Passwords do not match": "Las contraseñas no coinciden", - "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", - "\n\nThank you,\nThe %s Team": "\n\nGracias,\nEl equipo %s", - "%s Password Reset": "%s Restablecimiento de Contraseña", - "Cue in and cue out are null.": "Cue in y cue out son nulos.", - "Can't set cue out to be greater than file length.": "No se puede asignar un cue out mayor que la duración del archivo.", - "Can't set cue in to be larger than cue out.": "No se puede asignar un cue in mayor al cue out.", - "Can't set cue out to be smaller than cue in.": "No se puede asignar un cue out menor que el cue in.", - "Upload Time": "Hora de Subida", - "None": "Ninguno", - "Powered by %s": "Desarrollado por %s", - "Select Country": "Seleccionar país", - "livestream": "transmisión en directo", - "Cannot move items out of linked shows": "No se pueden mover elementos de los shows enlazados", - "The schedule you're viewing is out of date! (sched mismatch)": "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "¡La programación que estás viendo está desactualizada! (desfase de instancia)", - "The schedule you're viewing is out of date!": "¡La programación que estás viendo está desactualizada!", - "You are not allowed to schedule show %s.": "No tienes permiso para programar el show %s.", - "You cannot add files to recording shows.": "No puedes agregar pistas a shows en grabación.", - "The show %s is over and cannot be scheduled.": "El show %s terminó y no puede ser programado.", - "The show %s has been previously updated!": "¡El show %s ha sido actualizado anteriormente!", - "Content in linked shows cannot be changed while on air!": "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!", - "Cannot schedule a playlist that contains missing files.": "No se puede programar una lista de reproducción que contenga archivos perdidos.", - "A selected File does not exist!": "¡Un Archivo seleccionado no existe!", - "Shows can have a max length of 24 hours.": "Los shows pueden tener una duración máxima de 24 horas.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "No se pueden programar shows solapados.\nNota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones.", - "Rebroadcast of %s from %s": "Retransmisión de %s desde %s", - "Length needs to be greater than 0 minutes": "La duración debe ser mayor de 0 minutos", - "Length should be of form \"00h 00m\"": "La duración debe estar en el formato \"00h 00m\"", - "URL should be of form \"https://example.org\"": "El URL debe estar en el formato \"https://example.org\"", - "URL should be 512 characters or less": "El URL debe ser de 512 caracteres o menos", - "No MIME type found for webstream.": "No se encontró ningún tipo MIME para el webstream.", - "Webstream name cannot be empty": "El nombre del webstream no puede estar vacío", - "Could not parse XSPF playlist": "No se pudo procesar el XSPF de la lista de reproducción", - "Could not parse PLS playlist": "No se pudo procesar el XSPF de la lista de reproducción", - "Could not parse M3U playlist": "No se pudo procesar el M3U de la lista de reproducción", - "Invalid webstream - This appears to be a file download.": "Webstream inválido - Esto parece ser una descarga de archivo.", - "Unrecognized stream type: %s": "Tipo de stream no reconocido: %s", - "Record file doesn't exist": "No existe el archivo", - "View Recorded File Metadata": "Ver los metadatos del archivo grabado", - "Schedule Tracks": "Programar pistas", - "Clear Show": "Vaciar Show", - "Cancel Show": "Cancelar Show", - "Edit Instance": "Editar instancia", - "Edit Show": "Editar Show", - "Delete Instance": "Eliminar instancia", - "Delete Instance and All Following": "Eliminar instancia y todas las siguientes", - "Permission denied": "Permiso denegado", - "Can't drag and drop repeating shows": "No es posible arrastrar y soltar shows que se repiten", - "Can't move a past show": "No se puede mover un show pasado", - "Can't move show into past": "No se puede mover un show al pasado", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión.", - "Show was deleted because recorded show does not exist!": "¡El show se eliminó porque el show grabado no existe!", - "Must wait 1 hour to rebroadcast.": "Debe esperar 1 hora para retransmitir.", - "Track": "Pista", - "Played": "Reproducido", - "Auto-generated smartblock for podcast": "Bloque inteligente autogenerado para el podcast", - "Webstreams": "Retransmisiones por Internet" + "The year %s must be within the range of 1753 - 9999": "El año %s debe estar dentro del rango de 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s no es una fecha válida", + "%s:%s:%s is not a valid time": "%s:%s:%s no es una hora válida", + "English": "Inglés", + "Afar": "Pueblo afar", + "Abkhazian": "Abjasia", + "Afrikaans": "Afrikáans", + "Amharic": "Amhárico", + "Arabic": "Árabe", + "Assamese": "Asamés", + "Aymara": "Aimara", + "Azerbaijani": "Azerbaiyano", + "Bashkir": "Idioma Bashkir", + "Belarusian": "Bielorruso", + "Bulgarian": "Búlgaro", + "Bihari": "Lenguas Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengalí/Bangla", + "Tibetan": "Tibetano", + "Breton": "Bretón", + "Catalan": "Catalán", + "Corsican": "Corso", + "Czech": "Checo", + "Welsh": "Galés", + "Danish": "Danés", + "German": "Alemán", + "Bhutani": "Butaní", + "Greek": "Griego", + "Esperanto": "Esperanto", + "Spanish": "Español", + "Estonian": "Estonia", + "Basque": "Vasco", + "Persian": "Persa", + "Finnish": "Finés", + "Fiji": "Fiyi", + "Faeroese": "Feroés", + "French": "Francés", + "Frisian": "Frisón", + "Irish": "Irlandés", + "Scots/Gaelic": "Escocés/Gaelico", + "Galician": "Galego", + "Guarani": "Guaraní", + "Gujarati": "Guyaratí", + "Hausa": "Idioma Hausa", + "Hindi": "Hindú", + "Croatian": "Croata", + "Hungarian": "Húngaro", + "Armenian": "Armenio", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue o Occidental", + "Inupiak": "Iñupiaq", + "Indonesian": "Indonesio", + "Icelandic": "Islandés", + "Italian": "Italiano", + "Hebrew": "Hebreo", + "Japanese": "Japonés", + "Yiddish": "Yidis", + "Javanese": "Javanés", + "Georgian": "Georgiano", + "Kazakh": "Kazajo", + "Greenlandic": "Groenlandés", + "Cambodian": "Camboyano", + "Kannada": "Canarés", + "Korean": "Coreano", + "Kashmiri": "Cachemir", + "Kurdish": "Kurdo", + "Kirghiz": "Kirguís", + "Latin": "Latín", + "Lingala": "Lingala", + "Laothian": "Laosiano", + "Lithuanian": "Lituano", + "Latvian/Lettish": "Letón", + "Malagasy": "Malgache", + "Maori": "Maorí", + "Macedonian": "Macedonio", + "Malayalam": "Malayo", + "Mongolian": "Mongol", + "Moldavian": "Moldavo", + "Marathi": "Maratí", + "Malay": "Malay", + "Maltese": "Maltés", + "Burmese": "Birmano", + "Nauru": "Nauru o Naurú", + "Nepali": "Nepalí", + "Dutch": "Holandés", + "Norwegian": "Noruego", + "Occitan": "Occitano o lengua de oc", + "(Afan)/Oromoor/Oriya": "Oriya", + "Punjabi": "Panyabí", + "Polish": "Polaco", + "Pashto/Pushto": "Pastún/Ushto", + "Portuguese": "Portugués", + "Quechua": "Quechua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi (Rundi)", + "Romanian": "Rumano", + "Russian": "Ruso", + "Kinyarwanda": "Kiñaruanda", + "Sanskrit": "Sánscrito", + "Sindhi": "Sindi", + "Sangro": "Sango", + "Serbo-Croatian": "Serbocroata", + "Singhalese": "Cingalés", + "Slovak": "Eslovaco", + "Slovenian": "Esloveno", + "Samoan": "Samoano", + "Shona": "Shona", + "Somali": "Somalí", + "Albanian": "Albanés", + "Serbian": "Serbio", + "Siswati": "Suazi", + "Sesotho": "Sesoto", + "Sundanese": "Sundanés", + "Swedish": "Sueco", + "Swahili": "Suajili", + "Tamil": "Tamil", + "Tegulu": "Télugu", + "Tajik": "Tayiko", + "Thai": "Tailandés", + "Tigrinya": "Tigriña", + "Turkmen": "Turkmeno o Turkeno", + "Tagalog": "Tagalo o tagálog", + "Setswana": "Setsuana", + "Tonga": "Tongano", + "Turkish": "Turco", + "Tsonga": "Tsonga", + "Tatar": "Tártaro", + "Twi": "Twi o Chuí", + "Ukrainian": "Ucraniano", + "Urdu": "Urdu", + "Uzbek": "Uzbeko", + "Vietnamese": "Vietnamita", + "Volapuk": "Volapük", + "Wolof": "Wólof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chino", + "Zulu": "Zulú", + "Use station default": "Usar el predeterminado de la estación", + "Upload some tracks below to add them to your library!": "¡Sube algunas pistas a continuación para agregarlas a tu biblioteca!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s.", + "Click the 'New Show' button and fill out the required fields.": "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Parece que no tienes shows programados. %sCrea un show ahora%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n %sCrear un show no enlazado ahora%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Parece que el programa actual necesita más pistas. %sAñade pistas a tu programa ahora%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s.", + "LibreTime media analyzer service": "Servicio de análisis multimedia LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Compruebe que el servicio libretime-analyzer está instalado correctamente en ", + " and ensure that it's running with ": " y asegúrate de que se ejecuta con ", + "If not, try ": "Si no, prueba ", + "LibreTime playout service": "Servicio de emisión de LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Compruebe que el servicio libretime-playout está instalado correctamente en ", + "LibreTime liquidsoap service": "Servicio LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Comprueba que el servicio libretime-liquidsoap está instalado correctamente en ", + "LibreTime Celery Task service": "Servicio de tareas LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Compruebe que el servicio libretime-worker está instalado correctamente en ", + "LibreTime API service": "Servicio API de LibreTime", + "Check that the libretime-api service is installed correctly in ": "Comprueba que el servicio libretime-api está instalado correctamente en ", + "Radio Page": "Radio Web", + "Calendar": "Calendario", + "Widgets": "Widgets", + "Player": "Reproductor", + "Weekly Schedule": "Calendario Semanal", + "Settings": "Ajustes", + "General": "General", + "My Profile": "Mi Perfil", + "Users": "Usuarios", + "Track Types": "Tipos de pista", + "Streams": "Streamer", + "Status": "Estado", + "Analytics": "Estadísticas", + "Playout History": "Historial de reproducción", + "History Templates": "Plantillas Historial", + "Listener Stats": "Estadísticas de oyentes", + "Show Listener Stats": "Mostrar las estadísticas de los oyentes", + "Help": "Ayuda", + "Getting Started": "Cómo iniciar", + "User Manual": "Manual para el usuario", + "Get Help Online": "Conseguir ayuda en línea", + "Contribute to LibreTime": "Contribuir a LibreTime", + "What's New?": "¿Qué hay de nuevo?", + "You are not allowed to access this resource.": "No tienes permiso para acceder a este recurso.", + "You are not allowed to access this resource. ": "No tienes permiso para acceder a este recurso. ", + "File does not exist in %s": "El archivo no existe en %s", + "Bad request. no 'mode' parameter passed.": "Solicitud incorrecta. No se pasa el parámetro 'mode'.", + "Bad request. 'mode' parameter is invalid": "Solicitud incorrecta. El parámetro 'mode' pasado es inválido", + "You don't have permission to disconnect source.": "No tienes permiso para desconectar la fuente.", + "There is no source connected to this input.": "No hay fuente conectada a esta entrada.", + "You don't have permission to switch source.": "No tienes permiso para cambiar de fuente.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Para configurar y utilizar el reproductor integrado debe:\n 1. Habilita al menos un flujo MP3, AAC u OGG en Ajustes -> Streamer 2. Active la API pública LibreTime en Configuración -> Preferencias", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Para utilizar el widget de horario semanal incrustado debe:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Para añadir la pestaña Radio a tu página de Facebook, primero debes:\n Habilitar la API pública LibreTime en Configuración -> Preferencias", + "Page not found.": "Página no encontrada.", + "The requested action is not supported.": "No se admite la acción solicitada.", + "You do not have permission to access this resource.": "No tiene permiso para acceder a este recurso.", + "An internal application error has occurred.": "Se ha producido un error interno de la aplicación.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "No se han publicado pistas todavía.", + "%s not found": "No se encontró %s", + "Something went wrong.": "Algo salió mal.", + "Preview": "Previsualizar", + "Add to Playlist": "Añadir a la lista de reproducción", + "Add to Smart Block": "Agregar un bloque inteligente", + "Delete": "Eliminar", + "Edit...": "Editar...", + "Download": "Descargar", + "Duplicate Playlist": "Duplicar lista de reproducción", + "Duplicate Smartblock": "Bloque inteligente duplicado", + "No action available": "No hay acción disponible", + "You don't have permission to delete selected items.": "No tienes permiso para eliminar los elementos seleccionados.", + "Could not delete file because it is scheduled in the future.": "No se ha podido eliminar el archivo porque está programado para el futuro.", + "Could not delete file(s).": "No se pudo eliminar el archivo(s).", + "Copy of %s": "Copia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Asegúrese de que el usuario/contraseña de administrador es correcto en la página Configuración->Streams.", + "Audio Player": "Reproductor de audio", + "Something went wrong!": "¡Algo salió mal!", + "Recording:": "Grabando:", + "Master Stream": "Stream maestro", + "Live Stream": "Stream en vivo", + "Nothing Scheduled": "Nada programado", + "Current Show:": "Show actual:", + "Current": "Actual", + "You are running the latest version": "Estás usando la versión más reciente", + "New version available: ": "Nueva versión disponible: ", + "You have a pre-release version of LibreTime intalled.": "Tienes una versión pre-lanzamiento de LibreTime instalada.", + "A patch update for your LibreTime installation is available.": "Hay disponible una actualización de parche para la instalación de LibreTime.", + "A feature update for your LibreTime installation is available.": "Hay disponible una actualización de funcionalidad para su instalación de LibreTime.", + "A major update for your LibreTime installation is available.": "Hay disponible una actualización importante para su instalación de LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible.", + "Add to current playlist": "Añadir a la lista de reproducción actual", + "Add to current smart block": "Añadir al bloque inteligente actual", + "Adding 1 Item": "Añadiendo 1 item", + "Adding %s Items": "Añadiendo %s elementos", + "You can only add tracks to smart blocks.": "Solo puede agregar canciones a los bloques inteligentes.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción.", + "Please select a cursor position on timeline.": "Indica tu selección en la lista de reproducción actual.", + "You haven't added any tracks": "No ha añadido ninguna pista", + "You haven't added any playlists": "No has añadido ninguna lista de reproducción", + "You haven't added any podcasts": "No has añadido ningún podcast", + "You haven't added any smart blocks": "No has añadido ningún bloque inteligente", + "You haven't added any webstreams": "No has añadido ningún webstream", + "Learn about tracks": "Aprenda sobre pistas", + "Learn about playlists": "Aprenda sobre listas de reproducción", + "Learn about podcasts": "Aprenda sobre podcasts", + "Learn about smart blocks": "Aprenda sobre bloques inteligentes", + "Learn about webstreams": "Aprenda sobre webstreams", + "Click 'New' to create one.": "Clic 'Nuevo' para crear uno.", + "Add": "Añadir", + "New": "Nuevo", + "Edit": "Editar", + "Add to Schedule": "Añadir al show próximo", + "Add to next show": "Añadir al show próximo", + "Add to current show": "Añadir al show actual", + "Add after selected items": "Añadir después de los elementos seleccionados", + "Publish": "Publicar", + "Remove": "Eliminar", + "Edit Metadata": "Editar metadatos", + "Add to selected show": "Añadir al show seleccionado", + "Select": "Seleccionar", + "Select this page": "Seleccionar esta página", + "Deselect this page": "Deseleccionar esta página", + "Deselect all": "Deseleccionar todo", + "Are you sure you want to delete the selected item(s)?": "¿De verdad quieres eliminar los ítems seleccionados?", + "Scheduled": "Programado", + "Tracks": "Pistas", + "Playlist": "Listas de reproducción", + "Title": "Título", + "Creator": "Creador", + "Album": "Álbum", + "Bit Rate": "Tasa de bits", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Director", + "Copyright": "Derechos de autor", + "Encoded By": "Codificado por", + "Genre": "Género", + "ISRC": "ISRC", + "Label": "Sello", + "Language": "Idioma", + "Last Modified": "Ult.Modificado", + "Last Played": "Ult.Reproducido", + "Length": "Duración", + "Mime": "Mime", + "Mood": "Estilo (mood)", + "Owner": "Propietario", + "Replay Gain": "Ganancia", + "Sample Rate": "Tasa de muestreo", + "Track Number": "Núm.Pista", + "Uploaded": "Subido", + "Website": "Sitio web", + "Year": "Año", + "Loading...": "Cargando...", + "All": "Todo", + "Files": "Archivos", + "Playlists": "Listas", + "Smart Blocks": "Bloques", + "Web Streams": "Web streams", + "Unknown type: ": "Tipo desconocido: ", + "Are you sure you want to delete the selected item?": "¿De verdad deseas eliminar el ítem seleccionado?", + "Uploading in progress...": "Carga en progreso...", + "Retrieving data from the server...": "Recolectando data desde el servidor...", + "Import": "Importar", + "Imported?": "Importado?", + "View": "Ver", + "Error code: ": "Código del error: ", + "Error msg: ": "Msg de error: ", + "Input must be a positive number": "La entrada debe ser un número positivo", + "Input must be a number": "La entrada debe ser un número", + "Input must be in the format: yyyy-mm-dd": "La entrada debe tener el formato: aaaa-mm-dd", + "Input must be in the format: hh:mm:ss.t": "La entrada debe tener el formato: hh:mm:ss.t", + "My Podcast": "Mi Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Estás cargando archivos. %sIr a otra pantalla cancelará el proceso de carga. %s¿Estás seguro de que quieres salir de la página?", + "Open Media Builder": "Abrir Media Builder", + "please put in a time '00:00:00 (.0)'": "Por favor introduce un tiempo '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Por favor introduce un tiempo en segundos válido. Ej. 0.5", + "Your browser does not support playing this file type: ": "Tu navegador no soporta la reproducción de este tipo de archivos: ", + "Dynamic block is not previewable": "Los bloques dinámicos no se pueden previsualizar", + "Limit to: ": "Limitado a: ", + "Playlist saved": "Se guardó la lista de reproducción", + "Playlist shuffled": "Lista de reproducción mezclada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime no está seguro del estado de este archivo. Esto puede suceder cuando el archivo está en una unidad remota a la que no se puede acceder o el archivo está en un directorio que ya no se 'vigila'.", + "Listener Count on %s: %s": "Número de oyentes en %s: %s", + "Remind me in 1 week": "Recuérdame en 1 semana", + "Remind me never": "Nunca recordarme", + "Yes, help Airtime": "Sí, ayudar a Libretime", + "Image must be one of jpg, jpeg, png, or gif": "La imagen debe ser jpg, jpeg, png, o gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloque inteligente estático guardará los criterios y generará el contenido del bloque inmediatamente. Esto le permite editarlo y verlo en la Biblioteca antes de añadirlo a un programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "No se alcanzará la longitud de bloque deseada si %s no puede encontrar suficientes pistas únicas que coincidan con sus criterios. Active esta opción si desea permitir que las pistas se añadan varias veces al bloque inteligente.", + "Smart block shuffled": "Se reprodujo el bloque inteligente de forma aleatoria", + "Smart block generated and criteria saved": "Bloque inteligente generado y criterios guardados", + "Smart block saved": "Bloque inteligente guardado", + "Processing...": "Procesando...", + "Select modifier": "Elige modificador", + "contains": "contiene", + "does not contain": "no contiene", + "is": "es", + "is not": "no es", + "starts with": "empieza con", + "ends with": "termina con", + "is greater than": "es mayor que", + "is less than": "es menor que", + "is in the range": "está en el rango de", + "Generate": "Generar", + "Choose Storage Folder": "Elegir carpeta de almacenamiento", + "Choose Folder to Watch": "Elegir carpeta a monitorizar", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n ¡Esto eliminará los archivos de tu biblioteca de Airtime!", + "Manage Media Folders": "Administrar las Carpetas de Medios", + "Are you sure you want to remove the watched folder?": "¿Estás seguro de que quieres quitar la carpeta monitorizada?", + "This path is currently not accessible.": "Esta ruta es actualmente inaccesible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s.", + "Connected to the streaming server": "Conectado al servidor de streaming", + "The stream is disabled": "Se desactivó el stream", + "Getting information from the server...": "Obteniendo información desde el servidor...", + "Can not connect to the streaming server": "No es posible conectar el servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s está detrás de un router o firewall, puede que necesites configurar el reenvío de puertos y la información de este campo será incorrecta. En este caso, tendrá que actualizar manualmente este campo para que muestre el host/puerto/mount correcto al que sus DJ necesitan conectarse. El rango permitido está entre 1024 y 49151.", + "For more details, please read the %s%s Manual%s": "Para más detalles, lea el %s%s Manual %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opción para activar los metadatos para los flujos OGG (los metadatos del flujo son el título de la pista, el artista y el nombre del programa que se muestran en un reproductor de audio). VLC y mplayer tienen un grave error cuando reproducen un flujo OGG/VORBIS que tiene activada la información de metadatos: se desconectarán del flujo después de cada canción. Si estás usando un stream OGG y tus oyentes no necesitan soporte para estos reproductores de audio, entonces siéntete libre de habilitar esta opción.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente).", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes.", + "Warning: You cannot change this field while the show is currently playing": "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show", + "No result found": "Sin resultados", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show.", + "Specify custom authentication which will work only for this show.": "Especifique una autenticación personalizada que funcione solo para este show.", + "The show instance doesn't exist anymore!": "¡La instancia de este show ya no existe!", + "Warning: Shows cannot be re-linked": "Advertencia: Los shows no pueden re-enlazarse", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario.", + "Show": "Mostrar", + "Show is empty": "El show está vacío", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Recopilando información desde el servidor...", + "This show has no scheduled content.": "Este show no cuenta con contenido programado.", + "This show is not completely filled with content.": "Este programa aún no está lleno de contenido.", + "January": "Enero", + "February": "Febrero", + "March": "Marzo", + "April": "Abril", + "May": "Mayo", + "June": "Junio", + "July": "Julio", + "August": "Agosto", + "September": "Septiembre", + "October": "Octubre", + "November": "Noviembre", + "December": "Diciembre", + "Jan": "Ene", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dic", + "Today": "Hoy", + "Day": "Día", + "Week": "Semana", + "Month": "Mes", + "Sunday": "Domingo", + "Monday": "Lunes", + "Tuesday": "Martes", + "Wednesday": "Miércoles", + "Thursday": "Jueves", + "Friday": "Viernes", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mie", + "Thu": "Jue", + "Fri": "Vie", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Los shows más largos que su segmento programado serán cortados por el show que le sigue.", + "Cancel Current Show?": "¿Cancelar el show actual?", + "Stop recording current show?": "¿Detener la grabación del show actual?", + "Ok": "Ok", + "Contents of Show": "Contenidos del show", + "Remove all content?": "¿Eliminar todo el contenido?", + "Delete selected item(s)?": "¿Eliminar los ítems seleccionados?", + "Start": "Inicio", + "End": "Final", + "Duration": "Duración", + "Filtering out ": "Filtrando ", + " of ": " de ", + " records": " registros", + "There are no shows scheduled during the specified time period.": "No hay shows programados durante el período de tiempo especificado.", + "Cue In": "Señal de entrada", + "Cue Out": "Señal de salida", + "Fade In": "Unirse", + "Fade Out": "Desaparecer", + "Show Empty": "Show vacío", + "Recording From Line In": "Grabando desde la entrada", + "Track preview": "Previsualización de la pista", + "Cannot schedule outside a show.": "No es posible programar un show externo.", + "Moving 1 Item": "Moviendo 1 ítem", + "Moving %s Items": "Moviendo %s elementos", + "Save": "Guardar", + "Cancel": "Cancelar", + "Fade Editor": "Editor de desvanecimiento", + "Cue Editor": "Editor de Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio", + "Select all": "Seleccionar todos", + "Select none": "Seleccionar uno", + "Trim overbooked shows": "Recortar exceso de shows", + "Remove selected scheduled items": "Eliminar los ítems programados seleccionados", + "Jump to the current playing track": "Saltar a la pista en reproducción actual", + "Jump to Current": "Saltar a la pista actual", + "Cancel current show": "Cancelar el show actual", + "Open library to add or remove content": "Abrir biblioteca para agregar o eliminar contenido", + "Add / Remove Content": "Agregar / eliminar contenido", + "in use": "en uso", + "Disk": "Disco", + "Look in": "Buscar en", + "Open": "Abrir", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Administrador de programa", + "Guest": "Invitado", + "Guests can do the following:": "Los invitados pueden hacer lo siguiente:", + "View schedule": "Ver programación", + "View show content": "Ver contenido del show", + "DJs can do the following:": "Los DJ pueden hacer lo siguiente:", + "Manage assigned show content": "Administrar el contenido del show asignado", + "Import media files": "Importar archivos de medios", + "Create playlists, smart blocks, and webstreams": "Crear listas de reproducción, bloques inteligentes y webstreams", + "Manage their own library content": "Administrar su propia biblioteca de contenido", + "Program Managers can do the following:": "Los administradores de programas pueden hacer lo siguiente:", + "View and manage show content": "Ver y administrar contenido del show", + "Schedule shows": "Programar shows", + "Manage all library content": "Administrar el contenido de toda la biblioteca", + "Admins can do the following:": "Los administradores pueden:", + "Manage preferences": "Administrar preferencias", + "Manage users": "Administrar usuarios", + "Manage watched folders": "Administrar carpetas monitorizadas", + "Send support feedback": "Enviar opinión de soporte", + "View system status": "Ver el estado del sistema", + "Access playout history": "Acceder al historial de reproducción", + "View listener stats": "Ver estadísticas de oyentes", + "Show / hide columns": "Mostrar / ocultar columnas", + "Columns": "Columnas", + "From {from} to {to}": "De {from} para {to}", + "kbps": "kbps", + "yyyy-mm-dd": "dd-mm-yyyy", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Do", + "Mo": "Lu", + "Tu": "Ma", + "We": "Mi", + "Th": "Ju", + "Fr": "Vi", + "Sa": "Sa", + "Close": "Cerrar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Hecho", + "Select files": "Seleccione los archivos", + "Add files to the upload queue and click the start button.": "Añade los archivos a la cola de carga y haz clic en el botón de iniciar.", + "Filename": "Nombre del archivo", + "Size": "Tamaño", + "Add Files": "Añadir archivos", + "Stop Upload": "Detener carga", + "Start upload": "Iniciar carga", + "Start Upload": "Empezar a cargar", + "Add files": "Añadir archivos", + "Stop current upload": "Detener la carga en curso", + "Start uploading queue": "Iniciar la carga en la cola", + "Uploaded %d/%d files": "Archivos %d/%d cargados", + "N/A": "No disponible", + "Drag files here.": "Arrastra los archivos a esta área.", + "File extension error.": "Error de extensión del archivo.", + "File size error.": "Error de tamaño del archivo.", + "File count error.": "Error de cuenta del archivo.", + "Init error.": "Error de inicialización.", + "HTTP Error.": "Error de HTTP.", + "Security error.": "Error de seguridad.", + "Generic error.": "Error genérico.", + "IO error.": "Error IO.", + "File: %s": "Archivo: %s", + "%d files queued": "%d archivos en cola", + "File: %f, size: %s, max file size: %m": "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m", + "Upload URL might be wrong or doesn't exist": "Puede que el URL de carga no esté funcionando o no exista", + "Error: File too large: ": "Error: Fichero demasiado grande: ", + "Error: Invalid file extension: ": "Error: Extensión de archivo no válida: ", + "Set Default": "Establecer predeterminado", + "Create Entry": "Crear Entrada", + "Edit History Record": "Editar historial", + "No Show": "No hay Show", + "Copied %s row%s to the clipboard": "Se copiaron %s celda%s al portapapeles", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sImprimir vista%sPor favor, utilice la función de impresión de su navegador para imprimir esta tabla. Pulse Escape cuando termine.", + "New Show": "Nuevo Show", + "New Log Entry": "Nueva entrada de registro", + "No data available in table": "No hay datos en la tabla", + "(filtered from _MAX_ total entries)": "(filtrado de _MAX_ entradas totales)", + "First": "Primero", + "Last": "Último", + "Next": "Siguiente", + "Previous": "Anterior", + "Search:": "Buscar:", + "No matching records found": "No se han encontrado coincidencias", + "Drag tracks here from the library": "Arrastre las pistas desde la biblioteca", + "No tracks were played during the selected time period.": "No se ha reproducido ninguna pista durante el periodo de tiempo seleccionado.", + "Unpublish": "Despublicar", + "No matching results found.": "No se ha encontrado ningún resultado.", + "Author": "Autor", + "Description": "Descripción", + "Link": "Enlace", + "Publication Date": "Fecha de publicación", + "Import Status": "Estado de la importación", + "Actions": "Acciones", + "Delete from Library": "Eliminar de la biblioteca", + "Successfully imported": "Importado correctamente", + "Show _MENU_": "Mostrar el _MENU_", + "Show _MENU_ entries": "Mostrar las entradas del _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Mostrando entradas con la etiqueta _START_ a _END_ de _TOTAL_", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Mostrando el _START_ a _END_ del _TOTAL_ las pistas", + "Showing _START_ to _END_ of _TOTAL_ track types": "Mostrando el _START_ y el _END_ del _TOTAL_ de tipos de pistas", + "Showing _START_ to _END_ of _TOTAL_ users": "Mostrando del _START_ al _END_ del _TOTAL_ de los usuarios", + "Showing 0 to 0 of 0 entries": "Mostrando 0 de 0 de 0 entradas", + "Showing 0 to 0 of 0 tracks": "Mostrando 0 a 0 de 0 pistas", + "Showing 0 to 0 of 0 track types": "Mostrando 0 a 0 de 0 tipos de pistas", + "(filtered from _MAX_ total track types)": "(filtrado de _MAX_ tipos de pistas totales)", + "Are you sure you want to delete this tracktype?": "¿Está seguro de que desea eliminar este tipo de pista?", + "No track types were found.": "No se encontró ningún tipo de pista.", + "No track types found": "No se han encontrado tipos de pista", + "No matching track types found": "No se ha encontrado ningún tipo de pista", + "Enabled": "Activado", + "Disabled": "Desactivado", + "Cancel upload": "Cancelar la carga", + "Type": "Tipo", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "El contenido de las listas de reproducción de la carga automática se agrega a los programas una hora antes de que se transmita. Más información", + "Podcast settings saved": "Configuración del podcasts guardado", + "Are you sure you want to delete this user?": "¿Está seguro de que desea eliminar este usuario?", + "Can't delete yourself!": "¡No puedes borrarte a ti mismo!", + "You haven't published any episodes!": "¡No has publicado ningún episodio!", + "You can publish your uploaded content from the 'Tracks' view.": "Puede publicar tu contenido cargado desde la vista 'Pistas'.", + "Try it now": "Pruebalo ahora", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si esta opción no está marcada, el bloque inteligente programará tantas pistas como puedan reproducirse en su totalidad dentro de la duración especificada. Esto normalmente resultará en una reproducción de audio ligeramente inferior a la duración especificada.Si esta opción está marcada, el smartblock también programará una pista final que sobrepasará la duración especificada. Esta pista final puede cortarse a mitad de camino si el programa al que se añade el smartblock termina.", + "Playlist preview": "Vista previa de la lista de reproducción", + "Smart Block": "Bloque Inteligente", + "Webstream preview": "Vista previa de la transmisión web", + "You don't have permission to view the library.": "No tienes permiso para ver la biblioteca.", + "Now": "Ahora", + "Click 'New' to create one now.": "Haz clic en 'Nuevo' para crear uno ahora.", + "Click 'Upload' to add some now.": "Haz clic en 'Cargar' para agregar algunos ahora.", + "Feed URL": "URL para el canal", + "Import Date": "Fecha de importación", + "Add New Podcast": "Agregar un nuevo podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "No se puede programar fuera de un programa.\nIntente crear primero un programa.", + "No files have been uploaded yet.": "Aún no se han cargado archivos.", + "On Air": "En directo", + "Off Air": "Fuera de antena", + "Offline": "Sin conexión", + "Nothing scheduled": "Nada programado", + "Click 'Add' to create one now.": "Haga clic en 'Agregar' para crear uno ahora.", + "Please enter your username and password.": "Por favor, introduzca su nombre de usuario y contraseña.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta.", + "That username or email address could not be found.": "No se ha podido encontrar ese nombre de usuario o dirección de correo electrónico.", + "There was a problem with the username or email address you entered.": "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste.", + "Wrong username or password provided. Please try again.": "Nombre de usuario o contraseña incorrectos. Por favor, inténtelo de nuevo.", + "You are viewing an older version of %s": "Estas viendo una versión antigua de %s", + "You cannot add tracks to dynamic blocks.": "No puedes añadir pistas a los bloques dinámicos.", + "You don't have permission to delete selected %s(s).": "No tienes permiso para eliminar los %s(s) seleccionados.", + "You can only add tracks to smart block.": "Solo puedes añadir pistas a los bloques inteligentes.", + "Untitled Playlist": "Lista de reproducción sin nombre", + "Untitled Smart Block": "Bloque inteligente sin nombre", + "Unknown Playlist": "Lista de reproducción desconocida", + "Preferences updated.": "Se actualizaron las preferencias.", + "Stream Setting Updated.": "Se actualizaron las configuraciones del stream.", + "path should be specified": "se debe especificar la ruta", + "Problem with Liquidsoap...": "Hay un problema con Liquidsoap...", + "Request method not accepted": "Método de solicitud no aceptado", + "Rebroadcast of show %s from %s at %s": "Retransmisión del programa %s de %s en %s", + "Select cursor": "Elegir cursor", + "Remove cursor": "Eliminar cursor", + "show does not exist": "El show no existe", + "Track Type added successfully!": "¡Tipo de pista añadido con éxito!", + "Track Type updated successfully!": "¡Tipo de pista actualizado con éxito!", + "User added successfully!": "¡Usuario añadido correctamente!", + "User updated successfully!": "¡Usuario actualizado correctamente!", + "Settings updated successfully!": "¡Configuración actualizada correctamente!", + "Untitled Webstream": "Webstream sin título", + "Webstream saved.": "Transmisión web guardada.", + "Invalid form values.": "Los valores en el formulario son inválidos.", + "Invalid character entered": "Se introdujo un caracter inválido", + "Day must be specified": "Se debe especificar un día", + "Time must be specified": "Se debe especificar una hora", + "Must wait at least 1 hour to rebroadcast": "Debes esperar al menos 1 hora para reprogramar", + "Add Autoloading Playlist ?": "¿Programar Lista Auto-Cargada?", + "Select Playlist": "Seleccionar Lista", + "Repeat Playlist Until Show is Full ?": "Repitir lista hasta que termine el programa?", + "Use %s Authentication:": "Usar la autenticación %s:", + "Use Custom Authentication:": "Usar la autenticación personalizada:", + "Custom Username": "Usuario personalizado", + "Custom Password": "Contraseña personalizada", + "Host:": "Host:", + "Port:": "Puerto:", + "Mount:": "Montaje:", + "Username field cannot be empty.": "El campo de usuario no puede estar vacío.", + "Password field cannot be empty.": "El campo de contraseña no puede estar vacío.", + "Record from Line In?": "¿Grabar desde la entrada (line in)?", + "Rebroadcast?": "¿Reprogramar?", + "days": "días", + "Link:": "Enlace:", + "Repeat Type:": "Tipo de repetición:", + "weekly": "semanal", + "every 2 weeks": "cada 2 semanas", + "every 3 weeks": "cada 3 semanas", + "every 4 weeks": "cada 4 semanas", + "monthly": "mensual", + "Select Days:": "Seleccione días:", + "Repeat By:": "Repetir por:", + "day of the month": "día del mes", + "day of the week": "día de la semana", + "Date End:": "Fecha de Finalización:", + "No End?": "¿Sin fin?", + "End date must be after start date": "La fecha de finalización debe ser posterior a la inicio", + "Please select a repeat day": "Por favor, selecciona un día de repeticón", + "Background Colour:": "Color de fondo:", + "Text Colour:": "Color del texto:", + "Current Logo:": "Loco actual:", + "Show Logo:": "Logo del Show:", + "Logo Preview:": "Vista previa del Logo:", + "Name:": "Nombre:", + "Untitled Show": "Show sin nombre", + "URL:": "URL:", + "Genre:": "Género:", + "Description:": "Descripción:", + "Instance Description:": "Descripcin de instancia:", + "{msg} does not fit the time format 'HH:mm'": "{msg} no concuerda con el formato de tiempo 'HH:mm'", + "Start Time:": "Hora de inicio:", + "In the Future:": "En el Futuro:", + "End Time:": "Hora de fin:", + "Duration:": "Duración:", + "Timezone:": "Zona horaria:", + "Repeats?": "¿Se repite?", + "Cannot create show in the past": "No puedes crear un show en el pasado", + "Cannot modify start date/time of the show that is already started": "No puedes modificar la hora/fecha de inicio de un show que ya empezó", + "End date/time cannot be in the past": "La fecha/hora de finalización no puede ser anterior", + "Cannot have duration < 0m": "No puede tener una duración < 0min", + "Cannot have duration 00h 00m": "No puede tener una duración 00h 00m", + "Cannot have duration greater than 24h": "No puede tener una duración mayor a 24 horas", + "Cannot schedule overlapping shows": "No se pueden programar shows traslapados", + "Search Users:": "Buscar usuarios:", + "DJs:": "Disc-jockeys (DJs):", + "Type Name:": "Escribe un nombre:", + "Code:": "Código:", + "Visibility:": "Visibilidad:", + "Analyze cue points:": "Analizar los puntos de referencia:", + "Code is not unique.": "El código no es único.", + "Username:": "Usuario:", + "Password:": "Contraseña:", + "Verify Password:": "Verificar contraseña:", + "Firstname:": "Nombre:", + "Lastname:": "Apellido:", + "Email:": "Correo electrónico:", + "Mobile Phone:": "Teléfono móvil:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Tipo de usuario:", + "Login name is not unique.": "El nombre de usuario no es único.", + "Delete All Tracks in Library": "Eliminar todas las pistas de la biblioteca", + "Date Start:": "Fecha de Inicio:", + "Title:": "Título:", + "Creator:": "Creador:", + "Album:": "Álbum:", + "Owner:": "Propietario:", + "Select a Type": "Seleccionar un tipo", + "Track Type:": "Tipo de pista:", + "Year:": "Año:", + "Label:": "Sello:", + "Composer:": "Compositor:", + "Conductor:": "Conductor:", + "Mood:": "Ánimo (mood):", + "BPM:": "BPM:", + "Copyright:": "Derechos de autor:", + "ISRC Number:": "Número ISRC:", + "Website:": "Sitio web:", + "Language:": "Idioma:", + "Publish...": "Publicar...", + "Start Time": "Hora de Inicio", + "End Time": "Hora de Finalización", + "Interface Timezone:": "Zona horaria de la interfaz:", + "Station Name": "Nombre de la estación", + "Station Description": "Descripción de la estación", + "Station Logo:": "Logo de la estación:", + "Note: Anything larger than 600x600 will be resized.": "Nota: Cualquiera mayor que 600x600 será redimensionada.", + "Default Crossfade Duration (s):": "Duración predeterminada del Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "Por favor, escribe un valor en segundos (eg. 0.5)", + "Default Fade In (s):": "Fade In perdeterminado (s):", + "Default Fade Out (s):": "Fade Out preseterminado (s):", + "Track Type Upload Default": "Tipo de pista cargado predeterminado", + "Intro Autoloading Playlist": "Lista de reproducción automática", + "Outro Autoloading Playlist": "Lista de reproducción de salida automática", + "Overwrite Podcast Episode Metatags": "Sobrescribir el álbum del podcast", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Genere un bloque inteligente y una lista de reproducción al crear un nuevo podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si esta opción está activada, se generará un nuevo bloque inteligente y una nueva lista de reproducción que coincidan con la pista más reciente de un podcast inmediatamente después de la creación de un nuevo podcast. Tenga en cuenta que la función \"Sobrescribir metatags de episodios de podcast\" también debe estar activada para que los smartblocks encuentren episodios de forma fiable.", + "Public LibreTime API": "API Pública de Libretime", + "Required for embeddable schedule widget.": "Requerido para el widget de programación.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Habilitar esta función permite a Libretime proporcionar datos de programación\n a widgets externos que se pueden integrar en tu sitio web.", + "Default Language": "Idioma predeterminado", + "Station Timezone": "Zona horaria de la Estación", + "Week Starts On": "La semana empieza el", + "Display login button on your Radio Page?": "¿Mostrar el botón de inicio de sesión en su página de radio?", + "Feature Previews": "Vistas previas de funciones", + "Enable this to opt-in to test new features.": "Active esta opción para probar nuevas funciones.", + "Auto Switch Off:": "Desconexión automática:", + "Auto Switch On:": "Encendido automático:", + "Switch Transition Fade (s):": "Transición de desvanecimiento (s):", + "Master Source Host:": "Host Fuente Maestro:", + "Master Source Port:": "Puerto Fuente Maestro:", + "Master Source Mount:": "Montaje Fuente Maestro:", + "Show Source Host:": "Host Fuente del Show:", + "Show Source Port:": "Puerto Fuente del Show:", + "Show Source Mount:": "Montaje Fuente del Show:", + "Login": "Iniciar sesión", + "Password": "Contraseña", + "Confirm new password": "Confirma nueva contraseña", + "Password confirmation does not match your password.": "La confirmación de la contraseña no coincide con tu contraseña.", + "Email": "Correo electrónico", + "Username": "Usuario", + "Reset password": "Restablecer contraseña", + "Back": "Atrás", + "Now Playing": "Reproduciéndose ahora", + "Select Stream:": "Seleccionar Stream:", + "Auto detect the most appropriate stream to use.": "Autodetectar el stream más apropiado a reproducir.", + "Select a stream:": "Selecciona un stream:", + " - Mobile friendly": " - Apto para móviles", + " - The player does not support Opus streams.": " - El reproductor no soporta streams Opus.", + "Embeddable code:": "Código de inserción:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio.", + "Preview:": "Vista previa:", + "Feed Privacy": "Privacidad del Feed", + "Public": "Público", + "Private": "Privado", + "Station Language": "Idioma de la Estación", + "Filter by Show": "Filtrar por Show", + "All My Shows:": "Todos mis shows:", + "My Shows": "Mis Shows", + "Select criteria": "Seleccionar criterio", + "Bit Rate (Kbps)": "Tasa de bits (Kbps)", + "Track Type": "Tipo de pista", + "Sample Rate (kHz)": "Tasa de muestreo (kHz)", + "before": "antes", + "after": "después", + "between": "entre", + "Select unit of time": "Seleccionar la unidad de tiempo", + "minute(s)": "minuto(s)", + "hour(s)": "hora(s)", + "day(s)": "día(s)", + "week(s)": "semana(s)", + "month(s)": "mes(es)", + "year(s)": "año(s)", + "hours": "horas", + "minutes": "minutos", + "items": "elementos", + "time remaining in show": "tiempo restante del programa", + "Randomly": "Aleatorio", + "Newest": "Más nuevo", + "Oldest": "Más antiguo", + "Most recently played": "Reproducido más recientemente", + "Least recently played": "Último reproducido", + "Select Track Type": "Seleccione el tipo de pista", + "Type:": "Tipo:", + "Dynamic": "Dinámico", + "Static": "Estático", + "Select track type": "Selecciona el tipo de pista", + "Allow Repeated Tracks:": "Permitir Pistas Repetidas:", + "Allow last track to exceed time limit:": "Permitir que la última pista supere el límite de tiempo:", + "Sort Tracks:": "Ordenar Pistas:", + "Limit to:": "Limitar a:", + "Generate playlist content and save criteria": "Generar contenido para la lista de reproducción y guardar criterios", + "Shuffle playlist content": "Reproducir de forma aleatoria los contenidos de la lista de reproducción", + "Shuffle": "Reproducción aleatoria", + "Limit cannot be empty or smaller than 0": "El límite no puede estar vacío o ser menor que 0", + "Limit cannot be more than 24 hrs": "El límite no puede ser mayor a 24 horas", + "The value should be an integer": "El valor debe ser un número entero", + "500 is the max item limit value you can set": "500 es el valor máximo de ítems que se pueden configurar", + "You must select Criteria and Modifier": "Debes elegir Criterios y Modificador", + "'Length' should be in '00:00:00' format": "'Longitud' debe estar en formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Sólo se permiten números enteros no negativos (por ejemplo, 1 ó 5) para el valor del texto", + "You must select a time unit for a relative datetime.": "Debe seleccionar una unidad de tiempo para una fecha-hora relativa.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Sólo se permiten números enteros no negativos para una fecha-hora relativa", + "The value has to be numeric": "El valor debe ser numérico", + "The value should be less then 2147483648": "El valor debe ser menor a 2147483648", + "The value cannot be empty": "El valor no puede estar vacío", + "The value should be less than %s characters": "El valor debe ser menor que %s caracteres", + "Value cannot be empty": "El valor no puede estar vacío", + "Stream Label:": "Etiqueta del stream:", + "Artist - Title": "Artísta - Título", + "Show - Artist - Title": "Show - Artista - Título", + "Station name - Show name": "Nombre de la estación - nombre del show", + "Off Air Metadata": "Metadatos Off Air", + "Enable Replay Gain": "Activar ajuste del volumen", + "Replay Gain Modifier": "Modificar ajuste de volumen", + "Hardware Audio Output:": "Salida Hardware Audio:", + "Output Type": "Tipo de Salida", + "Enabled:": "Activado:", + "Mobile:": "Móvil:", + "Stream Type:": "Tipo de stream:", + "Bit Rate:": "Tasa de bits:", + "Service Type:": "Tipo de servicio:", + "Channels:": "Canales:", + "Server": "Servidor", + "Port": "Puerto", + "Mount Point": "Punto de montaje", + "Name": "Nombre", + "URL": "URL", + "Stream URL": "URL de la transmisión", + "Push metadata to your station on TuneIn?": "¿Actualizar metadatos de tu estación en TuneIn?", + "Station ID:": "ID Estación:", + "Partner Key:": "Clave Socio:", + "Partner Id:": "Id Socio:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo.", + "Import Folder:": "Carpeta de importación:", + "Watched Folders:": "Carpetas monitorizadas:", + "Not a valid Directory": "No es un directorio válido", + "Value is required and can't be empty": "El valor es necesario y no puede estar vacío", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} no es una dirección de correo electrónico válida en el formato básico local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} no se ajusta al formato de fecha '%format%'", + "{msg} is less than %min% characters long": "{msg} tiene menos de %min% caracteres", + "{msg} is more than %max% characters long": "{msg} tiene más de %max% caracteres", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} no está entre '%min%' y '%max%', inclusive", + "Passwords do not match": "Las contraseñas no coinciden", + "Hi %s, \n\nPlease click this link to reset your password: ": "Hola %s, \n\nHaz clic en este enlace para restablecer tu contraseña: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nSi tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s", + "\n\nThank you,\nThe %s Team": "\n\nGracias,\nEl equipo %s", + "%s Password Reset": "%s Restablecimiento de Contraseña", + "Cue in and cue out are null.": "Cue in y cue out son nulos.", + "Can't set cue out to be greater than file length.": "No se puede asignar un cue out mayor que la duración del archivo.", + "Can't set cue in to be larger than cue out.": "No se puede asignar un cue in mayor al cue out.", + "Can't set cue out to be smaller than cue in.": "No se puede asignar un cue out menor que el cue in.", + "Upload Time": "Hora de Subida", + "None": "Ninguno", + "Powered by %s": "Desarrollado por %s", + "Select Country": "Seleccionar país", + "livestream": "transmisión en directo", + "Cannot move items out of linked shows": "No se pueden mover elementos de los shows enlazados", + "The schedule you're viewing is out of date! (sched mismatch)": "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "¡La programación que estás viendo está desactualizada! (desfase de instancia)", + "The schedule you're viewing is out of date!": "¡La programación que estás viendo está desactualizada!", + "You are not allowed to schedule show %s.": "No tienes permiso para programar el show %s.", + "You cannot add files to recording shows.": "No puedes agregar pistas a shows en grabación.", + "The show %s is over and cannot be scheduled.": "El show %s terminó y no puede ser programado.", + "The show %s has been previously updated!": "¡El show %s ha sido actualizado anteriormente!", + "Content in linked shows cannot be changed while on air!": "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!", + "Cannot schedule a playlist that contains missing files.": "No se puede programar una lista de reproducción que contenga archivos perdidos.", + "A selected File does not exist!": "¡Un Archivo seleccionado no existe!", + "Shows can have a max length of 24 hours.": "Los shows pueden tener una duración máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "No se pueden programar shows solapados.\nNota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones.", + "Rebroadcast of %s from %s": "Retransmisión de %s desde %s", + "Length needs to be greater than 0 minutes": "La duración debe ser mayor de 0 minutos", + "Length should be of form \"00h 00m\"": "La duración debe estar en el formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "El URL debe estar en el formato \"https://example.org\"", + "URL should be 512 characters or less": "El URL debe ser de 512 caracteres o menos", + "No MIME type found for webstream.": "No se encontró ningún tipo MIME para el webstream.", + "Webstream name cannot be empty": "El nombre del webstream no puede estar vacío", + "Could not parse XSPF playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse PLS playlist": "No se pudo procesar el XSPF de la lista de reproducción", + "Could not parse M3U playlist": "No se pudo procesar el M3U de la lista de reproducción", + "Invalid webstream - This appears to be a file download.": "Webstream inválido - Esto parece ser una descarga de archivo.", + "Unrecognized stream type: %s": "Tipo de stream no reconocido: %s", + "Record file doesn't exist": "No existe el archivo", + "View Recorded File Metadata": "Ver los metadatos del archivo grabado", + "Schedule Tracks": "Programar pistas", + "Clear Show": "Vaciar Show", + "Cancel Show": "Cancelar Show", + "Edit Instance": "Editar instancia", + "Edit Show": "Editar Show", + "Delete Instance": "Eliminar instancia", + "Delete Instance and All Following": "Eliminar instancia y todas las siguientes", + "Permission denied": "Permiso denegado", + "Can't drag and drop repeating shows": "No es posible arrastrar y soltar shows que se repiten", + "Can't move a past show": "No se puede mover un show pasado", + "Can't move show into past": "No se puede mover un show al pasado", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión.", + "Show was deleted because recorded show does not exist!": "¡El show se eliminó porque el show grabado no existe!", + "Must wait 1 hour to rebroadcast.": "Debe esperar 1 hora para retransmitir.", + "Track": "Pista", + "Played": "Reproducido", + "Auto-generated smartblock for podcast": "Bloque inteligente autogenerado para el podcast", + "Webstreams": "Retransmisiones por Internet" } diff --git a/webapp/src/locale/fr_FR.json b/webapp/src/locale/fr_FR.json index 2fb62c6620..b45c38123c 100644 --- a/webapp/src/locale/fr_FR.json +++ b/webapp/src/locale/fr_FR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "L'année %s doit être comprise entre 1753 et 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s n'est pas une date valide", - "%s:%s:%s is not a valid time": "%s:%s:%s n'est pas une durée valide", - "English": "Anglais", - "Afar": "Afar", - "Abkhazian": "Abkhaze", - "Afrikaans": "Afrikaans", - "Amharic": "Amharique", - "Arabic": "Arabe", - "Assamese": "Assamais", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaïdjanais", - "Bashkir": "Bachkir", - "Belarusian": "Biélorusse", - "Bulgarian": "Bulgare", - "Bihari": "Bihari", - "Bislama": "Bichelamar", - "Bengali/Bangla": "Bengali", - "Tibetan": "Tibétain", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corse", - "Czech": "Tchèque", - "Welsh": "Gallois", - "Danish": "Danois", - "German": "Allemand", - "Bhutani": "Dzongkha", - "Greek": "Grec", - "Esperanto": "Espéranto", - "Spanish": "Espagnol", - "Estonian": "Estonien", - "Basque": "Basque", - "Persian": "Persan", - "Finnish": "Finnois", - "Fiji": "Fidjien", - "Faeroese": "Féroïen", - "French": "Français", - "Frisian": "Frison", - "Irish": "Irlandais", - "Scots/Gaelic": "Gaélique écossais", - "Galician": "Galicien", - "Guarani": "Guarani", - "Gujarati": "Goudjarati", - "Hausa": "Haoussa", - "Hindi": "Hindi", - "Croatian": "Croate", - "Hungarian": "Hongrois", - "Armenian": "Arménien", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonésien", - "Icelandic": "Islandais", - "Italian": "Italien", - "Hebrew": "Hébreu", - "Japanese": "Japonais", - "Yiddish": "Yiddish", - "Javanese": "Javanais", - "Georgian": "Géorgien", - "Kazakh": "Kazakh", - "Greenlandic": "Groenlandais", - "Cambodian": "Cambodgien", - "Kannada": "Kannada", - "Korean": "Coréen", - "Kashmiri": "Cachemire", - "Kurdish": "Kurde", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Lao", - "Lithuanian": "Lituanien", - "Latvian/Lettish": "Letton", - "Malagasy": "Malgache", - "Maori": "Maori", - "Macedonian": "Macédonien", - "Malayalam": "Malayalam", - "Mongolian": "Mongol", - "Moldavian": "Moldave", - "Marathi": "Marathi", - "Malay": "Malais", - "Maltese": "Maltais", - "Burmese": "Birman", - "Nauru": "Nauru", - "Nepali": "Népalais", - "Dutch": "Néerlandais", - "Norwegian": "Norvégien", - "Occitan": "Occitan", - "(Afan)/Oromoor/Oriya": "(Afan) / Oromoor / Oriya", - "Punjabi": "Pendjabi", - "Polish": "Polonais", - "Pashto/Pushto": "Pachto", - "Portuguese": "Portugais", - "Quechua": "Quetchua", - "Rhaeto-Romance": "Romanche", - "Kirundi": "Kirundi", - "Romanian": "Roumain", - "Russian": "Russe", - "Kinyarwanda": "Kinyarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sangro", - "Serbo-Croatian": "Serbo-croate", - "Singhalese": "Singhalais", - "Slovak": "Slovaque", - "Slovenian": "Slovène", - "Samoan": "Samoan", - "Shona": "Shona", - "Somali": "Somali", - "Albanian": "Albanais", - "Serbian": "Serbe", - "Siswati": "Siswati", - "Sesotho": "Sesotho", - "Sundanese": "Soundanais", - "Swedish": "Suédois", - "Swahili": "Swahili", - "Tamil": "Tamil", - "Tegulu": "Télougou", - "Tajik": "Tadjik", - "Thai": "Thaï", - "Tigrinya": "Tigrigna", - "Turkmen": "Turkmène", - "Tagalog": "Tagalog", - "Setswana": "Setswana", - "Tonga": "Tonguien", - "Turkish": "Turc", - "Tsonga": "Tsonga", - "Tatar": "Tatar", - "Twi": "Twi", - "Ukrainian": "Ukrainien", - "Urdu": "Ourdou", - "Uzbek": "Ouzbek", - "Vietnamese": "Vietnamien", - "Volapuk": "Volapük", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinois", - "Zulu": "Zoulou", - "Use station default": "Utiliser les réglages par défaut", - "Upload some tracks below to add them to your library!": "Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s.", - "Click the 'New Show' button and fill out the required fields.": "Cliquez sur le bouton « Nouvelle émission » et remplissez les champs requis.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission ».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n %sCréer une émission dé-liée%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "L'émission actuelle est vide. %sAjouter des pistes audio%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "La prochaine émission est vide. %sAjouter des pistes à cette émission%s.", - "LibreTime media analyzer service": "Service d'analyseur de médias LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire ", - " and ensure that it's running with ": " et assurez-vous qu'il fonctionne avec ", - "If not, try ": "Sinon, essayez ", - "LibreTime playout service": "Service de diffusion LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Vérifiez que le service « libretime-playout » est installé correctement dans ", - "LibreTime liquidsoap service": "Service liquidsoap de LibreTime", - "Check that the libretime-liquidsoap service is installed correctly in ": "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans ", - "LibreTime Celery Task service": "Service Celery Task de LibreTime", - "Check that the libretime-worker service is installed correctly in ": "Vérifiez que le service « libretime-worker » est installé correctement dans ", - "LibreTime API service": "Service API LibreTime", - "Check that the libretime-api service is installed correctly in ": "Vérifiez que le service « libretime-api » est installé correctement dans ", - "Radio Page": "Page de la radio", - "Calendar": "Calendrier", - "Widgets": "Widgets", - "Player": "Lecteur", - "Weekly Schedule": "Grille hebdomadaire", - "Settings": "Paramètres", - "General": "Général", - "My Profile": "Mon profil", - "Users": "Utilisateurs", - "Track Types": "Types de flux", - "Streams": "Flux", - "Status": "Statut", - "Analytics": "Statistiques", - "Playout History": "Historique de diffusion", - "History Templates": "Modèle d'historique", - "Listener Stats": "Statistiques des auditeurs", - "Show Listener Stats": "Afficher les statistiques des auditeurs", - "Help": "Aide", - "Getting Started": "Mise en route", - "User Manual": "Manuel Utilisateur", - "Get Help Online": "Obtenir de l'aide en ligne", - "Contribute to LibreTime": "Contribuer à LibreTime", - "What's New?": "Qu'est-ce qui a changé ?", - "You are not allowed to access this resource.": "Vous n'avez pas le droit d'accéder à cette ressource.", - "You are not allowed to access this resource. ": "Vous n'avez pas le droit d'accéder à cette ressource. ", - "File does not exist in %s": "Le fichier n'existe pas dans %s", - "Bad request. no 'mode' parameter passed.": "Mauvaise requête. pas de « mode » paramètre passé.", - "Bad request. 'mode' parameter is invalid": "Mauvaise requête. Le paramètre « mode » est invalide", - "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", - "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", - "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :\n Activer l'API publique LibreTime dans Préférences -> Préférences", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :\n Activer l'API publique LibreTime dans Préférences -> Préférences", - "Page not found.": "Page introuvable.", - "The requested action is not supported.": "L'action requise n'est pas implémentée.", - "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", - "An internal application error has occurred.": "Une erreur interne est survenue.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Aucune piste n'a encore été publiée.", - "%s not found": "%s non trouvé", - "Something went wrong.": "Quelque chose s'est mal passé.", - "Preview": "Prévisualisation", - "Add to Playlist": "Ajouter à la liste", - "Add to Smart Block": "Ajouter un bloc intelligent", - "Delete": "Supprimer", - "Edit...": "Modifier…", - "Download": "Téléchargement", - "Duplicate Playlist": "Dupliquer la liste de lecture", - "Duplicate Smartblock": "Dupliquer le bloc intelligent", - "No action available": "Aucune action disponible", - "You don't have permission to delete selected items.": "Vous n'avez pas la permission de supprimer les éléments sélectionnés.", - "Could not delete file because it is scheduled in the future.": "Impossible de supprimer ce fichier car il est dans la programmation.", - "Could not delete file(s).": "Impossible de supprimer ce(s) fichier(s).", - "Copy of %s": "Copie de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux.", - "Audio Player": "Lecteur Audio", - "Something went wrong!": "Quelque chose s'est mal passé !", - "Recording:": "Enregistrement :", - "Master Stream": "Flux Maitre", - "Live Stream": "Flux en Direct", - "Nothing Scheduled": "Rien de Prévu", - "Current Show:": "Émission en cours :", - "Current": "En ce moment", - "You are running the latest version": "Vous exécutez la dernière version", - "New version available: ": "Nouvelle version disponible : ", - "You have a pre-release version of LibreTime intalled.": "Vous avez une version préliminaire de LibreTime intégrée.", - "A patch update for your LibreTime installation is available.": "Une mise à jour du correctif pour votre installation LibreTime est disponible.", - "A feature update for your LibreTime installation is available.": "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible.", - "A major update for your LibreTime installation is available.": "Une mise à jour majeure de votre installation LibreTime est disponible.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible.", - "Add to current playlist": "Ajouter à la liste de lecture", - "Add to current smart block": "Ajouter au bloc intelligent", - "Adding 1 Item": "Ajouter 1 élément", - "Adding %s Items": "Ajout de %s Elements", - "You can only add tracks to smart blocks.": "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture.", - "Please select a cursor position on timeline.": "S'il vous plaît sélectionner un curseur sur la timeline.", - "You haven't added any tracks": "Vous n'avez pas ajouté de pistes", - "You haven't added any playlists": "Vous n'avez pas ajouté de playlists", - "You haven't added any podcasts": "Vous n'avez pas ajouté de podcast", - "You haven't added any smart blocks": "Vous n'avez ajouté aucun bloc intelligent", - "You haven't added any webstreams": "Vous n'avez ajouté aucun flux web", - "Learn about tracks": "A propos des pistes", - "Learn about playlists": "A propos des playlists", - "Learn about podcasts": "A propos des podcasts", - "Learn about smart blocks": "A propos des blocs intelligents", - "Learn about webstreams": "A propos des flux webs", - "Click 'New' to create one.": "Cliquez sur 'Nouveau' pour en créer un.", - "Add": "Ajouter", - "New": "Nouveau", - "Edit": "Edition", - "Add to Schedule": "Ajouter à la grille", - "Add to next show": "Ajouter à la prochaine émission", - "Add to current show": "Ajouter à l'émission actuelle", - "Add after selected items": "Ajouter après les éléments sélectionnés", - "Publish": "Publier", - "Remove": "Enlever", - "Edit Metadata": "Édition des Méta-Données", - "Add to selected show": "Ajouter à l'émission sélectionnée", - "Select": "Sélection", - "Select this page": "Sélectionner cette page", - "Deselect this page": "Dé-selectionner cette page", - "Deselect all": "Tous déselectioner", - "Are you sure you want to delete the selected item(s)?": "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?", - "Scheduled": "Programmé", - "Tracks": "Pistes", - "Playlist": "Playlist", - "Title": "Titre", - "Creator": "Créateur.ice", - "Album": "Album", - "Bit Rate": "Taux d'echantillonage", - "BPM": "BPM", - "Composer": "Compositeur.ice", - "Conductor": "Conducteur", - "Copyright": "Droit d'Auteur.ice", - "Encoded By": "Encodé Par", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Langue", - "Last Modified": "Dernier Modifié", - "Last Played": "Dernier Joué", - "Length": "Durée", - "Mime": "Mime", - "Mood": "Humeur", - "Owner": "Propriétaire", - "Replay Gain": "Replay Gain", - "Sample Rate": "Taux d'échantillonnage", - "Track Number": "Numéro de la Piste", - "Uploaded": "Téléversé", - "Website": "Site Internet", - "Year": "Année", - "Loading...": "Chargement...", - "All": "Tous", - "Files": "Fichiers", - "Playlists": "Listes de lecture", - "Smart Blocks": "Blocs Intelligents", - "Web Streams": "Flux Web", - "Unknown type: ": "Type inconnu : ", - "Are you sure you want to delete the selected item?": "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?", - "Uploading in progress...": "Téléversement en cours...", - "Retrieving data from the server...": "Récupération des données du serveur...", - "Import": "Importer", - "Imported?": "Importé ?", - "View": "Afficher", - "Error code: ": "Code d'erreur : ", - "Error msg: ": "Message d'erreur : ", - "Input must be a positive number": "L'entrée doit être un nombre positif", - "Input must be a number": "L'entrée doit être un nombre", - "Input must be in the format: yyyy-mm-dd": "L'entrée doit être au format : aaaa-mm-jj", - "Input must be in the format: hh:mm:ss.t": "L'entrée doit être au format : hh:mm:ss.t", - "My Podcast": "Section Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?", - "Open Media Builder": "Ouvrir le Constructeur de Média", - "please put in a time '00:00:00 (.0)'": "veuillez mettre la durée '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Veuillez entrer un temps en secondes. Par exemple 0.5", - "Your browser does not support playing this file type: ": "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : ", - "Dynamic block is not previewable": "Le Bloc dynamique n'est pas prévisualisable", - "Limit to: ": "Limiter à : ", - "Playlist saved": "Liste de Lecture sauvegardé", - "Playlist shuffled": "Playlist en aléatoire", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé».", - "Listener Count on %s: %s": "Nombre d'auditeur·ice·s sur %s : %s", - "Remind me in 1 week": "Me le rappeler dans une semain", - "Remind me never": "Ne jamais me le rappeler", - "Yes, help Airtime": "Oui, aider Airtime", - "Image must be one of jpg, jpeg, png, or gif": "L'Image doit être du type jpg, jpeg, png, ou gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent.", - "Smart block shuffled": "Bloc intelligent mélangé", - "Smart block generated and criteria saved": "Bloc intelligent généré et critère(s) sauvegardé(s)", - "Smart block saved": "Bloc intelligent sauvegardé", - "Processing...": "Traitement en cours ...", - "Select modifier": "Sélectionnez modification", - "contains": "contient", - "does not contain": "ne contient pas", - "is": "est", - "is not": "n'est pas", - "starts with": "commence par", - "ends with": "fini par", - "is greater than": "est plus grand que", - "is less than": "est plus petit que", - "is in the range": "est dans le champ", - "Generate": "Générer", - "Choose Storage Folder": "Choisir un Répertoire de Stockage", - "Choose Folder to Watch": "Choisir un Répertoire à Surveiller", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \nCela supprimera les fichiers de votre médiathèque Airtime !", - "Manage Media Folders": "Gérer les Répertoires des Médias", - "Are you sure you want to remove the watched folder?": "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?", - "This path is currently not accessible.": "Ce chemin n'est pas accessible.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus.", - "Connected to the streaming server": "Connecté au serveur de flux", - "The stream is disabled": "Le flux est désactivé", - "Getting information from the server...": "Obtention des informations à partir du serveur ...", - "Can not connect to the streaming server": "Impossible de se connecter au serveur de flux", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151.", - "For more details, please read the %s%s Manual%s": "Pour plus d'informations, veuillez lire le manuel %s%s %s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute.", - "Warning: You cannot change this field while the show is currently playing": "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture", - "No result found": "Aucun résultat trouvé", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter.", - "Specify custom authentication which will work only for this show.": "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission.", - "The show instance doesn't exist anymore!": "L'instance de l'émission n'existe plus !", - "Warning: Shows cannot be re-linked": "Attention : Les émissions ne peuvent pas être liées à nouveau", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur.", - "Show": "Émission", - "Show is empty": "L'émission est vide", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Récupération des données du serveur...", - "This show has no scheduled content.": "Cette émission n'a pas de contenu programmée.", - "This show is not completely filled with content.": "Cette émission n'est pas complètement remplie avec ce contenu.", - "January": "Janvier", - "February": "Fevrier", - "March": "Mars", - "April": "Avril", - "May": "Mai", - "June": "Juin", - "July": "Juillet", - "August": "Août", - "September": "Septembre", - "October": "Octobre", - "November": "Novembre", - "December": "Décembre", - "Jan": "Jan", - "Feb": "Fev", - "Mar": "Mar", - "Apr": "Avr", - "Jun": "Jun", - "Jul": "Jui", - "Aug": "Aou", - "Sep": "Sep", - "Oct": "Oct", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Aujourd'hui", - "Day": "Jour", - "Week": "Semaine", - "Month": "Mois", - "Sunday": "Dimanche", - "Monday": "Lundi", - "Tuesday": "Mardi", - "Wednesday": "Mercredi", - "Thursday": "Jeudi", - "Friday": "Vendredi", - "Saturday": "Samedi", - "Sun": "Dim", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mer", - "Thu": "Jeu", - "Fri": "Ven", - "Sat": "Sam", - "Shows longer than their scheduled time will be cut off by a following show.": "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes.", - "Cancel Current Show?": "Annuler l'émission en cours ?", - "Stop recording current show?": "Arrêter l'enregistrement de l'émission en cours ?", - "Ok": "Ok", - "Contents of Show": "Contenu de l'émission", - "Remove all content?": "Enlever tous les contenus ?", - "Delete selected item(s)?": "Supprimer le(s) élément(s) sélectionné(s) ?", - "Start": "Début", - "End": "Fin", - "Duration": "Durée", - "Filtering out ": "Filtrage ", - " of ": " de ", - " records": " enregistrements", - "There are no shows scheduled during the specified time period.": "Il n'y a pas d'émissions prévues durant cette période.", - "Cue In": "Point d'entrée", - "Cue Out": "Point de sortie", - "Fade In": "Fondu en entrée", - "Fade Out": "Fondu en sortie", - "Show Empty": "Émission vide", - "Recording From Line In": "Enregistrement à partir de 'Line In'", - "Track preview": "Pré-écoute de la piste", - "Cannot schedule outside a show.": "Vous ne pouvez pas programmer en dehors d'une émission.", - "Moving 1 Item": "Déplacer 1 élément", - "Moving %s Items": "Déplacer %s éléments", - "Save": "Sauvegarder", - "Cancel": "Annuler", - "Fade Editor": "Éditeur de fondu", - "Cue Editor": "Éditeur de points d'E/S", - "Waveform features are available in a browser supporting the Web Audio API": "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio", - "Select all": "Tout Selectionner", - "Select none": "Ne Rien Selectionner", - "Trim overbooked shows": "Enlever les émissions surbookées", - "Remove selected scheduled items": "Supprimer les éléments programmés sélectionnés", - "Jump to the current playing track": "Aller à la piste en cours de lecture", - "Jump to Current": "Aller à l'émission en cours", - "Cancel current show": "Annuler l'émission en cours", - "Open library to add or remove content": "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu", - "Add / Remove Content": "Ajouter/Supprimer Contenu", - "in use": "en cours d'utilisation", - "Disk": "Disque", - "Look in": "Regarder à l'intérieur", - "Open": "Ouvrir", - "Admin": "Administrateur·ice", - "DJ": "DeaJee", - "Program Manager": "Programmateur·ice", - "Guest": "Invité·e", - "Guests can do the following:": "Les Invité·e·s peuvent effectuer les opérations suivantes :", - "View schedule": "Voir le calendrier", - "View show content": "Voir le contenu des émissions", - "DJs can do the following:": "Les DJs peuvent effectuer les opérations suivantes :", - "Manage assigned show content": "Gérer le contenu des émissions attribuées", - "Import media files": "Importer des fichiers multimédias", - "Create playlists, smart blocks, and webstreams": "Créez des listes de lectures, des blocs intelligents et des flux web", - "Manage their own library content": "Gérer le contenu de leur propre audiothèque", - "Program Managers can do the following:": "Les gestionnaires de programmes peuvent faire ceci :", - "View and manage show content": "Afficher et gérer le contenu des émissions", - "Schedule shows": "Programmer des émissions", - "Manage all library content": "Gérez tout le contenu de l'audiothèque", - "Admins can do the following:": "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :", - "Manage preferences": "Gérer les préférences", - "Manage users": "Gérer les utilisateur·ice·s", - "Manage watched folders": "Gérer les dossiers surveillés", - "Send support feedback": "Envoyez vos remarques au support", - "View system status": "Voir l'état du système", - "Access playout history": "Accédez à l'historique diffusion", - "View listener stats": "Voir les statistiques d'audience", - "Show / hide columns": "Montrer / cacher les colonnes", - "Columns": "Colonnes", - "From {from} to {to}": "De {from} à {to}", - "kbps": "kbps", - "yyyy-mm-dd": "aaaa-mm-jj", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Di", - "Mo": "Lu", - "Tu": "Ma", - "We": "Me", - "Th": "Je", - "Fr": "Ve", - "Sa": "Sa", - "Close": "Fermer", - "Hour": "Heure", - "Minute": "Minute", - "Done": "Fait", - "Select files": "Sélectionnez les fichiers", - "Add files to the upload queue and click the start button.": "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer.", - "Filename": "Nom du fichier", - "Size": "Taille", - "Add Files": "Ajouter des fichiers", - "Stop Upload": "Arrêter le Téléversement", - "Start upload": "Démarrer le Téléversement", - "Start Upload": "Démarrer le téléversement", - "Add files": "Ajouter des fichiers", - "Stop current upload": "Arrêter le téléversement en cours", - "Start uploading queue": "Démarrer le téléversement de la file", - "Uploaded %d/%d files": "Téléversement de %d sur %d fichiers", - "N/A": "N/A", - "Drag files here.": "Faites glisser les fichiers ici.", - "File extension error.": "Erreur d'extension du fichier.", - "File size error.": "Erreur de la Taille de Fichier.", - "File count error.": "Erreur de comptage des fichiers.", - "Init error.": "Erreur d'initialisation.", - "HTTP Error.": "Erreur HTTP.", - "Security error.": "Erreur de sécurité.", - "Generic error.": "Erreur générique.", - "IO error.": "Erreur d'E/S.", - "File: %s": "Fichier : %s", - "%d files queued": "%d fichiers en file d'attente", - "File: %f, size: %s, max file size: %m": "Fichier : %f, taille : %s, taille de fichier maximale : %m", - "Upload URL might be wrong or doesn't exist": "L'URL de téléversement est peut être erronée ou inexistante", - "Error: File too large: ": "Erreur : Fichier trop grand : ", - "Error: Invalid file extension: ": "Erreur : extension de fichier non valide : ", - "Set Default": "Définir par défaut", - "Create Entry": "Créer une entrée", - "Edit History Record": "Éditer l'enregistrement de l'historique", - "No Show": "Pas d'émission", - "Copied %s row%s to the clipboard": "Copié %s ligne(s)%s dans le presse papier", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé.", - "New Show": "Nouvelle émission", - "New Log Entry": "Nouvelle entrée de log", - "No data available in table": "Aucune date disponible dans le tableau", - "(filtered from _MAX_ total entries)": "(limité à _MAX_ entrées au total)", - "First": "Premier", - "Last": "Dernier", - "Next": "Suivant", - "Previous": "Précédent", - "Search:": "Rechercher :", - "No matching records found": "Aucun enregistrement correspondant trouvé", - "Drag tracks here from the library": "Glissez ici les pistes depuis la bibliothèque", - "No tracks were played during the selected time period.": "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné.", - "Unpublish": "Annuler la publication", - "No matching results found.": "Aucun résultat correspondant trouvé.", - "Author": "Auteur·ice", - "Description": "Description", - "Link": "Lien", - "Publication Date": "Date de publication", - "Import Status": "Statuts d'importation", - "Actions": "Actions", - "Delete from Library": "Supprimer de la bibliothèque", - "Successfully imported": "Succès de l'importation", - "Show _MENU_": "Afficher _MENU_", - "Show _MENU_ entries": "Afficher les entrées du _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Affiche de _START_ à _END_ sur _TOTAL_ entrées", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Affiche de _START_ à _END_ sur _TOTAL_ pistes", - "Showing _START_ to _END_ of _TOTAL_ track types": "Affiche de _START_ à _END_ sur _TOTAL_ types de piste", - "Showing _START_ to _END_ of _TOTAL_ users": "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs", - "Showing 0 to 0 of 0 entries": "Affiche de 0 à 0 sur 0 entrées", - "Showing 0 to 0 of 0 tracks": "Affiche de 0 à 0 sur 0 pistes", - "Showing 0 to 0 of 0 track types": "Affiche de 0 à 0 sur 0 types de piste", - "(filtered from _MAX_ total track types)": "(limité à _MAX_ types de piste au total)", - "Are you sure you want to delete this tracktype?": "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?", - "No track types were found.": "Aucun type de piste trouvé.", - "No track types found": "Aucun type de piste trouvé", - "No matching track types found": "Aucun type de piste correspondant trouvé", - "Enabled": "Activé", - "Disabled": "Désactivé", - "Cancel upload": "Annuler le téléversement", - "Type": "Type", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", - "Podcast settings saved": "Préférences des podcasts enregistrées", - "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", - "Can't delete yourself!": "Impossible de vous supprimer vous-même !", - "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", - "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", - "Try it now": "Essayer maintenant", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.", - "Playlist preview": "Aperçu de la liste de lecture", - "Smart Block": "Bloc intelligent", - "Webstream preview": "Aperçu du webstream", - "You don't have permission to view the library.": "Vous n'avez pas l'autorisation de voir la bibliothèque.", - "Now": "Maintenant", - "Click 'New' to create one now.": "Cliquez « Nouveau » pour en créer un nouveau.", - "Click 'Upload' to add some now.": "Cliquez « Téléverser » pour en ajouter de nouveaux.", - "Feed URL": "URL du flux", - "Import Date": "Date d'importation", - "Add New Podcast": "Ajouter un nouveau podcast", - "Cannot schedule outside a show.\nTry creating a show first.": "Impossible de programmer en-dehors d'un épisode.\nVeuillez d'abord créer un épisode.", - "No files have been uploaded yet.": "Aucun fichier n'a encore été téléversé.", - "On Air": "À l'antenne", - "Off Air": "Hors antenne", - "Offline": "Éteint", - "Nothing scheduled": "Aucun programme", - "Click 'Add' to create one now.": "Cliquez « Ajouter » pour en créer un nouveau maintenant.", - "Please enter your username and password.": "Veuillez entrer vos identifiants.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré.", - "That username or email address could not be found.": "Cet identifiant ou cette adresse courriel n'ont pu être trouvés.", - "There was a problem with the username or email address you entered.": "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e).", - "Wrong username or password provided. Please try again.": "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau.", - "You are viewing an older version of %s": "Vous visualisez l'ancienne version de %s", - "You cannot add tracks to dynamic blocks.": "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques.", - "You don't have permission to delete selected %s(s).": "Vous n'avez pas la permission de supprimer la sélection %s(s).", - "You can only add tracks to smart block.": "Vous pouvez seulement ajouter des pistes au bloc intelligent.", - "Untitled Playlist": "Liste de lecture sans titre", - "Untitled Smart Block": "Bloc intelligent sans titre", - "Unknown Playlist": "Liste de lecture inconnue", - "Preferences updated.": "Préférences mises à jour.", - "Stream Setting Updated.": "Réglages du Flux mis à jour.", - "path should be specified": "le chemin doit être spécifié", - "Problem with Liquidsoap...": "Problème avec Liquidsoap...", - "Request method not accepted": "Cette méthode de requête ne peut aboutir", - "Rebroadcast of show %s from %s at %s": "Rediffusion de l'émission %s de %s à %s", - "Select cursor": "Sélectionner le Curseur", - "Remove cursor": "Enlever le Curseur", - "show does not exist": "l'émission n'existe pas", - "Track Type added successfully!": "Type de piste ajouté avec succès !", - "Track Type updated successfully!": "Type de piste mis à jour avec succès !", - "User added successfully!": "Utilisateur·ice ajouté avec succès !", - "User updated successfully!": "Utilisateur·ice mis à jour avec succès !", - "Settings updated successfully!": "Paramètres mis à jour avec succès !", - "Untitled Webstream": "Flux Web sans Titre", - "Webstream saved.": "Flux Web sauvegardé.", - "Invalid form values.": "Valeurs du formulaire non valides.", - "Invalid character entered": "Caractère Invalide saisi", - "Day must be specified": "Le Jour doit être spécifié", - "Time must be specified": "La durée doit être spécifiée", - "Must wait at least 1 hour to rebroadcast": "Vous devez attendre au moins 1 heure pour retransmettre", - "Add Autoloading Playlist ?": "Ajouter une playlist automatique ?", - "Select Playlist": "Sélectionner la playlist", - "Repeat Playlist Until Show is Full ?": "Répéter la playlist jusqu'à ce que l'émission soit pleine ?", - "Use %s Authentication:": "Utilisez l'authentification %s :", - "Use Custom Authentication:": "Utiliser l'authentification personnalisée :", - "Custom Username": "Nom d'utilisateur·ice personnalisé", - "Custom Password": "Mot de Passe personnalisé", - "Host:": "Hôte :", - "Port:": "Port :", - "Mount:": "Point de Montage :", - "Username field cannot be empty.": "Le champ Nom d'Utilisateur·ice ne peut pas être vide.", - "Password field cannot be empty.": "Le champ Mot de Passe ne peut être vide.", - "Record from Line In?": "Enregistrer à partir de « Line In » ?", - "Rebroadcast?": "Rediffusion ?", - "days": "jours", - "Link:": "Lien :", - "Repeat Type:": "Type de Répétition :", - "weekly": "hebdomadaire", - "every 2 weeks": "toutes les 2 semaines", - "every 3 weeks": "toutes les 3 semaines", - "every 4 weeks": "toutes les 4 semaines", - "monthly": "mensuel", - "Select Days:": "Sélection des jours :", - "Repeat By:": "Répéter par :", - "day of the month": "jour du mois", - "day of the week": "jour de la semaine", - "Date End:": "Date de fin :", - "No End?": "Sans fin ?", - "End date must be after start date": "La Date de Fin doit être postérieure à la Date de Début", - "Please select a repeat day": "Veuillez sélectionner un jour de répétition", - "Background Colour:": "Couleur de fond :", - "Text Colour:": "Couleur du texte :", - "Current Logo:": "Logo actuel :", - "Show Logo:": "Montrer le logo :", - "Logo Preview:": "Aperçu du logo :", - "Name:": "Nom :", - "Untitled Show": "Émission sans Titre", - "URL:": "URL :", - "Genre:": "Genre :", - "Description:": "Description :", - "Instance Description:": "Description de l'instance :", - "{msg} does not fit the time format 'HH:mm'": "{msg} ne correspond pas au format de durée 'HH:mm'", - "Start Time:": "Heure de début :", - "In the Future:": "À venir :", - "End Time:": "Temps de fin :", - "Duration:": "Durée :", - "Timezone:": "Fuseau horaire :", - "Repeats?": "Répéter ?", - "Cannot create show in the past": "Impossible de créer une émission dans le passé", - "Cannot modify start date/time of the show that is already started": "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé", - "End date/time cannot be in the past": "La date/heure de Fin ne peut être dans le passé", - "Cannot have duration < 0m": "Ne peut pas avoir une durée < 0m", - "Cannot have duration 00h 00m": "Ne peut pas avoir une durée de 00h 00m", - "Cannot have duration greater than 24h": "Ne peut pas avoir une durée supérieure à 24h", - "Cannot schedule overlapping shows": "Ne peut pas programmer des émissions qui se chevauchent", - "Search Users:": "Recherche d'utilisateur·ice·s :", - "DJs:": "DJs :", - "Type Name:": "Nom du type :", - "Code:": "Code :", - "Visibility:": "Visibilité :", - "Analyze cue points:": "Analyser les points d'entrée et de sortie :", - "Code is not unique.": "Ce code n'est pas unique.", - "Username:": "Utilisateur·ice :", - "Password:": "Mot de Passe :", - "Verify Password:": "Vérification du mot de Passe :", - "Firstname:": "Prénom :", - "Lastname:": "Nom :", - "Email:": "Courriel :", - "Mobile Phone:": "Numéro de mobile :", - "Skype:": "Skype :", - "Jabber:": "Jabber :", - "User Type:": "Type d'utilisateur·ice :", - "Login name is not unique.": "Le Nom de connexion n'est pas unique.", - "Delete All Tracks in Library": "Supprimer toutes les pistes de la librairie", - "Date Start:": "Date de début :", - "Title:": "Titre :", - "Creator:": "Créateur·ice :", - "Album:": "Album :", - "Owner:": "Propriétaire :", - "Select a Type": "Sélectionner un type", - "Track Type:": "Type de piste :", - "Year:": "Année :", - "Label:": "Étiquette :", - "Composer:": "Compositeur·ice :", - "Conductor:": "Conducteur :", - "Mood:": "Atmosphère :", - "BPM:": "BPM :", - "Copyright:": "Copyright :", - "ISRC Number:": "Numéro ISRC :", - "Website:": "Site Internet :", - "Language:": "Langue :", - "Publish...": "Publier...", - "Start Time": "Heure de Début", - "End Time": "Heure de Fin", - "Interface Timezone:": "Fuseau horaire de l'interface :", - "Station Name": "Nom de la Station", - "Station Description": "Description de la station", - "Station Logo:": "Logo de la Station :", - "Note: Anything larger than 600x600 will be resized.": "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné.", - "Default Crossfade Duration (s):": "Durée du fondu enchaîné (en sec) :", - "Please enter a time in seconds (eg. 0.5)": "Veuillez entrer un temps en secondes (ex. 0.5)", - "Default Fade In (s):": "Fondu en Entrée par défaut (en sec) :", - "Default Fade Out (s):": "Fondu en Sortie par défaut (en sec) :", - "Track Type Upload Default": "Type de piste par défaut", - "Intro Autoloading Playlist": "Playlist automatique d'intro", - "Outro Autoloading Playlist": "Playlist automatique d'outro", - "Overwrite Podcast Episode Metatags": "Remplacer les metatags de l'épisode", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement.", - "Public LibreTime API": "API publique LibreTime", - "Required for embeddable schedule widget.": "Requis pour le widget de programmation.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n à des widgets externes pouvant être intégrés à votre site Web.", - "Default Language": "Langage par défaut", - "Station Timezone": "Fuseau horaire de la Station", - "Week Starts On": "La semaine commence le", - "Display login button on your Radio Page?": "Afficher le bouton de connexion sur votre page radio ?", - "Feature Previews": "Aperçus de fonctionnalités", - "Enable this to opt-in to test new features.": "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités.", - "Auto Switch Off:": "Arrêt automatique :", - "Auto Switch On:": "Mise en marche automatique :", - "Switch Transition Fade (s):": "Changement de transition en fondu (en sec) :", - "Master Source Host:": "Hôte source maître :", - "Master Source Port:": "Port source maître :", - "Master Source Mount:": "Point de montage principal :", - "Show Source Host:": "Afficher l'hôte de la source :", - "Show Source Port:": "Afficher le port de la source :", - "Show Source Mount:": "Afficher le point de montage de la source :", - "Login": "Connexion", - "Password": "Mot de Passe", - "Confirm new password": "Confirmez le nouveau mot de passe", - "Password confirmation does not match your password.": "La confirmation du mot de passe ne correspond pas à votre mot de passe.", - "Email": "Courriel", - "Username": "Utilisateur", - "Reset password": "Réinitialisation du Mot de Passe", - "Back": "Retour", - "Now Playing": "En Lecture", - "Select Stream:": "Sélectionnez un flux :", - "Auto detect the most appropriate stream to use.": "Détecter automatiquement le flux le plus approprié à utiliser.", - "Select a stream:": "Sélectionnez un flux :", - " - Mobile friendly": " - Interface mobile", - " - The player does not support Opus streams.": " - Le lecteur ne fonctionne pas avec des flux Opus.", - "Embeddable code:": "Code à intégrer :", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur.", - "Preview:": "Aperçu :", - "Feed Privacy": "Confidentialité du flux", - "Public": "Publique", - "Private": "Privé", - "Station Language": "Langage de la station", - "Filter by Show": "Filtrer par émissions", - "All My Shows:": "Toutes mes émissions :", - "My Shows": "Mes émissions", - "Select criteria": "Sélectionner le critère", - "Bit Rate (Kbps)": "Taux d'échantillonage (Kbps)", - "Track Type": "Type de piste", - "Sample Rate (kHz)": "Taux d'échantillonage (Khz)", - "before": "avant", - "after": "après", - "between": "entre", - "Select unit of time": "Sélectionner une unité de temps", - "minute(s)": "minute(s)", - "hour(s)": "heure(s)", - "day(s)": "jour(s)", - "week(s)": "semaine(s)", - "month(s)": "mois", - "year(s)": "année(s)", - "hours": "heures", - "minutes": "minutes", - "items": "éléments", - "time remaining in show": "temps restant de l'émission", - "Randomly": "Aléatoirement", - "Newest": "Plus récent", - "Oldest": "Plus vieux", - "Most recently played": "Les plus joués récemment", - "Least recently played": "Les moins jouées récemment", - "Select Track Type": "Sélectionner un type de piste", - "Type:": "Type :", - "Dynamic": "Dynamique", - "Static": "Statique", - "Select track type": "Sélectionner un type de piste", - "Allow Repeated Tracks:": "Autoriser la répétition de pistes :", - "Allow last track to exceed time limit:": "Autoriser la dernière piste à dépasser l'horaire :", - "Sort Tracks:": "Trier les pistes :", - "Limit to:": "Limiter à :", - "Generate playlist content and save criteria": "Génération de la liste de lecture et sauvegarde des critères", - "Shuffle playlist content": "Contenu de la liste de lecture alèatoire", - "Shuffle": "Aléatoire", - "Limit cannot be empty or smaller than 0": "La Limite ne peut être vide ou plus petite que 0", - "Limit cannot be more than 24 hrs": "La Limite ne peut être supérieure à 24 heures", - "The value should be an integer": "La valeur doit être un entier", - "500 is the max item limit value you can set": "500 est la valeur maximale de l'élément que vous pouvez définir", - "You must select Criteria and Modifier": "Vous devez sélectionner Critères et Modification", - "'Length' should be in '00:00:00' format": "La 'Durée' doit être au format '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte", - "You must select a time unit for a relative datetime.": "Vous devez sélectionner une unité de temps pour une date relative.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Seuls les entiers positifs sont autorisés pour les dates relatives", - "The value has to be numeric": "La valeur doit être numérique", - "The value should be less then 2147483648": "La valeur doit être inférieure à 2147483648", - "The value cannot be empty": "La valeur ne peut pas être vide", - "The value should be less than %s characters": "La valeur doit être inférieure à %s caractères", - "Value cannot be empty": "La Valeur ne peut pas être vide", - "Stream Label:": "Label du Flux :", - "Artist - Title": "Artiste - Titre", - "Show - Artist - Title": "Émission - Artiste - Titre", - "Station name - Show name": "Nom de la Station - Nom de l'émission", - "Off Air Metadata": "Métadonnées Hors Antenne", - "Enable Replay Gain": "Activer", - "Replay Gain Modifier": "Modifier le Niveau du Gain", - "Hardware Audio Output:": "Sortie audio matérielle :", - "Output Type": "Type de Sortie", - "Enabled:": "Activé :", - "Mobile:": "Mobile :", - "Stream Type:": "Type de Flux :", - "Bit Rate:": "Débit :", - "Service Type:": "Type de service :", - "Channels:": "Canaux :", - "Server": "Serveur", - "Port": "Port", - "Mount Point": "Point de Montage", - "Name": "Nom", - "URL": "URL", - "Stream URL": "URL du flux", - "Push metadata to your station on TuneIn?": "Pousser les métadonnées sur votre station sur TuneIn ?", - "Station ID:": "Identifiant de la station :", - "Partner Key:": "Clé partenaire :", - "Partner Id:": "ID partenaire :", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez.", - "Import Folder:": "Répertoire d'importation :", - "Watched Folders:": "Répertoires Surveillés :", - "Not a valid Directory": "N'est pas un Répertoire valide", - "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale{'@'}nomdedomaine", - "{msg} does not fit the date format '%format%'": "{msg} ne correspond pas au format de la date '%format%'", - "{msg} is less than %min% characters long": "{msg} est inférieur à %min% charactères", - "{msg} is more than %max% characters long": "{msg} est plus grand de %min% charactères", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} n'est pas entre '%min%' et '%max%', inclusivement", - "Passwords do not match": "Les mots de passe ne correspondent pas", - "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", - "\n\nThank you,\nThe %s Team": "\n\nMerci,\nL'équipe %s", - "%s Password Reset": "%s Réinitialisation du mot de passe", - "Cue in and cue out are null.": "Le points d'entrée et de sortie sont indéfinis.", - "Can't set cue out to be greater than file length.": "Ne peut pas fixer un point de sortie plus grand que la durée du fichier.", - "Can't set cue in to be larger than cue out.": "Impossible de définir un point d'entrée plus grand que le point de sortie.", - "Can't set cue out to be smaller than cue in.": "Ne peux pas fixer un point de sortie plus petit que le point d'entrée.", - "Upload Time": "Temps de téléversement", - "None": "Vide", - "Powered by %s": "Propulsé par %s", - "Select Country": "Selectionner le Pays", - "livestream": "diffusion en direct", - "Cannot move items out of linked shows": "Vous ne pouvez pas déplacer les éléments sur les émissions liées", - "The schedule you're viewing is out of date! (sched mismatch)": "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)", - "The schedule you're viewing is out of date! (instance mismatch)": "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)", - "The schedule you're viewing is out of date!": "Le calendrier que vous consultez n'est pas à jour !", - "You are not allowed to schedule show %s.": "Vous n'êtes pas autorisé à programme l'émission %s.", - "You cannot add files to recording shows.": "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées.", - "The show %s is over and cannot be scheduled.": "L émission %s est terminé et ne peut pas être programmé.", - "The show %s has been previously updated!": "L'émission %s a été précédemment mise à jour !", - "Content in linked shows cannot be changed while on air!": "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !", - "Cannot schedule a playlist that contains missing files.": "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants.", - "A selected File does not exist!": "Un fichier sélectionne n'existe pas !", - "Shows can have a max length of 24 hours.": "Les émissions peuvent avoir une durée maximale de 24 heures.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Ne peux pas programmer des émissions qui se chevauchent. \nRemarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions.", - "Rebroadcast of %s from %s": "Rediffusion de %s à %s", - "Length needs to be greater than 0 minutes": "La durée doit être supérieure à 0 minute", - "Length should be of form \"00h 00m\"": "La durée doit être de la forme \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL doit être de la forme \"https://example.org\"", - "URL should be 512 characters or less": "L'URL doit être de 512 caractères ou moins", - "No MIME type found for webstream.": "Aucun type MIME trouvé pour le Flux Web.", - "Webstream name cannot be empty": "Le Nom du Flux Web ne peut être vide", - "Could not parse XSPF playlist": "Impossible d'analyser la Sélection XSPF", - "Could not parse PLS playlist": "Impossible d'analyser la Sélection PLS", - "Could not parse M3U playlist": "Impossible d'analyser la Séléction M3U", - "Invalid webstream - This appears to be a file download.": "Flux Web Invalide - Ceci semble être un fichier téléchargeable.", - "Unrecognized stream type: %s": "Type de flux non reconnu : %s", - "Record file doesn't exist": "L'enregistrement du fichier n'existe pas", - "View Recorded File Metadata": "Afficher les métadonnées du fichier enregistré", - "Schedule Tracks": "Ajouter des pistes", - "Clear Show": "Vider le contenu de l'émission", - "Cancel Show": "Annuler l'émission", - "Edit Instance": "Modifier cet élément", - "Edit Show": "Édition de l'émission", - "Delete Instance": "Supprimer cet élément", - "Delete Instance and All Following": "Supprimer cet élément et tous les suivants", - "Permission denied": "Permission refusée", - "Can't drag and drop repeating shows": "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois", - "Can't move a past show": "Impossible de déplacer une émission déjà diffusée", - "Can't move show into past": "Impossible de déplacer une émission dans le passé", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions.", - "Show was deleted because recorded show does not exist!": "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !", - "Must wait 1 hour to rebroadcast.": "Doit attendre 1 heure pour retransmettre.", - "Track": "Piste", - "Played": "Joué", - "Auto-generated smartblock for podcast": "Playlist intelligente géré automatiquement pour le podcast", - "Webstreams": "Flux web" + "The year %s must be within the range of 1753 - 9999": "L'année %s doit être comprise entre 1753 et 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s n'est pas une date valide", + "%s:%s:%s is not a valid time": "%s:%s:%s n'est pas une durée valide", + "English": "Anglais", + "Afar": "Afar", + "Abkhazian": "Abkhaze", + "Afrikaans": "Afrikaans", + "Amharic": "Amharique", + "Arabic": "Arabe", + "Assamese": "Assamais", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaïdjanais", + "Bashkir": "Bachkir", + "Belarusian": "Biélorusse", + "Bulgarian": "Bulgare", + "Bihari": "Bihari", + "Bislama": "Bichelamar", + "Bengali/Bangla": "Bengali", + "Tibetan": "Tibétain", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corse", + "Czech": "Tchèque", + "Welsh": "Gallois", + "Danish": "Danois", + "German": "Allemand", + "Bhutani": "Dzongkha", + "Greek": "Grec", + "Esperanto": "Espéranto", + "Spanish": "Espagnol", + "Estonian": "Estonien", + "Basque": "Basque", + "Persian": "Persan", + "Finnish": "Finnois", + "Fiji": "Fidjien", + "Faeroese": "Féroïen", + "French": "Français", + "Frisian": "Frison", + "Irish": "Irlandais", + "Scots/Gaelic": "Gaélique écossais", + "Galician": "Galicien", + "Guarani": "Guarani", + "Gujarati": "Goudjarati", + "Hausa": "Haoussa", + "Hindi": "Hindi", + "Croatian": "Croate", + "Hungarian": "Hongrois", + "Armenian": "Arménien", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonésien", + "Icelandic": "Islandais", + "Italian": "Italien", + "Hebrew": "Hébreu", + "Japanese": "Japonais", + "Yiddish": "Yiddish", + "Javanese": "Javanais", + "Georgian": "Géorgien", + "Kazakh": "Kazakh", + "Greenlandic": "Groenlandais", + "Cambodian": "Cambodgien", + "Kannada": "Kannada", + "Korean": "Coréen", + "Kashmiri": "Cachemire", + "Kurdish": "Kurde", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Lao", + "Lithuanian": "Lituanien", + "Latvian/Lettish": "Letton", + "Malagasy": "Malgache", + "Maori": "Maori", + "Macedonian": "Macédonien", + "Malayalam": "Malayalam", + "Mongolian": "Mongol", + "Moldavian": "Moldave", + "Marathi": "Marathi", + "Malay": "Malais", + "Maltese": "Maltais", + "Burmese": "Birman", + "Nauru": "Nauru", + "Nepali": "Népalais", + "Dutch": "Néerlandais", + "Norwegian": "Norvégien", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan) / Oromoor / Oriya", + "Punjabi": "Pendjabi", + "Polish": "Polonais", + "Pashto/Pushto": "Pachto", + "Portuguese": "Portugais", + "Quechua": "Quetchua", + "Rhaeto-Romance": "Romanche", + "Kirundi": "Kirundi", + "Romanian": "Roumain", + "Russian": "Russe", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-croate", + "Singhalese": "Singhalais", + "Slovak": "Slovaque", + "Slovenian": "Slovène", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanais", + "Serbian": "Serbe", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Soundanais", + "Swedish": "Suédois", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Télougou", + "Tajik": "Tadjik", + "Thai": "Thaï", + "Tigrinya": "Tigrigna", + "Turkmen": "Turkmène", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonguien", + "Turkish": "Turc", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainien", + "Urdu": "Ourdou", + "Uzbek": "Ouzbek", + "Vietnamese": "Vietnamien", + "Volapuk": "Volapük", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinois", + "Zulu": "Zoulou", + "Use station default": "Utiliser les réglages par défaut", + "Upload some tracks below to add them to your library!": "Téléversez des pistes ci-dessous pour les ajouter à votre bibliothèque !", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s.", + "Click the 'New Show' button and fill out the required fields.": "Cliquez sur le bouton « Nouvelle émission » et remplissez les champs requis.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant « Annuler l'émission ».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n %sCréer une émission dé-liée%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Pour commencer la diffusion, cliquez sur une émission et sélectionnez « Ajouter des pistes »", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "L'émission actuelle est vide. %sAjouter des pistes audio%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Cliquez sur l'émission suivante et sélectionner « Ajouter des pistes »", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "La prochaine émission est vide. %sAjouter des pistes à cette émission%s.", + "LibreTime media analyzer service": "Service d'analyseur de médias LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Vérifiez que le service libretime-analyzer est correctement installé dans le répertoire ", + " and ensure that it's running with ": " et assurez-vous qu'il fonctionne avec ", + "If not, try ": "Sinon, essayez ", + "LibreTime playout service": "Service de diffusion LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Vérifiez que le service « libretime-playout » est installé correctement dans ", + "LibreTime liquidsoap service": "Service liquidsoap de LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Vérifiez que le service « libretime-liquidsoap » est installé correctement dans ", + "LibreTime Celery Task service": "Service Celery Task de LibreTime", + "Check that the libretime-worker service is installed correctly in ": "Vérifiez que le service « libretime-worker » est installé correctement dans ", + "LibreTime API service": "Service API LibreTime", + "Check that the libretime-api service is installed correctly in ": "Vérifiez que le service « libretime-api » est installé correctement dans ", + "Radio Page": "Page de la radio", + "Calendar": "Calendrier", + "Widgets": "Widgets", + "Player": "Lecteur", + "Weekly Schedule": "Grille hebdomadaire", + "Settings": "Paramètres", + "General": "Général", + "My Profile": "Mon profil", + "Users": "Utilisateurs", + "Track Types": "Types de flux", + "Streams": "Flux", + "Status": "Statut", + "Analytics": "Statistiques", + "Playout History": "Historique de diffusion", + "History Templates": "Modèle d'historique", + "Listener Stats": "Statistiques des auditeurs", + "Show Listener Stats": "Afficher les statistiques des auditeurs", + "Help": "Aide", + "Getting Started": "Mise en route", + "User Manual": "Manuel Utilisateur", + "Get Help Online": "Obtenir de l'aide en ligne", + "Contribute to LibreTime": "Contribuer à LibreTime", + "What's New?": "Qu'est-ce qui a changé ?", + "You are not allowed to access this resource.": "Vous n'avez pas le droit d'accéder à cette ressource.", + "You are not allowed to access this resource. ": "Vous n'avez pas le droit d'accéder à cette ressource. ", + "File does not exist in %s": "Le fichier n'existe pas dans %s", + "Bad request. no 'mode' parameter passed.": "Mauvaise requête. pas de « mode » paramètre passé.", + "Bad request. 'mode' parameter is invalid": "Mauvaise requête. Le paramètre « mode » est invalide", + "You don't have permission to disconnect source.": "Vous n'avez pas la permission de déconnecter la source.", + "There is no source connected to this input.": "Il n'y a pas de source connectée à cette entrée.", + "You don't have permission to switch source.": "Vous n'avez pas la permission de changer de source.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Pour configurer et utiliser le lecture intégré, vous devez :\n 1. Activer au moins un flux MP3, AAC ou OGG dans Préférences -> Flux 2. Activer l'API publique de LibreTime depuis Préférences -> Préférences", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour utiliser le widget intégré de programmation hebdomadaire, vous devez :\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Pour ajouter un onglet radius à votre page Facebook vous devez d'abord :\n Activer l'API publique LibreTime dans Préférences -> Préférences", + "Page not found.": "Page introuvable.", + "The requested action is not supported.": "L'action requise n'est pas implémentée.", + "You do not have permission to access this resource.": "Vous n'avez pas la permission d'accéder à cette ressource.", + "An internal application error has occurred.": "Une erreur interne est survenue.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Aucune piste n'a encore été publiée.", + "%s not found": "%s non trouvé", + "Something went wrong.": "Quelque chose s'est mal passé.", + "Preview": "Prévisualisation", + "Add to Playlist": "Ajouter à la liste", + "Add to Smart Block": "Ajouter un bloc intelligent", + "Delete": "Supprimer", + "Edit...": "Modifier…", + "Download": "Téléchargement", + "Duplicate Playlist": "Dupliquer la liste de lecture", + "Duplicate Smartblock": "Dupliquer le bloc intelligent", + "No action available": "Aucune action disponible", + "You don't have permission to delete selected items.": "Vous n'avez pas la permission de supprimer les éléments sélectionnés.", + "Could not delete file because it is scheduled in the future.": "Impossible de supprimer ce fichier car il est dans la programmation.", + "Could not delete file(s).": "Impossible de supprimer ce(s) fichier(s).", + "Copy of %s": "Copie de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Veuillez vous assurer que l’administrateur·ice a un mot de passe correct dans la page Préférences -> Flux.", + "Audio Player": "Lecteur Audio", + "Something went wrong!": "Quelque chose s'est mal passé !", + "Recording:": "Enregistrement :", + "Master Stream": "Flux Maitre", + "Live Stream": "Flux en Direct", + "Nothing Scheduled": "Rien de Prévu", + "Current Show:": "Émission en cours :", + "Current": "En ce moment", + "You are running the latest version": "Vous exécutez la dernière version", + "New version available: ": "Nouvelle version disponible : ", + "You have a pre-release version of LibreTime intalled.": "Vous avez une version préliminaire de LibreTime intégrée.", + "A patch update for your LibreTime installation is available.": "Une mise à jour du correctif pour votre installation LibreTime est disponible.", + "A feature update for your LibreTime installation is available.": "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible.", + "A major update for your LibreTime installation is available.": "Une mise à jour majeure de votre installation LibreTime est disponible.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible.", + "Add to current playlist": "Ajouter à la liste de lecture", + "Add to current smart block": "Ajouter au bloc intelligent", + "Adding 1 Item": "Ajouter 1 élément", + "Adding %s Items": "Ajout de %s Elements", + "You can only add tracks to smart blocks.": "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture.", + "Please select a cursor position on timeline.": "S'il vous plaît sélectionner un curseur sur la timeline.", + "You haven't added any tracks": "Vous n'avez pas ajouté de pistes", + "You haven't added any playlists": "Vous n'avez pas ajouté de playlists", + "You haven't added any podcasts": "Vous n'avez pas ajouté de podcast", + "You haven't added any smart blocks": "Vous n'avez ajouté aucun bloc intelligent", + "You haven't added any webstreams": "Vous n'avez ajouté aucun flux web", + "Learn about tracks": "A propos des pistes", + "Learn about playlists": "A propos des playlists", + "Learn about podcasts": "A propos des podcasts", + "Learn about smart blocks": "A propos des blocs intelligents", + "Learn about webstreams": "A propos des flux webs", + "Click 'New' to create one.": "Cliquez sur 'Nouveau' pour en créer un.", + "Add": "Ajouter", + "New": "Nouveau", + "Edit": "Edition", + "Add to Schedule": "Ajouter à la grille", + "Add to next show": "Ajouter à la prochaine émission", + "Add to current show": "Ajouter à l'émission actuelle", + "Add after selected items": "Ajouter après les éléments sélectionnés", + "Publish": "Publier", + "Remove": "Enlever", + "Edit Metadata": "Édition des Méta-Données", + "Add to selected show": "Ajouter à l'émission sélectionnée", + "Select": "Sélection", + "Select this page": "Sélectionner cette page", + "Deselect this page": "Dé-selectionner cette page", + "Deselect all": "Tous déselectioner", + "Are you sure you want to delete the selected item(s)?": "Êtes-vous sûr(e) de vouloir effacer le(s) élément(s) sélectionné(s) ?", + "Scheduled": "Programmé", + "Tracks": "Pistes", + "Playlist": "Playlist", + "Title": "Titre", + "Creator": "Créateur.ice", + "Album": "Album", + "Bit Rate": "Taux d'echantillonage", + "BPM": "BPM", + "Composer": "Compositeur.ice", + "Conductor": "Conducteur", + "Copyright": "Droit d'Auteur.ice", + "Encoded By": "Encodé Par", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Langue", + "Last Modified": "Dernier Modifié", + "Last Played": "Dernier Joué", + "Length": "Durée", + "Mime": "Mime", + "Mood": "Humeur", + "Owner": "Propriétaire", + "Replay Gain": "Replay Gain", + "Sample Rate": "Taux d'échantillonnage", + "Track Number": "Numéro de la Piste", + "Uploaded": "Téléversé", + "Website": "Site Internet", + "Year": "Année", + "Loading...": "Chargement...", + "All": "Tous", + "Files": "Fichiers", + "Playlists": "Listes de lecture", + "Smart Blocks": "Blocs Intelligents", + "Web Streams": "Flux Web", + "Unknown type: ": "Type inconnu : ", + "Are you sure you want to delete the selected item?": "Êtes-vous sûr de vouloir supprimer l'élément sélectionné ?", + "Uploading in progress...": "Téléversement en cours...", + "Retrieving data from the server...": "Récupération des données du serveur...", + "Import": "Importer", + "Imported?": "Importé ?", + "View": "Afficher", + "Error code: ": "Code d'erreur : ", + "Error msg: ": "Message d'erreur : ", + "Input must be a positive number": "L'entrée doit être un nombre positif", + "Input must be a number": "L'entrée doit être un nombre", + "Input must be in the format: yyyy-mm-dd": "L'entrée doit être au format : aaaa-mm-jj", + "Input must be in the format: hh:mm:ss.t": "L'entrée doit être au format : hh:mm:ss.t", + "My Podcast": "Section Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr·e de vouloir quitter la page ?", + "Open Media Builder": "Ouvrir le Constructeur de Média", + "please put in a time '00:00:00 (.0)'": "veuillez mettre la durée '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Veuillez entrer un temps en secondes. Par exemple 0.5", + "Your browser does not support playing this file type: ": "Votre navigateur ne prend pas en charge la lecture de ce type de fichier : ", + "Dynamic block is not previewable": "Le Bloc dynamique n'est pas prévisualisable", + "Limit to: ": "Limiter à : ", + "Playlist saved": "Liste de Lecture sauvegardé", + "Playlist shuffled": "Playlist en aléatoire", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «surveillé».", + "Listener Count on %s: %s": "Nombre d'auditeur·ice·s sur %s : %s", + "Remind me in 1 week": "Me le rappeler dans une semain", + "Remind me never": "Ne jamais me le rappeler", + "Yes, help Airtime": "Oui, aider Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'Image doit être du type jpg, jpeg, png, ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "La longueur de bloc désirée ne sera pas atteinte si %s ne trouve pas assez de pistes uniques qui correspondent à vos critères. Activez cette option si vous voulez autoriser les pistes à être ajoutées plusieurs fois à bloc intelligent.", + "Smart block shuffled": "Bloc intelligent mélangé", + "Smart block generated and criteria saved": "Bloc intelligent généré et critère(s) sauvegardé(s)", + "Smart block saved": "Bloc intelligent sauvegardé", + "Processing...": "Traitement en cours ...", + "Select modifier": "Sélectionnez modification", + "contains": "contient", + "does not contain": "ne contient pas", + "is": "est", + "is not": "n'est pas", + "starts with": "commence par", + "ends with": "fini par", + "is greater than": "est plus grand que", + "is less than": "est plus petit que", + "is in the range": "est dans le champ", + "Generate": "Générer", + "Choose Storage Folder": "Choisir un Répertoire de Stockage", + "Choose Folder to Watch": "Choisir un Répertoire à Surveiller", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Êtes-vous sûr que vous voulez changer le répertoire de stockage ? \nCela supprimera les fichiers de votre médiathèque Airtime !", + "Manage Media Folders": "Gérer les Répertoires des Médias", + "Are you sure you want to remove the watched folder?": "Êtes-vous sûr(e) de vouloir supprimer le répertoire surveillé ?", + "This path is currently not accessible.": "Ce chemin n'est pas accessible.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus.", + "Connected to the streaming server": "Connecté au serveur de flux", + "The stream is disabled": "Le flux est désactivé", + "Getting information from the server...": "Obtention des informations à partir du serveur ...", + "Can not connect to the streaming server": "Impossible de se connecter au serveur de flux", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Si %s est derrière un routeur ou un pare-feu, vous devriez avoir besoin de configurer le suivi de port et les informations de ce champ seront incorrectes. Dans ce cas, vous aurez besoin de mettre à jour manuellement ce champ pour qu'il affiche l'hôte/port/montage correct pour que votre DJ puisse s'y connecter. L'intervalle autorisé est de 1024 à 49151.", + "For more details, please read the %s%s Manual%s": "Pour plus d'informations, veuillez lire le manuel %s%s %s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées : ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "AVERTISSEMENT : cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs !", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute.", + "Warning: You cannot change this field while the show is currently playing": "Attention : Vous ne pouvez pas modifier ce champ pendant que l'émission est en cours de lecture", + "No result found": "Aucun résultat trouvé", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Cela suit le même modèle de sécurité que pour les émissions : seul·e·s les utilisateur·ice·s affectés à l' émission peuvent se connecter.", + "Specify custom authentication which will work only for this show.": "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission.", + "The show instance doesn't exist anymore!": "L'instance de l'émission n'existe plus !", + "Warning: Shows cannot be re-linked": "Attention : Les émissions ne peuvent pas être liées à nouveau", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur.", + "Show": "Émission", + "Show is empty": "L'émission est vide", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Récupération des données du serveur...", + "This show has no scheduled content.": "Cette émission n'a pas de contenu programmée.", + "This show is not completely filled with content.": "Cette émission n'est pas complètement remplie avec ce contenu.", + "January": "Janvier", + "February": "Fevrier", + "March": "Mars", + "April": "Avril", + "May": "Mai", + "June": "Juin", + "July": "Juillet", + "August": "Août", + "September": "Septembre", + "October": "Octobre", + "November": "Novembre", + "December": "Décembre", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Avr", + "Jun": "Jun", + "Jul": "Jui", + "Aug": "Aou", + "Sep": "Sep", + "Oct": "Oct", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Aujourd'hui", + "Day": "Jour", + "Week": "Semaine", + "Month": "Mois", + "Sunday": "Dimanche", + "Monday": "Lundi", + "Tuesday": "Mardi", + "Wednesday": "Mercredi", + "Thursday": "Jeudi", + "Friday": "Vendredi", + "Saturday": "Samedi", + "Sun": "Dim", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Jeu", + "Fri": "Ven", + "Sat": "Sam", + "Shows longer than their scheduled time will be cut off by a following show.": "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes.", + "Cancel Current Show?": "Annuler l'émission en cours ?", + "Stop recording current show?": "Arrêter l'enregistrement de l'émission en cours ?", + "Ok": "Ok", + "Contents of Show": "Contenu de l'émission", + "Remove all content?": "Enlever tous les contenus ?", + "Delete selected item(s)?": "Supprimer le(s) élément(s) sélectionné(s) ?", + "Start": "Début", + "End": "Fin", + "Duration": "Durée", + "Filtering out ": "Filtrage ", + " of ": " de ", + " records": " enregistrements", + "There are no shows scheduled during the specified time period.": "Il n'y a pas d'émissions prévues durant cette période.", + "Cue In": "Point d'entrée", + "Cue Out": "Point de sortie", + "Fade In": "Fondu en entrée", + "Fade Out": "Fondu en sortie", + "Show Empty": "Émission vide", + "Recording From Line In": "Enregistrement à partir de 'Line In'", + "Track preview": "Pré-écoute de la piste", + "Cannot schedule outside a show.": "Vous ne pouvez pas programmer en dehors d'une émission.", + "Moving 1 Item": "Déplacer 1 élément", + "Moving %s Items": "Déplacer %s éléments", + "Save": "Sauvegarder", + "Cancel": "Annuler", + "Fade Editor": "Éditeur de fondu", + "Cue Editor": "Éditeur de points d'E/S", + "Waveform features are available in a browser supporting the Web Audio API": "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio", + "Select all": "Tout Selectionner", + "Select none": "Ne Rien Selectionner", + "Trim overbooked shows": "Enlever les émissions surbookées", + "Remove selected scheduled items": "Supprimer les éléments programmés sélectionnés", + "Jump to the current playing track": "Aller à la piste en cours de lecture", + "Jump to Current": "Aller à l'émission en cours", + "Cancel current show": "Annuler l'émission en cours", + "Open library to add or remove content": "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu", + "Add / Remove Content": "Ajouter/Supprimer Contenu", + "in use": "en cours d'utilisation", + "Disk": "Disque", + "Look in": "Regarder à l'intérieur", + "Open": "Ouvrir", + "Admin": "Administrateur·ice", + "DJ": "DeaJee", + "Program Manager": "Programmateur·ice", + "Guest": "Invité·e", + "Guests can do the following:": "Les Invité·e·s peuvent effectuer les opérations suivantes :", + "View schedule": "Voir le calendrier", + "View show content": "Voir le contenu des émissions", + "DJs can do the following:": "Les DJs peuvent effectuer les opérations suivantes :", + "Manage assigned show content": "Gérer le contenu des émissions attribuées", + "Import media files": "Importer des fichiers multimédias", + "Create playlists, smart blocks, and webstreams": "Créez des listes de lectures, des blocs intelligents et des flux web", + "Manage their own library content": "Gérer le contenu de leur propre audiothèque", + "Program Managers can do the following:": "Les gestionnaires de programmes peuvent faire ceci :", + "View and manage show content": "Afficher et gérer le contenu des émissions", + "Schedule shows": "Programmer des émissions", + "Manage all library content": "Gérez tout le contenu de l'audiothèque", + "Admins can do the following:": "Les Administrateur·ice·s peuvent effectuer les opérations suivantes :", + "Manage preferences": "Gérer les préférences", + "Manage users": "Gérer les utilisateur·ice·s", + "Manage watched folders": "Gérer les dossiers surveillés", + "Send support feedback": "Envoyez vos remarques au support", + "View system status": "Voir l'état du système", + "Access playout history": "Accédez à l'historique diffusion", + "View listener stats": "Voir les statistiques d'audience", + "Show / hide columns": "Montrer / cacher les colonnes", + "Columns": "Colonnes", + "From {from} to {to}": "De {from} à {to}", + "kbps": "kbps", + "yyyy-mm-dd": "aaaa-mm-jj", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Di", + "Mo": "Lu", + "Tu": "Ma", + "We": "Me", + "Th": "Je", + "Fr": "Ve", + "Sa": "Sa", + "Close": "Fermer", + "Hour": "Heure", + "Minute": "Minute", + "Done": "Fait", + "Select files": "Sélectionnez les fichiers", + "Add files to the upload queue and click the start button.": "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer.", + "Filename": "Nom du fichier", + "Size": "Taille", + "Add Files": "Ajouter des fichiers", + "Stop Upload": "Arrêter le Téléversement", + "Start upload": "Démarrer le Téléversement", + "Start Upload": "Démarrer le téléversement", + "Add files": "Ajouter des fichiers", + "Stop current upload": "Arrêter le téléversement en cours", + "Start uploading queue": "Démarrer le téléversement de la file", + "Uploaded %d/%d files": "Téléversement de %d sur %d fichiers", + "N/A": "N/A", + "Drag files here.": "Faites glisser les fichiers ici.", + "File extension error.": "Erreur d'extension du fichier.", + "File size error.": "Erreur de la Taille de Fichier.", + "File count error.": "Erreur de comptage des fichiers.", + "Init error.": "Erreur d'initialisation.", + "HTTP Error.": "Erreur HTTP.", + "Security error.": "Erreur de sécurité.", + "Generic error.": "Erreur générique.", + "IO error.": "Erreur d'E/S.", + "File: %s": "Fichier : %s", + "%d files queued": "%d fichiers en file d'attente", + "File: %f, size: %s, max file size: %m": "Fichier : %f, taille : %s, taille de fichier maximale : %m", + "Upload URL might be wrong or doesn't exist": "L'URL de téléversement est peut être erronée ou inexistante", + "Error: File too large: ": "Erreur : Fichier trop grand : ", + "Error: Invalid file extension: ": "Erreur : extension de fichier non valide : ", + "Set Default": "Définir par défaut", + "Create Entry": "Créer une entrée", + "Edit History Record": "Éditer l'enregistrement de l'historique", + "No Show": "Pas d'émission", + "Copied %s row%s to the clipboard": "Copié %s ligne(s)%s dans le presse papier", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVue Imprimante%sVeuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur « Échap » lorsque vous avez terminé.", + "New Show": "Nouvelle émission", + "New Log Entry": "Nouvelle entrée de log", + "No data available in table": "Aucune date disponible dans le tableau", + "(filtered from _MAX_ total entries)": "(limité à _MAX_ entrées au total)", + "First": "Premier", + "Last": "Dernier", + "Next": "Suivant", + "Previous": "Précédent", + "Search:": "Rechercher :", + "No matching records found": "Aucun enregistrement correspondant trouvé", + "Drag tracks here from the library": "Glissez ici les pistes depuis la bibliothèque", + "No tracks were played during the selected time period.": "Aucune piste n'a été jouée dans l'intervalle de temps sélectionné.", + "Unpublish": "Annuler la publication", + "No matching results found.": "Aucun résultat correspondant trouvé.", + "Author": "Auteur·ice", + "Description": "Description", + "Link": "Lien", + "Publication Date": "Date de publication", + "Import Status": "Statuts d'importation", + "Actions": "Actions", + "Delete from Library": "Supprimer de la bibliothèque", + "Successfully imported": "Succès de l'importation", + "Show _MENU_": "Afficher _MENU_", + "Show _MENU_ entries": "Afficher les entrées du _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Affiche de _START_ à _END_ sur _TOTAL_ entrées", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Affiche de _START_ à _END_ sur _TOTAL_ pistes", + "Showing _START_ to _END_ of _TOTAL_ track types": "Affiche de _START_ à _END_ sur _TOTAL_ types de piste", + "Showing _START_ to _END_ of _TOTAL_ users": "Affiche de _START_ à _END_ sur _TOTAL_ utilisateurs", + "Showing 0 to 0 of 0 entries": "Affiche de 0 à 0 sur 0 entrées", + "Showing 0 to 0 of 0 tracks": "Affiche de 0 à 0 sur 0 pistes", + "Showing 0 to 0 of 0 track types": "Affiche de 0 à 0 sur 0 types de piste", + "(filtered from _MAX_ total track types)": "(limité à _MAX_ types de piste au total)", + "Are you sure you want to delete this tracktype?": "Êtes-vous sûr(e) de vouloir supprimer ce type de piste ?", + "No track types were found.": "Aucun type de piste trouvé.", + "No track types found": "Aucun type de piste trouvé", + "No matching track types found": "Aucun type de piste correspondant trouvé", + "Enabled": "Activé", + "Disabled": "Désactivé", + "Cancel upload": "Annuler le téléversement", + "Type": "Type", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Le contenu des playlists automatiques est ajouté aux émissions une heure avant le début de l'émission. Plus d'information", + "Podcast settings saved": "Préférences des podcasts enregistrées", + "Are you sure you want to delete this user?": "Êtes-vous sûr·e de vouloir supprimer cet·te utilisateur·ice ?", + "Can't delete yourself!": "Impossible de vous supprimer vous-même !", + "You haven't published any episodes!": "Vous n'avez pas publié d'épisode !", + "You can publish your uploaded content from the 'Tracks' view.": "Vous pouvez publier votre contenu téléversé depuis la vue « Pistes ».", + "Try it now": "Essayer maintenant", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Si cette option est décochée, le bloc intelligent programmera autant de pistes qu'il pourra être jouée en entier</stron> durant la durée spécifiée. Cela donne généralement une lecture audio légèrement plus courte que la durée spécifiée.Si cette option est cochée, le bloc intelligent programmera une piste finale qui dépassera la durée spécifiée. Cette dernière piste peut être coupée en plein milieu si l'épisode contenu dans le bloc intelligent se termine.", + "Playlist preview": "Aperçu de la liste de lecture", + "Smart Block": "Bloc intelligent", + "Webstream preview": "Aperçu du webstream", + "You don't have permission to view the library.": "Vous n'avez pas l'autorisation de voir la bibliothèque.", + "Now": "Maintenant", + "Click 'New' to create one now.": "Cliquez « Nouveau » pour en créer un nouveau.", + "Click 'Upload' to add some now.": "Cliquez « Téléverser » pour en ajouter de nouveaux.", + "Feed URL": "URL du flux", + "Import Date": "Date d'importation", + "Add New Podcast": "Ajouter un nouveau podcast", + "Cannot schedule outside a show.\nTry creating a show first.": "Impossible de programmer en-dehors d'un épisode.\nVeuillez d'abord créer un épisode.", + "No files have been uploaded yet.": "Aucun fichier n'a encore été téléversé.", + "On Air": "À l'antenne", + "Off Air": "Hors antenne", + "Offline": "Éteint", + "Nothing scheduled": "Aucun programme", + "Click 'Add' to create one now.": "Cliquez « Ajouter » pour en créer un nouveau maintenant.", + "Please enter your username and password.": "Veuillez entrer vos identifiants.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré.", + "That username or email address could not be found.": "Cet identifiant ou cette adresse courriel n'ont pu être trouvés.", + "There was a problem with the username or email address you entered.": "Il y a un problème avec l'identifiant ou adresse courriel que vous avez entré(e).", + "Wrong username or password provided. Please try again.": "Mauvais nom d'utilisateur·ice ou mot de passe fourni. Veuillez essayer à nouveau.", + "You are viewing an older version of %s": "Vous visualisez l'ancienne version de %s", + "You cannot add tracks to dynamic blocks.": "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques.", + "You don't have permission to delete selected %s(s).": "Vous n'avez pas la permission de supprimer la sélection %s(s).", + "You can only add tracks to smart block.": "Vous pouvez seulement ajouter des pistes au bloc intelligent.", + "Untitled Playlist": "Liste de lecture sans titre", + "Untitled Smart Block": "Bloc intelligent sans titre", + "Unknown Playlist": "Liste de lecture inconnue", + "Preferences updated.": "Préférences mises à jour.", + "Stream Setting Updated.": "Réglages du Flux mis à jour.", + "path should be specified": "le chemin doit être spécifié", + "Problem with Liquidsoap...": "Problème avec Liquidsoap...", + "Request method not accepted": "Cette méthode de requête ne peut aboutir", + "Rebroadcast of show %s from %s at %s": "Rediffusion de l'émission %s de %s à %s", + "Select cursor": "Sélectionner le Curseur", + "Remove cursor": "Enlever le Curseur", + "show does not exist": "l'émission n'existe pas", + "Track Type added successfully!": "Type de piste ajouté avec succès !", + "Track Type updated successfully!": "Type de piste mis à jour avec succès !", + "User added successfully!": "Utilisateur·ice ajouté avec succès !", + "User updated successfully!": "Utilisateur·ice mis à jour avec succès !", + "Settings updated successfully!": "Paramètres mis à jour avec succès !", + "Untitled Webstream": "Flux Web sans Titre", + "Webstream saved.": "Flux Web sauvegardé.", + "Invalid form values.": "Valeurs du formulaire non valides.", + "Invalid character entered": "Caractère Invalide saisi", + "Day must be specified": "Le Jour doit être spécifié", + "Time must be specified": "La durée doit être spécifiée", + "Must wait at least 1 hour to rebroadcast": "Vous devez attendre au moins 1 heure pour retransmettre", + "Add Autoloading Playlist ?": "Ajouter une playlist automatique ?", + "Select Playlist": "Sélectionner la playlist", + "Repeat Playlist Until Show is Full ?": "Répéter la playlist jusqu'à ce que l'émission soit pleine ?", + "Use %s Authentication:": "Utilisez l'authentification %s :", + "Use Custom Authentication:": "Utiliser l'authentification personnalisée :", + "Custom Username": "Nom d'utilisateur·ice personnalisé", + "Custom Password": "Mot de Passe personnalisé", + "Host:": "Hôte :", + "Port:": "Port :", + "Mount:": "Point de Montage :", + "Username field cannot be empty.": "Le champ Nom d'Utilisateur·ice ne peut pas être vide.", + "Password field cannot be empty.": "Le champ Mot de Passe ne peut être vide.", + "Record from Line In?": "Enregistrer à partir de « Line In » ?", + "Rebroadcast?": "Rediffusion ?", + "days": "jours", + "Link:": "Lien :", + "Repeat Type:": "Type de Répétition :", + "weekly": "hebdomadaire", + "every 2 weeks": "toutes les 2 semaines", + "every 3 weeks": "toutes les 3 semaines", + "every 4 weeks": "toutes les 4 semaines", + "monthly": "mensuel", + "Select Days:": "Sélection des jours :", + "Repeat By:": "Répéter par :", + "day of the month": "jour du mois", + "day of the week": "jour de la semaine", + "Date End:": "Date de fin :", + "No End?": "Sans fin ?", + "End date must be after start date": "La Date de Fin doit être postérieure à la Date de Début", + "Please select a repeat day": "Veuillez sélectionner un jour de répétition", + "Background Colour:": "Couleur de fond :", + "Text Colour:": "Couleur du texte :", + "Current Logo:": "Logo actuel :", + "Show Logo:": "Montrer le logo :", + "Logo Preview:": "Aperçu du logo :", + "Name:": "Nom :", + "Untitled Show": "Émission sans Titre", + "URL:": "URL :", + "Genre:": "Genre :", + "Description:": "Description :", + "Instance Description:": "Description de l'instance :", + "{msg} does not fit the time format 'HH:mm'": "{msg} ne correspond pas au format de durée 'HH:mm'", + "Start Time:": "Heure de début :", + "In the Future:": "À venir :", + "End Time:": "Temps de fin :", + "Duration:": "Durée :", + "Timezone:": "Fuseau horaire :", + "Repeats?": "Répéter ?", + "Cannot create show in the past": "Impossible de créer une émission dans le passé", + "Cannot modify start date/time of the show that is already started": "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé", + "End date/time cannot be in the past": "La date/heure de Fin ne peut être dans le passé", + "Cannot have duration < 0m": "Ne peut pas avoir une durée < 0m", + "Cannot have duration 00h 00m": "Ne peut pas avoir une durée de 00h 00m", + "Cannot have duration greater than 24h": "Ne peut pas avoir une durée supérieure à 24h", + "Cannot schedule overlapping shows": "Ne peut pas programmer des émissions qui se chevauchent", + "Search Users:": "Recherche d'utilisateur·ice·s :", + "DJs:": "DJs :", + "Type Name:": "Nom du type :", + "Code:": "Code :", + "Visibility:": "Visibilité :", + "Analyze cue points:": "Analyser les points d'entrée et de sortie :", + "Code is not unique.": "Ce code n'est pas unique.", + "Username:": "Utilisateur·ice :", + "Password:": "Mot de Passe :", + "Verify Password:": "Vérification du mot de Passe :", + "Firstname:": "Prénom :", + "Lastname:": "Nom :", + "Email:": "Courriel :", + "Mobile Phone:": "Numéro de mobile :", + "Skype:": "Skype :", + "Jabber:": "Jabber :", + "User Type:": "Type d'utilisateur·ice :", + "Login name is not unique.": "Le Nom de connexion n'est pas unique.", + "Delete All Tracks in Library": "Supprimer toutes les pistes de la librairie", + "Date Start:": "Date de début :", + "Title:": "Titre :", + "Creator:": "Créateur·ice :", + "Album:": "Album :", + "Owner:": "Propriétaire :", + "Select a Type": "Sélectionner un type", + "Track Type:": "Type de piste :", + "Year:": "Année :", + "Label:": "Étiquette :", + "Composer:": "Compositeur·ice :", + "Conductor:": "Conducteur :", + "Mood:": "Atmosphère :", + "BPM:": "BPM :", + "Copyright:": "Copyright :", + "ISRC Number:": "Numéro ISRC :", + "Website:": "Site Internet :", + "Language:": "Langue :", + "Publish...": "Publier...", + "Start Time": "Heure de Début", + "End Time": "Heure de Fin", + "Interface Timezone:": "Fuseau horaire de l'interface :", + "Station Name": "Nom de la Station", + "Station Description": "Description de la station", + "Station Logo:": "Logo de la Station :", + "Note: Anything larger than 600x600 will be resized.": "Remarque : Tout ce qui est plus grand que 600x600 sera redimensionné.", + "Default Crossfade Duration (s):": "Durée du fondu enchaîné (en sec) :", + "Please enter a time in seconds (eg. 0.5)": "Veuillez entrer un temps en secondes (ex. 0.5)", + "Default Fade In (s):": "Fondu en Entrée par défaut (en sec) :", + "Default Fade Out (s):": "Fondu en Sortie par défaut (en sec) :", + "Track Type Upload Default": "Type de piste par défaut", + "Intro Autoloading Playlist": "Playlist automatique d'intro", + "Outro Autoloading Playlist": "Playlist automatique d'outro", + "Overwrite Podcast Episode Metatags": "Remplacer les metatags de l'épisode", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement.", + "Public LibreTime API": "API publique LibreTime", + "Required for embeddable schedule widget.": "Requis pour le widget de programmation.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n à des widgets externes pouvant être intégrés à votre site Web.", + "Default Language": "Langage par défaut", + "Station Timezone": "Fuseau horaire de la Station", + "Week Starts On": "La semaine commence le", + "Display login button on your Radio Page?": "Afficher le bouton de connexion sur votre page radio ?", + "Feature Previews": "Aperçus de fonctionnalités", + "Enable this to opt-in to test new features.": "Activer ceci pour vous inscrire pour tester les nouvelles fonctionnalités.", + "Auto Switch Off:": "Arrêt automatique :", + "Auto Switch On:": "Mise en marche automatique :", + "Switch Transition Fade (s):": "Changement de transition en fondu (en sec) :", + "Master Source Host:": "Hôte source maître :", + "Master Source Port:": "Port source maître :", + "Master Source Mount:": "Point de montage principal :", + "Show Source Host:": "Afficher l'hôte de la source :", + "Show Source Port:": "Afficher le port de la source :", + "Show Source Mount:": "Afficher le point de montage de la source :", + "Login": "Connexion", + "Password": "Mot de Passe", + "Confirm new password": "Confirmez le nouveau mot de passe", + "Password confirmation does not match your password.": "La confirmation du mot de passe ne correspond pas à votre mot de passe.", + "Email": "Courriel", + "Username": "Utilisateur", + "Reset password": "Réinitialisation du Mot de Passe", + "Back": "Retour", + "Now Playing": "En Lecture", + "Select Stream:": "Sélectionnez un flux :", + "Auto detect the most appropriate stream to use.": "Détecter automatiquement le flux le plus approprié à utiliser.", + "Select a stream:": "Sélectionnez un flux :", + " - Mobile friendly": " - Interface mobile", + " - The player does not support Opus streams.": " - Le lecteur ne fonctionne pas avec des flux Opus.", + "Embeddable code:": "Code à intégrer :", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur.", + "Preview:": "Aperçu :", + "Feed Privacy": "Confidentialité du flux", + "Public": "Publique", + "Private": "Privé", + "Station Language": "Langage de la station", + "Filter by Show": "Filtrer par émissions", + "All My Shows:": "Toutes mes émissions :", + "My Shows": "Mes émissions", + "Select criteria": "Sélectionner le critère", + "Bit Rate (Kbps)": "Taux d'échantillonage (Kbps)", + "Track Type": "Type de piste", + "Sample Rate (kHz)": "Taux d'échantillonage (Khz)", + "before": "avant", + "after": "après", + "between": "entre", + "Select unit of time": "Sélectionner une unité de temps", + "minute(s)": "minute(s)", + "hour(s)": "heure(s)", + "day(s)": "jour(s)", + "week(s)": "semaine(s)", + "month(s)": "mois", + "year(s)": "année(s)", + "hours": "heures", + "minutes": "minutes", + "items": "éléments", + "time remaining in show": "temps restant de l'émission", + "Randomly": "Aléatoirement", + "Newest": "Plus récent", + "Oldest": "Plus vieux", + "Most recently played": "Les plus joués récemment", + "Least recently played": "Les moins jouées récemment", + "Select Track Type": "Sélectionner un type de piste", + "Type:": "Type :", + "Dynamic": "Dynamique", + "Static": "Statique", + "Select track type": "Sélectionner un type de piste", + "Allow Repeated Tracks:": "Autoriser la répétition de pistes :", + "Allow last track to exceed time limit:": "Autoriser la dernière piste à dépasser l'horaire :", + "Sort Tracks:": "Trier les pistes :", + "Limit to:": "Limiter à :", + "Generate playlist content and save criteria": "Génération de la liste de lecture et sauvegarde des critères", + "Shuffle playlist content": "Contenu de la liste de lecture alèatoire", + "Shuffle": "Aléatoire", + "Limit cannot be empty or smaller than 0": "La Limite ne peut être vide ou plus petite que 0", + "Limit cannot be more than 24 hrs": "La Limite ne peut être supérieure à 24 heures", + "The value should be an integer": "La valeur doit être un entier", + "500 is the max item limit value you can set": "500 est la valeur maximale de l'élément que vous pouvez définir", + "You must select Criteria and Modifier": "Vous devez sélectionner Critères et Modification", + "'Length' should be in '00:00:00' format": "La 'Durée' doit être au format '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Seuls les entiers positifs sont autorisés (de 1 à 5) pour la valeur de texte", + "You must select a time unit for a relative datetime.": "Vous devez sélectionner une unité de temps pour une date relative.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Seuls les entiers positifs sont autorisés pour les dates relatives", + "The value has to be numeric": "La valeur doit être numérique", + "The value should be less then 2147483648": "La valeur doit être inférieure à 2147483648", + "The value cannot be empty": "La valeur ne peut pas être vide", + "The value should be less than %s characters": "La valeur doit être inférieure à %s caractères", + "Value cannot be empty": "La Valeur ne peut pas être vide", + "Stream Label:": "Label du Flux :", + "Artist - Title": "Artiste - Titre", + "Show - Artist - Title": "Émission - Artiste - Titre", + "Station name - Show name": "Nom de la Station - Nom de l'émission", + "Off Air Metadata": "Métadonnées Hors Antenne", + "Enable Replay Gain": "Activer", + "Replay Gain Modifier": "Modifier le Niveau du Gain", + "Hardware Audio Output:": "Sortie audio matérielle :", + "Output Type": "Type de Sortie", + "Enabled:": "Activé :", + "Mobile:": "Mobile :", + "Stream Type:": "Type de Flux :", + "Bit Rate:": "Débit :", + "Service Type:": "Type de service :", + "Channels:": "Canaux :", + "Server": "Serveur", + "Port": "Port", + "Mount Point": "Point de Montage", + "Name": "Nom", + "URL": "URL", + "Stream URL": "URL du flux", + "Push metadata to your station on TuneIn?": "Pousser les métadonnées sur votre station sur TuneIn ?", + "Station ID:": "Identifiant de la station :", + "Partner Key:": "Clé partenaire :", + "Partner Id:": "ID partenaire :", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez.", + "Import Folder:": "Répertoire d'importation :", + "Watched Folders:": "Répertoires Surveillés :", + "Not a valid Directory": "N'est pas un Répertoire valide", + "Value is required and can't be empty": "Une valeur est requise, ne peut pas être vide", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "« %value% » n'est pas une adresse de courriel valide dans le format de type partie-locale{'@'}nomdedomaine", + "{msg} does not fit the date format '%format%'": "{msg} ne correspond pas au format de la date '%format%'", + "{msg} is less than %min% characters long": "{msg} est inférieur à %min% charactères", + "{msg} is more than %max% characters long": "{msg} est plus grand de %min% charactères", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} n'est pas entre '%min%' et '%max%', inclusivement", + "Passwords do not match": "Les mots de passe ne correspondent pas", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bonjour %s , \n\nVeuillez cliquer sur ce lien pour réinitialiser votre mot de passe : ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nEn cas de problèmes, contactez notre équipe de support : %s", + "\n\nThank you,\nThe %s Team": "\n\nMerci,\nL'équipe %s", + "%s Password Reset": "%s Réinitialisation du mot de passe", + "Cue in and cue out are null.": "Le points d'entrée et de sortie sont indéfinis.", + "Can't set cue out to be greater than file length.": "Ne peut pas fixer un point de sortie plus grand que la durée du fichier.", + "Can't set cue in to be larger than cue out.": "Impossible de définir un point d'entrée plus grand que le point de sortie.", + "Can't set cue out to be smaller than cue in.": "Ne peux pas fixer un point de sortie plus petit que le point d'entrée.", + "Upload Time": "Temps de téléversement", + "None": "Vide", + "Powered by %s": "Propulsé par %s", + "Select Country": "Selectionner le Pays", + "livestream": "diffusion en direct", + "Cannot move items out of linked shows": "Vous ne pouvez pas déplacer les éléments sur les émissions liées", + "The schedule you're viewing is out of date! (sched mismatch)": "Le calendrier que vous consultez n'est pas à jour ! (décalage calendaire)", + "The schedule you're viewing is out of date! (instance mismatch)": "La programmation que vous consultez n'est pas à jour ! (décalage d'instance)", + "The schedule you're viewing is out of date!": "Le calendrier que vous consultez n'est pas à jour !", + "You are not allowed to schedule show %s.": "Vous n'êtes pas autorisé à programme l'émission %s.", + "You cannot add files to recording shows.": "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées.", + "The show %s is over and cannot be scheduled.": "L émission %s est terminé et ne peut pas être programmé.", + "The show %s has been previously updated!": "L'émission %s a été précédemment mise à jour !", + "Content in linked shows cannot be changed while on air!": "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !", + "Cannot schedule a playlist that contains missing files.": "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants.", + "A selected File does not exist!": "Un fichier sélectionne n'existe pas !", + "Shows can have a max length of 24 hours.": "Les émissions peuvent avoir une durée maximale de 24 heures.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Ne peux pas programmer des émissions qui se chevauchent. \nRemarque : Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions.", + "Rebroadcast of %s from %s": "Rediffusion de %s à %s", + "Length needs to be greater than 0 minutes": "La durée doit être supérieure à 0 minute", + "Length should be of form \"00h 00m\"": "La durée doit être de la forme \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL doit être de la forme \"https://example.org\"", + "URL should be 512 characters or less": "L'URL doit être de 512 caractères ou moins", + "No MIME type found for webstream.": "Aucun type MIME trouvé pour le Flux Web.", + "Webstream name cannot be empty": "Le Nom du Flux Web ne peut être vide", + "Could not parse XSPF playlist": "Impossible d'analyser la Sélection XSPF", + "Could not parse PLS playlist": "Impossible d'analyser la Sélection PLS", + "Could not parse M3U playlist": "Impossible d'analyser la Séléction M3U", + "Invalid webstream - This appears to be a file download.": "Flux Web Invalide - Ceci semble être un fichier téléchargeable.", + "Unrecognized stream type: %s": "Type de flux non reconnu : %s", + "Record file doesn't exist": "L'enregistrement du fichier n'existe pas", + "View Recorded File Metadata": "Afficher les métadonnées du fichier enregistré", + "Schedule Tracks": "Ajouter des pistes", + "Clear Show": "Vider le contenu de l'émission", + "Cancel Show": "Annuler l'émission", + "Edit Instance": "Modifier cet élément", + "Edit Show": "Édition de l'émission", + "Delete Instance": "Supprimer cet élément", + "Delete Instance and All Following": "Supprimer cet élément et tous les suivants", + "Permission denied": "Permission refusée", + "Can't drag and drop repeating shows": "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois", + "Can't move a past show": "Impossible de déplacer une émission déjà diffusée", + "Can't move show into past": "Impossible de déplacer une émission dans le passé", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions.", + "Show was deleted because recorded show does not exist!": "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas !", + "Must wait 1 hour to rebroadcast.": "Doit attendre 1 heure pour retransmettre.", + "Track": "Piste", + "Played": "Joué", + "Auto-generated smartblock for podcast": "Playlist intelligente géré automatiquement pour le podcast", + "Webstreams": "Flux web" } diff --git a/webapp/src/locale/hr_HR.json b/webapp/src/locale/hr_HR.json index f640ebeba1..6a4916e37f 100644 --- a/webapp/src/locale/hr_HR.json +++ b/webapp/src/locale/hr_HR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Godina %s mora biti u rasponu od 1753. – 9999.", - "%s-%s-%s is not a valid date": "%s-%s-%s nije ispravan datum", - "%s:%s:%s is not a valid time": "%s:%s:%s nije ispravno vrijeme", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "Koristi standardne podatke stanice", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Stranica radija", - "Calendar": "Kalendar", - "Widgets": "Programčići", - "Player": "Player", - "Weekly Schedule": "Tjedni raspored", - "Settings": "Postavke", - "General": "Opće", - "My Profile": "Moj profil", - "Users": "Korisnici", - "Track Types": "Vrste snimaka", - "Streams": "Prijenosi", - "Status": "Stanje", - "Analytics": "Analitike", - "Playout History": "Povijest reproduciranih pjesama", - "History Templates": "Predlošci za povijest", - "Listener Stats": "Statistika slušatelja", - "Show Listener Stats": "Prikaži statistiku slušatelja", - "Help": "Pomoć", - "Getting Started": "Prvi koraci", - "User Manual": "Korisnički priručnik", - "Get Help Online": "Pomoć na internetu", - "Contribute to LibreTime": "Doprinesi projektu LibreTime", - "What's New?": "Što je novo?", - "You are not allowed to access this resource.": "Ne smiješ pristupiti ovom izvoru.", - "You are not allowed to access this resource. ": "Ne smiješ pristupiti ovom izvoru. ", - "File does not exist in %s": "Datoteka ne postoji u %s", - "Bad request. no 'mode' parameter passed.": "Neispravan zahtjev. Prametar „mode” nije predan.", - "Bad request. 'mode' parameter is invalid": "Neispravan zahtjev. Prametar „mode” je neispravan", - "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", - "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", - "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Stranica nije pronađena.", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s nije pronađen", - "Something went wrong.": "Dogodila se greška.", - "Preview": "Pregled", - "Add to Playlist": "Dodaj na Popis Pjesama", - "Add to Smart Block": "Dodaj u pametni blok", - "Delete": "Izbriši", - "Edit...": "Uredi …", - "Download": "Preuzimanje", - "Duplicate Playlist": "Dupliciraj playlistu", - "Duplicate Smartblock": "Dupliciraj pametni blok", - "No action available": "Nema dostupnih akcija", - "You don't have permission to delete selected items.": "Nemaš dozvole za brisanje odabrane stavke.", - "Could not delete file because it is scheduled in the future.": "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti.", - "Could not delete file(s).": "Nije bilo moguće izbrisati datoteku(e).", - "Copy of %s": "Kopiranje od %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa.", - "Audio Player": "Audio player", - "Something went wrong!": "Dogodila se greška!", - "Recording:": "Snimanje:", - "Master Stream": "Prijenos mastera", - "Live Stream": "Prijenos uživo", - "Nothing Scheduled": "Ništa nije zakazano", - "Current Show:": "Trenutačna emisija:", - "Current": "Trenutačna", - "You are running the latest version": "Pokrećeš najnoviju verziju", - "New version available: ": "Dostupna je nova verzija: ", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Dodaj u trenutni popis pjesama", - "Add to current smart block": "Dodaj u trenutačni pametni blok", - "Adding 1 Item": "Dodavanje 1 stavke", - "Adding %s Items": "Dodavanje %s stavki", - "You can only add tracks to smart blocks.": "Možeš dodavati samo pjesme u pametne blokove.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste.", - "Please select a cursor position on timeline.": "Odaberi mjesto pokazivača na vremenskoj crti.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Dodaj", - "New": "Nova", - "Edit": "Uredi", - "Add to Schedule": "Dodaj rasporedu", - "Add to next show": "Dodaj sljedećoj emisiji", - "Add to current show": "Dodaj trenutačnoj emisiji", - "Add after selected items": "Dodaj nakon odabranih stavki", - "Publish": "Objavi", - "Remove": "Ukloni", - "Edit Metadata": "Uredi metapodatke", - "Add to selected show": "Dodaj odabranoj emisiji", - "Select": "Odaberi", - "Select this page": "Odaberi ovu stranicu", - "Deselect this page": "Odznači ovu stranicu", - "Deselect all": "Odznači sve", - "Are you sure you want to delete the selected item(s)?": "Stvarno želiš izbrisati odabranu(e) stavku(e)?", - "Scheduled": "Zakazano", - "Tracks": "Snimke", - "Playlist": "Playlista", - "Title": "Naslov", - "Creator": "Tvorac", - "Album": "Album", - "Bit Rate": "Brzina prijenosa", - "BPM": "BPM", - "Composer": "Kompozitor", - "Conductor": "Dirigent", - "Copyright": "Autorsko pravo", - "Encoded By": "Kodirano je po", - "Genre": "Žanr", - "ISRC": "ISRC", - "Label": "Etiketa", - "Language": "Jezik", - "Last Modified": "Zadnja promjena", - "Last Played": "Zadnji put svirano", - "Length": "Trajanje", - "Mime": "Vrsta", - "Mood": "Ugođaj", - "Owner": "Vlasnik", - "Replay Gain": "Pojačanje reprodukcije", - "Sample Rate": "Frekvencija", - "Track Number": "Broj snimke", - "Uploaded": "Preneseno", - "Website": "Web stranica", - "Year": "Godina", - "Loading...": "Učitavanje...", - "All": "Sve", - "Files": "Datoteke", - "Playlists": "Playliste", - "Smart Blocks": "Pametni blokovi", - "Web Streams": "Prijenosi", - "Unknown type: ": "Nepoznata vrsta: ", - "Are you sure you want to delete the selected item?": "Stvarno želiš izbrisati odabranu stavku?", - "Uploading in progress...": "Prijenos je u tijeku...", - "Retrieving data from the server...": "Preuzimanje podataka s poslužitelja …", - "Import": "Uvezi", - "Imported?": "Uvezeno?", - "View": "Prikaz", - "Error code: ": "Kod pogreške: ", - "Error msg: ": "Poruka pogreške: ", - "Input must be a positive number": "Unos mora biti pozitivan broj", - "Input must be a number": "Unos mora biti broj", - "Input must be in the format: yyyy-mm-dd": "Unos mora biti u obliku: gggg-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Unos mora biti u obliku: hh:mm:ss.t", - "My Podcast": "Moj Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?", - "Open Media Builder": "Otvori Media Builder", - "please put in a time '00:00:00 (.0)'": "upiši vrijeme „00:00:00 (.0)”", - "Please enter a valid time in seconds. Eg. 0.5": "Upiši ispravno vrijeme u sekundama. Npr. 0,5", - "Your browser does not support playing this file type: ": "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: ", - "Dynamic block is not previewable": "Dinamički blok se ne može pregledati", - "Limit to: ": "Ograniči na: ", - "Playlist saved": "Playlista je spremljena", - "Playlist shuffled": "Playlista je izmiješana", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'.", - "Listener Count on %s: %s": "Broj slušatelja %s: %s", - "Remind me in 1 week": "Podsjeti me za 1 tjedan", - "Remind me never": "Nikada me nemoj podsjetiti", - "Yes, help Airtime": "Da, pomažem Airtime-u", - "Image must be one of jpg, jpeg, png, or gif": "Slika mora biti jpg, jpeg, png, ili gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Pametni blok je izmiješan", - "Smart block generated and criteria saved": "Pametni blok je generiran i kriteriji su spremljeni", - "Smart block saved": "Pametni blok je spremljen", - "Processing...": "Obrada...", - "Select modifier": "Odaberi modifikator", - "contains": "sadrži", - "does not contain": "ne sadrži", - "is": "je", - "is not": "nije", - "starts with": "počinje sa", - "ends with": "završava sa", - "is greater than": "je veći od", - "is less than": "je manji od", - "is in the range": "je u rasponu", - "Generate": "Generiraj", - "Choose Storage Folder": "Odaberi mapu za spremanje", - "Choose Folder to Watch": "Odaberi mapu za praćenje", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Stvarno želiš promijeniti mapu za spremanje?\nTo će ukloniti datoteke iz tvoje Airtime medijateke!", - "Manage Media Folders": "Upravljanje Medijske Mape", - "Are you sure you want to remove the watched folder?": "Stvarno želiš ukloniti nadzorsku mapu?", - "This path is currently not accessible.": "Ovaj put nije trenutno dostupan.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni.", - "Connected to the streaming server": "Priključen je na poslužitelju", - "The stream is disabled": "Prijenos je onemogućen", - "Getting information from the server...": "Preuzimanje informacija s poslužitelja …", - "Can not connect to the streaming server": "Ne može se povezati na poslužitelju", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku.", - "Warning: You cannot change this field while the show is currently playing": "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava", - "No result found": "Nema pronađenih rezultata", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju.", - "Specify custom authentication which will work only for this show.": "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju.", - "The show instance doesn't exist anymore!": "Emisija u ovom slučaju više ne postoji!", - "Warning: Shows cannot be re-linked": "Upozorenje: Emisije ne može ponovno se povezati", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima.", - "Show": "Emisija", - "Show is empty": "Emisija je prazna", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Preuzimanje podataka s poslužitelja …", - "This show has no scheduled content.": "Ova emisija nema zakazanog sadržaja.", - "This show is not completely filled with content.": "Ova emisija nije u potpunosti ispunjena sa sadržajem.", - "January": "Siječanj", - "February": "Veljača", - "March": "Ožujak", - "April": "Travanj", - "May": "Svibanj", - "June": "Lipanj", - "July": "Srpanj", - "August": "Kolovoz", - "September": "Rujan", - "October": "Listopad", - "November": "Studeni", - "December": "Prosinac", - "Jan": "Sij", - "Feb": "Vel", - "Mar": "Ožu", - "Apr": "Tra", - "Jun": "Lip", - "Jul": "Srp", - "Aug": "Kol", - "Sep": "Ruj", - "Oct": "Lis", - "Nov": "Stu", - "Dec": "Pro", - "Today": "Danas", - "Day": "Dan", - "Week": "Tjedan", - "Month": "", - "Sunday": "Nedjelja", - "Monday": "Ponedjeljak", - "Tuesday": "Utorak", - "Wednesday": "Srijeda", - "Thursday": "Četvrtak", - "Friday": "Petak", - "Saturday": "Subota", - "Sun": "Ned", - "Mon": "Pon", - "Tue": "Uto", - "Wed": "Sri", - "Thu": "Čet", - "Fri": "Pet", - "Sat": "Sub", - "Shows longer than their scheduled time will be cut off by a following show.": "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom.", - "Cancel Current Show?": "Prekinuti trenutačnu emisiju?", - "Stop recording current show?": "Zaustaviti snimanje emisije?", - "Ok": "U redu", - "Contents of Show": "Sadržaj emisije", - "Remove all content?": "Ukloniti sav sadržaj?", - "Delete selected item(s)?": "Izbrisati odabranu(e) stavku(e)?", - "Start": "Početak", - "End": "Završetak", - "Duration": "Trajanje", - "Filtering out ": "Izdvjanje ", - " of ": " od ", - " records": " snimaka", - "There are no shows scheduled during the specified time period.": "U navedenom vremenskom razdoblju nema zakazanih emisija.", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Postupno pojačavanje glasnoće", - "Fade Out": "Postupno smanjivanje glasnoće", - "Show Empty": "Prazna emisija", - "Recording From Line In": "Snimanje sa Line In", - "Track preview": "Pregled snimaka", - "Cannot schedule outside a show.": "Nije moguće zakazati izvan emisije.", - "Moving 1 Item": "Premještanje 1 stavke", - "Moving %s Items": "Premještanje %s stavki", - "Save": "Spremi", - "Cancel": "Odustani", - "Fade Editor": "Uređivač prijelaza", - "Cue Editor": "Cue Uređivač", - "Waveform features are available in a browser supporting the Web Audio API": "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku", - "Select all": "Odaberi sve", - "Select none": "Odaberi ništa", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Ukloni odabrane zakazane stavke", - "Jump to the current playing track": "Skoči na trenutnu sviranu pjesmu", - "Jump to Current": "Skoči na trenutnu", - "Cancel current show": "Prekini trenutačnu emisiju", - "Open library to add or remove content": "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja", - "Add / Remove Content": "Dodaj / Ukloni Sadržaj", - "in use": "u upotrebi", - "Disk": "Disk", - "Look in": "Pogledaj unutra", - "Open": "Otvori", - "Admin": "Administrator", - "DJ": "Disk-džokej", - "Program Manager": "Voditelj programa", - "Guest": "Gost", - "Guests can do the following:": "Gosti mogu učiniti sljedeće:", - "View schedule": "Prikaži raspored", - "View show content": "Prikaži sadržaj emisije", - "DJs can do the following:": "Disk-džokeji mogu učiniti sljedeće:", - "Manage assigned show content": "Upravljanje dodijeljen sadržaj emisije", - "Import media files": "Uvezi medijske datoteke", - "Create playlists, smart blocks, and webstreams": "Izradi popise naslova, pametnih blokova, i prijenose", - "Manage their own library content": "Upravljanje svoje knjižničnog sadržaja", - "Program Managers can do the following:": "Voditelj programa može:", - "View and manage show content": "Prikaži i upravljaj sadržajem emisije", - "Schedule shows": "Zakaži emisije", - "Manage all library content": "Upravljanje sve sadržaje knjižnica", - "Admins can do the following:": "Administratori mogu učiniti sljedeće:", - "Manage preferences": "Upravljanje postavke", - "Manage users": "Upravljanje korisnike", - "Manage watched folders": "Upravljanje nadziranih datoteke", - "Send support feedback": "Pošalji povratne informacije", - "View system status": "Prikaži stanje sustava", - "Access playout history": "Pristup za povijest puštenih pjesama", - "View listener stats": "Prikaži statistiku slušatelja", - "Show / hide columns": "Prikaži/sakrij stupce", - "Columns": "Stupci", - "From {from} to {to}": "Od {from} do {to}", - "kbps": "kbps", - "yyyy-mm-dd": "gggg-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Ne", - "Mo": "Po", - "Tu": "Ut", - "We": "Sr", - "Th": "Če", - "Fr": "Pe", - "Sa": "Su", - "Close": "Zatvori", - "Hour": "Sat", - "Minute": "Minuta", - "Done": "Gotovo", - "Select files": "Odaberi datoteke", - "Add files to the upload queue and click the start button.": "Dodaj datoteke i klikni na 'Pokreni Upload' dugme.", - "Filename": "", - "Size": "", - "Add Files": "Dodaj Datoteke", - "Stop Upload": "Prekini prijenos", - "Start upload": "Započni prijenos", - "Start Upload": "", - "Add files": "Dodaj datoteke", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Preneseno %d/%d datoteka", - "N/A": "N/A", - "Drag files here.": "Povuci datoteke ovamo.", - "File extension error.": "Pogrešan datotečni nastavak.", - "File size error.": "Pogrešna veličina datoteke.", - "File count error.": "Pogrešan broj datoteka.", - "Init error.": "Init pogreška.", - "HTTP Error.": "HTTP pogreška.", - "Security error.": "Sigurnosna pogreška.", - "Generic error.": "Opća pogreška.", - "IO error.": "IO pogreška.", - "File: %s": "Datoteka: %s", - "%d files queued": "%d datoteka na čekanju", - "File: %f, size: %s, max file size: %m": "Datoteka: %f, veličina: %s, maks veličina datoteke: %m", - "Upload URL might be wrong or doesn't exist": "URL prijenosa možda nije ispravan ili ne postoji", - "Error: File too large: ": "Pogreška: Datoteka je prevelika: ", - "Error: Invalid file extension: ": "Pogreška: Nevažeći datotečni nastavak: ", - "Set Default": "Postavi standardne postavke", - "Create Entry": "Stvaranje Unosa", - "Edit History Record": "Uredi zapis povijesti", - "No Show": "Nema Programa", - "Copied %s row%s to the clipboard": "%s red%s je kopiran u međumemoriju", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "Prvo", - "Last": "", - "Next": "", - "Previous": "Prethodno", - "Search:": "Traži:", - "No matching records found": "", - "Drag tracks here from the library": "Povuci snimke ovamo iz medijateke", - "No tracks were played during the selected time period.": "", - "Unpublish": "Poništi objavu", - "No matching results found.": "", - "Author": "Autor", - "Description": "Opis", - "Link": "", - "Publication Date": "Datum objavljivanja", - "Import Status": "Uvezi stanje", - "Actions": "", - "Delete from Library": "Izbriši iz medijateke", - "Successfully imported": "Uspješno uvezeno", - "Show _MENU_": "Prikaži _MENU_", - "Show _MENU_ entries": "Prikaži unose za _MENU_", - "Showing _START_ to _END_ of _TOTAL_ entries": "Prikaz _START_ do _END_ od _TOTAL_ unosa", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Prikaz _START_ do _END_ od _TOTAL_ snimaka", - "Showing _START_ to _END_ of _TOTAL_ track types": "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka", - "Showing _START_ to _END_ of _TOTAL_ users": "Prikaz _START_ do _END_ od _TOTAL_ korisnika", - "Showing 0 to 0 of 0 entries": "Prikaz 0 do 0 od 0 unosa", - "Showing 0 to 0 of 0 tracks": "Prikaz 0 do 0 od 0 snimaka", - "Showing 0 to 0 of 0 track types": "Prikaz 0 do 0 od 0 vrsta snimaka", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "Stvarno želiš izbrisati ovu vrstu snimke?", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktivirano", - "Disabled": "Deaktivirano", - "Cancel upload": "Prekini prijenos", - "Type": "Vrsta", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "Postavke podcasta su spremljene", - "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", - "Can't delete yourself!": "Ne možeš sebe izbrisati!", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "Pregled playliste", - "Smart Block": "Pametni blok", - "Webstream preview": "Pregled internetskog prijenosa", - "You don't have permission to view the library.": "Nemaš dozvole za prikaz medijateke.", - "Now": "Sada", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "URL feeda", - "Import Date": "Uvezi datum", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "Nije moguće zakazati izvan emisije.\nPokušaj najprije stvoriti emisiju.", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Upiši svoje korisničko ime i lozinku.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo.", - "You are viewing an older version of %s": "Gledaš stariju verziju %s", - "You cannot add tracks to dynamic blocks.": "Ne možeš dodavati pjesme u dinamične blokove.", - "You don't have permission to delete selected %s(s).": "Nemaš dozvole za brisanje odabranih %s.", - "You can only add tracks to smart block.": "Možeš samo dodati pjesme u pametni blok.", - "Untitled Playlist": "Neimenovana playlista", - "Untitled Smart Block": "Neimenovan pametni blok", - "Unknown Playlist": "Nepoznata playlista", - "Preferences updated.": "Postavke su ažurirane.", - "Stream Setting Updated.": "Postavka prijenosa je ažurirana.", - "path should be specified": "put bi trebao biti specificiran", - "Problem with Liquidsoap...": "Problem s Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Ponovo emitiraj emisiju %s od %s na %s", - "Select cursor": "Odaberi pokazivač", - "Remove cursor": "Ukloni pokazivač", - "show does not exist": "emisija ne postoji", - "Track Type added successfully!": "Vrsta snimke uspješno dodana!", - "Track Type updated successfully!": "Vrsta snimke uspješno ažurirana!", - "User added successfully!": "Korisnik je uspješno dodan!", - "User updated successfully!": "Korisnik je uspješno ažuriran!", - "Settings updated successfully!": "Postavke su uspješno ažurirane!", - "Untitled Webstream": "Neimenovan internetski prijenos", - "Webstream saved.": "Internetski prijenos je spremljen.", - "Invalid form values.": "Nevažeće vrijednosti obrasca.", - "Invalid character entered": "Uneseni su nevažeći znakovi", - "Day must be specified": "Dan se mora navesti", - "Time must be specified": "Vrijeme mora biti navedeno", - "Must wait at least 1 hour to rebroadcast": "Moraš čekati najmanje 1 sat za re-emitiranje", - "Add Autoloading Playlist ?": "", - "Select Playlist": "Odaberi playlistu", - "Repeat Playlist Until Show is Full ?": "Ponavljati playlistu sve dok emisija nije potpuna?", - "Use %s Authentication:": "Koristi %s autentifikaciju:", - "Use Custom Authentication:": "Koristi prilagođenu autentifikaciju:", - "Custom Username": "Prilagođeno korisničko Ime", - "Custom Password": "Prilagođena lozinka", - "Host:": "Host:", - "Port:": "Priključak:", - "Mount:": "", - "Username field cannot be empty.": "Polje korisničkog imena ne smije biti prazno.", - "Password field cannot be empty.": "'Lozinka' polja ne smije ostati prazno.", - "Record from Line In?": "Snimanje sa Line In?", - "Rebroadcast?": "Ponovo emitirati?", - "days": "dani", - "Link:": "Link:", - "Repeat Type:": "Vrsta ponavljanja:", - "weekly": "tjedno", - "every 2 weeks": "svaka 2 tjedna", - "every 3 weeks": "svaka 3 tjedna", - "every 4 weeks": "svaka 4 tjedna", - "monthly": "mjesečno", - "Select Days:": "Odaberi dane:", - "Repeat By:": "Ponavljaj po:", - "day of the month": "dan u mjesecu", - "day of the week": "dan u tjednu", - "Date End:": "Datum završetka:", - "No End?": "Nema Kraja?", - "End date must be after start date": "Datum završetka mora biti nakon datuma početka", - "Please select a repeat day": "Odaberi dan ponavljanja", - "Background Colour:": "Boja pozadine:", - "Text Colour:": "Boja teksta:", - "Current Logo:": "Trenutačni logotip:", - "Show Logo:": "Prikaži logotip:", - "Logo Preview:": "", - "Name:": "Naziv:", - "Untitled Show": "Neimenovana emisija", - "URL:": "URL:", - "Genre:": "Žanr:", - "Description:": "Opis:", - "Instance Description:": "Opis instance:", - "{msg} does not fit the time format 'HH:mm'": "{msg} se ne uklapa u vremenskom formatu 'HH:mm'", - "Start Time:": "Vrijeme početka:", - "In the Future:": "Ubuduće:", - "End Time:": "Vrijeme završetka:", - "Duration:": "Trajanje:", - "Timezone:": "Vremenska zona:", - "Repeats?": "Ponavljanje?", - "Cannot create show in the past": "Ne može se stvoriti emisija u prošlosti", - "Cannot modify start date/time of the show that is already started": "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela", - "End date/time cannot be in the past": "Datum završetka i vrijeme ne može biti u prošlosti", - "Cannot have duration < 0m": "Ne može trajati kraće od 0 min", - "Cannot have duration 00h 00m": "Ne može trajati 00 h 00 min", - "Cannot have duration greater than 24h": "Ne može trajati duže od 24 h", - "Cannot schedule overlapping shows": "Nije moguće zakazati preklapajuće emisije", - "Search Users:": "Traži korisnike:", - "DJs:": "Disk-džokeji:", - "Type Name:": "Ime vrste:", - "Code:": "Kod:", - "Visibility:": "Vidljivost:", - "Analyze cue points:": "", - "Code is not unique.": "Kod nije jedinstven.", - "Username:": "Korisničko ime:", - "Password:": "Lozinka:", - "Verify Password:": "Potvrdi lozinku:", - "Firstname:": "Ime:", - "Lastname:": "Prezime:", - "Email:": "E-mail:", - "Mobile Phone:": "Mobitel:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Vrsta korisnika:", - "Login name is not unique.": "Ime prijave nije jedinstveno.", - "Delete All Tracks in Library": "Izbriši sve snimke u medijateci", - "Date Start:": "Datum početka:", - "Title:": "Naslov:", - "Creator:": "Tvorac:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "Odaberi jednu vrstu", - "Track Type:": "Vrsta snimke:", - "Year:": "Godina:", - "Label:": "Naljepnica:", - "Composer:": "Kompozitor:", - "Conductor:": "Dirigent:", - "Mood:": "Raspoloženje:", - "BPM:": "BPM:", - "Copyright:": "Autorsko pravo:", - "ISRC Number:": "ISRC Broj:", - "Website:": "Web stranica:", - "Language:": "Jezik:", - "Publish...": "Objavi …", - "Start Time": "Vrijeme početka", - "End Time": "Vrijeme završetka", - "Interface Timezone:": "Vremenska zona sučelja:", - "Station Name": "Ime stanice", - "Station Description": "Opis stanice", - "Station Logo:": "Logotip stanice:", - "Note: Anything larger than 600x600 will be resized.": "Napomena: Sve veća od 600x600 će se mijenjati.", - "Default Crossfade Duration (s):": "Standardno trajanje međuprijelaza (s):", - "Please enter a time in seconds (eg. 0.5)": "Upiši vrijeme u sekundama (npr. 0,5)", - "Default Fade In (s):": "Standardno postupno pojačavanje glasnoće (s):", - "Default Fade Out (s):": "Standardno postupno smanjivanje glasnoće (s):", - "Track Type Upload Default": "Standard za prijenos vrsta snimaka", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Javni LibreTime API", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "Standardni jezik", - "Station Timezone": "Vremenska zona stanice", - "Week Starts On": "Prvi dan tjedna", - "Display login button on your Radio Page?": "", - "Feature Previews": "Pregledi funkcija", - "Enable this to opt-in to test new features.": "Aktiviraj ovo za testiranje novih funkcija.", - "Auto Switch Off:": "Automatsko isključivanje:", - "Auto Switch On:": "Automatsko uključivanje:", - "Switch Transition Fade (s):": "Promijeni postupni prijelaz (s):", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "Prikaži host izvora:", - "Show Source Port:": "Prikaži priključak izvora:", - "Show Source Mount:": "Prikaži pogon izvora:", - "Login": "Prijava", - "Password": "Lozinka", - "Confirm new password": "Potvrdi novu lozinku", - "Password confirmation does not match your password.": "Lozinke koje ste unijeli ne podudaraju se.", - "Email": "E-mail", - "Username": "Korisničko ime", - "Reset password": "Resetuj lozinku", - "Back": "Natrag", - "Now Playing": "Trenutno Izvođena", - "Select Stream:": "Odaberi emisiju:", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "Odaberi jednu emisiju:", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "Ugradiv kod:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "Pregled:", - "Feed Privacy": "Privatnost feeda", - "Public": "Javni", - "Private": "Privatni", - "Station Language": "Jezik stanice", - "Filter by Show": "Filtriraj po emisijama", - "All My Shows:": "Sve moje emisije:", - "My Shows": "", - "Select criteria": "Odaberi kriterije", - "Bit Rate (Kbps)": "Brzina prijenosa (Kbps)", - "Track Type": "Vrsta snimke", - "Sample Rate (kHz)": "Frekvencija (kHz)", - "before": "prije", - "after": "nakon", - "between": "između", - "Select unit of time": "Odaberi vremensku jedinicu", - "minute(s)": "minute", - "hour(s)": "sati", - "day(s)": "dani", - "week(s)": "tjedni", - "month(s)": "mjeseci", - "year(s)": "godine", - "hours": "sati", - "minutes": "minute", - "items": "elementi", - "time remaining in show": "preostalo vrijeme u emisiji", - "Randomly": "Slučajno", - "Newest": "Najnovije", - "Oldest": "Najstarije", - "Most recently played": "Zadnje reproducirane", - "Least recently played": "Najstarije reproducirane", - "Select Track Type": "Odaberi vrstu snimke", - "Type:": "Vrsta:", - "Dynamic": "Dinamički", - "Static": "Statični", - "Select track type": "Odaberi vrstu snimke", - "Allow Repeated Tracks:": "Dozvoli ponavljanje snimaka:", - "Allow last track to exceed time limit:": "Dozvoli da zadnji zapis prekorači vremensko ograničenje:", - "Sort Tracks:": "Redoslijed snimaka:", - "Limit to:": "Ograniči na:", - "Generate playlist content and save criteria": "Generiraj sadržaj playliste i spremi kriterije", - "Shuffle playlist content": "Promiješaj sadržaj playliste", - "Shuffle": "Promiješaj", - "Limit cannot be empty or smaller than 0": "Ograničenje ne može biti prazan ili manji od 0", - "Limit cannot be more than 24 hrs": "Ograničenje ne može biti više od 24 sati", - "The value should be an integer": "Vrijednost bi trebala biti cijeli broj", - "500 is the max item limit value you can set": "500 je max stavku graničnu vrijednost moguće je podesiti", - "You must select Criteria and Modifier": "Moraš odabrati Kriteriju i Modifikaciju", - "'Length' should be in '00:00:00' format": "'Dužina' trebala biti u '00:00:00' obliku", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Vrijednost mora biti numerička", - "The value should be less then 2147483648": "Vrijednost bi trebala biti manja od 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Vrijednost bi trebala biti manja od %s znakova", - "Value cannot be empty": "Vrijednost ne može biti prazna", - "Stream Label:": "Oznaka prijenosa:", - "Artist - Title": "Izvođač – Naslov", - "Show - Artist - Title": "Emisija – Izvođač – Naslov", - "Station name - Show name": "Ime stanice – Ime emisije", - "Off Air Metadata": "Off Air metapodaci", - "Enable Replay Gain": "Aktiviraj pojačanje glasnoće", - "Replay Gain Modifier": "Modifikator pojačanje glasnoće", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Aktivirano:", - "Mobile:": "Mobitel:", - "Stream Type:": "Vrsta prijenosa:", - "Bit Rate:": "Brzina prijenosa:", - "Service Type:": "Vrsta usluge:", - "Channels:": "Kanali:", - "Server": "Poslužitelj", - "Port": "Priključak", - "Mount Point": "Točka Montiranja", - "Name": "Ime", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "ID stanice:", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Mapa uvoza:", - "Watched Folders:": "Mape praćenja:", - "Not a valid Directory": "Nije ispravan direktorij", - "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nije valjana e-mail adresa u osnovnom obliku local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} ne odgovara po obliku datuma '%format%'", - "{msg} is less than %min% characters long": "{msg} je manji od %min% dugačko znakova", - "{msg} is more than %max% characters long": "{msg} je više od %max% dugačko znakova", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nije između '%min%' i '%max%', uključivo", - "Passwords do not match": "Lozinke se ne podudaraju", - "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "\n\nHvala,\nTim %s", - "%s Password Reset": "Resetiranje lozinke za %s", - "Cue in and cue out are null.": "Cue in i cue out su nule.", - "Can't set cue out to be greater than file length.": "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke.", - "Can't set cue in to be larger than cue out.": "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'.", - "Can't set cue out to be smaller than cue in.": "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'.", - "Upload Time": "Vrijeme prijenosa", - "None": "Ništa", - "Powered by %s": "", - "Select Country": "Odaberi zemlju", - "livestream": "prijenos uživo", - "Cannot move items out of linked shows": "Nije moguće premjestiti stavke iz povezanih emisija", - "The schedule you're viewing is out of date! (sched mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)", - "The schedule you're viewing is out of date! (instance mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost instance)", - "The schedule you're viewing is out of date!": "Raspored koji gledaš nije aktualan!", - "You are not allowed to schedule show %s.": "Ne smijes zakazati rasporednu emisiju %s.", - "You cannot add files to recording shows.": "Ne možeš dodavati datoteke za snimljene emisije.", - "The show %s is over and cannot be scheduled.": "Emisija %s je gotova i ne mogu biti zakazana.", - "The show %s has been previously updated!": "Emisija %s je već prije bila ažurirana!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke.", - "A selected File does not exist!": "Odabrana Datoteka ne postoji!", - "Shows can have a max length of 24 hours.": "Emisija može trajati maksimalno 24 sata.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nije moguće zakazati preklapajuće emisije.\nNapomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja.", - "Rebroadcast of %s from %s": "Ponovo emitiraj emisiju %s od %s", - "Length needs to be greater than 0 minutes": "Duljina mora biti veća od 0 minuta", - "Length should be of form \"00h 00m\"": "Duljina mora biti u obliku „00h 00m”", - "URL should be of form \"https://example.org\"": "URL mora biti u obliku „https://example.org”", - "URL should be 512 characters or less": "URL mora sadržati 512 znakova ili manje", - "No MIME type found for webstream.": "Ne postoji MIME tip za prijenos.", - "Webstream name cannot be empty": "Ime internetskog prijenosa ne može biti prazno", - "Could not parse XSPF playlist": "Nije bilo moguće analizirati XSPF playlistu", - "Could not parse PLS playlist": "Nije bilo moguće analizirati PLS playlistu", - "Could not parse M3U playlist": "Nije bilo moguće analizirati M3U playlistu", - "Invalid webstream - This appears to be a file download.": "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke.", - "Unrecognized stream type: %s": "Nepepoznata vrsta prijenosa: %s", - "Record file doesn't exist": "Datoteka snimke ne postoji", - "View Recorded File Metadata": "Prikaži metapodatke snimljene datoteke", - "Schedule Tracks": "Zakaži snimke", - "Clear Show": "Izbriši emisiju", - "Cancel Show": "Prekini emisiju", - "Edit Instance": "Uredi instancu", - "Edit Show": "Uredi emisiju", - "Delete Instance": "Izbriši instancu", - "Delete Instance and All Following": "Izbriši instancu i sva praćenja", - "Permission denied": "Dozvola odbijena", - "Can't drag and drop repeating shows": "Ne možeš povući i ispustiti ponavljajuće emisije", - "Can't move a past show": "Ne možeš premjestiti događane emisije", - "Can't move show into past": "Ne možeš premjestiti emisiju u prošlosti", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija.", - "Show was deleted because recorded show does not exist!": "Emisija je izbrisana jer snimljena emisija ne postoji!", - "Must wait 1 hour to rebroadcast.": "Moraš pričekati jedan sat za ponovno emitiranje.", - "Track": "Snimka", - "Played": "Reproducirano", - "Auto-generated smartblock for podcast": "", - "Webstreams": "Internetski prijenosi" + "The year %s must be within the range of 1753 - 9999": "Godina %s mora biti u rasponu od 1753. – 9999.", + "%s-%s-%s is not a valid date": "%s-%s-%s nije ispravan datum", + "%s:%s:%s is not a valid time": "%s:%s:%s nije ispravno vrijeme", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "Koristi standardne podatke stanice", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Stranica radija", + "Calendar": "Kalendar", + "Widgets": "Programčići", + "Player": "Player", + "Weekly Schedule": "Tjedni raspored", + "Settings": "Postavke", + "General": "Opće", + "My Profile": "Moj profil", + "Users": "Korisnici", + "Track Types": "Vrste snimaka", + "Streams": "Prijenosi", + "Status": "Stanje", + "Analytics": "Analitike", + "Playout History": "Povijest reproduciranih pjesama", + "History Templates": "Predlošci za povijest", + "Listener Stats": "Statistika slušatelja", + "Show Listener Stats": "Prikaži statistiku slušatelja", + "Help": "Pomoć", + "Getting Started": "Prvi koraci", + "User Manual": "Korisnički priručnik", + "Get Help Online": "Pomoć na internetu", + "Contribute to LibreTime": "Doprinesi projektu LibreTime", + "What's New?": "Što je novo?", + "You are not allowed to access this resource.": "Ne smiješ pristupiti ovom izvoru.", + "You are not allowed to access this resource. ": "Ne smiješ pristupiti ovom izvoru. ", + "File does not exist in %s": "Datoteka ne postoji u %s", + "Bad request. no 'mode' parameter passed.": "Neispravan zahtjev. Prametar „mode” nije predan.", + "Bad request. 'mode' parameter is invalid": "Neispravan zahtjev. Prametar „mode” je neispravan", + "You don't have permission to disconnect source.": "Nemaš dozvole za odspajanje izvora.", + "There is no source connected to this input.": "Nema spojenog izvora na ovaj unos.", + "You don't have permission to switch source.": "Nemaš dozvole za mijenjanje izvora.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Stranica nije pronađena.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "Nemaš dozvole za pristupanje ovom resursu.", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s nije pronađen", + "Something went wrong.": "Dogodila se greška.", + "Preview": "Pregled", + "Add to Playlist": "Dodaj na Popis Pjesama", + "Add to Smart Block": "Dodaj u pametni blok", + "Delete": "Izbriši", + "Edit...": "Uredi …", + "Download": "Preuzimanje", + "Duplicate Playlist": "Dupliciraj playlistu", + "Duplicate Smartblock": "Dupliciraj pametni blok", + "No action available": "Nema dostupnih akcija", + "You don't have permission to delete selected items.": "Nemaš dozvole za brisanje odabrane stavke.", + "Could not delete file because it is scheduled in the future.": "Nije bilo moguće izbrisati datoteku jer je zakazana u budućnosti.", + "Could not delete file(s).": "Nije bilo moguće izbrisati datoteku(e).", + "Copy of %s": "Kopiranje od %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Provjeri ispravnost administratora/lozinke u izborniku Postavke->Stranica prijenosa.", + "Audio Player": "Audio player", + "Something went wrong!": "Dogodila se greška!", + "Recording:": "Snimanje:", + "Master Stream": "Prijenos mastera", + "Live Stream": "Prijenos uživo", + "Nothing Scheduled": "Ništa nije zakazano", + "Current Show:": "Trenutačna emisija:", + "Current": "Trenutačna", + "You are running the latest version": "Pokrećeš najnoviju verziju", + "New version available: ": "Dostupna je nova verzija: ", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj u trenutni popis pjesama", + "Add to current smart block": "Dodaj u trenutačni pametni blok", + "Adding 1 Item": "Dodavanje 1 stavke", + "Adding %s Items": "Dodavanje %s stavki", + "You can only add tracks to smart blocks.": "Možeš dodavati samo pjesme u pametne blokove.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Možeš dodati samo pjesme, pametne blokova i internetske prijenose u playliste.", + "Please select a cursor position on timeline.": "Odaberi mjesto pokazivača na vremenskoj crti.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "Nova", + "Edit": "Uredi", + "Add to Schedule": "Dodaj rasporedu", + "Add to next show": "Dodaj sljedećoj emisiji", + "Add to current show": "Dodaj trenutačnoj emisiji", + "Add after selected items": "Dodaj nakon odabranih stavki", + "Publish": "Objavi", + "Remove": "Ukloni", + "Edit Metadata": "Uredi metapodatke", + "Add to selected show": "Dodaj odabranoj emisiji", + "Select": "Odaberi", + "Select this page": "Odaberi ovu stranicu", + "Deselect this page": "Odznači ovu stranicu", + "Deselect all": "Odznači sve", + "Are you sure you want to delete the selected item(s)?": "Stvarno želiš izbrisati odabranu(e) stavku(e)?", + "Scheduled": "Zakazano", + "Tracks": "Snimke", + "Playlist": "Playlista", + "Title": "Naslov", + "Creator": "Tvorac", + "Album": "Album", + "Bit Rate": "Brzina prijenosa", + "BPM": "BPM", + "Composer": "Kompozitor", + "Conductor": "Dirigent", + "Copyright": "Autorsko pravo", + "Encoded By": "Kodirano je po", + "Genre": "Žanr", + "ISRC": "ISRC", + "Label": "Etiketa", + "Language": "Jezik", + "Last Modified": "Zadnja promjena", + "Last Played": "Zadnji put svirano", + "Length": "Trajanje", + "Mime": "Vrsta", + "Mood": "Ugođaj", + "Owner": "Vlasnik", + "Replay Gain": "Pojačanje reprodukcije", + "Sample Rate": "Frekvencija", + "Track Number": "Broj snimke", + "Uploaded": "Preneseno", + "Website": "Web stranica", + "Year": "Godina", + "Loading...": "Učitavanje...", + "All": "Sve", + "Files": "Datoteke", + "Playlists": "Playliste", + "Smart Blocks": "Pametni blokovi", + "Web Streams": "Prijenosi", + "Unknown type: ": "Nepoznata vrsta: ", + "Are you sure you want to delete the selected item?": "Stvarno želiš izbrisati odabranu stavku?", + "Uploading in progress...": "Prijenos je u tijeku...", + "Retrieving data from the server...": "Preuzimanje podataka s poslužitelja …", + "Import": "Uvezi", + "Imported?": "Uvezeno?", + "View": "Prikaz", + "Error code: ": "Kod pogreške: ", + "Error msg: ": "Poruka pogreške: ", + "Input must be a positive number": "Unos mora biti pozitivan broj", + "Input must be a number": "Unos mora biti broj", + "Input must be in the format: yyyy-mm-dd": "Unos mora biti u obliku: gggg-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Unos mora biti u obliku: hh:mm:ss.t", + "My Podcast": "Moj Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Trenutačno prenosiš datoteke. %sPrijelazom na drugi ekran prekinut će se postupak prenošenja. %sStvarno želiš napustiti stranicu?", + "Open Media Builder": "Otvori Media Builder", + "please put in a time '00:00:00 (.0)'": "upiši vrijeme „00:00:00 (.0)”", + "Please enter a valid time in seconds. Eg. 0.5": "Upiši ispravno vrijeme u sekundama. Npr. 0,5", + "Your browser does not support playing this file type: ": "Tvoj preglednik ne podržava reprodukciju ove vrste datoteku: ", + "Dynamic block is not previewable": "Dinamički blok se ne može pregledati", + "Limit to: ": "Ograniči na: ", + "Playlist saved": "Playlista je spremljena", + "Playlist shuffled": "Playlista je izmiješana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'.", + "Listener Count on %s: %s": "Broj slušatelja %s: %s", + "Remind me in 1 week": "Podsjeti me za 1 tjedan", + "Remind me never": "Nikada me nemoj podsjetiti", + "Yes, help Airtime": "Da, pomažem Airtime-u", + "Image must be one of jpg, jpeg, png, or gif": "Slika mora biti jpg, jpeg, png, ili gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statični pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da ga urediš i vidiš u medijateci prije nego što ga dodaš jednoj emisiji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dinamični pametni blokovi spremaju samo kriterije. Sadržaj bloka će se generirati nakon što ga dodaš jednoj emisiji. Nećeš moći pregledavati i uređivati sadržaj u medijateci.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Pametni blok je izmiješan", + "Smart block generated and criteria saved": "Pametni blok je generiran i kriteriji su spremljeni", + "Smart block saved": "Pametni blok je spremljen", + "Processing...": "Obrada...", + "Select modifier": "Odaberi modifikator", + "contains": "sadrži", + "does not contain": "ne sadrži", + "is": "je", + "is not": "nije", + "starts with": "počinje sa", + "ends with": "završava sa", + "is greater than": "je veći od", + "is less than": "je manji od", + "is in the range": "je u rasponu", + "Generate": "Generiraj", + "Choose Storage Folder": "Odaberi mapu za spremanje", + "Choose Folder to Watch": "Odaberi mapu za praćenje", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Stvarno želiš promijeniti mapu za spremanje?\nTo će ukloniti datoteke iz tvoje Airtime medijateke!", + "Manage Media Folders": "Upravljanje Medijske Mape", + "Are you sure you want to remove the watched folder?": "Stvarno želiš ukloniti nadzorsku mapu?", + "This path is currently not accessible.": "Ovaj put nije trenutno dostupan.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni.", + "Connected to the streaming server": "Priključen je na poslužitelju", + "The stream is disabled": "Prijenos je onemogućen", + "Getting information from the server...": "Preuzimanje informacija s poslužitelja …", + "Can not connect to the streaming server": "Ne može se povezati na poslužitelju", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku.", + "Warning: You cannot change this field while the show is currently playing": "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava", + "No result found": "Nema pronađenih rezultata", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju.", + "Specify custom authentication which will work only for this show.": "Odredi prilagođenu autentikaciju koja će vrijediti samo za ovu emisiju.", + "The show instance doesn't exist anymore!": "Emisija u ovom slučaju više ne postoji!", + "Warning: Shows cannot be re-linked": "Upozorenje: Emisije ne može ponovno se povezati", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima.", + "Show": "Emisija", + "Show is empty": "Emisija je prazna", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Preuzimanje podataka s poslužitelja …", + "This show has no scheduled content.": "Ova emisija nema zakazanog sadržaja.", + "This show is not completely filled with content.": "Ova emisija nije u potpunosti ispunjena sa sadržajem.", + "January": "Siječanj", + "February": "Veljača", + "March": "Ožujak", + "April": "Travanj", + "May": "Svibanj", + "June": "Lipanj", + "July": "Srpanj", + "August": "Kolovoz", + "September": "Rujan", + "October": "Listopad", + "November": "Studeni", + "December": "Prosinac", + "Jan": "Sij", + "Feb": "Vel", + "Mar": "Ožu", + "Apr": "Tra", + "Jun": "Lip", + "Jul": "Srp", + "Aug": "Kol", + "Sep": "Ruj", + "Oct": "Lis", + "Nov": "Stu", + "Dec": "Pro", + "Today": "Danas", + "Day": "Dan", + "Week": "Tjedan", + "Month": "", + "Sunday": "Nedjelja", + "Monday": "Ponedjeljak", + "Tuesday": "Utorak", + "Wednesday": "Srijeda", + "Thursday": "Četvrtak", + "Friday": "Petak", + "Saturday": "Subota", + "Sun": "Ned", + "Mon": "Pon", + "Tue": "Uto", + "Wed": "Sri", + "Thu": "Čet", + "Fri": "Pet", + "Sat": "Sub", + "Shows longer than their scheduled time will be cut off by a following show.": "Emisije koje traju dulje od predviđenog vremena će se prekinuti i nastaviti sa sljedećom emisijom.", + "Cancel Current Show?": "Prekinuti trenutačnu emisiju?", + "Stop recording current show?": "Zaustaviti snimanje emisije?", + "Ok": "U redu", + "Contents of Show": "Sadržaj emisije", + "Remove all content?": "Ukloniti sav sadržaj?", + "Delete selected item(s)?": "Izbrisati odabranu(e) stavku(e)?", + "Start": "Početak", + "End": "Završetak", + "Duration": "Trajanje", + "Filtering out ": "Izdvjanje ", + " of ": " od ", + " records": " snimaka", + "There are no shows scheduled during the specified time period.": "U navedenom vremenskom razdoblju nema zakazanih emisija.", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Postupno pojačavanje glasnoće", + "Fade Out": "Postupno smanjivanje glasnoće", + "Show Empty": "Prazna emisija", + "Recording From Line In": "Snimanje sa Line In", + "Track preview": "Pregled snimaka", + "Cannot schedule outside a show.": "Nije moguće zakazati izvan emisije.", + "Moving 1 Item": "Premještanje 1 stavke", + "Moving %s Items": "Premještanje %s stavki", + "Save": "Spremi", + "Cancel": "Odustani", + "Fade Editor": "Uređivač prijelaza", + "Cue Editor": "Cue Uređivač", + "Waveform features are available in a browser supporting the Web Audio API": "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku", + "Select all": "Odaberi sve", + "Select none": "Odaberi ništa", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Ukloni odabrane zakazane stavke", + "Jump to the current playing track": "Skoči na trenutnu sviranu pjesmu", + "Jump to Current": "Skoči na trenutnu", + "Cancel current show": "Prekini trenutačnu emisiju", + "Open library to add or remove content": "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja", + "Add / Remove Content": "Dodaj / Ukloni Sadržaj", + "in use": "u upotrebi", + "Disk": "Disk", + "Look in": "Pogledaj unutra", + "Open": "Otvori", + "Admin": "Administrator", + "DJ": "Disk-džokej", + "Program Manager": "Voditelj programa", + "Guest": "Gost", + "Guests can do the following:": "Gosti mogu učiniti sljedeće:", + "View schedule": "Prikaži raspored", + "View show content": "Prikaži sadržaj emisije", + "DJs can do the following:": "Disk-džokeji mogu učiniti sljedeće:", + "Manage assigned show content": "Upravljanje dodijeljen sadržaj emisije", + "Import media files": "Uvezi medijske datoteke", + "Create playlists, smart blocks, and webstreams": "Izradi popise naslova, pametnih blokova, i prijenose", + "Manage their own library content": "Upravljanje svoje knjižničnog sadržaja", + "Program Managers can do the following:": "Voditelj programa može:", + "View and manage show content": "Prikaži i upravljaj sadržajem emisije", + "Schedule shows": "Zakaži emisije", + "Manage all library content": "Upravljanje sve sadržaje knjižnica", + "Admins can do the following:": "Administratori mogu učiniti sljedeće:", + "Manage preferences": "Upravljanje postavke", + "Manage users": "Upravljanje korisnike", + "Manage watched folders": "Upravljanje nadziranih datoteke", + "Send support feedback": "Pošalji povratne informacije", + "View system status": "Prikaži stanje sustava", + "Access playout history": "Pristup za povijest puštenih pjesama", + "View listener stats": "Prikaži statistiku slušatelja", + "Show / hide columns": "Prikaži/sakrij stupce", + "Columns": "Stupci", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "gggg-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Ne", + "Mo": "Po", + "Tu": "Ut", + "We": "Sr", + "Th": "Če", + "Fr": "Pe", + "Sa": "Su", + "Close": "Zatvori", + "Hour": "Sat", + "Minute": "Minuta", + "Done": "Gotovo", + "Select files": "Odaberi datoteke", + "Add files to the upload queue and click the start button.": "Dodaj datoteke i klikni na 'Pokreni Upload' dugme.", + "Filename": "", + "Size": "", + "Add Files": "Dodaj Datoteke", + "Stop Upload": "Prekini prijenos", + "Start upload": "Započni prijenos", + "Start Upload": "", + "Add files": "Dodaj datoteke", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Preneseno %d/%d datoteka", + "N/A": "N/A", + "Drag files here.": "Povuci datoteke ovamo.", + "File extension error.": "Pogrešan datotečni nastavak.", + "File size error.": "Pogrešna veličina datoteke.", + "File count error.": "Pogrešan broj datoteka.", + "Init error.": "Init pogreška.", + "HTTP Error.": "HTTP pogreška.", + "Security error.": "Sigurnosna pogreška.", + "Generic error.": "Opća pogreška.", + "IO error.": "IO pogreška.", + "File: %s": "Datoteka: %s", + "%d files queued": "%d datoteka na čekanju", + "File: %f, size: %s, max file size: %m": "Datoteka: %f, veličina: %s, maks veličina datoteke: %m", + "Upload URL might be wrong or doesn't exist": "URL prijenosa možda nije ispravan ili ne postoji", + "Error: File too large: ": "Pogreška: Datoteka je prevelika: ", + "Error: Invalid file extension: ": "Pogreška: Nevažeći datotečni nastavak: ", + "Set Default": "Postavi standardne postavke", + "Create Entry": "Stvaranje Unosa", + "Edit History Record": "Uredi zapis povijesti", + "No Show": "Nema Programa", + "Copied %s row%s to the clipboard": "%s red%s je kopiran u međumemoriju", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "Prvo", + "Last": "", + "Next": "", + "Previous": "Prethodno", + "Search:": "Traži:", + "No matching records found": "", + "Drag tracks here from the library": "Povuci snimke ovamo iz medijateke", + "No tracks were played during the selected time period.": "", + "Unpublish": "Poništi objavu", + "No matching results found.": "", + "Author": "Autor", + "Description": "Opis", + "Link": "", + "Publication Date": "Datum objavljivanja", + "Import Status": "Uvezi stanje", + "Actions": "", + "Delete from Library": "Izbriši iz medijateke", + "Successfully imported": "Uspješno uvezeno", + "Show _MENU_": "Prikaži _MENU_", + "Show _MENU_ entries": "Prikaži unose za _MENU_", + "Showing _START_ to _END_ of _TOTAL_ entries": "Prikaz _START_ do _END_ od _TOTAL_ unosa", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Prikaz _START_ do _END_ od _TOTAL_ snimaka", + "Showing _START_ to _END_ of _TOTAL_ track types": "Prikaz _START_ do _END_ od _TOTAL_ vrsta snimaka", + "Showing _START_ to _END_ of _TOTAL_ users": "Prikaz _START_ do _END_ od _TOTAL_ korisnika", + "Showing 0 to 0 of 0 entries": "Prikaz 0 do 0 od 0 unosa", + "Showing 0 to 0 of 0 tracks": "Prikaz 0 do 0 od 0 snimaka", + "Showing 0 to 0 of 0 track types": "Prikaz 0 do 0 od 0 vrsta snimaka", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Stvarno želiš izbrisati ovu vrstu snimke?", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktivirano", + "Disabled": "Deaktivirano", + "Cancel upload": "Prekini prijenos", + "Type": "Vrsta", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Postavke podcasta su spremljene", + "Are you sure you want to delete this user?": "Stvarno želiš izbrisati ovog korisnika?", + "Can't delete yourself!": "Ne možeš sebe izbrisati!", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "Pregled playliste", + "Smart Block": "Pametni blok", + "Webstream preview": "Pregled internetskog prijenosa", + "You don't have permission to view the library.": "Nemaš dozvole za prikaz medijateke.", + "Now": "Sada", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "URL feeda", + "Import Date": "Uvezi datum", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "Nije moguće zakazati izvan emisije.\nPokušaj najprije stvoriti emisiju.", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Upiši svoje korisničko ime i lozinku.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno konfiguriran.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Pogrešno korisničko ime ili lozinka. Pokušaj ponovo.", + "You are viewing an older version of %s": "Gledaš stariju verziju %s", + "You cannot add tracks to dynamic blocks.": "Ne možeš dodavati pjesme u dinamične blokove.", + "You don't have permission to delete selected %s(s).": "Nemaš dozvole za brisanje odabranih %s.", + "You can only add tracks to smart block.": "Možeš samo dodati pjesme u pametni blok.", + "Untitled Playlist": "Neimenovana playlista", + "Untitled Smart Block": "Neimenovan pametni blok", + "Unknown Playlist": "Nepoznata playlista", + "Preferences updated.": "Postavke su ažurirane.", + "Stream Setting Updated.": "Postavka prijenosa je ažurirana.", + "path should be specified": "put bi trebao biti specificiran", + "Problem with Liquidsoap...": "Problem s Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ponovo emitiraj emisiju %s od %s na %s", + "Select cursor": "Odaberi pokazivač", + "Remove cursor": "Ukloni pokazivač", + "show does not exist": "emisija ne postoji", + "Track Type added successfully!": "Vrsta snimke uspješno dodana!", + "Track Type updated successfully!": "Vrsta snimke uspješno ažurirana!", + "User added successfully!": "Korisnik je uspješno dodan!", + "User updated successfully!": "Korisnik je uspješno ažuriran!", + "Settings updated successfully!": "Postavke su uspješno ažurirane!", + "Untitled Webstream": "Neimenovan internetski prijenos", + "Webstream saved.": "Internetski prijenos je spremljen.", + "Invalid form values.": "Nevažeće vrijednosti obrasca.", + "Invalid character entered": "Uneseni su nevažeći znakovi", + "Day must be specified": "Dan se mora navesti", + "Time must be specified": "Vrijeme mora biti navedeno", + "Must wait at least 1 hour to rebroadcast": "Moraš čekati najmanje 1 sat za re-emitiranje", + "Add Autoloading Playlist ?": "", + "Select Playlist": "Odaberi playlistu", + "Repeat Playlist Until Show is Full ?": "Ponavljati playlistu sve dok emisija nije potpuna?", + "Use %s Authentication:": "Koristi %s autentifikaciju:", + "Use Custom Authentication:": "Koristi prilagođenu autentifikaciju:", + "Custom Username": "Prilagođeno korisničko Ime", + "Custom Password": "Prilagođena lozinka", + "Host:": "Host:", + "Port:": "Priključak:", + "Mount:": "", + "Username field cannot be empty.": "Polje korisničkog imena ne smije biti prazno.", + "Password field cannot be empty.": "'Lozinka' polja ne smije ostati prazno.", + "Record from Line In?": "Snimanje sa Line In?", + "Rebroadcast?": "Ponovo emitirati?", + "days": "dani", + "Link:": "Link:", + "Repeat Type:": "Vrsta ponavljanja:", + "weekly": "tjedno", + "every 2 weeks": "svaka 2 tjedna", + "every 3 weeks": "svaka 3 tjedna", + "every 4 weeks": "svaka 4 tjedna", + "monthly": "mjesečno", + "Select Days:": "Odaberi dane:", + "Repeat By:": "Ponavljaj po:", + "day of the month": "dan u mjesecu", + "day of the week": "dan u tjednu", + "Date End:": "Datum završetka:", + "No End?": "Nema Kraja?", + "End date must be after start date": "Datum završetka mora biti nakon datuma početka", + "Please select a repeat day": "Odaberi dan ponavljanja", + "Background Colour:": "Boja pozadine:", + "Text Colour:": "Boja teksta:", + "Current Logo:": "Trenutačni logotip:", + "Show Logo:": "Prikaži logotip:", + "Logo Preview:": "", + "Name:": "Naziv:", + "Untitled Show": "Neimenovana emisija", + "URL:": "URL:", + "Genre:": "Žanr:", + "Description:": "Opis:", + "Instance Description:": "Opis instance:", + "{msg} does not fit the time format 'HH:mm'": "{msg} se ne uklapa u vremenskom formatu 'HH:mm'", + "Start Time:": "Vrijeme početka:", + "In the Future:": "Ubuduće:", + "End Time:": "Vrijeme završetka:", + "Duration:": "Trajanje:", + "Timezone:": "Vremenska zona:", + "Repeats?": "Ponavljanje?", + "Cannot create show in the past": "Ne može se stvoriti emisija u prošlosti", + "Cannot modify start date/time of the show that is already started": "Ne može se promijeniti datum/vrijeme početak emisije, ako je već počela", + "End date/time cannot be in the past": "Datum završetka i vrijeme ne može biti u prošlosti", + "Cannot have duration < 0m": "Ne može trajati kraće od 0 min", + "Cannot have duration 00h 00m": "Ne može trajati 00 h 00 min", + "Cannot have duration greater than 24h": "Ne može trajati duže od 24 h", + "Cannot schedule overlapping shows": "Nije moguće zakazati preklapajuće emisije", + "Search Users:": "Traži korisnike:", + "DJs:": "Disk-džokeji:", + "Type Name:": "Ime vrste:", + "Code:": "Kod:", + "Visibility:": "Vidljivost:", + "Analyze cue points:": "", + "Code is not unique.": "Kod nije jedinstven.", + "Username:": "Korisničko ime:", + "Password:": "Lozinka:", + "Verify Password:": "Potvrdi lozinku:", + "Firstname:": "Ime:", + "Lastname:": "Prezime:", + "Email:": "E-mail:", + "Mobile Phone:": "Mobitel:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Vrsta korisnika:", + "Login name is not unique.": "Ime prijave nije jedinstveno.", + "Delete All Tracks in Library": "Izbriši sve snimke u medijateci", + "Date Start:": "Datum početka:", + "Title:": "Naslov:", + "Creator:": "Tvorac:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "Odaberi jednu vrstu", + "Track Type:": "Vrsta snimke:", + "Year:": "Godina:", + "Label:": "Naljepnica:", + "Composer:": "Kompozitor:", + "Conductor:": "Dirigent:", + "Mood:": "Raspoloženje:", + "BPM:": "BPM:", + "Copyright:": "Autorsko pravo:", + "ISRC Number:": "ISRC Broj:", + "Website:": "Web stranica:", + "Language:": "Jezik:", + "Publish...": "Objavi …", + "Start Time": "Vrijeme početka", + "End Time": "Vrijeme završetka", + "Interface Timezone:": "Vremenska zona sučelja:", + "Station Name": "Ime stanice", + "Station Description": "Opis stanice", + "Station Logo:": "Logotip stanice:", + "Note: Anything larger than 600x600 will be resized.": "Napomena: Sve veća od 600x600 će se mijenjati.", + "Default Crossfade Duration (s):": "Standardno trajanje međuprijelaza (s):", + "Please enter a time in seconds (eg. 0.5)": "Upiši vrijeme u sekundama (npr. 0,5)", + "Default Fade In (s):": "Standardno postupno pojačavanje glasnoće (s):", + "Default Fade Out (s):": "Standardno postupno smanjivanje glasnoće (s):", + "Track Type Upload Default": "Standard za prijenos vrsta snimaka", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Javni LibreTime API", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "Standardni jezik", + "Station Timezone": "Vremenska zona stanice", + "Week Starts On": "Prvi dan tjedna", + "Display login button on your Radio Page?": "", + "Feature Previews": "Pregledi funkcija", + "Enable this to opt-in to test new features.": "Aktiviraj ovo za testiranje novih funkcija.", + "Auto Switch Off:": "Automatsko isključivanje:", + "Auto Switch On:": "Automatsko uključivanje:", + "Switch Transition Fade (s):": "Promijeni postupni prijelaz (s):", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "Prikaži host izvora:", + "Show Source Port:": "Prikaži priključak izvora:", + "Show Source Mount:": "Prikaži pogon izvora:", + "Login": "Prijava", + "Password": "Lozinka", + "Confirm new password": "Potvrdi novu lozinku", + "Password confirmation does not match your password.": "Lozinke koje ste unijeli ne podudaraju se.", + "Email": "E-mail", + "Username": "Korisničko ime", + "Reset password": "Resetuj lozinku", + "Back": "Natrag", + "Now Playing": "Trenutno Izvođena", + "Select Stream:": "Odaberi emisiju:", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "Odaberi jednu emisiju:", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "Ugradiv kod:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "Pregled:", + "Feed Privacy": "Privatnost feeda", + "Public": "Javni", + "Private": "Privatni", + "Station Language": "Jezik stanice", + "Filter by Show": "Filtriraj po emisijama", + "All My Shows:": "Sve moje emisije:", + "My Shows": "", + "Select criteria": "Odaberi kriterije", + "Bit Rate (Kbps)": "Brzina prijenosa (Kbps)", + "Track Type": "Vrsta snimke", + "Sample Rate (kHz)": "Frekvencija (kHz)", + "before": "prije", + "after": "nakon", + "between": "između", + "Select unit of time": "Odaberi vremensku jedinicu", + "minute(s)": "minute", + "hour(s)": "sati", + "day(s)": "dani", + "week(s)": "tjedni", + "month(s)": "mjeseci", + "year(s)": "godine", + "hours": "sati", + "minutes": "minute", + "items": "elementi", + "time remaining in show": "preostalo vrijeme u emisiji", + "Randomly": "Slučajno", + "Newest": "Najnovije", + "Oldest": "Najstarije", + "Most recently played": "Zadnje reproducirane", + "Least recently played": "Najstarije reproducirane", + "Select Track Type": "Odaberi vrstu snimke", + "Type:": "Vrsta:", + "Dynamic": "Dinamički", + "Static": "Statični", + "Select track type": "Odaberi vrstu snimke", + "Allow Repeated Tracks:": "Dozvoli ponavljanje snimaka:", + "Allow last track to exceed time limit:": "Dozvoli da zadnji zapis prekorači vremensko ograničenje:", + "Sort Tracks:": "Redoslijed snimaka:", + "Limit to:": "Ograniči na:", + "Generate playlist content and save criteria": "Generiraj sadržaj playliste i spremi kriterije", + "Shuffle playlist content": "Promiješaj sadržaj playliste", + "Shuffle": "Promiješaj", + "Limit cannot be empty or smaller than 0": "Ograničenje ne može biti prazan ili manji od 0", + "Limit cannot be more than 24 hrs": "Ograničenje ne može biti više od 24 sati", + "The value should be an integer": "Vrijednost bi trebala biti cijeli broj", + "500 is the max item limit value you can set": "500 je max stavku graničnu vrijednost moguće je podesiti", + "You must select Criteria and Modifier": "Moraš odabrati Kriteriju i Modifikaciju", + "'Length' should be in '00:00:00' format": "'Dužina' trebala biti u '00:00:00' obliku", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Vrijednost bi trebala biti u formatu vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Vrijednost mora biti numerička", + "The value should be less then 2147483648": "Vrijednost bi trebala biti manja od 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Vrijednost bi trebala biti manja od %s znakova", + "Value cannot be empty": "Vrijednost ne može biti prazna", + "Stream Label:": "Oznaka prijenosa:", + "Artist - Title": "Izvođač – Naslov", + "Show - Artist - Title": "Emisija – Izvođač – Naslov", + "Station name - Show name": "Ime stanice – Ime emisije", + "Off Air Metadata": "Off Air metapodaci", + "Enable Replay Gain": "Aktiviraj pojačanje glasnoće", + "Replay Gain Modifier": "Modifikator pojačanje glasnoće", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Aktivirano:", + "Mobile:": "Mobitel:", + "Stream Type:": "Vrsta prijenosa:", + "Bit Rate:": "Brzina prijenosa:", + "Service Type:": "Vrsta usluge:", + "Channels:": "Kanali:", + "Server": "Poslužitelj", + "Port": "Priključak", + "Mount Point": "Točka Montiranja", + "Name": "Ime", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "ID stanice:", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Mapa uvoza:", + "Watched Folders:": "Mape praćenja:", + "Not a valid Directory": "Nije ispravan direktorij", + "Value is required and can't be empty": "Vrijednost je potrebna i ne može biti prazna", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nije valjana e-mail adresa u osnovnom obliku local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} ne odgovara po obliku datuma '%format%'", + "{msg} is less than %min% characters long": "{msg} je manji od %min% dugačko znakova", + "{msg} is more than %max% characters long": "{msg} je više od %max% dugačko znakova", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nije između '%min%' i '%max%', uključivo", + "Passwords do not match": "Lozinke se ne podudaraju", + "Hi %s, \n\nPlease click this link to reset your password: ": "Bok %s,\n\nPritisni ovu poveznicu za resetiranje lozinke: ", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "\n\nHvala,\nTim %s", + "%s Password Reset": "Resetiranje lozinke za %s", + "Cue in and cue out are null.": "Cue in i cue out su nule.", + "Can't set cue out to be greater than file length.": "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke.", + "Can't set cue in to be larger than cue out.": "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'.", + "Upload Time": "Vrijeme prijenosa", + "None": "Ništa", + "Powered by %s": "", + "Select Country": "Odaberi zemlju", + "livestream": "prijenos uživo", + "Cannot move items out of linked shows": "Nije moguće premjestiti stavke iz povezanih emisija", + "The schedule you're viewing is out of date! (sched mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost rasporeda)", + "The schedule you're viewing is out of date! (instance mismatch)": "Raspored koji gledaš nije aktualan! (neusklađenost instance)", + "The schedule you're viewing is out of date!": "Raspored koji gledaš nije aktualan!", + "You are not allowed to schedule show %s.": "Ne smijes zakazati rasporednu emisiju %s.", + "You cannot add files to recording shows.": "Ne možeš dodavati datoteke za snimljene emisije.", + "The show %s is over and cannot be scheduled.": "Emisija %s je gotova i ne mogu biti zakazana.", + "The show %s has been previously updated!": "Emisija %s je već prije bila ažurirana!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Nije moguće zakazati playlistu koja sadrži nedostajuće datoteke.", + "A selected File does not exist!": "Odabrana Datoteka ne postoji!", + "Shows can have a max length of 24 hours.": "Emisija može trajati maksimalno 24 sata.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nije moguće zakazati preklapajuće emisije.\nNapomena: Mijenjanje veličine ponovljene emisije utječe na sva njena ponavljanja.", + "Rebroadcast of %s from %s": "Ponovo emitiraj emisiju %s od %s", + "Length needs to be greater than 0 minutes": "Duljina mora biti veća od 0 minuta", + "Length should be of form \"00h 00m\"": "Duljina mora biti u obliku „00h 00m”", + "URL should be of form \"https://example.org\"": "URL mora biti u obliku „https://example.org”", + "URL should be 512 characters or less": "URL mora sadržati 512 znakova ili manje", + "No MIME type found for webstream.": "Ne postoji MIME tip za prijenos.", + "Webstream name cannot be empty": "Ime internetskog prijenosa ne može biti prazno", + "Could not parse XSPF playlist": "Nije bilo moguće analizirati XSPF playlistu", + "Could not parse PLS playlist": "Nije bilo moguće analizirati PLS playlistu", + "Could not parse M3U playlist": "Nije bilo moguće analizirati M3U playlistu", + "Invalid webstream - This appears to be a file download.": "Nevažeći internetski prijenos – Čini se da se radi o preuzimanju datoteke.", + "Unrecognized stream type: %s": "Nepepoznata vrsta prijenosa: %s", + "Record file doesn't exist": "Datoteka snimke ne postoji", + "View Recorded File Metadata": "Prikaži metapodatke snimljene datoteke", + "Schedule Tracks": "Zakaži snimke", + "Clear Show": "Izbriši emisiju", + "Cancel Show": "Prekini emisiju", + "Edit Instance": "Uredi instancu", + "Edit Show": "Uredi emisiju", + "Delete Instance": "Izbriši instancu", + "Delete Instance and All Following": "Izbriši instancu i sva praćenja", + "Permission denied": "Dozvola odbijena", + "Can't drag and drop repeating shows": "Ne možeš povući i ispustiti ponavljajuće emisije", + "Can't move a past show": "Ne možeš premjestiti događane emisije", + "Can't move show into past": "Ne možeš premjestiti emisiju u prošlosti", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Ne možeš premjestiti snimljene emisije manje od sat vremena prije ponovnog emitiranja emisija.", + "Show was deleted because recorded show does not exist!": "Emisija je izbrisana jer snimljena emisija ne postoji!", + "Must wait 1 hour to rebroadcast.": "Moraš pričekati jedan sat za ponovno emitiranje.", + "Track": "Snimka", + "Played": "Reproducirano", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Internetski prijenosi" } diff --git a/webapp/src/locale/hu_HU.json b/webapp/src/locale/hu_HU.json index c8409e93c2..2d137e6aac 100644 --- a/webapp/src/locale/hu_HU.json +++ b/webapp/src/locale/hu_HU.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Az évnek %s 1753 - 9999 közötti tartományban kell lennie", - "%s-%s-%s is not a valid date": "%s-%s-%s érvénytelen dátum", - "%s:%s:%s is not a valid time": "%s:%s:%s érvénytelen időpont", - "English": "English", - "Afar": "Afar", - "Abkhazian": "Abkhazian", - "Afrikaans": "Afrikaans", - "Amharic": "Amharic", - "Arabic": "Arabic", - "Assamese": "Assamese", - "Aymara": "Aymara", - "Azerbaijani": "Azerbaijani", - "Bashkir": "Bashkir", - "Belarusian": "Belarusian", - "Bulgarian": "Bulgarian", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengali/Bangla", - "Tibetan": "Tibetan", - "Breton": "Breton", - "Catalan": "Catalan", - "Corsican": "Corsican", - "Czech": "Czech", - "Welsh": "Welsh", - "Danish": "Danish", - "German": "German", - "Bhutani": "Bhutani", - "Greek": "Greek", - "Esperanto": "Esperanto", - "Spanish": "Spanish", - "Estonian": "Estonian", - "Basque": "Basque", - "Persian": "Persian", - "Finnish": "Finnish", - "Fiji": "Fiji", - "Faeroese": "Faeroese", - "French": "French", - "Frisian": "Frisian", - "Irish": "Irish", - "Scots/Gaelic": "Scots/Gaelic", - "Galician": "Galician", - "Guarani": "Guarani", - "Gujarati": "Gujarati", - "Hausa": "Hausa", - "Hindi": "Hindi", - "Croatian": "Croatian", - "Hungarian": "magyar", - "Armenian": "Armenian", - "Interlingua": "Interlingua", - "Interlingue": "Interlingue", - "Inupiak": "Inupiak", - "Indonesian": "Indonesian", - "Icelandic": "Icelandic", - "Italian": "Italian", - "Hebrew": "Hebrew", - "Japanese": "Japanese", - "Yiddish": "Yiddish", - "Javanese": "Javanese", - "Georgian": "Georgian", - "Kazakh": "Kazakh", - "Greenlandic": "Greenlandic", - "Cambodian": "Cambodian", - "Kannada": "Kannada", - "Korean": "Korean", - "Kashmiri": "Kashmiri", - "Kurdish": "Kurdish", - "Kirghiz": "Kirghiz", - "Latin": "Latin", - "Lingala": "Lingala", - "Laothian": "Laothian", - "Lithuanian": "Lithuanian", - "Latvian/Lettish": "Latvian/Lettish", - "Malagasy": "Malagasy", - "Maori": "Maori", - "Macedonian": "Macedonian", - "Malayalam": "Malayalam", - "Mongolian": "Mongolian", - "Moldavian": "Moldavian", - "Marathi": "Marathi", - "Malay": "Malay", - "Maltese": "Maltese", - "Burmese": "Burmese", - "Nauru": "Nauru", - "Nepali": "Nepali", - "Dutch": "Dutch", - "Norwegian": "Norwegian", - "Occitan": "Occitan", - "(Afan)/Oromoor/Oriya": "(Afan)/Oromoor/Oriya", - "Punjabi": "Punjabi", - "Polish": "Polish", - "Pashto/Pushto": "Pashto/Pushto", - "Portuguese": "Portuguese", - "Quechua": "Quechua", - "Rhaeto-Romance": "Rhaeto-Romance", - "Kirundi": "Kirundi", - "Romanian": "Romanian", - "Russian": "Russian", - "Kinyarwanda": "Kinyarwanda", - "Sanskrit": "Sanskrit", - "Sindhi": "Sindhi", - "Sangro": "Sangro", - "Serbo-Croatian": "Serbo-Croatian", - "Singhalese": "Singhalese", - "Slovak": "Slovak", - "Slovenian": "Slovenian", - "Samoan": "Samoan", - "Shona": "Shona", - "Somali": "Somali", - "Albanian": "Albanian", - "Serbian": "Serbian", - "Siswati": "Siswati", - "Sesotho": "Sesotho", - "Sundanese": "Sundanese", - "Swedish": "Swedish", - "Swahili": "Swahili", - "Tamil": "Tamil", - "Tegulu": "Tegulu", - "Tajik": "Tajik", - "Thai": "Thai", - "Tigrinya": "Tigrinya", - "Turkmen": "Turkmen", - "Tagalog": "Tagalog", - "Setswana": "Setswana", - "Tonga": "Tonga", - "Turkish": "Turkish", - "Tsonga": "Tsonga", - "Tatar": "Tatar", - "Twi": "Twi", - "Ukrainian": "Ukrainian", - "Urdu": "Urdu", - "Uzbek": "Uzbek", - "Vietnamese": "Vietnamese", - "Volapuk": "Volapuk", - "Wolof": "Wolof", - "Xhosa": "Xhosa", - "Yoruba": "Yoruba", - "Chinese": "Chinese", - "Zulu": "Zulu", - "Use station default": "Állomás alapértelmezések használata", - "Upload some tracks below to add them to your library!": "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s.", - "Click the 'New Show' button and fill out the required fields.": "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n%sNem hivatkozott műsor létrehozása most%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s.", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Rádióoldal", - "Calendar": "Naptár", - "Widgets": "Felületi elemek", - "Player": "Lejátszó", - "Weekly Schedule": "Heti ütemterv", - "Settings": "Beállítások", - "General": "Általános", - "My Profile": "Profilom", - "Users": "Felhasználók", - "Track Types": "", - "Streams": "Adásfolyamok", - "Status": "Állapot", - "Analytics": "Elemzések", - "Playout History": "Lejátszási előzmények", - "History Templates": "Naplózási sablonok", - "Listener Stats": "Hallgatói statisztikák", - "Show Listener Stats": "", - "Help": "Segítség", - "Getting Started": "Első lépések", - "User Manual": "Felhasználói kézikönyv", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "Újdonságok", - "You are not allowed to access this resource.": "Az Ön számára nem érhető el az alábbi erőforrás.", - "You are not allowed to access this resource. ": "Az Ön számára nem érhető el az alábbi erőforrás.", - "File does not exist in %s": "A fájl nem elérhető itt: %s", - "Bad request. no 'mode' parameter passed.": "Helytelen kérés. nincs 'mód' paraméter lett átadva.", - "Bad request. 'mode' parameter is invalid": "Helytelen kérés. 'mód' paraméter érvénytelen.", - "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", - "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", - "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", - "Page not found.": "Oldal nem található.", - "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", - "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", - "An internal application error has occurred.": "Belső alkalmazáshiba történt.", - "%s Podcast": "%s Podcast", - "No tracks have been published yet.": "Még nincsenek közzétett sávok.", - "%s not found": "%s nem található", - "Something went wrong.": "Valami hiba történt.", - "Preview": "Előnézet", - "Add to Playlist": "Hozzáadás lejátszási listához", - "Add to Smart Block": "Hozzáadás Okosblokkhoz", - "Delete": "Törlés", - "Edit...": "Szerkesztés...", - "Download": "Letöltés", - "Duplicate Playlist": "Lejátszási lista duplikálása", - "Duplicate Smartblock": "", - "No action available": "Nincs elérhető művelet", - "You don't have permission to delete selected items.": "Nincs engedélye, hogy törölje a kiválasztott elemeket.", - "Could not delete file because it is scheduled in the future.": "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra.", - "Could not delete file(s).": "Nem lehet törölni a fájlokat.", - "Copy of %s": "%s másolata", - "Please make sure admin user/password is correct on Settings->Streams page.": "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon.", - "Audio Player": "Audió lejátszó", - "Something went wrong!": "Valami hiba történt!", - "Recording:": "Felvétel:", - "Master Stream": "Mester-adásfolyam", - "Live Stream": "Élő adásfolyam", - "Nothing Scheduled": "Nincs semmi ütemezve", - "Current Show:": "Jelenlegi műsor:", - "Current": "Jelenleg", - "You are running the latest version": "Ön a legújabb verziót futtatja", - "New version available: ": "Új verzió érhető el:", - "You have a pre-release version of LibreTime intalled.": "A LibreTime egy kiadás-előtti verziója van telepítve.", - "A patch update for your LibreTime installation is available.": "Egy hibajavító frissítés érhető el a LibreTimehoz.", - "A feature update for your LibreTime installation is available.": "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz.", - "A major update for your LibreTime installation is available.": "Elérhető a LibreTime új verzióját tartalmazó frissítés.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni.", - "Add to current playlist": "Hozzáadás a jelenlegi lejátszási listához", - "Add to current smart block": "Hozzáadás a jelenlegi okosblokkhoz", - "Adding 1 Item": "1 elem hozzáadása", - "Adding %s Items": "%s elem hozzáadása", - "You can only add tracks to smart blocks.": "Csak sávokat lehet hozzáadni az okosblokkokhoz.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz.", - "Please select a cursor position on timeline.": "Válasszon kurzor pozíciót az idővonalon.", - "You haven't added any tracks": "Még nincsenek sávok hozzáadva", - "You haven't added any playlists": "Még nincsenek lejátszási listák hozzáadva", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "Még nincsenek okosblokkok hozzáadva", - "You haven't added any webstreams": "Még nincsenek web-adásfolyamok hozzáadva", - "Learn about tracks": "Sávok megismerése", - "Learn about playlists": "Lejátszási listák megismerése", - "Learn about podcasts": "Podcastok megismerése", - "Learn about smart blocks": "Okosblokkok megismerése", - "Learn about webstreams": "Web-adásfolyamok megismerése", - "Click 'New' to create one.": "Létrehozni az „Új” gombra kattintással lehet.", - "Add": "Hozzáadás", - "New": "", - "Edit": "Szerkeszt", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Közzététel", - "Remove": "Eltávolítás", - "Edit Metadata": "Metaadatok szerkesztése", - "Add to selected show": "Hozzáadás a kiválasztott műsorhoz", - "Select": "Kijelölés", - "Select this page": "Jelölje ki ezt az oldalt", - "Deselect this page": "Az oldal kijelölésének megszüntetése", - "Deselect all": "Minden kijelölés törlése", - "Are you sure you want to delete the selected item(s)?": "Biztos benne, hogy törli a kijelölt elemeket?", - "Scheduled": "Ütemezett", - "Tracks": "Sávok", - "Playlist": "Lejátszási lista", - "Title": "Cím", - "Creator": "Előadó/Szerző", - "Album": "Album", - "Bit Rate": "Bitráta", - "BPM": "BPM", - "Composer": "Zeneszerző", - "Conductor": "Karmester", - "Copyright": "Szerzői jog", - "Encoded By": "Kódolva", - "Genre": "Műfaj", - "ISRC": "ISRC", - "Label": "Címke", - "Language": "Nyelv", - "Last Modified": "Utoljára módosítva", - "Last Played": "Utoljára játszott", - "Length": "Hossz", - "Mime": "Mime típus", - "Mood": "Hangulat", - "Owner": "Tulajdonos", - "Replay Gain": "Replay Gain", - "Sample Rate": "Mintavétel", - "Track Number": "Sáv sorszáma", - "Uploaded": "Feltöltve", - "Website": "Honlap", - "Year": "Év", - "Loading...": "Betöltés...", - "All": "Összes", - "Files": "Fájlok", - "Playlists": "Lejátszási listák", - "Smart Blocks": "Okosblokkok", - "Web Streams": "Web-adásfolyamok", - "Unknown type: ": "Ismeretlen típus:", - "Are you sure you want to delete the selected item?": "Biztos benne, hogy törli a kijelölt elemet?", - "Uploading in progress...": "Feltöltés folyamatban...", - "Retrieving data from the server...": "Adatok lekérdezése a kiszolgálóról...", - "Import": "", - "Imported?": "", - "View": "Megtekintés", - "Error code: ": "Hibakód:", - "Error msg: ": "Hibaüzenet:", - "Input must be a positive number": "A bemenetnek pozitív számnak kell lennie", - "Input must be a number": "A bemenetnek számnak kell lennie", - "Input must be in the format: yyyy-mm-dd": "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn", - "Input must be in the format: hh:mm:ss.t": "A bemenetet ebben a formában kell megadni: óó:pp:mm.t", - "My Podcast": "Podcastom", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?", - "Open Media Builder": "Médiaépítő megnyitása", - "please put in a time '00:00:00 (.0)'": "kérjük, tegye időbe '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Érvényes időt kell megadni másodpercben. Pl.: 0.5", - "Your browser does not support playing this file type: ": "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:", - "Dynamic block is not previewable": "Dinamikus blokknak nincs előnézete", - "Limit to: ": "Korlátozva:", - "Playlist saved": "Lejátszási lista mentve", - "Playlist shuffled": "Lejátszási lista megkeverve", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”.", - "Listener Count on %s: %s": "%s hallgatóinak száma: %s", - "Remind me in 1 week": "Emlékeztessen 1 hét múlva", - "Remind me never": "Soha ne emlékeztessen", - "Yes, help Airtime": "Igen, segítek az Airtime-nak", - "Image must be one of jpg, jpeg, png, or gif": "A képek formátuma jpg, jpeg, png, vagy gif kell legyen", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Okosblokk megkeverve", - "Smart block generated and criteria saved": "Okosblokk létrehozva és a feltételek mentve", - "Smart block saved": "Okosblokk elmentve", - "Processing...": "Feldolgozás...", - "Select modifier": "Módosító választása", - "contains": "tartalmazza", - "does not contain": "nem tartalmazza", - "is": "pontosan", - "is not": "nem", - "starts with": "kezdődik", - "ends with": "végződik", - "is greater than": "nagyobb, mint", - "is less than": "kisebb, mint", - "is in the range": "tartománya", - "Generate": "Létrehozás", - "Choose Storage Folder": "Válasszon tárolómappát", - "Choose Folder to Watch": "Válasszon figyelt mappát", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Biztos benne, hogy meg akarja változtatni a tárolómappát?\nEzzel eltávolítja a fájlokat a saját Airtime könyvtárából!", - "Manage Media Folders": "Médiamappák kezelése", - "Are you sure you want to remove the watched folder?": "Biztos benne, hogy el akarja távolítani a figyelt mappát?", - "This path is currently not accessible.": "Ez az útvonal jelenleg nem elérhető.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban.", - "Connected to the streaming server": "Csatlakozva az adásfolyam kiszolgálóhoz", - "The stream is disabled": "Az adásfolyam ki van kapcsolva", - "Getting information from the server...": "Információk lekérdezése a kiszolgálóról...", - "Can not connect to the streaming server": "Nem lehet kapcsolódni az adásfolyam kiszolgálójához", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani .", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó.", - "Warning: You cannot change this field while the show is currently playing": "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart", - "No result found": "Nem volt találat", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak.", - "Specify custom authentication which will work only for this show.": "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik.", - "The show instance doesn't exist anymore!": "A műsor példány nem létezik többé!", - "Warning: Shows cannot be re-linked": "Figyelem: Műsorokat nem lehet újrahivatkozni", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve.", - "Show": "Műsor", - "Show is empty": "A műsor üres", - "1m": "1p", - "5m": "5p", - "10m": "10p", - "15m": "15p", - "30m": "30p", - "60m": "60p", - "Retreiving data from the server...": "Adatok lekérdezése a kiszolgálóról...", - "This show has no scheduled content.": "Ez a műsor nem tartalmaz ütemezett tartalmat.", - "This show is not completely filled with content.": "Ez a műsor nincs teljesen feltöltve tartalommal.", - "January": "Január", - "February": "Február", - "March": "Március", - "April": "Április", - "May": "Május", - "June": "Június", - "July": "Július", - "August": "Augusztus", - "September": "Szeptember", - "October": "Október", - "November": "November", - "December": "December", - "Jan": "Jan", - "Feb": "Feb", - "Mar": "Már", - "Apr": "Ápr", - "Jun": "Jún", - "Jul": "Júl", - "Aug": "Aug", - "Sep": "Sze", - "Oct": "Okt", - "Nov": "Nov", - "Dec": "Dec", - "Today": "Ma", - "Day": "Nap", - "Week": "Hét", - "Month": "Hónap", - "Sunday": "Vasárnap", - "Monday": "Hétfő", - "Tuesday": "Kedd", - "Wednesday": "Szerda", - "Thursday": "Csütörtök", - "Friday": "Péntek", - "Saturday": "Szombat", - "Sun": "V", - "Mon": "H", - "Tue": "K", - "Wed": "Sze", - "Thu": "Cs", - "Fri": "P", - "Sat": "Szo", - "Shows longer than their scheduled time will be cut off by a following show.": "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét.", - "Cancel Current Show?": "A jelenlegi műsor megszakítása?", - "Stop recording current show?": "A jelenlegi műsor rögzítésének félbeszakítása?", - "Ok": "Ok", - "Contents of Show": "A műsor tartalmai", - "Remove all content?": "Az összes tartalom eltávolítása?", - "Delete selected item(s)?": "Törli a kiválasztott elemeket?", - "Start": "Kezdés", - "End": "Befejezés", - "Duration": "Időtartam", - "Filtering out ": "Kiszűrve", - " of ": "/", - " records": "felvétel", - "There are no shows scheduled during the specified time period.": "A megadott időszakban nincsenek ütemezett műsorok.", - "Cue In": "Felkeverés", - "Cue Out": "Lekeverés", - "Fade In": "Felúsztatás", - "Fade Out": "Leúsztatás", - "Show Empty": "Üres műsor", - "Recording From Line In": "Rögzítés a vonalbemenetről", - "Track preview": "Sáv előnézete", - "Cannot schedule outside a show.": "Nem lehet ütemezni a műsoron kívül.", - "Moving 1 Item": "1 elem áthelyezése", - "Moving %s Items": "%s elem áthelyezése", - "Save": "Mentés", - "Cancel": "Mégse", - "Fade Editor": "Úsztatási Szerkesztő", - "Cue Editor": "Keverési Szerkesztő", - "Waveform features are available in a browser supporting the Web Audio API": "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók", - "Select all": "Az összes kijelölése", - "Select none": "Kijelölés törlése", - "Trim overbooked shows": "Túlnyúló műsorok levágása", - "Remove selected scheduled items": "A kijelölt ütemezett elemek eltávolítása", - "Jump to the current playing track": "Ugrás a jelenleg játszott sávra", - "Jump to Current": "", - "Cancel current show": "A jelenlegi műsor megszakítása", - "Open library to add or remove content": "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához", - "Add / Remove Content": "Tartalom hozzáadása / eltávolítása", - "in use": "használatban van", - "Disk": "Lemez", - "Look in": "Nézze meg", - "Open": "Megnyitás", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programkezelő", - "Guest": "Vendég", - "Guests can do the following:": "A vendégek a következőket tehetik:", - "View schedule": "Az ütemezés megtekintése", - "View show content": "A műsor tartalmának megtekintése", - "DJs can do the following:": "A DJ-k a következőket tehetik:", - "Manage assigned show content": "Hozzárendelt műsor tartalmának kezelése", - "Import media files": "Médiafájlok hozzáadása", - "Create playlists, smart blocks, and webstreams": "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása", - "Manage their own library content": "Saját médiatár tartalmának kezelése", - "Program Managers can do the following:": "", - "View and manage show content": "Műsortartalom megtekintése és kezelése", - "Schedule shows": "A műsorok ütemzései", - "Manage all library content": "A teljes médiatár tartalmának kezelése", - "Admins can do the following:": "Az Adminisztrátorok a következőket tehetik:", - "Manage preferences": "Beállítások kezelései", - "Manage users": "A felhasználók kezelése", - "Manage watched folders": "A figyelt mappák kezelése", - "Send support feedback": "Támogatási visszajelzés küldése", - "View system status": "A rendszer állapot megtekitnése", - "Access playout history": "Hozzáférés lejátszási előzményekhez", - "View listener stats": "A hallgatói statisztikák megtekintése", - "Show / hide columns": "Az oszlopok megjelenítése/elrejtése", - "Columns": "", - "From {from} to {to}": "{from} és {to} között", - "kbps": "kbps", - "yyyy-mm-dd": "éééé-hh-nn", - "hh:mm:ss.t": "óó:pp:mm.t", - "kHz": "kHz", - "Su": "V", - "Mo": "H", - "Tu": "K", - "We": "Sze", - "Th": "Cs", - "Fr": "P", - "Sa": "Szo", - "Close": "Bezárás", - "Hour": "Óra", - "Minute": "Perc", - "Done": "Kész", - "Select files": "Fájlok kiválasztása", - "Add files to the upload queue and click the start button.": "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra.", - "Filename": "", - "Size": "", - "Add Files": "Fájlok hozzáadása", - "Stop Upload": "Feltöltés megszakítása", - "Start upload": "Feltöltés indítása", - "Start Upload": "", - "Add files": "Fájlok hozzáadása", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Feltöltve %d/%d fájl", - "N/A": "N/A", - "Drag files here.": "Húzza a fájlokat ide.", - "File extension error.": "Fájlkiterjesztési hiba.", - "File size error.": "Fájlméret hiba.", - "File count error.": "Fájl számi hiba.", - "Init error.": "Inicializálási hiba.", - "HTTP Error.": "HTTP Hiba.", - "Security error.": "Biztonsági hiba.", - "Generic error.": "Általános hiba.", - "IO error.": "IO hiba.", - "File: %s": "Fájl: %s", - "%d files queued": "%d várakozó fájl", - "File: %f, size: %s, max file size: %m": "Fájl: %f,méret: %s, legnagyobb fájlméret: %m", - "Upload URL might be wrong or doesn't exist": "A feltöltés URL-je rossz vagy nem létezik", - "Error: File too large: ": "Hiba: A fájl túl nagy:", - "Error: Invalid file extension: ": "Hiba: Érvénytelen fájl kiterjesztés:", - "Set Default": "Alapértelmezés beállítása", - "Create Entry": "Bejegyzés létrehozása", - "Edit History Record": "Előzmények szerkesztése", - "No Show": "Nincs műsor", - "Copied %s row%s to the clipboard": "%s sor%s másolva a vágólapra", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett.", - "New Show": "Új műsor", - "New Log Entry": "Új naplóbejegyzés", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "Következő", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "Közzététel megszüntetése", - "No matching results found.": "", - "Author": "Szerző", - "Description": "Leírás", - "Link": "Hivatkozás", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Engedélyezve", - "Disabled": "Letiltva", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "Okosblokk", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "Adásban", - "Off Air": "Adásszünet", - "Offline": "Kapcsolat nélkül", - "Nothing scheduled": "Nincs semmi ütemezve", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Kérjük adja meg felhasználónevét és jelszavát.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció.", - "That username or email address could not be found.": "A felhasználónév vagy email cím nem található.", - "There was a problem with the username or email address you entered.": "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel.", - "Wrong username or password provided. Please try again.": "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra.", - "You are viewing an older version of %s": "Ön %s egy régebbi verzióját tekinti meg", - "You cannot add tracks to dynamic blocks.": "Dinamikus blokkokhoz nem lehet sávokat hozzáadni", - "You don't have permission to delete selected %s(s).": "A kiválasztott %s törléséhez nincs engedélye.", - "You can only add tracks to smart block.": "Csak sávokat lehet hozzáadni az okosblokkhoz.", - "Untitled Playlist": "Névtelen lejátszási lista", - "Untitled Smart Block": "Névtelen okosblokk", - "Unknown Playlist": "Ismeretlen lejátszási lista", - "Preferences updated.": "Beállítások frissítve.", - "Stream Setting Updated.": "Adásfolyam beállítások frissítve.", - "path should be specified": "az útvonalat meg kell határozni", - "Problem with Liquidsoap...": "Probléma lépett fel a Liquidsoap-al...", - "Request method not accepted": "A kérés módja nem elfogadott", - "Rebroadcast of show %s from %s at %s": "A műsor újraközvetítése %s -tól/-től %s a %s", - "Select cursor": "Kurzor kiválasztása", - "Remove cursor": "Kurzor eltávolítása", - "show does not exist": "a műsor nem található", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Felhasználó sikeresen hozzáadva!", - "User updated successfully!": "Felhasználó sikeresen módosítva!", - "Settings updated successfully!": "Beállítások sikeresen módosítva!", - "Untitled Webstream": "Névtelen adásfolyam", - "Webstream saved.": "Web-adásfolyam mentve.", - "Invalid form values.": "Érvénytelen űrlap értékek.", - "Invalid character entered": "Érvénytelen bevitt karakterek", - "Day must be specified": "A napot meg kell határoznia", - "Time must be specified": "Az időt meg kell határoznia", - "Must wait at least 1 hour to rebroadcast": "Az újraközvetítésre legalább 1 órát kell várni", - "Add Autoloading Playlist ?": "Lejátszási lista automatikus ütemezése?", - "Select Playlist": "Lejátszási lista kiválasztása", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "%s hitelesítés használata:", - "Use Custom Authentication:": "Egyéni hitelesítés használata:", - "Custom Username": "Egyéni felhasználónév", - "Custom Password": "Egyéni jelszó", - "Host:": "Hoszt:", - "Port:": "Port:", - "Mount:": "Csatolási pont:", - "Username field cannot be empty.": "A felhasználónév mező nem lehet üres.", - "Password field cannot be empty.": "A jelszó mező nem lehet üres.", - "Record from Line In?": "Felvétel a vonalbemenetről?", - "Rebroadcast?": "Újraközvetítés?", - "days": "napok", - "Link:": "Hivatkozás:", - "Repeat Type:": "Ismétlés típusa:", - "weekly": "hetente", - "every 2 weeks": "minden második héten", - "every 3 weeks": "minden harmadik héten", - "every 4 weeks": "minden negyedik héten", - "monthly": "havonta", - "Select Days:": "Napok kiválasztása:", - "Repeat By:": "Által Ismételt:", - "day of the month": "a hónap napja", - "day of the week": "a hét napja", - "Date End:": "Befejezés dátuma:", - "No End?": "Nincs vége?", - "End date must be after start date": "A befejezés dátumának a kezdés dátuma után kell lennie", - "Please select a repeat day": "Kérjük válasszon egy ismétlési napot", - "Background Colour:": "Háttérszín:", - "Text Colour:": "Szövegszín:", - "Current Logo:": "Jelenlegi logó:", - "Show Logo:": "Logó mutatása:", - "Logo Preview:": "Logó előnézete:", - "Name:": "Név:", - "Untitled Show": "Cím nélküli műsor", - "URL:": "URL:", - "Genre:": "Műfaj:", - "Description:": "Leírás:", - "Instance Description:": "Példány leírása:", - "{msg} does not fit the time format 'HH:mm'": "{msg} nem illeszkedik „ÓÓ:pp” formátumra", - "Start Time:": "Kezdési Idő:", - "In the Future:": "A jövőben:", - "End Time:": "Befejezési idő:", - "Duration:": "Időtartam:", - "Timezone:": "Időzóna:", - "Repeats?": "Ismétlések?", - "Cannot create show in the past": "Műsort nem lehet a múltban létrehozni", - "Cannot modify start date/time of the show that is already started": "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött", - "End date/time cannot be in the past": "A befejezési dátum és időpont nem lehet a múltban", - "Cannot have duration < 0m": "Időtartam nem lehet <0p", - "Cannot have duration 00h 00m": "Időtartam nem lehet 0ó 0p", - "Cannot have duration greater than 24h": "Időtartam nem lehet nagyobb mint 24 óra", - "Cannot schedule overlapping shows": "Nem fedhetik egymást a műsorok", - "Search Users:": "Felhasználók keresése:", - "DJs:": "DJ-k:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Felhasználónév:", - "Password:": "Jelszó:", - "Verify Password:": "Jelszóellenőrzés:", - "Firstname:": "Vezetéknév:", - "Lastname:": "Keresztnév:", - "Email:": "Email:", - "Mobile Phone:": "Mobiltelefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Felhasználótípus:", - "Login name is not unique.": "A bejelentkezési név nem egyedi.", - "Delete All Tracks in Library": "Az összes sáv törlése a könyvtárból", - "Date Start:": "Kezdés Ideje:", - "Title:": "Cím:", - "Creator:": "Létrehozó:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Év:", - "Label:": "Címke:", - "Composer:": "Zeneszerző:", - "Conductor:": "Karmester:", - "Mood:": "Hangulat:", - "BPM:": "BPM:", - "Copyright:": "Szerzői jog:", - "ISRC Number:": "ISRC Szám:", - "Website:": "Honlap:", - "Language:": "Nyelv:", - "Publish...": "Közzététel...", - "Start Time": "Kezdési Idő", - "End Time": "Befejezési idő", - "Interface Timezone:": "Felület időzónája:", - "Station Name": "Állomásnév", - "Station Description": "Állomás leírás", - "Station Logo:": "Állomás logó:", - "Note: Anything larger than 600x600 will be resized.": "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül.", - "Default Crossfade Duration (s):": "Alapértelmezett Áttünési Időtartam (mp):", - "Please enter a time in seconds (eg. 0.5)": "Idő megadása másodpercben (pl.: 0.5)", - "Default Fade In (s):": "Alapértelmezett Felúsztatás (mp)", - "Default Fade Out (s):": "Alapértelmezett Leúsztatás (mp)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "Podcast album felülírása", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül.", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Kötelező a beágyazható ütemezés felületi elemhez.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára.", - "Default Language": "Alapértelmezett nyelv", - "Station Timezone": "Állomás időzóna", - "Week Starts On": "A hét kezdőnapja", - "Display login button on your Radio Page?": "Bejelentkezési gomb megjelenítése a Rádióoldalon?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Automatikus kikapcsolás:", - "Auto Switch On:": "Automatikus bekapcsolás:", - "Switch Transition Fade (s):": "", - "Master Source Host:": "Mester-forrás hoszt:", - "Master Source Port:": "Mester-forrás port:", - "Master Source Mount:": "Mester-forrás csatolási pont:", - "Show Source Host:": "Műsor-forrás hoszt:", - "Show Source Port:": "Műsor-forrás port:", - "Show Source Mount:": "Műsor-forrás csatolási pont:", - "Login": "Bejelentkezés", - "Password": "Jelszó", - "Confirm new password": "Új jelszó megerősítése", - "Password confirmation does not match your password.": "A megadott jelszavak nem egyeznek meg.", - "Email": "Email", - "Username": "Felhasználónév", - "Reset password": "A jelszó visszaállítása", - "Back": "Vissza", - "Now Playing": "Most játszott", - "Select Stream:": "Adásfolyam kiválasztása:", - "Auto detect the most appropriate stream to use.": "A legmegfelelőbb adásfolyam automatikus felismerése.", - "Select a stream:": "Egy adásfolyam kiválasztása:", - " - Mobile friendly": "- Mobilbarát", - " - The player does not support Opus streams.": "- A lejátszó nem támogatja az Opus adásfolyamokat.", - "Embeddable code:": "Beágyazható kód:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába.", - "Preview:": "Előnézet", - "Feed Privacy": "Hírfolyam adatvédelem", - "Public": "Nyilvános", - "Private": "Privát", - "Station Language": "Állomás nyelve", - "Filter by Show": "Szűrés műsor szerint", - "All My Shows:": "Összes műsorom:", - "My Shows": "Műsoraim", - "Select criteria": "A feltételek megadása", - "Bit Rate (Kbps)": "Bitráta (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Mintavételi ráta (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "óra", - "minutes": "perc", - "items": "elem", - "time remaining in show": "", - "Randomly": "Véletlenszerűen", - "Newest": "Legújabb", - "Oldest": "Legrégebbi", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "Típus:", - "Dynamic": "Dinamikus", - "Static": "Statikus", - "Select track type": "", - "Allow Repeated Tracks:": "Ismétlődő sávok engedélyezése:", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "Sávok rendezése:", - "Limit to:": "Korlátozva:", - "Generate playlist content and save criteria": "Lejátszási lista tartalmának létrehozása és a feltétel mentése", - "Shuffle playlist content": "Véletlenszerű lejátszási lista tartalom", - "Shuffle": "Véletlenszerű", - "Limit cannot be empty or smaller than 0": "A határérték nem lehet üres vagy kisebb, mint 0", - "Limit cannot be more than 24 hrs": "A határérték nem lehet hosszabb, mint 24 óra", - "The value should be an integer": "Az érték csak egész szám lehet", - "500 is the max item limit value you can set": "Maximum 500 elem állítható be", - "You must select Criteria and Modifier": "Feltételt és módosítót kell választani", - "'Length' should be in '00:00:00' format": "A „Hosszúság”-ot „00:00:00” formában kell megadni", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Az értéknek numerikusnak kell lennie", - "The value should be less then 2147483648": "Az értéknek kevesebbnek kell lennie, mint 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Az értéknek rövidebb kell lennie, mint %s karakter", - "Value cannot be empty": "Az érték nem lehet üres", - "Stream Label:": "Adásfolyam címke:", - "Artist - Title": "Előadó - Cím", - "Show - Artist - Title": "Műsor - Előadó - Cím", - "Station name - Show name": "Állomásnév - Műsornév", - "Off Air Metadata": "Adásszünet - Metaadat", - "Enable Replay Gain": "Replay Gain Engedélyezése", - "Replay Gain Modifier": "Replay Gain Módosító", - "Hardware Audio Output:": "Hardver audio kimenet:", - "Output Type": "Kimenet típusa", - "Enabled:": "Engedélyezett:", - "Mobile:": "Mobil:", - "Stream Type:": "Adásfolyam típusa:", - "Bit Rate:": "Bitráta:", - "Service Type:": "Szolgáltatás típusa:", - "Channels:": "Csatornák:", - "Server": "Kiszolgáló", - "Port": "Port", - "Mount Point": "Csatolási pont", - "Name": "Név", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Metadata beküldése saját TuneIn állomásba?", - "Station ID:": "Állomás azonosító:", - "Partner Key:": "Partnerkulcs:", - "Partner Id:": "Partnerazonosító:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni.", - "Import Folder:": "Import mappa:", - "Watched Folders:": "Figyelt Mappák:", - "Not a valid Directory": "Érvénytelen könyvtár", - "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nem felel meg az email címek alapvető formátumának (név{'@'}hosztnév)", - "{msg} does not fit the date format '%format%'": "{msg} nem illeszkedik '%format%' dátumformátumra", - "{msg} is less than %min% characters long": "{msg} rövidebb, mint %min% karakter", - "{msg} is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} értéknek '%min%' és '%max%' között kell lennie", - "Passwords do not match": "A jelszavak nem egyeznek meg", - "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", - "\n\nThank you,\nThe %s Team": "\n\nKöszönettel,\n%s Csapat", - "%s Password Reset": "%s jelszó visszaállítása", - "Cue in and cue out are null.": "A fel- és a lekeverés értékei nullák.", - "Can't set cue out to be greater than file length.": "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál.", - "Can't set cue in to be larger than cue out.": "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés.", - "Can't set cue out to be smaller than cue in.": "Nem lehet a lekeverés rövidebb, mint a felkeverés.", - "Upload Time": "Feltöltési idő", - "None": "Nincs", - "Powered by %s": "Működteti a %s", - "Select Country": "Ország kiválasztása", - "livestream": "élő adásfolyam", - "Cannot move items out of linked shows": "Nem tud áthelyezni elemeket a kapcsolódó műsorokból", - "The schedule you're viewing is out of date! (sched mismatch)": "A megtekintett ütemterv elavult! (ütem eltérés)", - "The schedule you're viewing is out of date! (instance mismatch)": "A megtekintett ütemterv elavult! (példány eltérés)", - "The schedule you're viewing is out of date!": "A megtekintett ütemterv időpontja elavult!", - "You are not allowed to schedule show %s.": "Nincs jogosultsága %s műsor ütemezéséhez.", - "You cannot add files to recording shows.": "Nem adhat hozzá fájlokat a rögzített műsorokhoz.", - "The show %s is over and cannot be scheduled.": "A műsor %s véget ért és nem lehet ütemezni.", - "The show %s has been previously updated!": "%s műsor már korábban frissítve lett!", - "Content in linked shows cannot be changed while on air!": "A hivatkozott műsorok tartalma nem módosítható adás közben!", - "Cannot schedule a playlist that contains missing files.": "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz.", - "A selected File does not exist!": "Egy kiválasztott fájl nem létezik!", - "Shows can have a max length of 24 hours.": "A műsorok maximum 24 óra hosszúságúak lehetnek.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Átfedő műsorokat nem lehet ütemezni.\nMegjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére.", - "Rebroadcast of %s from %s": "Úrjaközvetítés %s -tól/-től %s", - "Length needs to be greater than 0 minutes": "A hosszúság értékének nagyobb kell lennie, mint 0 perc", - "Length should be of form \"00h 00m\"": "A hosszúság formája \"00ó 00p\"", - "URL should be of form \"https://example.org\"": "Az URL-t „https://example.org” formában kell megadni", - "URL should be 512 characters or less": "Az URL nem lehet 512 karakternél hosszabb", - "No MIME type found for webstream.": "Nem található MIME típus a web-adásfolyamhoz.", - "Webstream name cannot be empty": "A web-adásfolyam neve nem lehet üres", - "Could not parse XSPF playlist": "Nem sikerült feldolgozni az XSPF lejátszási listát", - "Could not parse PLS playlist": "Nem sikerült feldolgozni a PLS lejátszási listát", - "Could not parse M3U playlist": "Nem sikerült feldolgozni az M3U lejátszási listát", - "Invalid webstream - This appears to be a file download.": "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés.", - "Unrecognized stream type: %s": "Ismeretlen típusú adásfolyam: %s", - "Record file doesn't exist": "Rögzített fájl nem létezik", - "View Recorded File Metadata": "A rögzített fájl metaadatai", - "Schedule Tracks": "Sávok ütemezése", - "Clear Show": "Műsor törlése", - "Cancel Show": "Műsor megszakítása", - "Edit Instance": "Példány szerkesztése:", - "Edit Show": "Műsor szerkesztése", - "Delete Instance": "Példány törlése:", - "Delete Instance and All Following": "Ennek a példánynak és minden utána következő példánynak a törlése", - "Permission denied": "Engedély megtagadva", - "Can't drag and drop repeating shows": "Ismétlődő műsorokat nem lehet megfogni és áthúzni", - "Can't move a past show": "Az elhangzott műsort nem lehet áthelyezni", - "Can't move show into past": "A műsort nem lehet a múltba áthelyezni", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig.", - "Show was deleted because recorded show does not exist!": "A műsor törlésre került, mert a rögzített műsor nem létezik!", - "Must wait 1 hour to rebroadcast.": "Az adás újbóli közvetítésére 1 órát kell várni.", - "Track": "Sáv", - "Played": "Lejátszva", - "Auto-generated smartblock for podcast": "", - "Webstreams": "Web-adásfolyamok" + "The year %s must be within the range of 1753 - 9999": "Az évnek %s 1753 - 9999 közötti tartományban kell lennie", + "%s-%s-%s is not a valid date": "%s-%s-%s érvénytelen dátum", + "%s:%s:%s is not a valid time": "%s:%s:%s érvénytelen időpont", + "English": "English", + "Afar": "Afar", + "Abkhazian": "Abkhazian", + "Afrikaans": "Afrikaans", + "Amharic": "Amharic", + "Arabic": "Arabic", + "Assamese": "Assamese", + "Aymara": "Aymara", + "Azerbaijani": "Azerbaijani", + "Bashkir": "Bashkir", + "Belarusian": "Belarusian", + "Bulgarian": "Bulgarian", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengali/Bangla", + "Tibetan": "Tibetan", + "Breton": "Breton", + "Catalan": "Catalan", + "Corsican": "Corsican", + "Czech": "Czech", + "Welsh": "Welsh", + "Danish": "Danish", + "German": "German", + "Bhutani": "Bhutani", + "Greek": "Greek", + "Esperanto": "Esperanto", + "Spanish": "Spanish", + "Estonian": "Estonian", + "Basque": "Basque", + "Persian": "Persian", + "Finnish": "Finnish", + "Fiji": "Fiji", + "Faeroese": "Faeroese", + "French": "French", + "Frisian": "Frisian", + "Irish": "Irish", + "Scots/Gaelic": "Scots/Gaelic", + "Galician": "Galician", + "Guarani": "Guarani", + "Gujarati": "Gujarati", + "Hausa": "Hausa", + "Hindi": "Hindi", + "Croatian": "Croatian", + "Hungarian": "magyar", + "Armenian": "Armenian", + "Interlingua": "Interlingua", + "Interlingue": "Interlingue", + "Inupiak": "Inupiak", + "Indonesian": "Indonesian", + "Icelandic": "Icelandic", + "Italian": "Italian", + "Hebrew": "Hebrew", + "Japanese": "Japanese", + "Yiddish": "Yiddish", + "Javanese": "Javanese", + "Georgian": "Georgian", + "Kazakh": "Kazakh", + "Greenlandic": "Greenlandic", + "Cambodian": "Cambodian", + "Kannada": "Kannada", + "Korean": "Korean", + "Kashmiri": "Kashmiri", + "Kurdish": "Kurdish", + "Kirghiz": "Kirghiz", + "Latin": "Latin", + "Lingala": "Lingala", + "Laothian": "Laothian", + "Lithuanian": "Lithuanian", + "Latvian/Lettish": "Latvian/Lettish", + "Malagasy": "Malagasy", + "Maori": "Maori", + "Macedonian": "Macedonian", + "Malayalam": "Malayalam", + "Mongolian": "Mongolian", + "Moldavian": "Moldavian", + "Marathi": "Marathi", + "Malay": "Malay", + "Maltese": "Maltese", + "Burmese": "Burmese", + "Nauru": "Nauru", + "Nepali": "Nepali", + "Dutch": "Dutch", + "Norwegian": "Norwegian", + "Occitan": "Occitan", + "(Afan)/Oromoor/Oriya": "(Afan)/Oromoor/Oriya", + "Punjabi": "Punjabi", + "Polish": "Polish", + "Pashto/Pushto": "Pashto/Pushto", + "Portuguese": "Portuguese", + "Quechua": "Quechua", + "Rhaeto-Romance": "Rhaeto-Romance", + "Kirundi": "Kirundi", + "Romanian": "Romanian", + "Russian": "Russian", + "Kinyarwanda": "Kinyarwanda", + "Sanskrit": "Sanskrit", + "Sindhi": "Sindhi", + "Sangro": "Sangro", + "Serbo-Croatian": "Serbo-Croatian", + "Singhalese": "Singhalese", + "Slovak": "Slovak", + "Slovenian": "Slovenian", + "Samoan": "Samoan", + "Shona": "Shona", + "Somali": "Somali", + "Albanian": "Albanian", + "Serbian": "Serbian", + "Siswati": "Siswati", + "Sesotho": "Sesotho", + "Sundanese": "Sundanese", + "Swedish": "Swedish", + "Swahili": "Swahili", + "Tamil": "Tamil", + "Tegulu": "Tegulu", + "Tajik": "Tajik", + "Thai": "Thai", + "Tigrinya": "Tigrinya", + "Turkmen": "Turkmen", + "Tagalog": "Tagalog", + "Setswana": "Setswana", + "Tonga": "Tonga", + "Turkish": "Turkish", + "Tsonga": "Tsonga", + "Tatar": "Tatar", + "Twi": "Twi", + "Ukrainian": "Ukrainian", + "Urdu": "Urdu", + "Uzbek": "Uzbek", + "Vietnamese": "Vietnamese", + "Volapuk": "Volapuk", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yoruba": "Yoruba", + "Chinese": "Chinese", + "Zulu": "Zulu", + "Use station default": "Állomás alapértelmezések használata", + "Upload some tracks below to add them to your library!": "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s.", + "Click the 'New Show' button and fill out the required fields.": "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n%sNem hivatkozott műsor létrehozása most%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s.", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Rádióoldal", + "Calendar": "Naptár", + "Widgets": "Felületi elemek", + "Player": "Lejátszó", + "Weekly Schedule": "Heti ütemterv", + "Settings": "Beállítások", + "General": "Általános", + "My Profile": "Profilom", + "Users": "Felhasználók", + "Track Types": "", + "Streams": "Adásfolyamok", + "Status": "Állapot", + "Analytics": "Elemzések", + "Playout History": "Lejátszási előzmények", + "History Templates": "Naplózási sablonok", + "Listener Stats": "Hallgatói statisztikák", + "Show Listener Stats": "", + "Help": "Segítség", + "Getting Started": "Első lépések", + "User Manual": "Felhasználói kézikönyv", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "Újdonságok", + "You are not allowed to access this resource.": "Az Ön számára nem érhető el az alábbi erőforrás.", + "You are not allowed to access this resource. ": "Az Ön számára nem érhető el az alábbi erőforrás.", + "File does not exist in %s": "A fájl nem elérhető itt: %s", + "Bad request. no 'mode' parameter passed.": "Helytelen kérés. nincs 'mód' paraméter lett átadva.", + "Bad request. 'mode' parameter is invalid": "Helytelen kérés. 'mód' paraméter érvénytelen.", + "You don't have permission to disconnect source.": "Nincs jogosultsága a forrás bontásához.", + "There is no source connected to this input.": "Nem csatlakozik forrás az alábbi bemenethez.", + "You don't have permission to switch source.": "Nincs jogosultsága a forrás megváltoztatásához.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható lejátszó beállításához és használatához a következőket kell tenni:\n1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:\nEngedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt", + "Page not found.": "Oldal nem található.", + "The requested action is not supported.": "A kiválasztott művelet nem támogatott.", + "You do not have permission to access this resource.": "Nincs jogosultsága ennek a forrásnak az eléréséhez.", + "An internal application error has occurred.": "Belső alkalmazáshiba történt.", + "%s Podcast": "%s Podcast", + "No tracks have been published yet.": "Még nincsenek közzétett sávok.", + "%s not found": "%s nem található", + "Something went wrong.": "Valami hiba történt.", + "Preview": "Előnézet", + "Add to Playlist": "Hozzáadás lejátszási listához", + "Add to Smart Block": "Hozzáadás Okosblokkhoz", + "Delete": "Törlés", + "Edit...": "Szerkesztés...", + "Download": "Letöltés", + "Duplicate Playlist": "Lejátszási lista duplikálása", + "Duplicate Smartblock": "", + "No action available": "Nincs elérhető művelet", + "You don't have permission to delete selected items.": "Nincs engedélye, hogy törölje a kiválasztott elemeket.", + "Could not delete file because it is scheduled in the future.": "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra.", + "Could not delete file(s).": "Nem lehet törölni a fájlokat.", + "Copy of %s": "%s másolata", + "Please make sure admin user/password is correct on Settings->Streams page.": "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon.", + "Audio Player": "Audió lejátszó", + "Something went wrong!": "Valami hiba történt!", + "Recording:": "Felvétel:", + "Master Stream": "Mester-adásfolyam", + "Live Stream": "Élő adásfolyam", + "Nothing Scheduled": "Nincs semmi ütemezve", + "Current Show:": "Jelenlegi műsor:", + "Current": "Jelenleg", + "You are running the latest version": "Ön a legújabb verziót futtatja", + "New version available: ": "Új verzió érhető el:", + "You have a pre-release version of LibreTime intalled.": "A LibreTime egy kiadás-előtti verziója van telepítve.", + "A patch update for your LibreTime installation is available.": "Egy hibajavító frissítés érhető el a LibreTimehoz.", + "A feature update for your LibreTime installation is available.": "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz.", + "A major update for your LibreTime installation is available.": "Elérhető a LibreTime új verzióját tartalmazó frissítés.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni.", + "Add to current playlist": "Hozzáadás a jelenlegi lejátszási listához", + "Add to current smart block": "Hozzáadás a jelenlegi okosblokkhoz", + "Adding 1 Item": "1 elem hozzáadása", + "Adding %s Items": "%s elem hozzáadása", + "You can only add tracks to smart blocks.": "Csak sávokat lehet hozzáadni az okosblokkokhoz.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz.", + "Please select a cursor position on timeline.": "Válasszon kurzor pozíciót az idővonalon.", + "You haven't added any tracks": "Még nincsenek sávok hozzáadva", + "You haven't added any playlists": "Még nincsenek lejátszási listák hozzáadva", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "Még nincsenek okosblokkok hozzáadva", + "You haven't added any webstreams": "Még nincsenek web-adásfolyamok hozzáadva", + "Learn about tracks": "Sávok megismerése", + "Learn about playlists": "Lejátszási listák megismerése", + "Learn about podcasts": "Podcastok megismerése", + "Learn about smart blocks": "Okosblokkok megismerése", + "Learn about webstreams": "Web-adásfolyamok megismerése", + "Click 'New' to create one.": "Létrehozni az „Új” gombra kattintással lehet.", + "Add": "Hozzáadás", + "New": "", + "Edit": "Szerkeszt", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Közzététel", + "Remove": "Eltávolítás", + "Edit Metadata": "Metaadatok szerkesztése", + "Add to selected show": "Hozzáadás a kiválasztott műsorhoz", + "Select": "Kijelölés", + "Select this page": "Jelölje ki ezt az oldalt", + "Deselect this page": "Az oldal kijelölésének megszüntetése", + "Deselect all": "Minden kijelölés törlése", + "Are you sure you want to delete the selected item(s)?": "Biztos benne, hogy törli a kijelölt elemeket?", + "Scheduled": "Ütemezett", + "Tracks": "Sávok", + "Playlist": "Lejátszási lista", + "Title": "Cím", + "Creator": "Előadó/Szerző", + "Album": "Album", + "Bit Rate": "Bitráta", + "BPM": "BPM", + "Composer": "Zeneszerző", + "Conductor": "Karmester", + "Copyright": "Szerzői jog", + "Encoded By": "Kódolva", + "Genre": "Műfaj", + "ISRC": "ISRC", + "Label": "Címke", + "Language": "Nyelv", + "Last Modified": "Utoljára módosítva", + "Last Played": "Utoljára játszott", + "Length": "Hossz", + "Mime": "Mime típus", + "Mood": "Hangulat", + "Owner": "Tulajdonos", + "Replay Gain": "Replay Gain", + "Sample Rate": "Mintavétel", + "Track Number": "Sáv sorszáma", + "Uploaded": "Feltöltve", + "Website": "Honlap", + "Year": "Év", + "Loading...": "Betöltés...", + "All": "Összes", + "Files": "Fájlok", + "Playlists": "Lejátszási listák", + "Smart Blocks": "Okosblokkok", + "Web Streams": "Web-adásfolyamok", + "Unknown type: ": "Ismeretlen típus:", + "Are you sure you want to delete the selected item?": "Biztos benne, hogy törli a kijelölt elemet?", + "Uploading in progress...": "Feltöltés folyamatban...", + "Retrieving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "Import": "", + "Imported?": "", + "View": "Megtekintés", + "Error code: ": "Hibakód:", + "Error msg: ": "Hibaüzenet:", + "Input must be a positive number": "A bemenetnek pozitív számnak kell lennie", + "Input must be a number": "A bemenetnek számnak kell lennie", + "Input must be in the format: yyyy-mm-dd": "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn", + "Input must be in the format: hh:mm:ss.t": "A bemenetet ebben a formában kell megadni: óó:pp:mm.t", + "My Podcast": "Podcastom", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?", + "Open Media Builder": "Médiaépítő megnyitása", + "please put in a time '00:00:00 (.0)'": "kérjük, tegye időbe '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Érvényes időt kell megadni másodpercben. Pl.: 0.5", + "Your browser does not support playing this file type: ": "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:", + "Dynamic block is not previewable": "Dinamikus blokknak nincs előnézete", + "Limit to: ": "Korlátozva:", + "Playlist saved": "Lejátszási lista mentve", + "Playlist shuffled": "Lejátszási lista megkeverve", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”.", + "Listener Count on %s: %s": "%s hallgatóinak száma: %s", + "Remind me in 1 week": "Emlékeztessen 1 hét múlva", + "Remind me never": "Soha ne emlékeztessen", + "Yes, help Airtime": "Igen, segítek az Airtime-nak", + "Image must be one of jpg, jpeg, png, or gif": "A képek formátuma jpg, jpeg, png, vagy gif kell legyen", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Okosblokk megkeverve", + "Smart block generated and criteria saved": "Okosblokk létrehozva és a feltételek mentve", + "Smart block saved": "Okosblokk elmentve", + "Processing...": "Feldolgozás...", + "Select modifier": "Módosító választása", + "contains": "tartalmazza", + "does not contain": "nem tartalmazza", + "is": "pontosan", + "is not": "nem", + "starts with": "kezdődik", + "ends with": "végződik", + "is greater than": "nagyobb, mint", + "is less than": "kisebb, mint", + "is in the range": "tartománya", + "Generate": "Létrehozás", + "Choose Storage Folder": "Válasszon tárolómappát", + "Choose Folder to Watch": "Válasszon figyelt mappát", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Biztos benne, hogy meg akarja változtatni a tárolómappát?\nEzzel eltávolítja a fájlokat a saját Airtime könyvtárából!", + "Manage Media Folders": "Médiamappák kezelése", + "Are you sure you want to remove the watched folder?": "Biztos benne, hogy el akarja távolítani a figyelt mappát?", + "This path is currently not accessible.": "Ez az útvonal jelenleg nem elérhető.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban.", + "Connected to the streaming server": "Csatlakozva az adásfolyam kiszolgálóhoz", + "The stream is disabled": "Az adásfolyam ki van kapcsolva", + "Getting information from the server...": "Információk lekérdezése a kiszolgálóról...", + "Can not connect to the streaming server": "Nem lehet kapcsolódni az adásfolyam kiszolgálójához", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani .", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó.", + "Warning: You cannot change this field while the show is currently playing": "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart", + "No result found": "Nem volt találat", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak.", + "Specify custom authentication which will work only for this show.": "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik.", + "The show instance doesn't exist anymore!": "A műsor példány nem létezik többé!", + "Warning: Shows cannot be re-linked": "Figyelem: Műsorokat nem lehet újrahivatkozni", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve.", + "Show": "Műsor", + "Show is empty": "A műsor üres", + "1m": "1p", + "5m": "5p", + "10m": "10p", + "15m": "15p", + "30m": "30p", + "60m": "60p", + "Retreiving data from the server...": "Adatok lekérdezése a kiszolgálóról...", + "This show has no scheduled content.": "Ez a műsor nem tartalmaz ütemezett tartalmat.", + "This show is not completely filled with content.": "Ez a műsor nincs teljesen feltöltve tartalommal.", + "January": "Január", + "February": "Február", + "March": "Március", + "April": "Április", + "May": "Május", + "June": "Június", + "July": "Július", + "August": "Augusztus", + "September": "Szeptember", + "October": "Október", + "November": "November", + "December": "December", + "Jan": "Jan", + "Feb": "Feb", + "Mar": "Már", + "Apr": "Ápr", + "Jun": "Jún", + "Jul": "Júl", + "Aug": "Aug", + "Sep": "Sze", + "Oct": "Okt", + "Nov": "Nov", + "Dec": "Dec", + "Today": "Ma", + "Day": "Nap", + "Week": "Hét", + "Month": "Hónap", + "Sunday": "Vasárnap", + "Monday": "Hétfő", + "Tuesday": "Kedd", + "Wednesday": "Szerda", + "Thursday": "Csütörtök", + "Friday": "Péntek", + "Saturday": "Szombat", + "Sun": "V", + "Mon": "H", + "Tue": "K", + "Wed": "Sze", + "Thu": "Cs", + "Fri": "P", + "Sat": "Szo", + "Shows longer than their scheduled time will be cut off by a following show.": "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét.", + "Cancel Current Show?": "A jelenlegi műsor megszakítása?", + "Stop recording current show?": "A jelenlegi műsor rögzítésének félbeszakítása?", + "Ok": "Ok", + "Contents of Show": "A műsor tartalmai", + "Remove all content?": "Az összes tartalom eltávolítása?", + "Delete selected item(s)?": "Törli a kiválasztott elemeket?", + "Start": "Kezdés", + "End": "Befejezés", + "Duration": "Időtartam", + "Filtering out ": "Kiszűrve", + " of ": "/", + " records": "felvétel", + "There are no shows scheduled during the specified time period.": "A megadott időszakban nincsenek ütemezett műsorok.", + "Cue In": "Felkeverés", + "Cue Out": "Lekeverés", + "Fade In": "Felúsztatás", + "Fade Out": "Leúsztatás", + "Show Empty": "Üres műsor", + "Recording From Line In": "Rögzítés a vonalbemenetről", + "Track preview": "Sáv előnézete", + "Cannot schedule outside a show.": "Nem lehet ütemezni a műsoron kívül.", + "Moving 1 Item": "1 elem áthelyezése", + "Moving %s Items": "%s elem áthelyezése", + "Save": "Mentés", + "Cancel": "Mégse", + "Fade Editor": "Úsztatási Szerkesztő", + "Cue Editor": "Keverési Szerkesztő", + "Waveform features are available in a browser supporting the Web Audio API": "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók", + "Select all": "Az összes kijelölése", + "Select none": "Kijelölés törlése", + "Trim overbooked shows": "Túlnyúló műsorok levágása", + "Remove selected scheduled items": "A kijelölt ütemezett elemek eltávolítása", + "Jump to the current playing track": "Ugrás a jelenleg játszott sávra", + "Jump to Current": "", + "Cancel current show": "A jelenlegi műsor megszakítása", + "Open library to add or remove content": "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához", + "Add / Remove Content": "Tartalom hozzáadása / eltávolítása", + "in use": "használatban van", + "Disk": "Lemez", + "Look in": "Nézze meg", + "Open": "Megnyitás", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programkezelő", + "Guest": "Vendég", + "Guests can do the following:": "A vendégek a következőket tehetik:", + "View schedule": "Az ütemezés megtekintése", + "View show content": "A műsor tartalmának megtekintése", + "DJs can do the following:": "A DJ-k a következőket tehetik:", + "Manage assigned show content": "Hozzárendelt műsor tartalmának kezelése", + "Import media files": "Médiafájlok hozzáadása", + "Create playlists, smart blocks, and webstreams": "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása", + "Manage their own library content": "Saját médiatár tartalmának kezelése", + "Program Managers can do the following:": "", + "View and manage show content": "Műsortartalom megtekintése és kezelése", + "Schedule shows": "A műsorok ütemzései", + "Manage all library content": "A teljes médiatár tartalmának kezelése", + "Admins can do the following:": "Az Adminisztrátorok a következőket tehetik:", + "Manage preferences": "Beállítások kezelései", + "Manage users": "A felhasználók kezelése", + "Manage watched folders": "A figyelt mappák kezelése", + "Send support feedback": "Támogatási visszajelzés küldése", + "View system status": "A rendszer állapot megtekitnése", + "Access playout history": "Hozzáférés lejátszási előzményekhez", + "View listener stats": "A hallgatói statisztikák megtekintése", + "Show / hide columns": "Az oszlopok megjelenítése/elrejtése", + "Columns": "", + "From {from} to {to}": "{from} és {to} között", + "kbps": "kbps", + "yyyy-mm-dd": "éééé-hh-nn", + "hh:mm:ss.t": "óó:pp:mm.t", + "kHz": "kHz", + "Su": "V", + "Mo": "H", + "Tu": "K", + "We": "Sze", + "Th": "Cs", + "Fr": "P", + "Sa": "Szo", + "Close": "Bezárás", + "Hour": "Óra", + "Minute": "Perc", + "Done": "Kész", + "Select files": "Fájlok kiválasztása", + "Add files to the upload queue and click the start button.": "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra.", + "Filename": "", + "Size": "", + "Add Files": "Fájlok hozzáadása", + "Stop Upload": "Feltöltés megszakítása", + "Start upload": "Feltöltés indítása", + "Start Upload": "", + "Add files": "Fájlok hozzáadása", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Feltöltve %d/%d fájl", + "N/A": "N/A", + "Drag files here.": "Húzza a fájlokat ide.", + "File extension error.": "Fájlkiterjesztési hiba.", + "File size error.": "Fájlméret hiba.", + "File count error.": "Fájl számi hiba.", + "Init error.": "Inicializálási hiba.", + "HTTP Error.": "HTTP Hiba.", + "Security error.": "Biztonsági hiba.", + "Generic error.": "Általános hiba.", + "IO error.": "IO hiba.", + "File: %s": "Fájl: %s", + "%d files queued": "%d várakozó fájl", + "File: %f, size: %s, max file size: %m": "Fájl: %f,méret: %s, legnagyobb fájlméret: %m", + "Upload URL might be wrong or doesn't exist": "A feltöltés URL-je rossz vagy nem létezik", + "Error: File too large: ": "Hiba: A fájl túl nagy:", + "Error: Invalid file extension: ": "Hiba: Érvénytelen fájl kiterjesztés:", + "Set Default": "Alapértelmezés beállítása", + "Create Entry": "Bejegyzés létrehozása", + "Edit History Record": "Előzmények szerkesztése", + "No Show": "Nincs műsor", + "Copied %s row%s to the clipboard": "%s sor%s másolva a vágólapra", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett.", + "New Show": "Új műsor", + "New Log Entry": "Új naplóbejegyzés", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "Következő", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "Közzététel megszüntetése", + "No matching results found.": "", + "Author": "Szerző", + "Description": "Leírás", + "Link": "Hivatkozás", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Engedélyezve", + "Disabled": "Letiltva", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "Okosblokk", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "Adásban", + "Off Air": "Adásszünet", + "Offline": "Kapcsolat nélkül", + "Nothing scheduled": "Nincs semmi ütemezve", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Kérjük adja meg felhasználónevét és jelszavát.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció.", + "That username or email address could not be found.": "A felhasználónév vagy email cím nem található.", + "There was a problem with the username or email address you entered.": "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel.", + "Wrong username or password provided. Please try again.": "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra.", + "You are viewing an older version of %s": "Ön %s egy régebbi verzióját tekinti meg", + "You cannot add tracks to dynamic blocks.": "Dinamikus blokkokhoz nem lehet sávokat hozzáadni", + "You don't have permission to delete selected %s(s).": "A kiválasztott %s törléséhez nincs engedélye.", + "You can only add tracks to smart block.": "Csak sávokat lehet hozzáadni az okosblokkhoz.", + "Untitled Playlist": "Névtelen lejátszási lista", + "Untitled Smart Block": "Névtelen okosblokk", + "Unknown Playlist": "Ismeretlen lejátszási lista", + "Preferences updated.": "Beállítások frissítve.", + "Stream Setting Updated.": "Adásfolyam beállítások frissítve.", + "path should be specified": "az útvonalat meg kell határozni", + "Problem with Liquidsoap...": "Probléma lépett fel a Liquidsoap-al...", + "Request method not accepted": "A kérés módja nem elfogadott", + "Rebroadcast of show %s from %s at %s": "A műsor újraközvetítése %s -tól/-től %s a %s", + "Select cursor": "Kurzor kiválasztása", + "Remove cursor": "Kurzor eltávolítása", + "show does not exist": "a műsor nem található", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Felhasználó sikeresen hozzáadva!", + "User updated successfully!": "Felhasználó sikeresen módosítva!", + "Settings updated successfully!": "Beállítások sikeresen módosítva!", + "Untitled Webstream": "Névtelen adásfolyam", + "Webstream saved.": "Web-adásfolyam mentve.", + "Invalid form values.": "Érvénytelen űrlap értékek.", + "Invalid character entered": "Érvénytelen bevitt karakterek", + "Day must be specified": "A napot meg kell határoznia", + "Time must be specified": "Az időt meg kell határoznia", + "Must wait at least 1 hour to rebroadcast": "Az újraközvetítésre legalább 1 órát kell várni", + "Add Autoloading Playlist ?": "Lejátszási lista automatikus ütemezése?", + "Select Playlist": "Lejátszási lista kiválasztása", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s hitelesítés használata:", + "Use Custom Authentication:": "Egyéni hitelesítés használata:", + "Custom Username": "Egyéni felhasználónév", + "Custom Password": "Egyéni jelszó", + "Host:": "Hoszt:", + "Port:": "Port:", + "Mount:": "Csatolási pont:", + "Username field cannot be empty.": "A felhasználónév mező nem lehet üres.", + "Password field cannot be empty.": "A jelszó mező nem lehet üres.", + "Record from Line In?": "Felvétel a vonalbemenetről?", + "Rebroadcast?": "Újraközvetítés?", + "days": "napok", + "Link:": "Hivatkozás:", + "Repeat Type:": "Ismétlés típusa:", + "weekly": "hetente", + "every 2 weeks": "minden második héten", + "every 3 weeks": "minden harmadik héten", + "every 4 weeks": "minden negyedik héten", + "monthly": "havonta", + "Select Days:": "Napok kiválasztása:", + "Repeat By:": "Által Ismételt:", + "day of the month": "a hónap napja", + "day of the week": "a hét napja", + "Date End:": "Befejezés dátuma:", + "No End?": "Nincs vége?", + "End date must be after start date": "A befejezés dátumának a kezdés dátuma után kell lennie", + "Please select a repeat day": "Kérjük válasszon egy ismétlési napot", + "Background Colour:": "Háttérszín:", + "Text Colour:": "Szövegszín:", + "Current Logo:": "Jelenlegi logó:", + "Show Logo:": "Logó mutatása:", + "Logo Preview:": "Logó előnézete:", + "Name:": "Név:", + "Untitled Show": "Cím nélküli műsor", + "URL:": "URL:", + "Genre:": "Műfaj:", + "Description:": "Leírás:", + "Instance Description:": "Példány leírása:", + "{msg} does not fit the time format 'HH:mm'": "{msg} nem illeszkedik „ÓÓ:pp” formátumra", + "Start Time:": "Kezdési Idő:", + "In the Future:": "A jövőben:", + "End Time:": "Befejezési idő:", + "Duration:": "Időtartam:", + "Timezone:": "Időzóna:", + "Repeats?": "Ismétlések?", + "Cannot create show in the past": "Műsort nem lehet a múltban létrehozni", + "Cannot modify start date/time of the show that is already started": "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött", + "End date/time cannot be in the past": "A befejezési dátum és időpont nem lehet a múltban", + "Cannot have duration < 0m": "Időtartam nem lehet <0p", + "Cannot have duration 00h 00m": "Időtartam nem lehet 0ó 0p", + "Cannot have duration greater than 24h": "Időtartam nem lehet nagyobb mint 24 óra", + "Cannot schedule overlapping shows": "Nem fedhetik egymást a műsorok", + "Search Users:": "Felhasználók keresése:", + "DJs:": "DJ-k:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Felhasználónév:", + "Password:": "Jelszó:", + "Verify Password:": "Jelszóellenőrzés:", + "Firstname:": "Vezetéknév:", + "Lastname:": "Keresztnév:", + "Email:": "Email:", + "Mobile Phone:": "Mobiltelefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Felhasználótípus:", + "Login name is not unique.": "A bejelentkezési név nem egyedi.", + "Delete All Tracks in Library": "Az összes sáv törlése a könyvtárból", + "Date Start:": "Kezdés Ideje:", + "Title:": "Cím:", + "Creator:": "Létrehozó:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Év:", + "Label:": "Címke:", + "Composer:": "Zeneszerző:", + "Conductor:": "Karmester:", + "Mood:": "Hangulat:", + "BPM:": "BPM:", + "Copyright:": "Szerzői jog:", + "ISRC Number:": "ISRC Szám:", + "Website:": "Honlap:", + "Language:": "Nyelv:", + "Publish...": "Közzététel...", + "Start Time": "Kezdési Idő", + "End Time": "Befejezési idő", + "Interface Timezone:": "Felület időzónája:", + "Station Name": "Állomásnév", + "Station Description": "Állomás leírás", + "Station Logo:": "Állomás logó:", + "Note: Anything larger than 600x600 will be resized.": "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül.", + "Default Crossfade Duration (s):": "Alapértelmezett Áttünési Időtartam (mp):", + "Please enter a time in seconds (eg. 0.5)": "Idő megadása másodpercben (pl.: 0.5)", + "Default Fade In (s):": "Alapértelmezett Felúsztatás (mp)", + "Default Fade Out (s):": "Alapértelmezett Leúsztatás (mp)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "Podcast album felülírása", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül.", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Kötelező a beágyazható ütemezés felületi elemhez.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára.", + "Default Language": "Alapértelmezett nyelv", + "Station Timezone": "Állomás időzóna", + "Week Starts On": "A hét kezdőnapja", + "Display login button on your Radio Page?": "Bejelentkezési gomb megjelenítése a Rádióoldalon?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Automatikus kikapcsolás:", + "Auto Switch On:": "Automatikus bekapcsolás:", + "Switch Transition Fade (s):": "", + "Master Source Host:": "Mester-forrás hoszt:", + "Master Source Port:": "Mester-forrás port:", + "Master Source Mount:": "Mester-forrás csatolási pont:", + "Show Source Host:": "Műsor-forrás hoszt:", + "Show Source Port:": "Műsor-forrás port:", + "Show Source Mount:": "Műsor-forrás csatolási pont:", + "Login": "Bejelentkezés", + "Password": "Jelszó", + "Confirm new password": "Új jelszó megerősítése", + "Password confirmation does not match your password.": "A megadott jelszavak nem egyeznek meg.", + "Email": "Email", + "Username": "Felhasználónév", + "Reset password": "A jelszó visszaállítása", + "Back": "Vissza", + "Now Playing": "Most játszott", + "Select Stream:": "Adásfolyam kiválasztása:", + "Auto detect the most appropriate stream to use.": "A legmegfelelőbb adásfolyam automatikus felismerése.", + "Select a stream:": "Egy adásfolyam kiválasztása:", + " - Mobile friendly": "- Mobilbarát", + " - The player does not support Opus streams.": "- A lejátszó nem támogatja az Opus adásfolyamokat.", + "Embeddable code:": "Beágyazható kód:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába.", + "Preview:": "Előnézet", + "Feed Privacy": "Hírfolyam adatvédelem", + "Public": "Nyilvános", + "Private": "Privát", + "Station Language": "Állomás nyelve", + "Filter by Show": "Szűrés műsor szerint", + "All My Shows:": "Összes műsorom:", + "My Shows": "Műsoraim", + "Select criteria": "A feltételek megadása", + "Bit Rate (Kbps)": "Bitráta (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Mintavételi ráta (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "óra", + "minutes": "perc", + "items": "elem", + "time remaining in show": "", + "Randomly": "Véletlenszerűen", + "Newest": "Legújabb", + "Oldest": "Legrégebbi", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "Típus:", + "Dynamic": "Dinamikus", + "Static": "Statikus", + "Select track type": "", + "Allow Repeated Tracks:": "Ismétlődő sávok engedélyezése:", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "Sávok rendezése:", + "Limit to:": "Korlátozva:", + "Generate playlist content and save criteria": "Lejátszási lista tartalmának létrehozása és a feltétel mentése", + "Shuffle playlist content": "Véletlenszerű lejátszási lista tartalom", + "Shuffle": "Véletlenszerű", + "Limit cannot be empty or smaller than 0": "A határérték nem lehet üres vagy kisebb, mint 0", + "Limit cannot be more than 24 hrs": "A határérték nem lehet hosszabb, mint 24 óra", + "The value should be an integer": "Az érték csak egész szám lehet", + "500 is the max item limit value you can set": "Maximum 500 elem állítható be", + "You must select Criteria and Modifier": "Feltételt és módosítót kell választani", + "'Length' should be in '00:00:00' format": "A „Hosszúság”-ot „00:00:00” formában kell megadni", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Az értéknek numerikusnak kell lennie", + "The value should be less then 2147483648": "Az értéknek kevesebbnek kell lennie, mint 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Az értéknek rövidebb kell lennie, mint %s karakter", + "Value cannot be empty": "Az érték nem lehet üres", + "Stream Label:": "Adásfolyam címke:", + "Artist - Title": "Előadó - Cím", + "Show - Artist - Title": "Műsor - Előadó - Cím", + "Station name - Show name": "Állomásnév - Műsornév", + "Off Air Metadata": "Adásszünet - Metaadat", + "Enable Replay Gain": "Replay Gain Engedélyezése", + "Replay Gain Modifier": "Replay Gain Módosító", + "Hardware Audio Output:": "Hardver audio kimenet:", + "Output Type": "Kimenet típusa", + "Enabled:": "Engedélyezett:", + "Mobile:": "Mobil:", + "Stream Type:": "Adásfolyam típusa:", + "Bit Rate:": "Bitráta:", + "Service Type:": "Szolgáltatás típusa:", + "Channels:": "Csatornák:", + "Server": "Kiszolgáló", + "Port": "Port", + "Mount Point": "Csatolási pont", + "Name": "Név", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Metadata beküldése saját TuneIn állomásba?", + "Station ID:": "Állomás azonosító:", + "Partner Key:": "Partnerkulcs:", + "Partner Id:": "Partnerazonosító:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni.", + "Import Folder:": "Import mappa:", + "Watched Folders:": "Figyelt Mappák:", + "Not a valid Directory": "Érvénytelen könyvtár", + "Value is required and can't be empty": "Kötelező értéket megadni, nem lehet üres", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nem felel meg az email címek alapvető formátumának (név{'@'}hosztnév)", + "{msg} does not fit the date format '%format%'": "{msg} nem illeszkedik '%format%' dátumformátumra", + "{msg} is less than %min% characters long": "{msg} rövidebb, mint %min% karakter", + "{msg} is more than %max% characters long": "'% value%' több mint, %max% karakter hosszú", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} értéknek '%min%' és '%max%' között kell lennie", + "Passwords do not match": "A jelszavak nem egyeznek meg", + "Hi %s, \n\nPlease click this link to reset your password: ": "Üdvözlünk %s, \n\nA hivatkozásra kattintva lehet visszaállítani a jelszót:", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nProbléma esetén itt lehet támogatást kérni: %s", + "\n\nThank you,\nThe %s Team": "\n\nKöszönettel,\n%s Csapat", + "%s Password Reset": "%s jelszó visszaállítása", + "Cue in and cue out are null.": "A fel- és a lekeverés értékei nullák.", + "Can't set cue out to be greater than file length.": "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál.", + "Can't set cue in to be larger than cue out.": "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés.", + "Can't set cue out to be smaller than cue in.": "Nem lehet a lekeverés rövidebb, mint a felkeverés.", + "Upload Time": "Feltöltési idő", + "None": "Nincs", + "Powered by %s": "Működteti a %s", + "Select Country": "Ország kiválasztása", + "livestream": "élő adásfolyam", + "Cannot move items out of linked shows": "Nem tud áthelyezni elemeket a kapcsolódó műsorokból", + "The schedule you're viewing is out of date! (sched mismatch)": "A megtekintett ütemterv elavult! (ütem eltérés)", + "The schedule you're viewing is out of date! (instance mismatch)": "A megtekintett ütemterv elavult! (példány eltérés)", + "The schedule you're viewing is out of date!": "A megtekintett ütemterv időpontja elavult!", + "You are not allowed to schedule show %s.": "Nincs jogosultsága %s műsor ütemezéséhez.", + "You cannot add files to recording shows.": "Nem adhat hozzá fájlokat a rögzített műsorokhoz.", + "The show %s is over and cannot be scheduled.": "A műsor %s véget ért és nem lehet ütemezni.", + "The show %s has been previously updated!": "%s műsor már korábban frissítve lett!", + "Content in linked shows cannot be changed while on air!": "A hivatkozott műsorok tartalma nem módosítható adás közben!", + "Cannot schedule a playlist that contains missing files.": "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz.", + "A selected File does not exist!": "Egy kiválasztott fájl nem létezik!", + "Shows can have a max length of 24 hours.": "A műsorok maximum 24 óra hosszúságúak lehetnek.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Átfedő műsorokat nem lehet ütemezni.\nMegjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére.", + "Rebroadcast of %s from %s": "Úrjaközvetítés %s -tól/-től %s", + "Length needs to be greater than 0 minutes": "A hosszúság értékének nagyobb kell lennie, mint 0 perc", + "Length should be of form \"00h 00m\"": "A hosszúság formája \"00ó 00p\"", + "URL should be of form \"https://example.org\"": "Az URL-t „https://example.org” formában kell megadni", + "URL should be 512 characters or less": "Az URL nem lehet 512 karakternél hosszabb", + "No MIME type found for webstream.": "Nem található MIME típus a web-adásfolyamhoz.", + "Webstream name cannot be empty": "A web-adásfolyam neve nem lehet üres", + "Could not parse XSPF playlist": "Nem sikerült feldolgozni az XSPF lejátszási listát", + "Could not parse PLS playlist": "Nem sikerült feldolgozni a PLS lejátszási listát", + "Could not parse M3U playlist": "Nem sikerült feldolgozni az M3U lejátszási listát", + "Invalid webstream - This appears to be a file download.": "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés.", + "Unrecognized stream type: %s": "Ismeretlen típusú adásfolyam: %s", + "Record file doesn't exist": "Rögzített fájl nem létezik", + "View Recorded File Metadata": "A rögzített fájl metaadatai", + "Schedule Tracks": "Sávok ütemezése", + "Clear Show": "Műsor törlése", + "Cancel Show": "Műsor megszakítása", + "Edit Instance": "Példány szerkesztése:", + "Edit Show": "Műsor szerkesztése", + "Delete Instance": "Példány törlése:", + "Delete Instance and All Following": "Ennek a példánynak és minden utána következő példánynak a törlése", + "Permission denied": "Engedély megtagadva", + "Can't drag and drop repeating shows": "Ismétlődő műsorokat nem lehet megfogni és áthúzni", + "Can't move a past show": "Az elhangzott műsort nem lehet áthelyezni", + "Can't move show into past": "A műsort nem lehet a múltba áthelyezni", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig.", + "Show was deleted because recorded show does not exist!": "A műsor törlésre került, mert a rögzített műsor nem létezik!", + "Must wait 1 hour to rebroadcast.": "Az adás újbóli közvetítésére 1 órát kell várni.", + "Track": "Sáv", + "Played": "Lejátszva", + "Auto-generated smartblock for podcast": "", + "Webstreams": "Web-adásfolyamok" } diff --git a/webapp/src/locale/it_IT.json b/webapp/src/locale/it_IT.json index 8f11a8fda2..b38e7575c9 100644 --- a/webapp/src/locale/it_IT.json +++ b/webapp/src/locale/it_IT.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "L'anno %s deve essere compreso nella serie 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s non è una data valida", - "%s:%s:%s is not a valid time": "%s:%s:%s non è un ora valida", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendario", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Utenti", - "Track Types": "", - "Streams": "Streams", - "Status": "Stato", - "Analytics": "", - "Playout History": "Storico playlist", - "History Templates": "", - "Listener Stats": "Statistiche ascolto", - "Show Listener Stats": "", - "Help": "Aiuto", - "Getting Started": "Iniziare", - "User Manual": "Manuale utente", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Non è permesso l'accesso alla risorsa.", - "You are not allowed to access this resource. ": "Non è permesso l'accesso alla risorsa. ", - "File does not exist in %s": "Il file non esiste in %s", - "Bad request. no 'mode' parameter passed.": "Richiesta errata. «modalità» parametro non riuscito.", - "Bad request. 'mode' parameter is invalid": "Richiesta errata. «modalità» parametro non valido", - "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", - "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", - "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s non trovato", - "Something went wrong.": "Qualcosa è andato storto.", - "Preview": "Anteprima", - "Add to Playlist": "Aggiungi a playlist", - "Add to Smart Block": "Aggiungi al blocco intelligente", - "Delete": "Elimina", - "Edit...": "", - "Download": "Scarica", - "Duplicate Playlist": "", - "Duplicate Smartblock": "", - "No action available": "Nessuna azione disponibile", - "You don't have permission to delete selected items.": "Non ha il permesso per cancellare gli elementi selezionati.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "", - "Please make sure admin user/password is correct on Settings->Streams page.": "", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Registra:", - "Master Stream": "Stream Principale", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Niente programmato", - "Current Show:": "Show attuale:", - "Current": "Attuale", - "You are running the latest version": "Sta gestendo l'ultima versione", - "New version available: ": "Nuova versione disponibile:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Aggiungi all'attuale playlist", - "Add to current smart block": "Aggiungi all' attuale blocco intelligente", - "Adding 1 Item": "Sto aggiungendo un elemento", - "Adding %s Items": "Aggiunte %s voci", - "You can only add tracks to smart blocks.": "Puoi solo aggiungere tracce ai blocchi intelligenti.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist.", - "Please select a cursor position on timeline.": "", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Aggiungi ", - "New": "", - "Edit": "Edita", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Rimuovi", - "Edit Metadata": "Edita Metadata", - "Add to selected show": "Aggiungi agli show selezionati", - "Select": "Seleziona", - "Select this page": "Seleziona pagina", - "Deselect this page": "Deseleziona pagina", - "Deselect all": "Deseleziona tutto", - "Are you sure you want to delete the selected item(s)?": "E' sicuro di voler eliminare la/e voce/i selezionata/e?", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Titolo", - "Creator": "Creatore", - "Album": "Album", - "Bit Rate": "Velocità di trasmissione", - "BPM": "BPM", - "Composer": "Compositore", - "Conductor": "Conduttore", - "Copyright": "Copyright", - "Encoded By": "Codificato da", - "Genre": "Genere", - "ISRC": "ISRC", - "Label": "Etichetta", - "Language": "Lingua", - "Last Modified": "Ultima modifica", - "Last Played": "Ultima esecuzione", - "Length": "Lunghezza", - "Mime": "Formato (Mime)", - "Mood": "Genere (Mood)", - "Owner": "Proprietario", - "Replay Gain": "Ripeti", - "Sample Rate": "Velocità campione", - "Track Number": "Numero traccia", - "Uploaded": "Caricato", - "Website": "Sito web", - "Year": "Anno", - "Loading...": "Caricamento...", - "All": "Tutto", - "Files": "File", - "Playlists": "Playlist", - "Smart Blocks": "Blocchi intelligenti", - "Web Streams": "Web Streams", - "Unknown type: ": "Tipologia sconosciuta:", - "Are you sure you want to delete the selected item?": "Sei sicuro di voler eliminare gli elementi selezionati?", - "Uploading in progress...": "Caricamento in corso...", - "Retrieving data from the server...": "Dati recuperati dal server...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Errore codice:", - "Error msg: ": "Errore messaggio:", - "Input must be a positive number": "L'ingresso deve essere un numero positivo", - "Input must be a number": "L'ingresso deve essere un numero", - "Input must be in the format: yyyy-mm-dd": "L'ingresso deve essere nel formato : yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "L'ingresso deve essere nel formato : hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "inserisca per favore il tempo '00:00:00(.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Il suo browser non sopporta la riproduzione di questa tipologia di file:", - "Dynamic block is not previewable": "Il blocco dinamico non c'è in anteprima", - "Limit to: ": "Limitato a:", - "Playlist saved": "Playlist salvata", - "Playlist shuffled": "", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato.", - "Listener Count on %s: %s": "Programma in ascolto su %s: %s", - "Remind me in 1 week": "Ricordamelo tra 1 settimana", - "Remind me never": "Non ricordarmelo", - "Yes, help Airtime": "Si, aiuta Airtime", - "Image must be one of jpg, jpeg, png, or gif": "L'immagine deve essere in formato jpg, jpeg, png, oppure gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Blocco intelligente casuale", - "Smart block generated and criteria saved": "Blocco Intelligente generato ed criteri salvati", - "Smart block saved": "Blocco intelligente salvato", - "Processing...": "Elaborazione in corso...", - "Select modifier": "Seleziona modificatore", - "contains": "contiene", - "does not contain": "non contiene", - "is": "è ", - "is not": "non è", - "starts with": "inizia con", - "ends with": "finisce con", - "is greater than": "è più di", - "is less than": "è meno di", - "is in the range": "nella seguenza", - "Generate": "Genere", - "Choose Storage Folder": "Scelga l'archivio delle cartelle", - "Choose Folder to Watch": "Scelga le cartelle da guardare", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "E' sicuro di voler cambiare l'archivio delle cartelle?\n Questo rimuoverà i file dal suo archivio Airtime!", - "Manage Media Folders": "Gestisci cartelle media", - "Are you sure you want to remove the watched folder?": "E' sicuro di voler rimuovere le cartelle guardate?", - "This path is currently not accessible.": "Questo percorso non è accessibile attualmente.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Connesso al server di streaming.", - "The stream is disabled": "Stream disattivato", - "Getting information from the server...": "Ottenere informazioni dal server...", - "Can not connect to the streaming server": "Non può connettersi al server di streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nessun risultato trovato", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi.", - "Specify custom authentication which will work only for this show.": "Imposta autenticazione personalizzata che funzionerà solo per questo show.", - "The show instance doesn't exist anymore!": "L'istanza dello show non esiste più!", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Show", - "Show is empty": "Lo show è vuoto", - "1m": "1min", - "5m": "5min", - "10m": "10min", - "15m": "15min", - "30m": "30min", - "60m": "60min", - "Retreiving data from the server...": "Recupera data dal server...", - "This show has no scheduled content.": "Lo show non ha un contenuto programmato.", - "This show is not completely filled with content.": "", - "January": "Gennaio", - "February": "Febbraio", - "March": "Marzo", - "April": "Aprile", - "May": "Maggio", - "June": "Giugno", - "July": "Luglio", - "August": "Agosto", - "September": "Settembre", - "October": "Ottobre", - "November": "Novembre", - "December": "Dicembre", - "Jan": "Gen", - "Feb": "Feb", - "Mar": "Mar", - "Apr": "Apr", - "Jun": "Giu", - "Jul": "Lug", - "Aug": "Ago", - "Sep": "Set", - "Oct": "Ott", - "Nov": "Nov", - "Dec": "Dic", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Domenica", - "Monday": "Lunedì", - "Tuesday": "Martedì", - "Wednesday": "Mercoledì", - "Thursday": "Giovedì", - "Friday": "Venerdì", - "Saturday": "Sabato", - "Sun": "Dom", - "Mon": "Lun", - "Tue": "Mar", - "Wed": "Mer", - "Thu": "Gio", - "Fri": "Ven", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo.", - "Cancel Current Show?": "Cancellare lo show attuale?", - "Stop recording current show?": "Fermare registrazione dello show attuale?", - "Ok": "OK", - "Contents of Show": "Contenuti dello Show", - "Remove all content?": "Rimuovere tutto il contenuto?", - "Delete selected item(s)?": "Cancellare la/e voce/i selezionata/e?", - "Start": "Start", - "End": "Fine", - "Duration": "Durata", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Dissolvenza in entrata", - "Fade Out": "Dissolvenza in uscita", - "Show Empty": "Show vuoto", - "Recording From Line In": "Registrando da Line In", - "Track preview": "Anteprima traccia", - "Cannot schedule outside a show.": "Non può programmare fuori show.", - "Moving 1 Item": "Spostamento di un elemento in corso", - "Moving %s Items": "Spostamento degli elementi %s in corso", - "Save": "Salva", - "Cancel": "Cancella", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Seleziona tutto", - "Select none": "Nessuna selezione", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Rimuovi la voce selezionata", - "Jump to the current playing track": "Salta alla traccia dell'attuale playlist", - "Jump to Current": "", - "Cancel current show": "Cancella show attuale", - "Open library to add or remove content": "Apri biblioteca per aggiungere o rimuovere contenuto", - "Add / Remove Content": "Aggiungi/Rimuovi contenuto", - "in use": "in uso", - "Disk": "Disco", - "Look in": "Cerca in", - "Open": "Apri", - "Admin": "Amministratore ", - "DJ": "DJ", - "Program Manager": "Programma direttore", - "Guest": "Ospite", - "Guests can do the following:": "", - "View schedule": "", - "View show content": "", - "DJs can do the following:": "", - "Manage assigned show content": "", - "Import media files": "", - "Create playlists, smart blocks, and webstreams": "", - "Manage their own library content": "", - "Program Managers can do the following:": "", - "View and manage show content": "", - "Schedule shows": "", - "Manage all library content": "", - "Admins can do the following:": "", - "Manage preferences": "", - "Manage users": "", - "Manage watched folders": "", - "Send support feedback": "Invia supporto feedback:", - "View system status": "", - "Access playout history": "", - "View listener stats": "", - "Show / hide columns": "Mostra/nascondi colonne", - "Columns": "", - "From {from} to {to}": "Da {da} a {a}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Dom", - "Mo": "Lun", - "Tu": "Mar", - "We": "Mer", - "Th": "Gio", - "Fr": "Ven", - "Sa": "Sab", - "Close": "Chiudi", - "Hour": "Ore", - "Minute": "Minuti", - "Done": "Completato", - "Select files": "", - "Add files to the upload queue and click the start button.": "", - "Filename": "", - "Size": "", - "Add Files": "", - "Stop Upload": "", - "Start upload": "", - "Start Upload": "", - "Add files": "", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "", - "N/A": "", - "Drag files here.": "", - "File extension error.": "", - "File size error.": "", - "File count error.": "", - "Init error.": "", - "HTTP Error.": "", - "Security error.": "", - "Generic error.": "", - "IO error.": "", - "File: %s": "", - "%d files queued": "", - "File: %f, size: %s, max file size: %m": "", - "Upload URL might be wrong or doesn't exist": "", - "Error: File too large: ": "", - "Error: Invalid file extension: ": "", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Descrizione", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Abilitato", - "Disabled": "Disattivato", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "Fuori onda", - "Offline": "Fuori linea", - "Nothing scheduled": "Niente di programmato", - "Click 'Add' to create one now.": "Clicca su «Aggiungi» per crearne uno ora.", - "Please enter your username and password.": "Inserisci il tuo nome utente e la tua password.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente.", - "That username or email address could not be found.": "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail.", - "There was a problem with the username or email address you entered.": "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito.", - "Wrong username or password provided. Please try again.": "Nome utente o password forniti errati. Per favore riprovi.", - "You are viewing an older version of %s": "Sta visualizzando una versione precedente di %s", - "You cannot add tracks to dynamic blocks.": "Non può aggiungere tracce al blocco dinamico.", - "You don't have permission to delete selected %s(s).": "Non ha i permessi per cancellare la selezione %s(s).", - "You can only add tracks to smart block.": "Puoi solo aggiungere tracce al blocco intelligente.", - "Untitled Playlist": "Playlist senza nome", - "Untitled Smart Block": "Blocco intelligente senza nome", - "Unknown Playlist": "Playlist sconosciuta", - "Preferences updated.": "Preferenze aggiornate.", - "Stream Setting Updated.": "Aggiornamento impostazioni Stream.", - "path should be specified": "il percorso deve essere specificato", - "Problem with Liquidsoap...": "Problemi con Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Ritrasmetti show %s da %s a %s", - "Select cursor": "Seleziona cursore", - "Remove cursor": "Rimuovere il cursore", - "show does not exist": "lo show non esiste", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "User aggiunto con successo!", - "User updated successfully!": "User aggiornato con successo!", - "Settings updated successfully!": "", - "Untitled Webstream": "Webstream senza titolo", - "Webstream saved.": "Webstream salvate.", - "Invalid form values.": "Valori non validi.", - "Invalid character entered": "Carattere inserito non valido", - "Day must be specified": "Il giorno deve essere specificato", - "Time must be specified": "L'ora dev'essere specificata", - "Must wait at least 1 hour to rebroadcast": "Aspettare almeno un'ora prima di ritrasmettere", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Usa autenticazione clienti:", - "Custom Username": "Personalizza nome utente ", - "Custom Password": "Personalizza Password", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Il campo nome utente non può rimanere vuoto.", - "Password field cannot be empty.": "Il campo della password non può rimanere vuoto.", - "Record from Line In?": "Registra da Line In?", - "Rebroadcast?": "Ritrasmetti?", - "days": "giorni", - "Link:": "", - "Repeat Type:": "Ripeti tipo:", - "weekly": "settimanalmente", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "mensilmente", - "Select Days:": "Seleziona giorni:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data fine:", - "No End?": "Ripeti all'infinito?", - "End date must be after start date": "La data di fine deve essere posteriore a quella di inizio", - "Please select a repeat day": "", - "Background Colour:": "Colore sfondo:", - "Text Colour:": "Colore testo:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nome:", - "Untitled Show": "Show senza nome", - "URL:": "URL:", - "Genre:": "Genere:", - "Description:": "Descrizione:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} non si adatta al formato dell'ora 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Durata:", - "Timezone:": "", - "Repeats?": "Ripetizioni?", - "Cannot create show in the past": "Non creare show al passato", - "Cannot modify start date/time of the show that is already started": "Non modificare data e ora di inizio degli slot in eseguzione", - "End date/time cannot be in the past": "L'ora e la data finale non possono precedere quelle iniziali", - "Cannot have duration < 0m": "Non ci può essere una durata <0m", - "Cannot have duration 00h 00m": "Non ci può essere una durata 00h 00m", - "Cannot have duration greater than 24h": "Non ci può essere una durata superiore a 24h", - "Cannot schedule overlapping shows": "Non puoi sovrascrivere gli show", - "Search Users:": "Cerca utenti:", - "DJs:": "Dj:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Username:", - "Password:": "Password:", - "Verify Password:": "", - "Firstname:": "Nome:", - "Lastname:": "Cognome:", - "Email:": "E-mail:", - "Mobile Phone:": "Cellulare:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "tipo di utente:", - "Login name is not unique.": "Il nome utente esiste già .", - "Delete All Tracks in Library": "", - "Date Start:": "Data inizio:", - "Title:": "Titolo:", - "Creator:": "Creatore:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Anno:", - "Label:": "Etichetta:", - "Composer:": "Compositore:", - "Conductor:": "Conduttore:", - "Mood:": "Umore:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Numero ISRC :", - "Website:": "Sito web:", - "Language:": "Lingua:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nome stazione", - "Station Description": "", - "Station Logo:": "Logo stazione: ", - "Note: Anything larger than 600x600 will be resized.": "Note: La lunghezze superiori a 600x600 saranno ridimensionate.", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "La settimana inizia il", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Accedi", - "Password": "Password", - "Confirm new password": "Conferma nuova password", - "Password confirmation does not match your password.": "La password di conferma non corrisponde con la sua password.", - "Email": "", - "Username": "Nome utente", - "Reset password": "Reimposta password", - "Back": "", - "Now Playing": "In esecuzione", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Tutti i miei show:", - "My Shows": "", - "Select criteria": "Seleziona criteri", - "Bit Rate (Kbps)": "Bit Rate (kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Velocità campione (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "ore", - "minutes": "minuti", - "items": "elementi", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinamico", - "Static": "Statico", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Genera contenuto playlist e salva criteri", - "Shuffle playlist content": "Eseguzione casuale playlist", - "Shuffle": "Casuale", - "Limit cannot be empty or smaller than 0": "Il margine non può essere vuoto o più piccolo di 0", - "Limit cannot be more than 24 hrs": "Il margine non può superare le 24ore", - "The value should be an integer": "Il valore deve essere un numero intero", - "500 is the max item limit value you can set": "500 è il limite massimo di elementi che può inserire", - "You must select Criteria and Modifier": "Devi selezionare da Criteri e Modifica", - "'Length' should be in '00:00:00' format": "La lunghezza deve essere nel formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Il valore deve essere numerico", - "The value should be less then 2147483648": "Il valore deve essere inferiore a 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Il valore deve essere inferiore a %s caratteri", - "Value cannot be empty": "Il valore non deve essere vuoto", - "Stream Label:": "Etichetta Stream:", - "Artist - Title": "Artista - Titolo", - "Show - Artist - Title": "Show - Artista - Titolo", - "Station name - Show name": "Nome stazione - Nome show", - "Off Air Metadata": "", - "Enable Replay Gain": "", - "Replay Gain Modifier": "", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Attiva:", - "Mobile:": "", - "Stream Type:": "Tipo di stream:", - "Bit Rate:": "Velocità di trasmissione: ", - "Service Type:": "Tipo di servizio:", - "Channels:": "Canali:", - "Server": "Server", - "Port": "Port", - "Mount Point": "Mount Point", - "Name": "Nome", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Importa Folder:", - "Watched Folders:": "Folder visionati:", - "Not a valid Directory": "Catalogo non valido", - "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} non è valido l'indirizzo e-mail nella forma base local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} non va bene con il formato data '%formato%'", - "{msg} is less than %min% characters long": "{msg} è più corto di %min% caratteri", - "{msg} is more than %max% characters long": "{msg} è più lungo di %max% caratteri", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} non è tra '%min%' e '%max%' compresi", - "Passwords do not match": "", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue in e cue out sono nulli.", - "Can't set cue out to be greater than file length.": "Il cue out non può essere più grande della lunghezza del file.", - "Can't set cue in to be larger than cue out.": "Il cue in non può essere più grande del cue out.", - "Can't set cue out to be smaller than cue in.": "Il cue out non può essere più piccolo del cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Seleziona paese", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'orario)", - "The schedule you're viewing is out of date! (instance mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)", - "The schedule you're viewing is out of date!": "Il programma che sta visionando è fuori data!", - "You are not allowed to schedule show %s.": "Non è abilitato all'elenco degli show%s", - "You cannot add files to recording shows.": "Non può aggiungere file a show registrati.", - "The show %s is over and cannot be scheduled.": "Lo show % supera la lunghezza massima e non può essere programmato.", - "The show %s has been previously updated!": "Il programma %s è già stato aggiornato!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Il File selezionato non esiste!", - "Shows can have a max length of 24 hours.": "Gli show possono avere una lunghezza massima di 24 ore.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Non si possono programmare show sovrapposti.\n Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni.", - "Rebroadcast of %s from %s": "Ritrasmetti da %s a %s", - "Length needs to be greater than 0 minutes": "La lunghezza deve superare 0 minuti", - "Length should be of form \"00h 00m\"": "La lunghezza deve essere nella forma \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL deve essere nella forma \"https://example.org\"", - "URL should be 512 characters or less": "URL dove essere di 512 caratteri o meno", - "No MIME type found for webstream.": "Nessun MIME type trovato per le webstream.", - "Webstream name cannot be empty": "Webstream non può essere vuoto", - "Could not parse XSPF playlist": "Non è possibile analizzare le playlist XSPF ", - "Could not parse PLS playlist": "Non è possibile analizzare le playlist PLS", - "Could not parse M3U playlist": "Non è possibile analizzare le playlist M3U", - "Invalid webstream - This appears to be a file download.": "Webstream non valido - Questo potrebbe essere un file scaricato.", - "Unrecognized stream type: %s": "Tipo di stream sconosciuto: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Vedi file registrati Metadata", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Modifica il programma", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Non puoi spostare show ripetuti", - "Can't move a past show": "Non puoi spostare uno show passato", - "Can't move show into past": "Non puoi spostare uno show nel passato", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso.", - "Show was deleted because recorded show does not exist!": "Lo show è stato cancellato perché lo show registrato non esiste!", - "Must wait 1 hour to rebroadcast.": "Devi aspettare un'ora prima di ritrasmettere.", - "Track": "", - "Played": "Riprodotti", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "L'anno %s deve essere compreso nella serie 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s non è una data valida", + "%s:%s:%s is not a valid time": "%s:%s:%s non è un ora valida", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendario", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Utenti", + "Track Types": "", + "Streams": "Streams", + "Status": "Stato", + "Analytics": "", + "Playout History": "Storico playlist", + "History Templates": "", + "Listener Stats": "Statistiche ascolto", + "Show Listener Stats": "", + "Help": "Aiuto", + "Getting Started": "Iniziare", + "User Manual": "Manuale utente", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Non è permesso l'accesso alla risorsa.", + "You are not allowed to access this resource. ": "Non è permesso l'accesso alla risorsa. ", + "File does not exist in %s": "Il file non esiste in %s", + "Bad request. no 'mode' parameter passed.": "Richiesta errata. «modalità» parametro non riuscito.", + "Bad request. 'mode' parameter is invalid": "Richiesta errata. «modalità» parametro non valido", + "You don't have permission to disconnect source.": "Non è consentito disconnettersi dalla fonte.", + "There is no source connected to this input.": "Nessuna fonte connessa a questo ingresso.", + "You don't have permission to switch source.": "Non ha il permesso per cambiare fonte.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s non trovato", + "Something went wrong.": "Qualcosa è andato storto.", + "Preview": "Anteprima", + "Add to Playlist": "Aggiungi a playlist", + "Add to Smart Block": "Aggiungi al blocco intelligente", + "Delete": "Elimina", + "Edit...": "", + "Download": "Scarica", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "Nessuna azione disponibile", + "You don't have permission to delete selected items.": "Non ha il permesso per cancellare gli elementi selezionati.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Registra:", + "Master Stream": "Stream Principale", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Niente programmato", + "Current Show:": "Show attuale:", + "Current": "Attuale", + "You are running the latest version": "Sta gestendo l'ultima versione", + "New version available: ": "Nuova versione disponibile:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Aggiungi all'attuale playlist", + "Add to current smart block": "Aggiungi all' attuale blocco intelligente", + "Adding 1 Item": "Sto aggiungendo un elemento", + "Adding %s Items": "Aggiunte %s voci", + "You can only add tracks to smart blocks.": "Puoi solo aggiungere tracce ai blocchi intelligenti.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist.", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Aggiungi ", + "New": "", + "Edit": "Edita", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Rimuovi", + "Edit Metadata": "Edita Metadata", + "Add to selected show": "Aggiungi agli show selezionati", + "Select": "Seleziona", + "Select this page": "Seleziona pagina", + "Deselect this page": "Deseleziona pagina", + "Deselect all": "Deseleziona tutto", + "Are you sure you want to delete the selected item(s)?": "E' sicuro di voler eliminare la/e voce/i selezionata/e?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Titolo", + "Creator": "Creatore", + "Album": "Album", + "Bit Rate": "Velocità di trasmissione", + "BPM": "BPM", + "Composer": "Compositore", + "Conductor": "Conduttore", + "Copyright": "Copyright", + "Encoded By": "Codificato da", + "Genre": "Genere", + "ISRC": "ISRC", + "Label": "Etichetta", + "Language": "Lingua", + "Last Modified": "Ultima modifica", + "Last Played": "Ultima esecuzione", + "Length": "Lunghezza", + "Mime": "Formato (Mime)", + "Mood": "Genere (Mood)", + "Owner": "Proprietario", + "Replay Gain": "Ripeti", + "Sample Rate": "Velocità campione", + "Track Number": "Numero traccia", + "Uploaded": "Caricato", + "Website": "Sito web", + "Year": "Anno", + "Loading...": "Caricamento...", + "All": "Tutto", + "Files": "File", + "Playlists": "Playlist", + "Smart Blocks": "Blocchi intelligenti", + "Web Streams": "Web Streams", + "Unknown type: ": "Tipologia sconosciuta:", + "Are you sure you want to delete the selected item?": "Sei sicuro di voler eliminare gli elementi selezionati?", + "Uploading in progress...": "Caricamento in corso...", + "Retrieving data from the server...": "Dati recuperati dal server...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Errore codice:", + "Error msg: ": "Errore messaggio:", + "Input must be a positive number": "L'ingresso deve essere un numero positivo", + "Input must be a number": "L'ingresso deve essere un numero", + "Input must be in the format: yyyy-mm-dd": "L'ingresso deve essere nel formato : yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "L'ingresso deve essere nel formato : hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "inserisca per favore il tempo '00:00:00(.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Il suo browser non sopporta la riproduzione di questa tipologia di file:", + "Dynamic block is not previewable": "Il blocco dinamico non c'è in anteprima", + "Limit to: ": "Limitato a:", + "Playlist saved": "Playlist salvata", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato.", + "Listener Count on %s: %s": "Programma in ascolto su %s: %s", + "Remind me in 1 week": "Ricordamelo tra 1 settimana", + "Remind me never": "Non ricordarmelo", + "Yes, help Airtime": "Si, aiuta Airtime", + "Image must be one of jpg, jpeg, png, or gif": "L'immagine deve essere in formato jpg, jpeg, png, oppure gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Blocco intelligente casuale", + "Smart block generated and criteria saved": "Blocco Intelligente generato ed criteri salvati", + "Smart block saved": "Blocco intelligente salvato", + "Processing...": "Elaborazione in corso...", + "Select modifier": "Seleziona modificatore", + "contains": "contiene", + "does not contain": "non contiene", + "is": "è ", + "is not": "non è", + "starts with": "inizia con", + "ends with": "finisce con", + "is greater than": "è più di", + "is less than": "è meno di", + "is in the range": "nella seguenza", + "Generate": "Genere", + "Choose Storage Folder": "Scelga l'archivio delle cartelle", + "Choose Folder to Watch": "Scelga le cartelle da guardare", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "E' sicuro di voler cambiare l'archivio delle cartelle?\n Questo rimuoverà i file dal suo archivio Airtime!", + "Manage Media Folders": "Gestisci cartelle media", + "Are you sure you want to remove the watched folder?": "E' sicuro di voler rimuovere le cartelle guardate?", + "This path is currently not accessible.": "Questo percorso non è accessibile attualmente.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Connesso al server di streaming.", + "The stream is disabled": "Stream disattivato", + "Getting information from the server...": "Ottenere informazioni dal server...", + "Can not connect to the streaming server": "Non può connettersi al server di streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nessun risultato trovato", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi.", + "Specify custom authentication which will work only for this show.": "Imposta autenticazione personalizzata che funzionerà solo per questo show.", + "The show instance doesn't exist anymore!": "L'istanza dello show non esiste più!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Show", + "Show is empty": "Lo show è vuoto", + "1m": "1min", + "5m": "5min", + "10m": "10min", + "15m": "15min", + "30m": "30min", + "60m": "60min", + "Retreiving data from the server...": "Recupera data dal server...", + "This show has no scheduled content.": "Lo show non ha un contenuto programmato.", + "This show is not completely filled with content.": "", + "January": "Gennaio", + "February": "Febbraio", + "March": "Marzo", + "April": "Aprile", + "May": "Maggio", + "June": "Giugno", + "July": "Luglio", + "August": "Agosto", + "September": "Settembre", + "October": "Ottobre", + "November": "Novembre", + "December": "Dicembre", + "Jan": "Gen", + "Feb": "Feb", + "Mar": "Mar", + "Apr": "Apr", + "Jun": "Giu", + "Jul": "Lug", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Ott", + "Nov": "Nov", + "Dec": "Dic", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domenica", + "Monday": "Lunedì", + "Tuesday": "Martedì", + "Wednesday": "Mercoledì", + "Thursday": "Giovedì", + "Friday": "Venerdì", + "Saturday": "Sabato", + "Sun": "Dom", + "Mon": "Lun", + "Tue": "Mar", + "Wed": "Mer", + "Thu": "Gio", + "Fri": "Ven", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo.", + "Cancel Current Show?": "Cancellare lo show attuale?", + "Stop recording current show?": "Fermare registrazione dello show attuale?", + "Ok": "OK", + "Contents of Show": "Contenuti dello Show", + "Remove all content?": "Rimuovere tutto il contenuto?", + "Delete selected item(s)?": "Cancellare la/e voce/i selezionata/e?", + "Start": "Start", + "End": "Fine", + "Duration": "Durata", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Dissolvenza in entrata", + "Fade Out": "Dissolvenza in uscita", + "Show Empty": "Show vuoto", + "Recording From Line In": "Registrando da Line In", + "Track preview": "Anteprima traccia", + "Cannot schedule outside a show.": "Non può programmare fuori show.", + "Moving 1 Item": "Spostamento di un elemento in corso", + "Moving %s Items": "Spostamento degli elementi %s in corso", + "Save": "Salva", + "Cancel": "Cancella", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Seleziona tutto", + "Select none": "Nessuna selezione", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Rimuovi la voce selezionata", + "Jump to the current playing track": "Salta alla traccia dell'attuale playlist", + "Jump to Current": "", + "Cancel current show": "Cancella show attuale", + "Open library to add or remove content": "Apri biblioteca per aggiungere o rimuovere contenuto", + "Add / Remove Content": "Aggiungi/Rimuovi contenuto", + "in use": "in uso", + "Disk": "Disco", + "Look in": "Cerca in", + "Open": "Apri", + "Admin": "Amministratore ", + "DJ": "DJ", + "Program Manager": "Programma direttore", + "Guest": "Ospite", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Invia supporto feedback:", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "Mostra/nascondi colonne", + "Columns": "", + "From {from} to {to}": "Da {da} a {a}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Dom", + "Mo": "Lun", + "Tu": "Mar", + "We": "Mer", + "Th": "Gio", + "Fr": "Ven", + "Sa": "Sab", + "Close": "Chiudi", + "Hour": "Ore", + "Minute": "Minuti", + "Done": "Completato", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "", + "File size error.": "", + "File count error.": "", + "Init error.": "", + "HTTP Error.": "", + "Security error.": "", + "Generic error.": "", + "IO error.": "", + "File: %s": "", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "", + "Error: Invalid file extension: ": "", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrizione", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Abilitato", + "Disabled": "Disattivato", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "Fuori onda", + "Offline": "Fuori linea", + "Nothing scheduled": "Niente di programmato", + "Click 'Add' to create one now.": "Clicca su «Aggiungi» per crearne uno ora.", + "Please enter your username and password.": "Inserisci il tuo nome utente e la tua password.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "L' e-mail non può essere inviata. Controlli le impostazioni del tuo server di e-mail e si accerti che è stato configurato correttamente.", + "That username or email address could not be found.": "Non è stato possibile trovare quel nome utente o quell'indirizzo e-mail.", + "There was a problem with the username or email address you entered.": "C'è stato un problema con il nome utente o l'indirizzo e-mail che hai inserito.", + "Wrong username or password provided. Please try again.": "Nome utente o password forniti errati. Per favore riprovi.", + "You are viewing an older version of %s": "Sta visualizzando una versione precedente di %s", + "You cannot add tracks to dynamic blocks.": "Non può aggiungere tracce al blocco dinamico.", + "You don't have permission to delete selected %s(s).": "Non ha i permessi per cancellare la selezione %s(s).", + "You can only add tracks to smart block.": "Puoi solo aggiungere tracce al blocco intelligente.", + "Untitled Playlist": "Playlist senza nome", + "Untitled Smart Block": "Blocco intelligente senza nome", + "Unknown Playlist": "Playlist sconosciuta", + "Preferences updated.": "Preferenze aggiornate.", + "Stream Setting Updated.": "Aggiornamento impostazioni Stream.", + "path should be specified": "il percorso deve essere specificato", + "Problem with Liquidsoap...": "Problemi con Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Ritrasmetti show %s da %s a %s", + "Select cursor": "Seleziona cursore", + "Remove cursor": "Rimuovere il cursore", + "show does not exist": "lo show non esiste", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "User aggiunto con successo!", + "User updated successfully!": "User aggiornato con successo!", + "Settings updated successfully!": "", + "Untitled Webstream": "Webstream senza titolo", + "Webstream saved.": "Webstream salvate.", + "Invalid form values.": "Valori non validi.", + "Invalid character entered": "Carattere inserito non valido", + "Day must be specified": "Il giorno deve essere specificato", + "Time must be specified": "L'ora dev'essere specificata", + "Must wait at least 1 hour to rebroadcast": "Aspettare almeno un'ora prima di ritrasmettere", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usa autenticazione clienti:", + "Custom Username": "Personalizza nome utente ", + "Custom Password": "Personalizza Password", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Il campo nome utente non può rimanere vuoto.", + "Password field cannot be empty.": "Il campo della password non può rimanere vuoto.", + "Record from Line In?": "Registra da Line In?", + "Rebroadcast?": "Ritrasmetti?", + "days": "giorni", + "Link:": "", + "Repeat Type:": "Ripeti tipo:", + "weekly": "settimanalmente", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensilmente", + "Select Days:": "Seleziona giorni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data fine:", + "No End?": "Ripeti all'infinito?", + "End date must be after start date": "La data di fine deve essere posteriore a quella di inizio", + "Please select a repeat day": "", + "Background Colour:": "Colore sfondo:", + "Text Colour:": "Colore testo:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Show senza nome", + "URL:": "URL:", + "Genre:": "Genere:", + "Description:": "Descrizione:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} non si adatta al formato dell'ora 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Durata:", + "Timezone:": "", + "Repeats?": "Ripetizioni?", + "Cannot create show in the past": "Non creare show al passato", + "Cannot modify start date/time of the show that is already started": "Non modificare data e ora di inizio degli slot in eseguzione", + "End date/time cannot be in the past": "L'ora e la data finale non possono precedere quelle iniziali", + "Cannot have duration < 0m": "Non ci può essere una durata <0m", + "Cannot have duration 00h 00m": "Non ci può essere una durata 00h 00m", + "Cannot have duration greater than 24h": "Non ci può essere una durata superiore a 24h", + "Cannot schedule overlapping shows": "Non puoi sovrascrivere gli show", + "Search Users:": "Cerca utenti:", + "DJs:": "Dj:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Username:", + "Password:": "Password:", + "Verify Password:": "", + "Firstname:": "Nome:", + "Lastname:": "Cognome:", + "Email:": "E-mail:", + "Mobile Phone:": "Cellulare:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "tipo di utente:", + "Login name is not unique.": "Il nome utente esiste già .", + "Delete All Tracks in Library": "", + "Date Start:": "Data inizio:", + "Title:": "Titolo:", + "Creator:": "Creatore:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Anno:", + "Label:": "Etichetta:", + "Composer:": "Compositore:", + "Conductor:": "Conduttore:", + "Mood:": "Umore:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Numero ISRC :", + "Website:": "Sito web:", + "Language:": "Lingua:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome stazione", + "Station Description": "", + "Station Logo:": "Logo stazione: ", + "Note: Anything larger than 600x600 will be resized.": "Note: La lunghezze superiori a 600x600 saranno ridimensionate.", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "La settimana inizia il", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Accedi", + "Password": "Password", + "Confirm new password": "Conferma nuova password", + "Password confirmation does not match your password.": "La password di conferma non corrisponde con la sua password.", + "Email": "", + "Username": "Nome utente", + "Reset password": "Reimposta password", + "Back": "", + "Now Playing": "In esecuzione", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tutti i miei show:", + "My Shows": "", + "Select criteria": "Seleziona criteri", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Velocità campione (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "ore", + "minutes": "minuti", + "items": "elementi", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamico", + "Static": "Statico", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genera contenuto playlist e salva criteri", + "Shuffle playlist content": "Eseguzione casuale playlist", + "Shuffle": "Casuale", + "Limit cannot be empty or smaller than 0": "Il margine non può essere vuoto o più piccolo di 0", + "Limit cannot be more than 24 hrs": "Il margine non può superare le 24ore", + "The value should be an integer": "Il valore deve essere un numero intero", + "500 is the max item limit value you can set": "500 è il limite massimo di elementi che può inserire", + "You must select Criteria and Modifier": "Devi selezionare da Criteri e Modifica", + "'Length' should be in '00:00:00' format": "La lunghezza deve essere nel formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Il valore deve essere numerico", + "The value should be less then 2147483648": "Il valore deve essere inferiore a 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Il valore deve essere inferiore a %s caratteri", + "Value cannot be empty": "Il valore non deve essere vuoto", + "Stream Label:": "Etichetta Stream:", + "Artist - Title": "Artista - Titolo", + "Show - Artist - Title": "Show - Artista - Titolo", + "Station name - Show name": "Nome stazione - Nome show", + "Off Air Metadata": "", + "Enable Replay Gain": "", + "Replay Gain Modifier": "", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Attiva:", + "Mobile:": "", + "Stream Type:": "Tipo di stream:", + "Bit Rate:": "Velocità di trasmissione: ", + "Service Type:": "Tipo di servizio:", + "Channels:": "Canali:", + "Server": "Server", + "Port": "Port", + "Mount Point": "Mount Point", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Importa Folder:", + "Watched Folders:": "Folder visionati:", + "Not a valid Directory": "Catalogo non valido", + "Value is required and can't be empty": "Il calore richiesto non può rimanere vuoto", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} non è valido l'indirizzo e-mail nella forma base local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} non va bene con il formato data '%formato%'", + "{msg} is less than %min% characters long": "{msg} è più corto di %min% caratteri", + "{msg} is more than %max% characters long": "{msg} è più lungo di %max% caratteri", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} non è tra '%min%' e '%max%' compresi", + "Passwords do not match": "", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue in e cue out sono nulli.", + "Can't set cue out to be greater than file length.": "Il cue out non può essere più grande della lunghezza del file.", + "Can't set cue in to be larger than cue out.": "Il cue in non può essere più grande del cue out.", + "Can't set cue out to be smaller than cue in.": "Il cue out non può essere più piccolo del cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Seleziona paese", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'orario)", + "The schedule you're viewing is out of date! (instance mismatch)": "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)", + "The schedule you're viewing is out of date!": "Il programma che sta visionando è fuori data!", + "You are not allowed to schedule show %s.": "Non è abilitato all'elenco degli show%s", + "You cannot add files to recording shows.": "Non può aggiungere file a show registrati.", + "The show %s is over and cannot be scheduled.": "Lo show % supera la lunghezza massima e non può essere programmato.", + "The show %s has been previously updated!": "Il programma %s è già stato aggiornato!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Il File selezionato non esiste!", + "Shows can have a max length of 24 hours.": "Gli show possono avere una lunghezza massima di 24 ore.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Non si possono programmare show sovrapposti.\n Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni.", + "Rebroadcast of %s from %s": "Ritrasmetti da %s a %s", + "Length needs to be greater than 0 minutes": "La lunghezza deve superare 0 minuti", + "Length should be of form \"00h 00m\"": "La lunghezza deve essere nella forma \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL deve essere nella forma \"https://example.org\"", + "URL should be 512 characters or less": "URL dove essere di 512 caratteri o meno", + "No MIME type found for webstream.": "Nessun MIME type trovato per le webstream.", + "Webstream name cannot be empty": "Webstream non può essere vuoto", + "Could not parse XSPF playlist": "Non è possibile analizzare le playlist XSPF ", + "Could not parse PLS playlist": "Non è possibile analizzare le playlist PLS", + "Could not parse M3U playlist": "Non è possibile analizzare le playlist M3U", + "Invalid webstream - This appears to be a file download.": "Webstream non valido - Questo potrebbe essere un file scaricato.", + "Unrecognized stream type: %s": "Tipo di stream sconosciuto: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Vedi file registrati Metadata", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Modifica il programma", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Non puoi spostare show ripetuti", + "Can't move a past show": "Non puoi spostare uno show passato", + "Can't move show into past": "Non puoi spostare uno show nel passato", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso.", + "Show was deleted because recorded show does not exist!": "Lo show è stato cancellato perché lo show registrato non esiste!", + "Must wait 1 hour to rebroadcast.": "Devi aspettare un'ora prima di ritrasmettere.", + "Track": "", + "Played": "Riprodotti", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/ja_JP.json b/webapp/src/locale/ja_JP.json index 4d62e5984c..e0458fd62f 100644 --- a/webapp/src/locale/ja_JP.json +++ b/webapp/src/locale/ja_JP.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s年は、1753 - 9999の範囲内である必要があります", - "%s-%s-%s is not a valid date": "%s-%s-%sは正しい日付ではありません", - "%s:%s:%s is not a valid time": "%s:%s:%sは正しい時間ではありません", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "カレンダー", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "ユーザー", - "Track Types": "", - "Streams": "配信設定", - "Status": "ステータス", - "Analytics": "", - "Playout History": "配信履歴", - "History Templates": "配信履歴のテンプレート", - "Listener Stats": "リスナー統計", - "Show Listener Stats": "", - "Help": "ヘルプ", - "Getting Started": "はじめに", - "User Manual": "ユーザーマニュアル", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "このリソースへのアクセスは許可されていません。", - "You are not allowed to access this resource. ": "このリソースへのアクセスは許可されていません。", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Bad Request:パスした「mode」パラメータはありません。", - "Bad request. 'mode' parameter is invalid": "Bad Request:'mode' パラメータが無効です。", - "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", - "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", - "You don't have permission to switch source.": "ソースを切り替える権限がありません。", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s は見つかりませんでした。", - "Something went wrong.": "問題が生じました。", - "Preview": "プレビュー", - "Add to Playlist": "プレイリストに追加", - "Add to Smart Block": "スマートブロックに追加", - "Delete": "削除", - "Edit...": "", - "Download": "ダウンロード", - "Duplicate Playlist": "プレイリストのコピー", - "Duplicate Smartblock": "", - "No action available": "実行可能な操作はありません。", - "You don't have permission to delete selected items.": "選択した項目を削除する権限がありません。", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%sのコピー", - "Please make sure admin user/password is correct on Settings->Streams page.": "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。", - "Audio Player": "オーディオプレイヤー", - "Something went wrong!": "", - "Recording:": "録音中:", - "Master Stream": "マスターストリーム", - "Live Stream": "ライブ配信", - "Nothing Scheduled": "何も予約されていません。", - "Current Show:": "現在の番組:", - "Current": "Now Playing", - "You are running the latest version": "最新バージョンを使用しています。", - "New version available: ": "新しいバージョンがあります:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "現在のプレイリストに追加", - "Add to current smart block": "現在のスマートブロックに追加", - "Adding 1 Item": "1個の項目を追加", - "Adding %s Items": " %s個の項目を追加", - "You can only add tracks to smart blocks.": "スマートブロックに追加できるのはトラックのみです。", - "You can only add tracks, smart blocks, and webstreams to playlists.": "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。", - "Please select a cursor position on timeline.": "タイムライン上のカーソル位置を選択して下さい。", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "追加", - "New": "", - "Edit": "編集", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "削除", - "Edit Metadata": "メタデータの編集", - "Add to selected show": "選択した番組へ追加", - "Select": "選択", - "Select this page": "このページを選択", - "Deselect this page": "このページを選択解除", - "Deselect all": "全てを選択解除", - "Are you sure you want to delete the selected item(s)?": "選択した項目を削除してもよろしいですか?", - "Scheduled": "配信予約済み", - "Tracks": "", - "Playlist": "", - "Title": "タイトル", - "Creator": "アーティスト", - "Album": "アルバム", - "Bit Rate": "ビットレート", - "BPM": "BPM ", - "Composer": "作曲者", - "Conductor": "コンダクター", - "Copyright": "著作権", - "Encoded By": "エンコード", - "Genre": "ジャンル", - "ISRC": "ISRC", - "Label": "レーベル", - "Language": "言語", - "Last Modified": "最終修正", - "Last Played": "最終配信日", - "Length": "時間", - "Mime": "MIMEタイプ", - "Mood": "ムード", - "Owner": "所有者", - "Replay Gain": "リプレイゲイン", - "Sample Rate": "サンプルレート", - "Track Number": "トラック番号", - "Uploaded": "アップロード完了", - "Website": "ウェブサイト", - "Year": "年", - "Loading...": "ロード中…", - "All": "全て", - "Files": "ファイル", - "Playlists": "プレイリスト", - "Smart Blocks": "スマートブロック", - "Web Streams": "ウェブ配信", - "Unknown type: ": "種類不明:", - "Are you sure you want to delete the selected item?": "選択した項目を削除してもよろしいですか?", - "Uploading in progress...": "アップロード中…", - "Retrieving data from the server...": "サーバーからデータを取得しています…", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "エラーコード:", - "Error msg: ": "エラーメッセージ:", - "Input must be a positive number": "0より大きい半角数字で入力して下さい。", - "Input must be a number": "半角数字で入力して下さい。", - "Input must be in the format: yyyy-mm-dd": "yyyy-mm-ddの形で入力して下さい。", - "Input must be in the format: hh:mm:ss.t": "01:22:33.4の形式で入力して下さい。", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?", - "Open Media Builder": "メディアビルダーを開く", - "please put in a time '00:00:00 (.0)'": "時間は01:22:33(.4)の形式で入力して下さい。", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "お使いのブラウザはこのファイル形式の再生に対応していません:", - "Dynamic block is not previewable": "自動生成スマート・ブロックはプレビューできません", - "Limit to: ": "次の値に制限:", - "Playlist saved": "プレイリストが保存されました。", - "Playlist shuffled": "プレイリストがシャッフルされました。", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。", - "Listener Count on %s: %s": "%sのリスナー視聴数:%s", - "Remind me in 1 week": "1週間前に通知", - "Remind me never": "通知しない", - "Yes, help Airtime": "Rakuten.FMを支援します", - "Image must be one of jpg, jpeg, png, or gif": "画像は、jpg, jpeg, png, または gif の形式にしてください。", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "スマートブロックがシャッフルされました。", - "Smart block generated and criteria saved": "スマートブロックが生成されて基準が保存されました。", - "Smart block saved": "スマートブロックを保存しました。", - "Processing...": "処理中…", - "Select modifier": "条件を選択してください", - "contains": "以下を含む", - "does not contain": "以下を含まない", - "is": "以下と一致する", - "is not": "以下と一致しない", - "starts with": "以下で始まる", - "ends with": "以下で終わる", - "is greater than": "次の値より大きい", - "is less than": "次の値より小さい", - "is in the range": "次の範囲内", - "Generate": "生成", - "Choose Storage Folder": "フォルダを選択してください。", - "Choose Folder to Watch": "同期するフォルダを選択", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!", - "Manage Media Folders": "メディアフォルダの管理", - "Are you sure you want to remove the watched folder?": "同期されているフォルダを削除してもよろしいですか?", - "This path is currently not accessible.": "このパスは現在アクセス不可能です。", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。", - "Connected to the streaming server": "ストリーミングサーバーに接続しています。", - "The stream is disabled": "配信が切断されています。", - "Getting information from the server...": "サーバーから情報を取得しています…", - "Can not connect to the streaming server": "ストリーミングサーバーに接続できません。", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。", - "Check this box to automatically switch on Master/Show source upon source connection.": "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。", - "If your Icecast server expects a username of 'source', this field can be left blank.": " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。", - "If your live streaming client does not ask for a username, this field should be 'source'.": "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。", - "Warning: You cannot change this field while the show is currently playing": "注意:番組の配信中にこの項目は変更できません。", - "No result found": "結果は見つかりませんでした。", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。", - "Specify custom authentication which will work only for this show.": "この番組に対してのみ有効なカスタム認証を指定してください。", - "The show instance doesn't exist anymore!": "この番組の配信回が存在しません。", - "Warning: Shows cannot be re-linked": "注意:番組は再度リンクできません。", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。", - "Show": "番組", - "Show is empty": "番組内容がありません。", - "1m": "1分", - "5m": "5分", - "10m": "10分", - "15m": "15分", - "30m": "30分", - "60m": "60分", - "Retreiving data from the server...": "サーバーからデータを取得しています…", - "This show has no scheduled content.": "この番組には予約されているコンテンツがありません。", - "This show is not completely filled with content.": "この番組はコンテンツが足りていません。", - "January": "1月", - "February": "2月", - "March": "3月", - "April": "4月", - "May": "5月", - "June": "6月", - "July": "7月", - "August": "8月", - "September": "9月", - "October": "10月", - "November": "11月", - "December": "12月", - "Jan": "1月", - "Feb": "2月", - "Mar": "3月", - "Apr": "4月", - "Jun": "6月", - "Jul": "7月", - "Aug": "8月", - "Sep": "9月", - "Oct": "10月", - "Nov": "11月", - "Dec": "12月", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "日曜日", - "Monday": "月曜日", - "Tuesday": "火曜日", - "Wednesday": "水曜日", - "Thursday": "木曜日", - "Friday": "金曜日", - "Saturday": "土曜日", - "Sun": "日", - "Mon": "月", - "Tue": "火", - "Wed": "水", - "Thu": "木", - "Fri": "金", - "Sat": "土", - "Shows longer than their scheduled time will be cut off by a following show.": "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。", - "Cancel Current Show?": "現在の番組をキャンセルしますか?", - "Stop recording current show?": "配信中の番組の録音を中止しますか?", - "Ok": "Ok", - "Contents of Show": "番組内容", - "Remove all content?": "全てのコンテンツを削除しますか?", - "Delete selected item(s)?": "選択した項目を削除しますか?", - "Start": "開始", - "End": "終了", - "Duration": "長さ", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "キューイン", - "Cue Out": "キューアウト", - "Fade In": "フェードイン", - "Fade Out": "フェードアウト", - "Show Empty": "番組内容がありません。", - "Recording From Line In": "ライン入力から録音", - "Track preview": "試聴する", - "Cannot schedule outside a show.": "番組外に予約することは出来ません。", - "Moving 1 Item": "1個の項目を移動", - "Moving %s Items": "%s 個の項目を移動", - "Save": "保存", - "Cancel": "キャンセル", - "Fade Editor": "フェードの編集", - "Cue Editor": "キューの編集", - "Waveform features are available in a browser supporting the Web Audio API": "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。", - "Select all": "全て選択", - "Select none": "全て解除", - "Trim overbooked shows": "", - "Remove selected scheduled items": "選択した項目を削除", - "Jump to the current playing track": "現在再生中のトラックに移動", - "Jump to Current": "", - "Cancel current show": "配信中の番組をキャンセル", - "Open library to add or remove content": "ライブラリを開いてコンテンツを追加・削除する", - "Add / Remove Content": "コンテンツの追加・削除", - "in use": "使用中", - "Disk": "ディスク", - "Look in": "閲覧", - "Open": "開く", - "Admin": "管理者", - "DJ": "DJ", - "Program Manager": "プログラムマネージャー", - "Guest": "ゲスト", - "Guests can do the following:": "ゲストは以下の操作ができます:", - "View schedule": "スケジュールを見る", - "View show content": "番組内容を見る", - "DJs can do the following:": "DJは以下の操作ができます:", - "Manage assigned show content": "割り当てられた番組内容を管理", - "Import media files": "メディアファイルをインポートする", - "Create playlists, smart blocks, and webstreams": "プレイリスト・スマートブロック・ウェブストリームを作成", - "Manage their own library content": "ライブラリのコンテンツを管理", - "Program Managers can do the following:": "", - "View and manage show content": "番組内容の表示と管理", - "Schedule shows": "番組を予約する", - "Manage all library content": "ライブラリの全てのコンテンツを管理", - "Admins can do the following:": "管理者は次の操作が可能です:", - "Manage preferences": "設定を管理", - "Manage users": "ユーザー管理", - "Manage watched folders": "同期されているフォルダを管理", - "Send support feedback": "サポートにフィードバックを送る", - "View system status": "システムステータスを見る", - "Access playout history": "配信レポートへ", - "View listener stats": "リスナー統計を確認", - "Show / hide columns": "表示設定", - "Columns": "", - "From {from} to {to}": "{from}から{to}へ", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "日", - "Mo": "月", - "Tu": "火", - "We": "水", - "Th": "木", - "Fr": "金", - "Sa": "土", - "Close": "閉じる", - "Hour": "時", - "Minute": "分", - "Done": "完了", - "Select files": "ファイルを選択", - "Add files to the upload queue and click the start button.": "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。", - "Filename": "", - "Size": "", - "Add Files": "ファイルを追加", - "Stop Upload": "アップロード中止", - "Start upload": "アップロード開始", - "Start Upload": "", - "Add files": "ファイルを追加", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d ファイルをアップロードしました。", - "N/A": "N/A", - "Drag files here.": "こちらにファイルをドラッグしてください。", - "File extension error.": "ファイル拡張子エラーです。", - "File size error.": "ファイルサイズエラーです。", - "File count error.": "ファイルカウントのエラーです。", - "Init error.": "Initエラーです。", - "HTTP Error.": "HTTPエラーです。", - "Security error.": "セキュリティエラーです。", - "Generic error.": "エラーです。", - "IO error.": "入出力エラーです。", - "File: %s": "ファイル: %s", - "%d files queued": "%d のファイルが待機中", - "File: %f, size: %s, max file size: %m": "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m", - "Upload URL might be wrong or doesn't exist": "アップロードURLに誤りがあるか存在しません。", - "Error: File too large: ": "エラー:ファイルサイズが大きすぎます。", - "Error: Invalid file extension: ": "エラー:ファイル拡張子が無効です。", - "Set Default": "初期設定として保存", - "Create Entry": "エントリーを作成", - "Edit History Record": "配信履歴を編集", - "No Show": "番組はありません。", - "Copied %s row%s to the clipboard": "%s 列の%s をクリップボードにコピー しました。", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "説明", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "有効", - "Disabled": "無効", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "メールが送信できませんでした。メールサーバーの設定を確認してください。", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "入力されたユーザー名またはパスワードが誤っています。", - "You are viewing an older version of %s": "%sの古いバージョンを閲覧しています。", - "You cannot add tracks to dynamic blocks.": "自動生成スマート・ブロックにトラックを追加することはできません。", - "You don't have permission to delete selected %s(s).": "選択された%sを削除する権限がありません。", - "You can only add tracks to smart block.": "スマートブロックに追加できるのはトラックのみです。", - "Untitled Playlist": "無題のプレイリスト", - "Untitled Smart Block": "無題のスマートブロック", - "Unknown Playlist": "不明なプレイリスト", - "Preferences updated.": "設定が更新されました。", - "Stream Setting Updated.": "配信設定が更新されました。", - "path should be specified": "パスを指定する必要があります", - "Problem with Liquidsoap...": "Liquidsoapに問題があります。", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "%sの再配信:%s %s時", - "Select cursor": "カーソルを選択", - "Remove cursor": "カーソルを削除", - "show does not exist": "番組が存在しません。", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "ユーザーの追加に成功しました。", - "User updated successfully!": "ユーザーの更新に成功しました。", - "Settings updated successfully!": "設定の更新に成功しました。", - "Untitled Webstream": "無題のウェブ配信", - "Webstream saved.": "ウェブ配信が保存されました。", - "Invalid form values.": "入力欄に無効な値があります。", - "Invalid character entered": "使用できない文字が入力されました。", - "Day must be specified": "日付を指定する必要があります。", - "Time must be specified": "時間を指定する必要があります。", - "Must wait at least 1 hour to rebroadcast": "再配信するには、1時間以上待たなければなりません", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "カスタム認証を使用:", - "Custom Username": "カスタムユーザー名", - "Custom Password": "カスタムパスワード", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "ユーザー名を入力してください。", - "Password field cannot be empty.": "パスワードを入力してください。", - "Record from Line In?": "ライン入力から録音", - "Rebroadcast?": "再配信", - "days": "日", - "Link:": "配信内容を同期する:", - "Repeat Type:": "リピート形式:", - "weekly": "毎週", - "every 2 weeks": "2週間ごと", - "every 3 weeks": "3週間ごと", - "every 4 weeks": "4週間ごと", - "monthly": "毎月", - "Select Days:": "曜日を選択:", - "Repeat By:": "リピート間隔:", - "day of the month": "毎月特定日", - "day of the week": "毎月特定曜日", - "Date End:": "終了日:", - "No End?": "無期限", - "End date must be after start date": "終了日は開始日より後に設定してください。", - "Please select a repeat day": "繰り返す日を選択してください", - "Background Colour:": "背景色:", - "Text Colour:": "文字色:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "名前:", - "Untitled Show": "無題の番組", - "URL:": "URL:", - "Genre:": "ジャンル:", - "Description:": "説明:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg}は、'01:22'の形式に適合していません", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "長さ:", - "Timezone:": "タイムゾーン:", - "Repeats?": "定期番組に設定", - "Cannot create show in the past": "過去の日付に番組は作成できません。", - "Cannot modify start date/time of the show that is already started": "すでに開始されている番組の開始日、開始時間を変更することはできません。", - "End date/time cannot be in the past": "終了日時は過去に設定できません。", - "Cannot have duration < 0m": "0分以下の長さに設定することはできません。", - "Cannot have duration 00h 00m": "00h 00mの長さに設定することはできません。", - "Cannot have duration greater than 24h": "24時間を越える長さに設定することはできません。", - "Cannot schedule overlapping shows": "番組を重複して予約することはできません。", - "Search Users:": "ユーザーを検索:", - "DJs:": "DJ:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "ユーザー名:", - "Password:": "パスワード:", - "Verify Password:": "確認用パスワード:", - "Firstname:": "名:", - "Lastname:": "姓:", - "Email:": "メール:", - "Mobile Phone:": "携帯電話:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "ユーザー種別:", - "Login name is not unique.": "ログイン名はすでに使用されています。", - "Delete All Tracks in Library": "", - "Date Start:": "開始日:", - "Title:": "タイトル:", - "Creator:": "アーティスト:", - "Album:": "アルバム:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "年:", - "Label:": "ラベル:", - "Composer:": "作曲者", - "Conductor:": "コンダクター:", - "Mood:": "ムード:", - "BPM:": "BPM:", - "Copyright:": "著作権:", - "ISRC Number:": "ISRC番号:", - "Website:": "ウェブサイト:", - "Language:": "言語:", - "Publish...": "", - "Start Time": "開始時間", - "End Time": "終了時間", - "Interface Timezone:": "インターフェイスのタイムゾーン:", - "Station Name": "ステーション名", - "Station Description": "", - "Station Logo:": "ステーションロゴ:", - "Note: Anything larger than 600x600 will be resized.": "注意:大きさが600x600以上の場合はサイズが変更されます。", - "Default Crossfade Duration (s):": "クロスフェードの時間(初期値):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "デフォルトフェードイン(初期値):", - "Default Fade Out (s):": "デフォルトフェードアウト(初期値):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "ステーションのタイムゾーン", - "Week Starts On": "週の開始曜日", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "ログイン", - "Password": "パスワード", - "Confirm new password": "新しいパスワードを確認してください。", - "Password confirmation does not match your password.": "パスワード確認がパスワードと一致しません。", - "Email": "", - "Username": "ユーザー名", - "Reset password": "パスワードをリセット", - "Back": "", - "Now Playing": "", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "全ての番組:", - "My Shows": "", - "Select criteria": "基準を選択してください", - "Bit Rate (Kbps)": "ビットレート (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "サンプリング周波数 (kHz) ", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "時間", - "minutes": "分", - "items": "項目", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "自動生成スマート・ブロック", - "Static": "スマート・ブロック", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "プレイリストコンテンツを生成し、基準を保存", - "Shuffle playlist content": "プレイリストの内容をシャッフル", - "Shuffle": "シャッフル", - "Limit cannot be empty or smaller than 0": "制限は空欄または0以下には設定できません。", - "Limit cannot be more than 24 hrs": "制限は24時間以内に設定してください。", - "The value should be an integer": "値は整数である必要があります。", - "500 is the max item limit value you can set": "設定できるアイテムの最大数は500です。", - "You must select Criteria and Modifier": "「基準」と「条件」を選択してください。", - "'Length' should be in '00:00:00' format": "「長さ」は、'00:00:00'の形式で入力してください。", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "値は数字である必要があります。", - "The value should be less then 2147483648": "値は2147483648未満にする必要があります。", - "The value cannot be empty": "", - "The value should be less than %s characters": "値は%s未満にする必要があります。", - "Value cannot be empty": "値を入力してください。", - "Stream Label:": "配信表示設定:", - "Artist - Title": "アーティスト - タイトル", - "Show - Artist - Title": "番組 - アーティスト - タイトル", - "Station name - Show name": "ステーション名 - 番組名", - "Off Air Metadata": "オフエアーメタデータ", - "Enable Replay Gain": "リプレイゲインを有効化", - "Replay Gain Modifier": "リプレイゲイン調整", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "有効:", - "Mobile:": "", - "Stream Type:": "配信種別:", - "Bit Rate:": "ビットレート:", - "Service Type:": "サービスタイプ:", - "Channels:": "再生方式", - "Server": "サーバー", - "Port": "ポート", - "Mount Point": "マウントポイント", - "Name": "名前", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "インポートフォルダ:", - "Watched Folders:": "同期フォルダ:", - "Not a valid Directory": "正しいディレクトリではありません。", - "Value is required and can't be empty": "値を入力してください", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}は無効なEメールアドレスです。local-part{'@'}hostnameの形式に沿ったEメールアドレスを登録してください。", - "{msg} does not fit the date format '%format%'": "{msg}は、'%format%'の日付形式に一致しません。", - "{msg} is less than %min% characters long": "{msg}は、%min%文字より短くなっています。", - "{msg} is more than %max% characters long": "{msg}は、%max%文字を越えています。", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg}は、'%min%'以上'%max%'以下の条件に一致しません。", - "Passwords do not match": "パスワードが一致しません。", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "キューインとキューアウトが設定されていません。", - "Can't set cue out to be greater than file length.": "キューアウトはファイルの長さより長く設定できません。", - "Can't set cue in to be larger than cue out.": "キューインをキューアウトより大きく設定することはできません。", - "Can't set cue out to be smaller than cue in.": "キューアウトをキューインより小さく設定することはできません。", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "国の選択", - "livestream": "", - "Cannot move items out of linked shows": "リンクした番組の外に項目を移動することはできません。", - "The schedule you're viewing is out of date! (sched mismatch)": "参照中のスケジュールはの有効ではありません。", - "The schedule you're viewing is out of date! (instance mismatch)": "参照中のスケジュールは有効ではありません。", - "The schedule you're viewing is out of date!": "参照中のスケジュールは有効ではありません。", - "You are not allowed to schedule show %s.": "番組を%sに予約することはできません。", - "You cannot add files to recording shows.": "録音中の番組にファイルを追加することはできません。", - "The show %s is over and cannot be scheduled.": "番組 %s は終了しておりスケジュールに入れることができません。", - "The show %s has been previously updated!": "番組 %s は以前に更新されています。", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "選択したファイルは存在しません。", - "Shows can have a max length of 24 hours.": "番組は最大24時間まで設定可能です。", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "番組を重複して予約することはできません。\n注意:再配信番組のサイズ変更は全ての再配信に反映されます。", - "Rebroadcast of %s from %s": "%sの再配信%sから", - "Length needs to be greater than 0 minutes": "再生時間は0分以上である必要があります。", - "Length should be of form \"00h 00m\"": "時間は \"00h 00m\"の形式にしてください。", - "URL should be of form \"https://example.org\"": "URL は\"https://example.org\"の形式で入力してください。", - "URL should be 512 characters or less": "URLは512文字以下にしてください。", - "No MIME type found for webstream.": "ウェブ配信用のMIMEタイプは見つかりませんでした。", - "Webstream name cannot be empty": "ウェブ配信名を入力して下さい。", - "Could not parse XSPF playlist": "XSPFプレイリストを解析できませんでした。", - "Could not parse PLS playlist": "PLSプレイリストを解析できませんでした。", - "Could not parse M3U playlist": "M3Uプレイリストを解析できませんでした。", - "Invalid webstream - This appears to be a file download.": "無効なウェブ配信です。", - "Unrecognized stream type: %s": "不明な配信種別です: %s", - "Record file doesn't exist": "録音ファイルは存在しません。", - "View Recorded File Metadata": "録音ファイルのメタデータを確認", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "番組の編集", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "許可されていない操作です。", - "Can't drag and drop repeating shows": "定期配信している番組を移動することはできません。", - "Can't move a past show": "過去の番組を移動することはできません。", - "Can't move show into past": "番組を過去の日付に移動することはできません。", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "録音された番組を再配信時間の直前1時間の枠に移動することはできません。", - "Show was deleted because recorded show does not exist!": "録音された番組が存在しないので番組は削除されました。", - "Must wait 1 hour to rebroadcast.": "再配信には1時間待たなければなりません。", - "Track": "トラック", - "Played": "再生済み", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "%s年は、1753 - 9999の範囲内である必要があります", + "%s-%s-%s is not a valid date": "%s-%s-%sは正しい日付ではありません", + "%s:%s:%s is not a valid time": "%s:%s:%sは正しい時間ではありません", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "カレンダー", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "ユーザー", + "Track Types": "", + "Streams": "配信設定", + "Status": "ステータス", + "Analytics": "", + "Playout History": "配信履歴", + "History Templates": "配信履歴のテンプレート", + "Listener Stats": "リスナー統計", + "Show Listener Stats": "", + "Help": "ヘルプ", + "Getting Started": "はじめに", + "User Manual": "ユーザーマニュアル", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "このリソースへのアクセスは許可されていません。", + "You are not allowed to access this resource. ": "このリソースへのアクセスは許可されていません。", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Bad Request:パスした「mode」パラメータはありません。", + "Bad request. 'mode' parameter is invalid": "Bad Request:'mode' パラメータが無効です。", + "You don't have permission to disconnect source.": "ソースを切断する権限がありません。", + "There is no source connected to this input.": "この入力に接続されたソースが存在しません。", + "You don't have permission to switch source.": "ソースを切り替える権限がありません。", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s は見つかりませんでした。", + "Something went wrong.": "問題が生じました。", + "Preview": "プレビュー", + "Add to Playlist": "プレイリストに追加", + "Add to Smart Block": "スマートブロックに追加", + "Delete": "削除", + "Edit...": "", + "Download": "ダウンロード", + "Duplicate Playlist": "プレイリストのコピー", + "Duplicate Smartblock": "", + "No action available": "実行可能な操作はありません。", + "You don't have permission to delete selected items.": "選択した項目を削除する権限がありません。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%sのコピー", + "Please make sure admin user/password is correct on Settings->Streams page.": "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。", + "Audio Player": "オーディオプレイヤー", + "Something went wrong!": "", + "Recording:": "録音中:", + "Master Stream": "マスターストリーム", + "Live Stream": "ライブ配信", + "Nothing Scheduled": "何も予約されていません。", + "Current Show:": "現在の番組:", + "Current": "Now Playing", + "You are running the latest version": "最新バージョンを使用しています。", + "New version available: ": "新しいバージョンがあります:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "現在のプレイリストに追加", + "Add to current smart block": "現在のスマートブロックに追加", + "Adding 1 Item": "1個の項目を追加", + "Adding %s Items": " %s個の項目を追加", + "You can only add tracks to smart blocks.": "スマートブロックに追加できるのはトラックのみです。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。", + "Please select a cursor position on timeline.": "タイムライン上のカーソル位置を選択して下さい。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "追加", + "New": "", + "Edit": "編集", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "削除", + "Edit Metadata": "メタデータの編集", + "Add to selected show": "選択した番組へ追加", + "Select": "選択", + "Select this page": "このページを選択", + "Deselect this page": "このページを選択解除", + "Deselect all": "全てを選択解除", + "Are you sure you want to delete the selected item(s)?": "選択した項目を削除してもよろしいですか?", + "Scheduled": "配信予約済み", + "Tracks": "", + "Playlist": "", + "Title": "タイトル", + "Creator": "アーティスト", + "Album": "アルバム", + "Bit Rate": "ビットレート", + "BPM": "BPM ", + "Composer": "作曲者", + "Conductor": "コンダクター", + "Copyright": "著作権", + "Encoded By": "エンコード", + "Genre": "ジャンル", + "ISRC": "ISRC", + "Label": "レーベル", + "Language": "言語", + "Last Modified": "最終修正", + "Last Played": "最終配信日", + "Length": "時間", + "Mime": "MIMEタイプ", + "Mood": "ムード", + "Owner": "所有者", + "Replay Gain": "リプレイゲイン", + "Sample Rate": "サンプルレート", + "Track Number": "トラック番号", + "Uploaded": "アップロード完了", + "Website": "ウェブサイト", + "Year": "年", + "Loading...": "ロード中…", + "All": "全て", + "Files": "ファイル", + "Playlists": "プレイリスト", + "Smart Blocks": "スマートブロック", + "Web Streams": "ウェブ配信", + "Unknown type: ": "種類不明:", + "Are you sure you want to delete the selected item?": "選択した項目を削除してもよろしいですか?", + "Uploading in progress...": "アップロード中…", + "Retrieving data from the server...": "サーバーからデータを取得しています…", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "エラーコード:", + "Error msg: ": "エラーメッセージ:", + "Input must be a positive number": "0より大きい半角数字で入力して下さい。", + "Input must be a number": "半角数字で入力して下さい。", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-ddの形で入力して下さい。", + "Input must be in the format: hh:mm:ss.t": "01:22:33.4の形式で入力して下さい。", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?", + "Open Media Builder": "メディアビルダーを開く", + "please put in a time '00:00:00 (.0)'": "時間は01:22:33(.4)の形式で入力して下さい。", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "お使いのブラウザはこのファイル形式の再生に対応していません:", + "Dynamic block is not previewable": "自動生成スマート・ブロックはプレビューできません", + "Limit to: ": "次の値に制限:", + "Playlist saved": "プレイリストが保存されました。", + "Playlist shuffled": "プレイリストがシャッフルされました。", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。", + "Listener Count on %s: %s": "%sのリスナー視聴数:%s", + "Remind me in 1 week": "1週間前に通知", + "Remind me never": "通知しない", + "Yes, help Airtime": "Rakuten.FMを支援します", + "Image must be one of jpg, jpeg, png, or gif": "画像は、jpg, jpeg, png, または gif の形式にしてください。", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "スマートブロックがシャッフルされました。", + "Smart block generated and criteria saved": "スマートブロックが生成されて基準が保存されました。", + "Smart block saved": "スマートブロックを保存しました。", + "Processing...": "処理中…", + "Select modifier": "条件を選択してください", + "contains": "以下を含む", + "does not contain": "以下を含まない", + "is": "以下と一致する", + "is not": "以下と一致しない", + "starts with": "以下で始まる", + "ends with": "以下で終わる", + "is greater than": "次の値より大きい", + "is less than": "次の値より小さい", + "is in the range": "次の範囲内", + "Generate": "生成", + "Choose Storage Folder": "フォルダを選択してください。", + "Choose Folder to Watch": "同期するフォルダを選択", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!", + "Manage Media Folders": "メディアフォルダの管理", + "Are you sure you want to remove the watched folder?": "同期されているフォルダを削除してもよろしいですか?", + "This path is currently not accessible.": "このパスは現在アクセス不可能です。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。", + "Connected to the streaming server": "ストリーミングサーバーに接続しています。", + "The stream is disabled": "配信が切断されています。", + "Getting information from the server...": "サーバーから情報を取得しています…", + "Can not connect to the streaming server": "ストリーミングサーバーに接続できません。", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。", + "Check this box to automatically switch on Master/Show source upon source connection.": "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。", + "If your Icecast server expects a username of 'source', this field can be left blank.": " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。", + "Warning: You cannot change this field while the show is currently playing": "注意:番組の配信中にこの項目は変更できません。", + "No result found": "結果は見つかりませんでした。", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。", + "Specify custom authentication which will work only for this show.": "この番組に対してのみ有効なカスタム認証を指定してください。", + "The show instance doesn't exist anymore!": "この番組の配信回が存在しません。", + "Warning: Shows cannot be re-linked": "注意:番組は再度リンクできません。", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。", + "Show": "番組", + "Show is empty": "番組内容がありません。", + "1m": "1分", + "5m": "5分", + "10m": "10分", + "15m": "15分", + "30m": "30分", + "60m": "60分", + "Retreiving data from the server...": "サーバーからデータを取得しています…", + "This show has no scheduled content.": "この番組には予約されているコンテンツがありません。", + "This show is not completely filled with content.": "この番組はコンテンツが足りていません。", + "January": "1月", + "February": "2月", + "March": "3月", + "April": "4月", + "May": "5月", + "June": "6月", + "July": "7月", + "August": "8月", + "September": "9月", + "October": "10月", + "November": "11月", + "December": "12月", + "Jan": "1月", + "Feb": "2月", + "Mar": "3月", + "Apr": "4月", + "Jun": "6月", + "Jul": "7月", + "Aug": "8月", + "Sep": "9月", + "Oct": "10月", + "Nov": "11月", + "Dec": "12月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "日曜日", + "Monday": "月曜日", + "Tuesday": "火曜日", + "Wednesday": "水曜日", + "Thursday": "木曜日", + "Friday": "金曜日", + "Saturday": "土曜日", + "Sun": "日", + "Mon": "月", + "Tue": "火", + "Wed": "水", + "Thu": "木", + "Fri": "金", + "Sat": "土", + "Shows longer than their scheduled time will be cut off by a following show.": "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。", + "Cancel Current Show?": "現在の番組をキャンセルしますか?", + "Stop recording current show?": "配信中の番組の録音を中止しますか?", + "Ok": "Ok", + "Contents of Show": "番組内容", + "Remove all content?": "全てのコンテンツを削除しますか?", + "Delete selected item(s)?": "選択した項目を削除しますか?", + "Start": "開始", + "End": "終了", + "Duration": "長さ", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "キューイン", + "Cue Out": "キューアウト", + "Fade In": "フェードイン", + "Fade Out": "フェードアウト", + "Show Empty": "番組内容がありません。", + "Recording From Line In": "ライン入力から録音", + "Track preview": "試聴する", + "Cannot schedule outside a show.": "番組外に予約することは出来ません。", + "Moving 1 Item": "1個の項目を移動", + "Moving %s Items": "%s 個の項目を移動", + "Save": "保存", + "Cancel": "キャンセル", + "Fade Editor": "フェードの編集", + "Cue Editor": "キューの編集", + "Waveform features are available in a browser supporting the Web Audio API": "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。", + "Select all": "全て選択", + "Select none": "全て解除", + "Trim overbooked shows": "", + "Remove selected scheduled items": "選択した項目を削除", + "Jump to the current playing track": "現在再生中のトラックに移動", + "Jump to Current": "", + "Cancel current show": "配信中の番組をキャンセル", + "Open library to add or remove content": "ライブラリを開いてコンテンツを追加・削除する", + "Add / Remove Content": "コンテンツの追加・削除", + "in use": "使用中", + "Disk": "ディスク", + "Look in": "閲覧", + "Open": "開く", + "Admin": "管理者", + "DJ": "DJ", + "Program Manager": "プログラムマネージャー", + "Guest": "ゲスト", + "Guests can do the following:": "ゲストは以下の操作ができます:", + "View schedule": "スケジュールを見る", + "View show content": "番組内容を見る", + "DJs can do the following:": "DJは以下の操作ができます:", + "Manage assigned show content": "割り当てられた番組内容を管理", + "Import media files": "メディアファイルをインポートする", + "Create playlists, smart blocks, and webstreams": "プレイリスト・スマートブロック・ウェブストリームを作成", + "Manage their own library content": "ライブラリのコンテンツを管理", + "Program Managers can do the following:": "", + "View and manage show content": "番組内容の表示と管理", + "Schedule shows": "番組を予約する", + "Manage all library content": "ライブラリの全てのコンテンツを管理", + "Admins can do the following:": "管理者は次の操作が可能です:", + "Manage preferences": "設定を管理", + "Manage users": "ユーザー管理", + "Manage watched folders": "同期されているフォルダを管理", + "Send support feedback": "サポートにフィードバックを送る", + "View system status": "システムステータスを見る", + "Access playout history": "配信レポートへ", + "View listener stats": "リスナー統計を確認", + "Show / hide columns": "表示設定", + "Columns": "", + "From {from} to {to}": "{from}から{to}へ", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "日", + "Mo": "月", + "Tu": "火", + "We": "水", + "Th": "木", + "Fr": "金", + "Sa": "土", + "Close": "閉じる", + "Hour": "時", + "Minute": "分", + "Done": "完了", + "Select files": "ファイルを選択", + "Add files to the upload queue and click the start button.": "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。", + "Filename": "", + "Size": "", + "Add Files": "ファイルを追加", + "Stop Upload": "アップロード中止", + "Start upload": "アップロード開始", + "Start Upload": "", + "Add files": "ファイルを追加", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d ファイルをアップロードしました。", + "N/A": "N/A", + "Drag files here.": "こちらにファイルをドラッグしてください。", + "File extension error.": "ファイル拡張子エラーです。", + "File size error.": "ファイルサイズエラーです。", + "File count error.": "ファイルカウントのエラーです。", + "Init error.": "Initエラーです。", + "HTTP Error.": "HTTPエラーです。", + "Security error.": "セキュリティエラーです。", + "Generic error.": "エラーです。", + "IO error.": "入出力エラーです。", + "File: %s": "ファイル: %s", + "%d files queued": "%d のファイルが待機中", + "File: %f, size: %s, max file size: %m": "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m", + "Upload URL might be wrong or doesn't exist": "アップロードURLに誤りがあるか存在しません。", + "Error: File too large: ": "エラー:ファイルサイズが大きすぎます。", + "Error: Invalid file extension: ": "エラー:ファイル拡張子が無効です。", + "Set Default": "初期設定として保存", + "Create Entry": "エントリーを作成", + "Edit History Record": "配信履歴を編集", + "No Show": "番組はありません。", + "Copied %s row%s to the clipboard": "%s 列の%s をクリップボードにコピー しました。", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "説明", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "有効", + "Disabled": "無効", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "メールが送信できませんでした。メールサーバーの設定を確認してください。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "入力されたユーザー名またはパスワードが誤っています。", + "You are viewing an older version of %s": "%sの古いバージョンを閲覧しています。", + "You cannot add tracks to dynamic blocks.": "自動生成スマート・ブロックにトラックを追加することはできません。", + "You don't have permission to delete selected %s(s).": "選択された%sを削除する権限がありません。", + "You can only add tracks to smart block.": "スマートブロックに追加できるのはトラックのみです。", + "Untitled Playlist": "無題のプレイリスト", + "Untitled Smart Block": "無題のスマートブロック", + "Unknown Playlist": "不明なプレイリスト", + "Preferences updated.": "設定が更新されました。", + "Stream Setting Updated.": "配信設定が更新されました。", + "path should be specified": "パスを指定する必要があります", + "Problem with Liquidsoap...": "Liquidsoapに問題があります。", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%sの再配信:%s %s時", + "Select cursor": "カーソルを選択", + "Remove cursor": "カーソルを削除", + "show does not exist": "番組が存在しません。", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "ユーザーの追加に成功しました。", + "User updated successfully!": "ユーザーの更新に成功しました。", + "Settings updated successfully!": "設定の更新に成功しました。", + "Untitled Webstream": "無題のウェブ配信", + "Webstream saved.": "ウェブ配信が保存されました。", + "Invalid form values.": "入力欄に無効な値があります。", + "Invalid character entered": "使用できない文字が入力されました。", + "Day must be specified": "日付を指定する必要があります。", + "Time must be specified": "時間を指定する必要があります。", + "Must wait at least 1 hour to rebroadcast": "再配信するには、1時間以上待たなければなりません", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "カスタム認証を使用:", + "Custom Username": "カスタムユーザー名", + "Custom Password": "カスタムパスワード", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "ユーザー名を入力してください。", + "Password field cannot be empty.": "パスワードを入力してください。", + "Record from Line In?": "ライン入力から録音", + "Rebroadcast?": "再配信", + "days": "日", + "Link:": "配信内容を同期する:", + "Repeat Type:": "リピート形式:", + "weekly": "毎週", + "every 2 weeks": "2週間ごと", + "every 3 weeks": "3週間ごと", + "every 4 weeks": "4週間ごと", + "monthly": "毎月", + "Select Days:": "曜日を選択:", + "Repeat By:": "リピート間隔:", + "day of the month": "毎月特定日", + "day of the week": "毎月特定曜日", + "Date End:": "終了日:", + "No End?": "無期限", + "End date must be after start date": "終了日は開始日より後に設定してください。", + "Please select a repeat day": "繰り返す日を選択してください", + "Background Colour:": "背景色:", + "Text Colour:": "文字色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名前:", + "Untitled Show": "無題の番組", + "URL:": "URL:", + "Genre:": "ジャンル:", + "Description:": "説明:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg}は、'01:22'の形式に適合していません", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "長さ:", + "Timezone:": "タイムゾーン:", + "Repeats?": "定期番組に設定", + "Cannot create show in the past": "過去の日付に番組は作成できません。", + "Cannot modify start date/time of the show that is already started": "すでに開始されている番組の開始日、開始時間を変更することはできません。", + "End date/time cannot be in the past": "終了日時は過去に設定できません。", + "Cannot have duration < 0m": "0分以下の長さに設定することはできません。", + "Cannot have duration 00h 00m": "00h 00mの長さに設定することはできません。", + "Cannot have duration greater than 24h": "24時間を越える長さに設定することはできません。", + "Cannot schedule overlapping shows": "番組を重複して予約することはできません。", + "Search Users:": "ユーザーを検索:", + "DJs:": "DJ:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "ユーザー名:", + "Password:": "パスワード:", + "Verify Password:": "確認用パスワード:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "メール:", + "Mobile Phone:": "携帯電話:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "ユーザー種別:", + "Login name is not unique.": "ログイン名はすでに使用されています。", + "Delete All Tracks in Library": "", + "Date Start:": "開始日:", + "Title:": "タイトル:", + "Creator:": "アーティスト:", + "Album:": "アルバム:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年:", + "Label:": "ラベル:", + "Composer:": "作曲者", + "Conductor:": "コンダクター:", + "Mood:": "ムード:", + "BPM:": "BPM:", + "Copyright:": "著作権:", + "ISRC Number:": "ISRC番号:", + "Website:": "ウェブサイト:", + "Language:": "言語:", + "Publish...": "", + "Start Time": "開始時間", + "End Time": "終了時間", + "Interface Timezone:": "インターフェイスのタイムゾーン:", + "Station Name": "ステーション名", + "Station Description": "", + "Station Logo:": "ステーションロゴ:", + "Note: Anything larger than 600x600 will be resized.": "注意:大きさが600x600以上の場合はサイズが変更されます。", + "Default Crossfade Duration (s):": "クロスフェードの時間(初期値):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "デフォルトフェードイン(初期値):", + "Default Fade Out (s):": "デフォルトフェードアウト(初期値):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "ステーションのタイムゾーン", + "Week Starts On": "週の開始曜日", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "ログイン", + "Password": "パスワード", + "Confirm new password": "新しいパスワードを確認してください。", + "Password confirmation does not match your password.": "パスワード確認がパスワードと一致しません。", + "Email": "", + "Username": "ユーザー名", + "Reset password": "パスワードをリセット", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "全ての番組:", + "My Shows": "", + "Select criteria": "基準を選択してください", + "Bit Rate (Kbps)": "ビットレート (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "サンプリング周波数 (kHz) ", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "時間", + "minutes": "分", + "items": "項目", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "自動生成スマート・ブロック", + "Static": "スマート・ブロック", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "プレイリストコンテンツを生成し、基準を保存", + "Shuffle playlist content": "プレイリストの内容をシャッフル", + "Shuffle": "シャッフル", + "Limit cannot be empty or smaller than 0": "制限は空欄または0以下には設定できません。", + "Limit cannot be more than 24 hrs": "制限は24時間以内に設定してください。", + "The value should be an integer": "値は整数である必要があります。", + "500 is the max item limit value you can set": "設定できるアイテムの最大数は500です。", + "You must select Criteria and Modifier": "「基準」と「条件」を選択してください。", + "'Length' should be in '00:00:00' format": "「長さ」は、'00:00:00'の形式で入力してください。", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "値は数字である必要があります。", + "The value should be less then 2147483648": "値は2147483648未満にする必要があります。", + "The value cannot be empty": "", + "The value should be less than %s characters": "値は%s未満にする必要があります。", + "Value cannot be empty": "値を入力してください。", + "Stream Label:": "配信表示設定:", + "Artist - Title": "アーティスト - タイトル", + "Show - Artist - Title": "番組 - アーティスト - タイトル", + "Station name - Show name": "ステーション名 - 番組名", + "Off Air Metadata": "オフエアーメタデータ", + "Enable Replay Gain": "リプレイゲインを有効化", + "Replay Gain Modifier": "リプレイゲイン調整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "有効:", + "Mobile:": "", + "Stream Type:": "配信種別:", + "Bit Rate:": "ビットレート:", + "Service Type:": "サービスタイプ:", + "Channels:": "再生方式", + "Server": "サーバー", + "Port": "ポート", + "Mount Point": "マウントポイント", + "Name": "名前", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "インポートフォルダ:", + "Watched Folders:": "同期フォルダ:", + "Not a valid Directory": "正しいディレクトリではありません。", + "Value is required and can't be empty": "値を入力してください", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}は無効なEメールアドレスです。local-part{'@'}hostnameの形式に沿ったEメールアドレスを登録してください。", + "{msg} does not fit the date format '%format%'": "{msg}は、'%format%'の日付形式に一致しません。", + "{msg} is less than %min% characters long": "{msg}は、%min%文字より短くなっています。", + "{msg} is more than %max% characters long": "{msg}は、%max%文字を越えています。", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg}は、'%min%'以上'%max%'以下の条件に一致しません。", + "Passwords do not match": "パスワードが一致しません。", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "キューインとキューアウトが設定されていません。", + "Can't set cue out to be greater than file length.": "キューアウトはファイルの長さより長く設定できません。", + "Can't set cue in to be larger than cue out.": "キューインをキューアウトより大きく設定することはできません。", + "Can't set cue out to be smaller than cue in.": "キューアウトをキューインより小さく設定することはできません。", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "国の選択", + "livestream": "", + "Cannot move items out of linked shows": "リンクした番組の外に項目を移動することはできません。", + "The schedule you're viewing is out of date! (sched mismatch)": "参照中のスケジュールはの有効ではありません。", + "The schedule you're viewing is out of date! (instance mismatch)": "参照中のスケジュールは有効ではありません。", + "The schedule you're viewing is out of date!": "参照中のスケジュールは有効ではありません。", + "You are not allowed to schedule show %s.": "番組を%sに予約することはできません。", + "You cannot add files to recording shows.": "録音中の番組にファイルを追加することはできません。", + "The show %s is over and cannot be scheduled.": "番組 %s は終了しておりスケジュールに入れることができません。", + "The show %s has been previously updated!": "番組 %s は以前に更新されています。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "選択したファイルは存在しません。", + "Shows can have a max length of 24 hours.": "番組は最大24時間まで設定可能です。", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "番組を重複して予約することはできません。\n注意:再配信番組のサイズ変更は全ての再配信に反映されます。", + "Rebroadcast of %s from %s": "%sの再配信%sから", + "Length needs to be greater than 0 minutes": "再生時間は0分以上である必要があります。", + "Length should be of form \"00h 00m\"": "時間は \"00h 00m\"の形式にしてください。", + "URL should be of form \"https://example.org\"": "URL は\"https://example.org\"の形式で入力してください。", + "URL should be 512 characters or less": "URLは512文字以下にしてください。", + "No MIME type found for webstream.": "ウェブ配信用のMIMEタイプは見つかりませんでした。", + "Webstream name cannot be empty": "ウェブ配信名を入力して下さい。", + "Could not parse XSPF playlist": "XSPFプレイリストを解析できませんでした。", + "Could not parse PLS playlist": "PLSプレイリストを解析できませんでした。", + "Could not parse M3U playlist": "M3Uプレイリストを解析できませんでした。", + "Invalid webstream - This appears to be a file download.": "無効なウェブ配信です。", + "Unrecognized stream type: %s": "不明な配信種別です: %s", + "Record file doesn't exist": "録音ファイルは存在しません。", + "View Recorded File Metadata": "録音ファイルのメタデータを確認", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "番組の編集", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "許可されていない操作です。", + "Can't drag and drop repeating shows": "定期配信している番組を移動することはできません。", + "Can't move a past show": "過去の番組を移動することはできません。", + "Can't move show into past": "番組を過去の日付に移動することはできません。", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "録音された番組を再配信時間の直前1時間の枠に移動することはできません。", + "Show was deleted because recorded show does not exist!": "録音された番組が存在しないので番組は削除されました。", + "Must wait 1 hour to rebroadcast.": "再配信には1時間待たなければなりません。", + "Track": "トラック", + "Played": "再生済み", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/ko_KR.json b/webapp/src/locale/ko_KR.json index 53b8a9f574..3c27aa7b97 100644 --- a/webapp/src/locale/ko_KR.json +++ b/webapp/src/locale/ko_KR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "년도 값은 %s 1753 - 9999 입니다", - "%s-%s-%s is not a valid date": "%s-%s-%s는 맞지 않는 날짜 입니다", - "%s:%s:%s is not a valid time": "%s:%s:%s는 맞지 않는 시간 입니다", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "스케쥴", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "계정", - "Track Types": "", - "Streams": "스트림", - "Status": "상태", - "Analytics": "", - "Playout History": "방송 기록", - "History Templates": "", - "Listener Stats": "청취자 통계", - "Show Listener Stats": "", - "Help": "도움", - "Getting Started": "초보자 가이드", - "User Manual": "사용자 메뉴얼", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "권한이 부족합니다", - "You are not allowed to access this resource. ": "권한이 부족합니다", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "", - "Bad request. 'mode' parameter is invalid": "", - "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", - "There is no source connected to this input.": "연결된 소스가 없습니다", - "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s를 찾을수 없습니다", - "Something went wrong.": "알수없는 에러.", - "Preview": "프리뷰", - "Add to Playlist": "재생 목록에 추가", - "Add to Smart Block": "스마트 블록에 추가", - "Delete": "삭제", - "Edit...": "", - "Download": "다운로드", - "Duplicate Playlist": "중복된 플레이 리스트", - "Duplicate Smartblock": "", - "No action available": "액션 없음", - "You don't have permission to delete selected items.": "선택된 아이템을 지울수 있는 권한이 부족합니다.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%s의 사본", - "Please make sure admin user/password is correct on Settings->Streams page.": "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요.", - "Audio Player": "오디오 플레이어", - "Something went wrong!": "", - "Recording:": "녹음:", - "Master Stream": "마스터 스트림", - "Live Stream": "라이브 스트림", - "Nothing Scheduled": "스케쥴 없음", - "Current Show:": "현재 쇼:", - "Current": "현재", - "You are running the latest version": "최신 버전입니다.", - "New version available: ": "새 버젼이 있습니다", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "현제 플레이리스트에 추가", - "Add to current smart block": "현제 스마트 블록에 추가", - "Adding 1 Item": "아이템 1개 추가", - "Adding %s Items": "아이템 %s개 추가", - "You can only add tracks to smart blocks.": "스마트 블록에는 파일만 추가 가능합니다", - "You can only add tracks, smart blocks, and webstreams to playlists.": "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다", - "Please select a cursor position on timeline.": "타임 라인에서 커서를 먼져 선택 하여 주세요.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "추가", - "New": "", - "Edit": "수정", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "제거", - "Edit Metadata": "메타데이타 수정", - "Add to selected show": "선택된 쇼에 추가", - "Select": "선택", - "Select this page": "현재 페이지 선택", - "Deselect this page": "현재 페이지 선택 취소 ", - "Deselect all": "모두 선택 취소", - "Are you sure you want to delete the selected item(s)?": "선택된 아이템들을 모두 지우시겠습니다?", - "Scheduled": "스케쥴됨", - "Tracks": "", - "Playlist": "", - "Title": "제목", - "Creator": "제작자", - "Album": "앨범", - "Bit Rate": "비트 레이트", - "BPM": "", - "Composer": "작곡가", - "Conductor": "지휘자", - "Copyright": "저작권", - "Encoded By": "", - "Genre": "장르", - "ISRC": "", - "Label": "레이블", - "Language": "언어", - "Last Modified": "마지막 수정일", - "Last Played": "마지막 방송일", - "Length": "길이", - "Mime": "", - "Mood": "무드", - "Owner": "소유자", - "Replay Gain": "리플레이 게인", - "Sample Rate": "샘플 레이트", - "Track Number": "트랙 번호", - "Uploaded": "업로드 날짜", - "Website": "웹싸이트", - "Year": "년도", - "Loading...": "로딩...", - "All": "전체", - "Files": "파일", - "Playlists": "재생 목록", - "Smart Blocks": "스마트 블록", - "Web Streams": "웹스트림", - "Unknown type: ": "알수 없는 유형:", - "Are you sure you want to delete the selected item?": "선택된 아이템을 모두 삭제 하시겠습니까?", - "Uploading in progress...": "업로딩중...", - "Retrieving data from the server...": "서버에서 정보를 가져오는중...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "에러 코드: ", - "Error msg: ": "에러 메세지: ", - "Input must be a positive number": "이 값은 0보다 큰 숫자만 허용 됩니다", - "Input must be a number": "이 값은 숫자만 허용합니다", - "Input must be in the format: yyyy-mm-dd": "yyyy-mm-dd의 형태로 입력해주세요", - "Input must be in the format: hh:mm:ss.t": "hh:mm:ss.t의 형태로 입력해주세요", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?", - "Open Media Builder": "미디아 빌더 열기", - "please put in a time '00:00:00 (.0)'": "'00:00:00 (.0)' 형태로 입력해주세요", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: ", - "Dynamic block is not previewable": "동적인 스마트 블록은 프리뷰 할수 없습니다", - "Limit to: ": "길이 제한: ", - "Playlist saved": "재생 목록이 저장 되었습니다", - "Playlist shuffled": "플레이 리스트가 셔플 되었습니다", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다.", - "Listener Count on %s: %s": "%s의청취자 숫자 : %s", - "Remind me in 1 week": "1주후에 다시 알림", - "Remind me never": "이 창을 다시 표시 하지 않음", - "Yes, help Airtime": "Airtime 도와주기", - "Image must be one of jpg, jpeg, png, or gif": "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 ", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "스마트 블록이 셔플 되었습니다", - "Smart block generated and criteria saved": "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다", - "Smart block saved": "스마트 블록이 저장 되었습니다", - "Processing...": "진행중...", - "Select modifier": "모디파이어 선택", - "contains": "다음을 포합", - "does not contain": "다음을 포함하지 않는", - "is": "다음과 같음", - "is not": "다음과 같지 않음", - "starts with": "다음으로 시작", - "ends with": "다음으로 끝남", - "is greater than": "다음 보다 큰", - "is less than": "다음 보타 작은", - "is in the range": "다음 범위 안에 있는 ", - "Generate": "생성", - "Choose Storage Folder": "저장 폴더 선택", - "Choose Folder to Watch": "모니터 폴더 선택", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다.", - "Manage Media Folders": "미디어 폴더 관리", - "Are you sure you want to remove the watched folder?": "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?", - "This path is currently not accessible.": "경로에 접근할수 없습니다", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명", - "Connected to the streaming server": "스트리밍 서버에 접속됨", - "The stream is disabled": "스트림이 사용되지 않음", - "Getting information from the server...": "서버에서 정보를 받는중...", - "Can not connect to the streaming server": "스트리밍 서버에 접속 할수 없음", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔.", - "Check this box to automatically switch on Master/Show source upon source connection.": "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "결과 없음", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "쇼에 지정된 사람들만 접속 할수 있습니다", - "Specify custom authentication which will work only for this show.": "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다", - "The show instance doesn't exist anymore!": "쇼 인스턴스가 존재 하지 않습니다", - "Warning: Shows cannot be re-linked": "주의: 쇼는 다시 링크 될수 없습니다", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "쇼", - "Show is empty": "쇼가 비어 있습니다", - "1m": "1분", - "5m": "5분", - "10m": "10분", - "15m": "15분", - "30m": "30분", - "60m": "60분", - "Retreiving data from the server...": "서버로부터 데이타를 불러오는중...", - "This show has no scheduled content.": "내용이 없는 쇼입니다", - "This show is not completely filled with content.": "쇼가 완전히 채워지지 않았습니다", - "January": "1월", - "February": "2월", - "March": "3월", - "April": "4월", - "May": "5월", - "June": "6월", - "July": "7월", - "August": "8월", - "September": "9월", - "October": "10월", - "November": "11월", - "December": "12월", - "Jan": "1월", - "Feb": "2월", - "Mar": "3월", - "Apr": "4월", - "Jun": "6월", - "Jul": "7월", - "Aug": "8월", - "Sep": "9월", - "Oct": "10월", - "Nov": "11월", - "Dec": "12월", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "일요일", - "Monday": "월요일", - "Tuesday": "화요일", - "Wednesday": "수요일", - "Thursday": "목요일", - "Friday": "금요일", - "Saturday": "토요일", - "Sun": "일", - "Mon": "월", - "Tue": "화", - "Wed": "수", - "Thu": "목", - "Fri": "금", - "Sat": "토", - "Shows longer than their scheduled time will be cut off by a following show.": "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다", - "Cancel Current Show?": "현재 방송중인 쇼를 중단 하시겠습니까?", - "Stop recording current show?": "현재 녹음 중인 쇼를 중단 하시겠습니까?", - "Ok": "확인", - "Contents of Show": "쇼 내용", - "Remove all content?": "모든 내용물 삭제하시겠습까?", - "Delete selected item(s)?": "선택한 아이템을 삭제 하시겠습니까?", - "Start": "시작", - "End": "종료", - "Duration": "길이", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "큐 인", - "Cue Out": "큐 아웃", - "Fade In": "페이드 인", - "Fade Out": "패이드 아웃", - "Show Empty": "내용 없음", - "Recording From Line In": "라인 인으로 부터 녹음", - "Track preview": "트랙 프리뷰", - "Cannot schedule outside a show.": "쇼 범위 밖에 스케쥴 할수 없습니다", - "Moving 1 Item": "아이템 1개 이동", - "Moving %s Items": "아이템 %s개 이동", - "Save": "저장", - "Cancel": "취소", - "Fade Editor": "페이드 에디터", - "Cue Editor": "큐 에디터", - "Waveform features are available in a browser supporting the Web Audio API": "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다", - "Select all": "전체 선택", - "Select none": "전체 선택 취소", - "Trim overbooked shows": "", - "Remove selected scheduled items": "선택된 아이템 제거", - "Jump to the current playing track": "현재 방송중인 트랙으로 가기", - "Jump to Current": "", - "Cancel current show": "현재 쇼 취소", - "Open library to add or remove content": "라이브러리 열기", - "Add / Remove Content": "내용 추가/제거", - "in use": "사용중", - "Disk": "디스크", - "Look in": "경로", - "Open": "열기", - "Admin": "관리자", - "DJ": "", - "Program Manager": "프로그램 매니저", - "Guest": "손님", - "Guests can do the following:": "손님의 권한:", - "View schedule": "스케쥴 보기", - "View show content": "쇼 내용 보기", - "DJs can do the following:": "DJ의 권한:", - "Manage assigned show content": "할당된 쇼의 내용 관리", - "Import media files": "미디아 파일 추가", - "Create playlists, smart blocks, and webstreams": "플레이 리스트, 스마트 블록, 웹스트림 생성", - "Manage their own library content": "자신의 라이브러리 내용 관리", - "Program Managers can do the following:": "", - "View and manage show content": "쇼 내용 보기및 관리", - "Schedule shows": "쇼 스케쥴 하기", - "Manage all library content": "모든 라이브러리 내용 관리", - "Admins can do the following:": "관리자의 권한:", - "Manage preferences": "설정 관리", - "Manage users": "사용자 관리", - "Manage watched folders": "모니터 폴터 관리", - "Send support feedback": "사용자 피드백을 보냄", - "View system status": "이시스템 상황 보기", - "Access playout history": "방송 기록 접근 권한", - "View listener stats": "청취자 통계 보기", - "Show / hide columns": "컬럼 보이기/숨기기", - "Columns": "", - "From {from} to {to}": "{from}부터 {to}까지", - "kbps": "", - "yyyy-mm-dd": "", - "hh:mm:ss.t": "", - "kHz": "", - "Su": "일", - "Mo": "월", - "Tu": "화", - "We": "수", - "Th": "목", - "Fr": "금", - "Sa": "토", - "Close": "닫기", - "Hour": "시", - "Minute": "분", - "Done": "확인", - "Select files": "파일 선택", - "Add files to the upload queue and click the start button.": "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요.", - "Filename": "", - "Size": "", - "Add Files": "파일 추가", - "Stop Upload": "업로드 중지", - "Start upload": "업로드 시작", - "Start Upload": "", - "Add files": "파일 추가", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d 파일이 업로드됨", - "N/A": "", - "Drag files here.": "파일을 여기로 드래그 앤 드랍 하세요", - "File extension error.": "파일 확장자 에러.", - "File size error.": "파일 크기 에러.", - "File count error.": "파일 갯수 에러.", - "Init error.": "초기화 에러.", - "HTTP Error.": "HTTP 에러.", - "Security error.": "보안 에러.", - "Generic error.": "일반적인 에러.", - "IO error.": "IO 에러.", - "File: %s": "파일: %s", - "%d files queued": "%d개의 파일이 대기중", - "File: %f, size: %s, max file size: %m": "파일: %f, 크기: %s, 최대 파일 크기: %m", - "Upload URL might be wrong or doesn't exist": "업로드 URL이 맞지 않거나 존재 하지 않습니다", - "Error: File too large: ": "에러: 파일이 너무 큽니다:", - "Error: Invalid file extension: ": "에러: 지원하지 않는 확장자:", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "%s row %s를 클립보드로 복사 하였습니다", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "설명", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "사용", - "Disabled": "미사용", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "아이디와 암호가 맞지 않습니다. 다시 시도해주세요", - "You are viewing an older version of %s": "오래된 %s를 보고 있습니다", - "You cannot add tracks to dynamic blocks.": "동적인 스마트 블록에는 트랙을 추가 할수 없습니다", - "You don't have permission to delete selected %s(s).": "선택하신 %s를 삭제 할수 있는 권한이 부족합니다.", - "You can only add tracks to smart block.": "스마트 블록에는 트랙만 추가 가능합니다", - "Untitled Playlist": "제목없는 재생목록", - "Untitled Smart Block": "제목없는 스마트 블록", - "Unknown Playlist": "모르는 재생목록", - "Preferences updated.": "설정이 업데이트 되었습니다", - "Stream Setting Updated.": "스트림 설정이 업데이트 되었습니다", - "path should be specified": "경로를 입력해주세요", - "Problem with Liquidsoap...": "Liquidsoap 문제...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "%s의 재방송 %s부터 %s까지", - "Select cursor": "커서 선택", - "Remove cursor": "커서 제거", - "show does not exist": "쇼가 존재 하지 않음", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "사용자가 추가 되었습니다!", - "User updated successfully!": "사용자 정보가 업데이트 되었습니다!", - "Settings updated successfully!": "세팅이 성공적으로 업데이트 되었습니다!", - "Untitled Webstream": "제목없는 웹스트림", - "Webstream saved.": "웹스트림이 저장 되었습니다", - "Invalid form values.": "잘못된 값입니다", - "Invalid character entered": "허용되지 않는 문자입니다", - "Day must be specified": "날짜를 설정하세요", - "Time must be specified": "시간을 설정하세요", - "Must wait at least 1 hour to rebroadcast": "재방송 설정까지 1시간 기간이 필요합니다", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Custom 인증 사용", - "Custom Username": "Custom 아이디", - "Custom Password": "Custom 암호", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "아이디를 입력해주세요", - "Password field cannot be empty.": "암호를 입력해주세요", - "Record from Line In?": "Line In으로 녹음", - "Rebroadcast?": "재방송?", - "days": "일", - "Link:": "링크:", - "Repeat Type:": "반복 유형:", - "weekly": "주간", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "월간", - "Select Days:": "날짜 선택", - "Repeat By:": "", - "day of the month": "월중 날짜", - "day of the week": "주중 날짜", - "Date End:": "종료", - "No End?": "무한 반복?", - "End date must be after start date": "종료 일이 시작일 보다 먼져 입니다.", - "Please select a repeat day": "", - "Background Colour:": "배경 색:", - "Text Colour:": "글자 색:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "이름:", - "Untitled Show": "이름없는 쇼", - "URL:": "", - "Genre:": "장르:", - "Description:": "설명:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg}은 시간 형식('HH:mm')에 맞지 않습니다.", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "길이:", - "Timezone:": "시간대:", - "Repeats?": "반복?", - "Cannot create show in the past": "쇼를 과거에 생성 할수 없습니다", - "Cannot modify start date/time of the show that is already started": "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다", - "End date/time cannot be in the past": "종료 날짜/시간을 과거로 설정할수 없습니다", - "Cannot have duration < 0m": "길이가 0m 보다 작을수 없습니다", - "Cannot have duration 00h 00m": "길이가 00h 00m인 쇼를 생성 할수 없습니다", - "Cannot have duration greater than 24h": "쇼의 길이가 24h를 넘을수 없습니다", - "Cannot schedule overlapping shows": "쇼를 중복되게 스케쥴할수 없습니다", - "Search Users:": "사용자 검색:", - "DJs:": "DJ들:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "아이디: ", - "Password:": "암호: ", - "Verify Password:": "암호 확인:", - "Firstname:": "이름:", - "Lastname:": "성:", - "Email:": "이메일", - "Mobile Phone:": "휴대전화:", - "Skype:": "스카입:", - "Jabber:": "", - "User Type:": "유저 타입", - "Login name is not unique.": "사용할수 없는 아이디 입니다", - "Delete All Tracks in Library": "", - "Date Start:": "시작", - "Title:": "제목:", - "Creator:": "제작자:", - "Album:": "앨범:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "년도:", - "Label:": "상표:", - "Composer:": "작곡가:", - "Conductor:": "지휘자", - "Mood:": "무드", - "BPM:": "", - "Copyright:": "저작권:", - "ISRC Number:": "ISRC 넘버", - "Website:": "웹사이트", - "Language:": "언어", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "방송국 이름", - "Station Description": "", - "Station Logo:": "방송국 로고", - "Note: Anything larger than 600x600 will be resized.": "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다", - "Default Crossfade Duration (s):": "기본 크로스페이드 길이(s)", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "기본 페이드 인(s)", - "Default Fade Out (s):": "기본 페이드 아웃(s)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "주 시작일", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "로그인", - "Password": "암호", - "Confirm new password": "새 암호 확인", - "Password confirmation does not match your password.": "암호와 암호 확인 값이 일치 하지 않습니다.", - "Email": "", - "Username": "아이디", - "Reset password": "암호 초기화", - "Back": "", - "Now Playing": "방송중", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "내 쇼:", - "My Shows": "", - "Select criteria": "기준 선택", - "Bit Rate (Kbps)": "비트 레이트(Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "샘플 레이트", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "시간", - "minutes": "분", - "items": "아이템", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "동적(Dynamic)", - "Static": "정적(Static)", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "재생 목록 내용 생성후 설정 저장", - "Shuffle playlist content": "재생 목록 내용 셔플하기", - "Shuffle": "셔플", - "Limit cannot be empty or smaller than 0": "길이 제한은 비어두거나 0으로 설정할수 없습니다", - "Limit cannot be more than 24 hrs": "길이 제한은 24h 보다 클수 없습니다", - "The value should be an integer": "이 값은 정수(integer) 입니다", - "500 is the max item limit value you can set": "아이템 곗수의 최대값은 500 입니다", - "You must select Criteria and Modifier": "기준과 모디파이어를 골라주세요", - "'Length' should be in '00:00:00' format": "길이는 00:00:00 형태로 입력하세요", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "이 값은 숫자만 허용 됩니다", - "The value should be less then 2147483648": "이 값은 2147483648보다 작은 수만 허용 됩니다", - "The value cannot be empty": "", - "The value should be less than %s characters": "이 값은 %s 문자보다 작은 길이만 허용 됩니다", - "Value cannot be empty": "이 값은 비어둘수 없습니다", - "Stream Label:": "스트림 레이블", - "Artist - Title": "아티스트 - 제목", - "Show - Artist - Title": "쇼 - 아티스트 - 제목", - "Station name - Show name": "방송국 이름 - 쇼 이름", - "Off Air Metadata": "오프 에어 메타데이타", - "Enable Replay Gain": "리플레이 게인 활성화", - "Replay Gain Modifier": "리플레이 게인 설정", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "사용:", - "Mobile:": "", - "Stream Type:": "스트림 타입:", - "Bit Rate:": "비트 레이트:", - "Service Type:": "서비스 타입:", - "Channels:": "채널:", - "Server": "서버", - "Port": "포트", - "Mount Point": "마운트 지점", - "Name": "이름", - "URL": "", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "폴더 가져오기", - "Watched Folders:": "모니터중인 폴더", - "Not a valid Directory": "옳치 않은 폴더 입니다", - "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}은 맞지 않는 이메일 형식 입니다.", - "{msg} does not fit the date format '%format%'": "{msg}은 날짜 형식('%format%')에 맞지 않습니다.", - "{msg} is less than %min% characters long": "{msg}는 %min%글자 보다 짧을수 없습니다", - "{msg} is more than %max% characters long": "{msg}는 %max%글자 보다 길수 없습니다", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg}은 '%min%'와 '%max%' 사이에 있지 않습니다.", - "Passwords do not match": "암호가 맞지 않습니다", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "큐-인 과 큐 -아웃 이 null 입니다", - "Can't set cue out to be greater than file length.": "큐-아웃 값은 파일 길이보다 클수 없습니다", - "Can't set cue in to be larger than cue out.": "큐-인 값은 큐-아웃 값보다 클수 없습니다.", - "Can't set cue out to be smaller than cue in.": "큐-아웃 값은 큐-인 값보다 작을수 없습니다.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "국가 선택", - "livestream": "", - "Cannot move items out of linked shows": "링크 쇼에서 아이템을 분리 할수 없습니다", - "The schedule you're viewing is out of date! (sched mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)", - "The schedule you're viewing is out of date! (instance mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)", - "The schedule you're viewing is out of date!": "현재 보고 계신 스케쥴이 맞지 않습니다", - "You are not allowed to schedule show %s.": "쇼를 스케쥴 할수 있는 권한이 없습니다 %s.", - "You cannot add files to recording shows.": "녹화 쇼에는 파일을 추가 할수 없습니다", - "The show %s is over and cannot be scheduled.": "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다", - "The show %s has been previously updated!": "쇼 %s 업데이트 되었습니다!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "선택하신 파일이 존재 하지 않습니다", - "Shows can have a max length of 24 hours.": "쇼 길이는 24시간을 넘을수 없습니다.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "쇼를 중복되게 스케줄 할수 없습니다.\n주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다.", - "Rebroadcast of %s from %s": "%s 재방송( %s에 시작) ", - "Length needs to be greater than 0 minutes": "길이가 0분 보다 길어야 합니다", - "Length should be of form \"00h 00m\"": "길이는 \"00h 00m\"의 형태 여야 합니다 ", - "URL should be of form \"https://example.org\"": "URL은 \"https://example.org\" 형태여야 합니다", - "URL should be 512 characters or less": "URL은 512캐릭터 까지 허용합니다", - "No MIME type found for webstream.": "웹 스트림의 MIME 타입을 찾을수 없습니다", - "Webstream name cannot be empty": "웹스트림의 이름을 지정하십시오", - "Could not parse XSPF playlist": "XSPF 재생목록을 분석 할수 없습니다", - "Could not parse PLS playlist": "PLS 재생목록을 분석 할수 없습니다", - "Could not parse M3U playlist": "M3U 재생목록을 분석할수 없습니다", - "Invalid webstream - This appears to be a file download.": "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다", - "Unrecognized stream type: %s": "알수 없는 스트림 타입: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "녹음된 파일의 메타데이타 보기", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "쇼 수정", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "권한이 부족합니다", - "Can't drag and drop repeating shows": "반복쇼는 드래그 앤 드롭 할수 없습니다", - "Can't move a past show": "지난 쇼는 이동할수 없습니다", - "Can't move show into past": "과거로 쇼를 이동할수 없습니다", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다", - "Show was deleted because recorded show does not exist!": "녹화 쇼가 없으로 쇼가 삭제 되었습니다", - "Must wait 1 hour to rebroadcast.": "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 ", - "Track": "", - "Played": "방송됨", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "년도 값은 %s 1753 - 9999 입니다", + "%s-%s-%s is not a valid date": "%s-%s-%s는 맞지 않는 날짜 입니다", + "%s:%s:%s is not a valid time": "%s:%s:%s는 맞지 않는 시간 입니다", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "스케쥴", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "계정", + "Track Types": "", + "Streams": "스트림", + "Status": "상태", + "Analytics": "", + "Playout History": "방송 기록", + "History Templates": "", + "Listener Stats": "청취자 통계", + "Show Listener Stats": "", + "Help": "도움", + "Getting Started": "초보자 가이드", + "User Manual": "사용자 메뉴얼", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "권한이 부족합니다", + "You are not allowed to access this resource. ": "권한이 부족합니다", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "소스를 끊을수 있는 권한이 부족합니다", + "There is no source connected to this input.": "연결된 소스가 없습니다", + "You don't have permission to switch source.": "소스를 바꿀수 있는 권한이 부족합니다", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s를 찾을수 없습니다", + "Something went wrong.": "알수없는 에러.", + "Preview": "프리뷰", + "Add to Playlist": "재생 목록에 추가", + "Add to Smart Block": "스마트 블록에 추가", + "Delete": "삭제", + "Edit...": "", + "Download": "다운로드", + "Duplicate Playlist": "중복된 플레이 리스트", + "Duplicate Smartblock": "", + "No action available": "액션 없음", + "You don't have permission to delete selected items.": "선택된 아이템을 지울수 있는 권한이 부족합니다.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s의 사본", + "Please make sure admin user/password is correct on Settings->Streams page.": "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요.", + "Audio Player": "오디오 플레이어", + "Something went wrong!": "", + "Recording:": "녹음:", + "Master Stream": "마스터 스트림", + "Live Stream": "라이브 스트림", + "Nothing Scheduled": "스케쥴 없음", + "Current Show:": "현재 쇼:", + "Current": "현재", + "You are running the latest version": "최신 버전입니다.", + "New version available: ": "새 버젼이 있습니다", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "현제 플레이리스트에 추가", + "Add to current smart block": "현제 스마트 블록에 추가", + "Adding 1 Item": "아이템 1개 추가", + "Adding %s Items": "아이템 %s개 추가", + "You can only add tracks to smart blocks.": "스마트 블록에는 파일만 추가 가능합니다", + "You can only add tracks, smart blocks, and webstreams to playlists.": "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다", + "Please select a cursor position on timeline.": "타임 라인에서 커서를 먼져 선택 하여 주세요.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "추가", + "New": "", + "Edit": "수정", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "제거", + "Edit Metadata": "메타데이타 수정", + "Add to selected show": "선택된 쇼에 추가", + "Select": "선택", + "Select this page": "현재 페이지 선택", + "Deselect this page": "현재 페이지 선택 취소 ", + "Deselect all": "모두 선택 취소", + "Are you sure you want to delete the selected item(s)?": "선택된 아이템들을 모두 지우시겠습니다?", + "Scheduled": "스케쥴됨", + "Tracks": "", + "Playlist": "", + "Title": "제목", + "Creator": "제작자", + "Album": "앨범", + "Bit Rate": "비트 레이트", + "BPM": "", + "Composer": "작곡가", + "Conductor": "지휘자", + "Copyright": "저작권", + "Encoded By": "", + "Genre": "장르", + "ISRC": "", + "Label": "레이블", + "Language": "언어", + "Last Modified": "마지막 수정일", + "Last Played": "마지막 방송일", + "Length": "길이", + "Mime": "", + "Mood": "무드", + "Owner": "소유자", + "Replay Gain": "리플레이 게인", + "Sample Rate": "샘플 레이트", + "Track Number": "트랙 번호", + "Uploaded": "업로드 날짜", + "Website": "웹싸이트", + "Year": "년도", + "Loading...": "로딩...", + "All": "전체", + "Files": "파일", + "Playlists": "재생 목록", + "Smart Blocks": "스마트 블록", + "Web Streams": "웹스트림", + "Unknown type: ": "알수 없는 유형:", + "Are you sure you want to delete the selected item?": "선택된 아이템을 모두 삭제 하시겠습니까?", + "Uploading in progress...": "업로딩중...", + "Retrieving data from the server...": "서버에서 정보를 가져오는중...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "에러 코드: ", + "Error msg: ": "에러 메세지: ", + "Input must be a positive number": "이 값은 0보다 큰 숫자만 허용 됩니다", + "Input must be a number": "이 값은 숫자만 허용합니다", + "Input must be in the format: yyyy-mm-dd": "yyyy-mm-dd의 형태로 입력해주세요", + "Input must be in the format: hh:mm:ss.t": "hh:mm:ss.t의 형태로 입력해주세요", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?", + "Open Media Builder": "미디아 빌더 열기", + "please put in a time '00:00:00 (.0)'": "'00:00:00 (.0)' 형태로 입력해주세요", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: ", + "Dynamic block is not previewable": "동적인 스마트 블록은 프리뷰 할수 없습니다", + "Limit to: ": "길이 제한: ", + "Playlist saved": "재생 목록이 저장 되었습니다", + "Playlist shuffled": "플레이 리스트가 셔플 되었습니다", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다.", + "Listener Count on %s: %s": "%s의청취자 숫자 : %s", + "Remind me in 1 week": "1주후에 다시 알림", + "Remind me never": "이 창을 다시 표시 하지 않음", + "Yes, help Airtime": "Airtime 도와주기", + "Image must be one of jpg, jpeg, png, or gif": "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 ", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "스마트 블록이 셔플 되었습니다", + "Smart block generated and criteria saved": "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다", + "Smart block saved": "스마트 블록이 저장 되었습니다", + "Processing...": "진행중...", + "Select modifier": "모디파이어 선택", + "contains": "다음을 포합", + "does not contain": "다음을 포함하지 않는", + "is": "다음과 같음", + "is not": "다음과 같지 않음", + "starts with": "다음으로 시작", + "ends with": "다음으로 끝남", + "is greater than": "다음 보다 큰", + "is less than": "다음 보타 작은", + "is in the range": "다음 범위 안에 있는 ", + "Generate": "생성", + "Choose Storage Folder": "저장 폴더 선택", + "Choose Folder to Watch": "모니터 폴더 선택", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다.", + "Manage Media Folders": "미디어 폴더 관리", + "Are you sure you want to remove the watched folder?": "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?", + "This path is currently not accessible.": "경로에 접근할수 없습니다", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명", + "Connected to the streaming server": "스트리밍 서버에 접속됨", + "The stream is disabled": "스트림이 사용되지 않음", + "Getting information from the server...": "서버에서 정보를 받는중...", + "Can not connect to the streaming server": "스트리밍 서버에 접속 할수 없음", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔.", + "Check this box to automatically switch on Master/Show source upon source connection.": "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "결과 없음", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "쇼에 지정된 사람들만 접속 할수 있습니다", + "Specify custom authentication which will work only for this show.": "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다", + "The show instance doesn't exist anymore!": "쇼 인스턴스가 존재 하지 않습니다", + "Warning: Shows cannot be re-linked": "주의: 쇼는 다시 링크 될수 없습니다", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "쇼", + "Show is empty": "쇼가 비어 있습니다", + "1m": "1분", + "5m": "5분", + "10m": "10분", + "15m": "15분", + "30m": "30분", + "60m": "60분", + "Retreiving data from the server...": "서버로부터 데이타를 불러오는중...", + "This show has no scheduled content.": "내용이 없는 쇼입니다", + "This show is not completely filled with content.": "쇼가 완전히 채워지지 않았습니다", + "January": "1월", + "February": "2월", + "March": "3월", + "April": "4월", + "May": "5월", + "June": "6월", + "July": "7월", + "August": "8월", + "September": "9월", + "October": "10월", + "November": "11월", + "December": "12월", + "Jan": "1월", + "Feb": "2월", + "Mar": "3월", + "Apr": "4월", + "Jun": "6월", + "Jul": "7월", + "Aug": "8월", + "Sep": "9월", + "Oct": "10월", + "Nov": "11월", + "Dec": "12월", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "일요일", + "Monday": "월요일", + "Tuesday": "화요일", + "Wednesday": "수요일", + "Thursday": "목요일", + "Friday": "금요일", + "Saturday": "토요일", + "Sun": "일", + "Mon": "월", + "Tue": "화", + "Wed": "수", + "Thu": "목", + "Fri": "금", + "Sat": "토", + "Shows longer than their scheduled time will be cut off by a following show.": "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다", + "Cancel Current Show?": "현재 방송중인 쇼를 중단 하시겠습니까?", + "Stop recording current show?": "현재 녹음 중인 쇼를 중단 하시겠습니까?", + "Ok": "확인", + "Contents of Show": "쇼 내용", + "Remove all content?": "모든 내용물 삭제하시겠습까?", + "Delete selected item(s)?": "선택한 아이템을 삭제 하시겠습니까?", + "Start": "시작", + "End": "종료", + "Duration": "길이", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "큐 인", + "Cue Out": "큐 아웃", + "Fade In": "페이드 인", + "Fade Out": "패이드 아웃", + "Show Empty": "내용 없음", + "Recording From Line In": "라인 인으로 부터 녹음", + "Track preview": "트랙 프리뷰", + "Cannot schedule outside a show.": "쇼 범위 밖에 스케쥴 할수 없습니다", + "Moving 1 Item": "아이템 1개 이동", + "Moving %s Items": "아이템 %s개 이동", + "Save": "저장", + "Cancel": "취소", + "Fade Editor": "페이드 에디터", + "Cue Editor": "큐 에디터", + "Waveform features are available in a browser supporting the Web Audio API": "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다", + "Select all": "전체 선택", + "Select none": "전체 선택 취소", + "Trim overbooked shows": "", + "Remove selected scheduled items": "선택된 아이템 제거", + "Jump to the current playing track": "현재 방송중인 트랙으로 가기", + "Jump to Current": "", + "Cancel current show": "현재 쇼 취소", + "Open library to add or remove content": "라이브러리 열기", + "Add / Remove Content": "내용 추가/제거", + "in use": "사용중", + "Disk": "디스크", + "Look in": "경로", + "Open": "열기", + "Admin": "관리자", + "DJ": "", + "Program Manager": "프로그램 매니저", + "Guest": "손님", + "Guests can do the following:": "손님의 권한:", + "View schedule": "스케쥴 보기", + "View show content": "쇼 내용 보기", + "DJs can do the following:": "DJ의 권한:", + "Manage assigned show content": "할당된 쇼의 내용 관리", + "Import media files": "미디아 파일 추가", + "Create playlists, smart blocks, and webstreams": "플레이 리스트, 스마트 블록, 웹스트림 생성", + "Manage their own library content": "자신의 라이브러리 내용 관리", + "Program Managers can do the following:": "", + "View and manage show content": "쇼 내용 보기및 관리", + "Schedule shows": "쇼 스케쥴 하기", + "Manage all library content": "모든 라이브러리 내용 관리", + "Admins can do the following:": "관리자의 권한:", + "Manage preferences": "설정 관리", + "Manage users": "사용자 관리", + "Manage watched folders": "모니터 폴터 관리", + "Send support feedback": "사용자 피드백을 보냄", + "View system status": "이시스템 상황 보기", + "Access playout history": "방송 기록 접근 권한", + "View listener stats": "청취자 통계 보기", + "Show / hide columns": "컬럼 보이기/숨기기", + "Columns": "", + "From {from} to {to}": "{from}부터 {to}까지", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "", + "Su": "일", + "Mo": "월", + "Tu": "화", + "We": "수", + "Th": "목", + "Fr": "금", + "Sa": "토", + "Close": "닫기", + "Hour": "시", + "Minute": "분", + "Done": "확인", + "Select files": "파일 선택", + "Add files to the upload queue and click the start button.": "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요.", + "Filename": "", + "Size": "", + "Add Files": "파일 추가", + "Stop Upload": "업로드 중지", + "Start upload": "업로드 시작", + "Start Upload": "", + "Add files": "파일 추가", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d 파일이 업로드됨", + "N/A": "", + "Drag files here.": "파일을 여기로 드래그 앤 드랍 하세요", + "File extension error.": "파일 확장자 에러.", + "File size error.": "파일 크기 에러.", + "File count error.": "파일 갯수 에러.", + "Init error.": "초기화 에러.", + "HTTP Error.": "HTTP 에러.", + "Security error.": "보안 에러.", + "Generic error.": "일반적인 에러.", + "IO error.": "IO 에러.", + "File: %s": "파일: %s", + "%d files queued": "%d개의 파일이 대기중", + "File: %f, size: %s, max file size: %m": "파일: %f, 크기: %s, 최대 파일 크기: %m", + "Upload URL might be wrong or doesn't exist": "업로드 URL이 맞지 않거나 존재 하지 않습니다", + "Error: File too large: ": "에러: 파일이 너무 큽니다:", + "Error: Invalid file extension: ": "에러: 지원하지 않는 확장자:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s row %s를 클립보드로 복사 하였습니다", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "설명", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "사용", + "Disabled": "미사용", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "아이디와 암호가 맞지 않습니다. 다시 시도해주세요", + "You are viewing an older version of %s": "오래된 %s를 보고 있습니다", + "You cannot add tracks to dynamic blocks.": "동적인 스마트 블록에는 트랙을 추가 할수 없습니다", + "You don't have permission to delete selected %s(s).": "선택하신 %s를 삭제 할수 있는 권한이 부족합니다.", + "You can only add tracks to smart block.": "스마트 블록에는 트랙만 추가 가능합니다", + "Untitled Playlist": "제목없는 재생목록", + "Untitled Smart Block": "제목없는 스마트 블록", + "Unknown Playlist": "모르는 재생목록", + "Preferences updated.": "설정이 업데이트 되었습니다", + "Stream Setting Updated.": "스트림 설정이 업데이트 되었습니다", + "path should be specified": "경로를 입력해주세요", + "Problem with Liquidsoap...": "Liquidsoap 문제...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "%s의 재방송 %s부터 %s까지", + "Select cursor": "커서 선택", + "Remove cursor": "커서 제거", + "show does not exist": "쇼가 존재 하지 않음", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "사용자가 추가 되었습니다!", + "User updated successfully!": "사용자 정보가 업데이트 되었습니다!", + "Settings updated successfully!": "세팅이 성공적으로 업데이트 되었습니다!", + "Untitled Webstream": "제목없는 웹스트림", + "Webstream saved.": "웹스트림이 저장 되었습니다", + "Invalid form values.": "잘못된 값입니다", + "Invalid character entered": "허용되지 않는 문자입니다", + "Day must be specified": "날짜를 설정하세요", + "Time must be specified": "시간을 설정하세요", + "Must wait at least 1 hour to rebroadcast": "재방송 설정까지 1시간 기간이 필요합니다", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Custom 인증 사용", + "Custom Username": "Custom 아이디", + "Custom Password": "Custom 암호", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "아이디를 입력해주세요", + "Password field cannot be empty.": "암호를 입력해주세요", + "Record from Line In?": "Line In으로 녹음", + "Rebroadcast?": "재방송?", + "days": "일", + "Link:": "링크:", + "Repeat Type:": "반복 유형:", + "weekly": "주간", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "월간", + "Select Days:": "날짜 선택", + "Repeat By:": "", + "day of the month": "월중 날짜", + "day of the week": "주중 날짜", + "Date End:": "종료", + "No End?": "무한 반복?", + "End date must be after start date": "종료 일이 시작일 보다 먼져 입니다.", + "Please select a repeat day": "", + "Background Colour:": "배경 색:", + "Text Colour:": "글자 색:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "이름:", + "Untitled Show": "이름없는 쇼", + "URL:": "", + "Genre:": "장르:", + "Description:": "설명:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg}은 시간 형식('HH:mm')에 맞지 않습니다.", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "길이:", + "Timezone:": "시간대:", + "Repeats?": "반복?", + "Cannot create show in the past": "쇼를 과거에 생성 할수 없습니다", + "Cannot modify start date/time of the show that is already started": "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다", + "End date/time cannot be in the past": "종료 날짜/시간을 과거로 설정할수 없습니다", + "Cannot have duration < 0m": "길이가 0m 보다 작을수 없습니다", + "Cannot have duration 00h 00m": "길이가 00h 00m인 쇼를 생성 할수 없습니다", + "Cannot have duration greater than 24h": "쇼의 길이가 24h를 넘을수 없습니다", + "Cannot schedule overlapping shows": "쇼를 중복되게 스케쥴할수 없습니다", + "Search Users:": "사용자 검색:", + "DJs:": "DJ들:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "아이디: ", + "Password:": "암호: ", + "Verify Password:": "암호 확인:", + "Firstname:": "이름:", + "Lastname:": "성:", + "Email:": "이메일", + "Mobile Phone:": "휴대전화:", + "Skype:": "스카입:", + "Jabber:": "", + "User Type:": "유저 타입", + "Login name is not unique.": "사용할수 없는 아이디 입니다", + "Delete All Tracks in Library": "", + "Date Start:": "시작", + "Title:": "제목:", + "Creator:": "제작자:", + "Album:": "앨범:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "년도:", + "Label:": "상표:", + "Composer:": "작곡가:", + "Conductor:": "지휘자", + "Mood:": "무드", + "BPM:": "", + "Copyright:": "저작권:", + "ISRC Number:": "ISRC 넘버", + "Website:": "웹사이트", + "Language:": "언어", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "방송국 이름", + "Station Description": "", + "Station Logo:": "방송국 로고", + "Note: Anything larger than 600x600 will be resized.": "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다", + "Default Crossfade Duration (s):": "기본 크로스페이드 길이(s)", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "기본 페이드 인(s)", + "Default Fade Out (s):": "기본 페이드 아웃(s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "주 시작일", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "로그인", + "Password": "암호", + "Confirm new password": "새 암호 확인", + "Password confirmation does not match your password.": "암호와 암호 확인 값이 일치 하지 않습니다.", + "Email": "", + "Username": "아이디", + "Reset password": "암호 초기화", + "Back": "", + "Now Playing": "방송중", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "내 쇼:", + "My Shows": "", + "Select criteria": "기준 선택", + "Bit Rate (Kbps)": "비트 레이트(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "샘플 레이트", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "시간", + "minutes": "분", + "items": "아이템", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "동적(Dynamic)", + "Static": "정적(Static)", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "재생 목록 내용 생성후 설정 저장", + "Shuffle playlist content": "재생 목록 내용 셔플하기", + "Shuffle": "셔플", + "Limit cannot be empty or smaller than 0": "길이 제한은 비어두거나 0으로 설정할수 없습니다", + "Limit cannot be more than 24 hrs": "길이 제한은 24h 보다 클수 없습니다", + "The value should be an integer": "이 값은 정수(integer) 입니다", + "500 is the max item limit value you can set": "아이템 곗수의 최대값은 500 입니다", + "You must select Criteria and Modifier": "기준과 모디파이어를 골라주세요", + "'Length' should be in '00:00:00' format": "길이는 00:00:00 형태로 입력하세요", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "이 값은 숫자만 허용 됩니다", + "The value should be less then 2147483648": "이 값은 2147483648보다 작은 수만 허용 됩니다", + "The value cannot be empty": "", + "The value should be less than %s characters": "이 값은 %s 문자보다 작은 길이만 허용 됩니다", + "Value cannot be empty": "이 값은 비어둘수 없습니다", + "Stream Label:": "스트림 레이블", + "Artist - Title": "아티스트 - 제목", + "Show - Artist - Title": "쇼 - 아티스트 - 제목", + "Station name - Show name": "방송국 이름 - 쇼 이름", + "Off Air Metadata": "오프 에어 메타데이타", + "Enable Replay Gain": "리플레이 게인 활성화", + "Replay Gain Modifier": "리플레이 게인 설정", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "사용:", + "Mobile:": "", + "Stream Type:": "스트림 타입:", + "Bit Rate:": "비트 레이트:", + "Service Type:": "서비스 타입:", + "Channels:": "채널:", + "Server": "서버", + "Port": "포트", + "Mount Point": "마운트 지점", + "Name": "이름", + "URL": "", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "폴더 가져오기", + "Watched Folders:": "모니터중인 폴더", + "Not a valid Directory": "옳치 않은 폴더 입니다", + "Value is required and can't be empty": "이 필드는 비워둘수 없습니다.", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg}은 맞지 않는 이메일 형식 입니다.", + "{msg} does not fit the date format '%format%'": "{msg}은 날짜 형식('%format%')에 맞지 않습니다.", + "{msg} is less than %min% characters long": "{msg}는 %min%글자 보다 짧을수 없습니다", + "{msg} is more than %max% characters long": "{msg}는 %max%글자 보다 길수 없습니다", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg}은 '%min%'와 '%max%' 사이에 있지 않습니다.", + "Passwords do not match": "암호가 맞지 않습니다", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "큐-인 과 큐 -아웃 이 null 입니다", + "Can't set cue out to be greater than file length.": "큐-아웃 값은 파일 길이보다 클수 없습니다", + "Can't set cue in to be larger than cue out.": "큐-인 값은 큐-아웃 값보다 클수 없습니다.", + "Can't set cue out to be smaller than cue in.": "큐-아웃 값은 큐-인 값보다 작을수 없습니다.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "국가 선택", + "livestream": "", + "Cannot move items out of linked shows": "링크 쇼에서 아이템을 분리 할수 없습니다", + "The schedule you're viewing is out of date! (sched mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)", + "The schedule you're viewing is out of date! (instance mismatch)": "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)", + "The schedule you're viewing is out of date!": "현재 보고 계신 스케쥴이 맞지 않습니다", + "You are not allowed to schedule show %s.": "쇼를 스케쥴 할수 있는 권한이 없습니다 %s.", + "You cannot add files to recording shows.": "녹화 쇼에는 파일을 추가 할수 없습니다", + "The show %s is over and cannot be scheduled.": "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다", + "The show %s has been previously updated!": "쇼 %s 업데이트 되었습니다!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "선택하신 파일이 존재 하지 않습니다", + "Shows can have a max length of 24 hours.": "쇼 길이는 24시간을 넘을수 없습니다.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "쇼를 중복되게 스케줄 할수 없습니다.\n주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다.", + "Rebroadcast of %s from %s": "%s 재방송( %s에 시작) ", + "Length needs to be greater than 0 minutes": "길이가 0분 보다 길어야 합니다", + "Length should be of form \"00h 00m\"": "길이는 \"00h 00m\"의 형태 여야 합니다 ", + "URL should be of form \"https://example.org\"": "URL은 \"https://example.org\" 형태여야 합니다", + "URL should be 512 characters or less": "URL은 512캐릭터 까지 허용합니다", + "No MIME type found for webstream.": "웹 스트림의 MIME 타입을 찾을수 없습니다", + "Webstream name cannot be empty": "웹스트림의 이름을 지정하십시오", + "Could not parse XSPF playlist": "XSPF 재생목록을 분석 할수 없습니다", + "Could not parse PLS playlist": "PLS 재생목록을 분석 할수 없습니다", + "Could not parse M3U playlist": "M3U 재생목록을 분석할수 없습니다", + "Invalid webstream - This appears to be a file download.": "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다", + "Unrecognized stream type: %s": "알수 없는 스트림 타입: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "녹음된 파일의 메타데이타 보기", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "쇼 수정", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "권한이 부족합니다", + "Can't drag and drop repeating shows": "반복쇼는 드래그 앤 드롭 할수 없습니다", + "Can't move a past show": "지난 쇼는 이동할수 없습니다", + "Can't move show into past": "과거로 쇼를 이동할수 없습니다", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다", + "Show was deleted because recorded show does not exist!": "녹화 쇼가 없으로 쇼가 삭제 되었습니다", + "Must wait 1 hour to rebroadcast.": "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 ", + "Track": "", + "Played": "방송됨", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/nl_NL.json b/webapp/src/locale/nl_NL.json index 2efe325153..0ed81ad43c 100644 --- a/webapp/src/locale/nl_NL.json +++ b/webapp/src/locale/nl_NL.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Het jaar %s moet binnen het bereik van 1753-9999", - "%s-%s-%s is not a valid date": "%s-%s-%s dit is geen geldige datum", - "%s:%s:%s is not a valid time": "%s:%s:%s Dit is geen geldige tijd", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s.", - "Click the 'New Show' button and fill out the required fields.": "Klik op de knop 'Nieuwe Show' en vul de vereiste velden.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'.", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n%sCreate een niet-gekoppelde Toon nu%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calender", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "gebruikers", - "Track Types": "", - "Streams": "streams", - "Status": "Status", - "Analytics": "", - "Playout History": "Playout geschiedenis", - "History Templates": "Geschiedenis sjablonen", - "Listener Stats": "luister status", - "Show Listener Stats": "", - "Help": "Help", - "Getting Started": "Aan de slag", - "User Manual": "Gebruikershandleiding", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "U bent niet toegestaan voor toegang tot deze bron.", - "You are not allowed to access this resource. ": "U bent niet toegestaan voor toegang tot deze bron.", - "File does not exist in %s": "Bestand bestaat niet in %s", - "Bad request. no 'mode' parameter passed.": "Slecht verzoek. geen 'mode' parameter doorgegeven.", - "Bad request. 'mode' parameter is invalid": "Slecht verzoek. 'mode' parameter is ongeldig", - "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", - "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", - "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Pagina niet gevonden", - "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", - "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", - "An internal application error has occurred.": "Een interne toepassingsfout opgetreden.", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s niet gevonden", - "Something went wrong.": "Er ging iets mis.", - "Preview": "Voorbeeld", - "Add to Playlist": "Toevoegen aan afspeellijst", - "Add to Smart Block": "Toevoegen aan slimme blok", - "Delete": "Verwijderen", - "Edit...": "", - "Download": "Download", - "Duplicate Playlist": "Dubbele afspeellijst", - "Duplicate Smartblock": "", - "No action available": "Geen actie beschikbaar", - "You don't have permission to delete selected items.": "Je hebt geen toestemming om geselecteerde items te verwijderen", - "Could not delete file because it is scheduled in the future.": "Kan bestand niet verwijderen omdat het in de toekomst is gepland.", - "Could not delete file(s).": "Bestand(en) kan geen gegevens verwijderen.", - "Copy of %s": "Kopie van %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina.", - "Audio Player": "Audio Player", - "Something went wrong!": "", - "Recording:": "Opname", - "Master Stream": "Master Stream", - "Live Stream": "Live stream", - "Nothing Scheduled": "Niets gepland", - "Current Show:": "Huidige Show:", - "Current": "Huidige", - "You are running the latest version": "U werkt de meest recente versie", - "New version available: ": "Nieuwe versie beschikbaar:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Toevoegen aan huidige afspeellijst", - "Add to current smart block": "Toevoegen aan huidigeslimme block", - "Adding 1 Item": "1 Item toevoegen", - "Adding %s Items": "%s Items toe te voegen", - "You can only add tracks to smart blocks.": "U kunt alleen nummers naar slimme blokken toevoegen.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten.", - "Please select a cursor position on timeline.": "Selecteer een cursorpositie op de tijdlijn.", - "You haven't added any tracks": "U hebt de nummers nog niet toegevoegd", - "You haven't added any playlists": "U heb niet alle afspeellijsten toegevoegd", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "U nog niet toegevoegd een slimme blokken", - "You haven't added any webstreams": "U hebt webstreams nog niet toegevoegd", - "Learn about tracks": "Informatie over nummers", - "Learn about playlists": "Meer informatie over afspeellijsten", - "Learn about podcasts": "", - "Learn about smart blocks": "Informatie over slimme blokken", - "Learn about webstreams": "Meer informatie over webstreams", - "Click 'New' to create one.": "Klik op 'Nieuw' te maken.", - "Add": "toevoegen", - "New": "", - "Edit": "Bewerken", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "verwijderen", - "Edit Metadata": "Metagegevens bewerken", - "Add to selected show": "Toevoegen aan geselecteerde Toon", - "Select": "Selecteer", - "Select this page": "Selecteer deze pagina", - "Deselect this page": "Hef de selectie van deze pagina", - "Deselect all": "Alle selecties opheffen", - "Are you sure you want to delete the selected item(s)?": "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?", - "Scheduled": "Gepland", - "Tracks": "track", - "Playlist": "Afspeellijsten", - "Title": "Titel", - "Creator": "Aangemaakt door", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Componist", - "Conductor": "Dirigent", - "Copyright": "Copyright:", - "Encoded By": "Encoded Bij", - "Genre": "Genre", - "ISRC": "ISRC", - "Label": "label", - "Language": "Taal", - "Last Modified": "Laatst Gewijzigd", - "Last Played": "Laatst gespeeld", - "Length": "Lengte", - "Mime": "Mime", - "Mood": "Mood", - "Owner": "Eigenaar", - "Replay Gain": "Herhalen Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Track nummer", - "Uploaded": "Uploaded", - "Website": "Website:", - "Year": "Jaar", - "Loading...": "Bezig met laden...", - "All": "Alle", - "Files": "Bestanden", - "Playlists": "Afspeellijsten", - "Smart Blocks": "slimme blokken", - "Web Streams": "Web Streams", - "Unknown type: ": "Onbekend type", - "Are you sure you want to delete the selected item?": "Wilt u de geselecteerde gegevens werkelijk verwijderen?", - "Uploading in progress...": "Uploaden in vooruitgang...", - "Retrieving data from the server...": "Gegevens op te halen van de server...", - "Import": "", - "Imported?": "", - "View": "Weergeven", - "Error code: ": "foutcode", - "Error msg: ": "Fout msg:", - "Input must be a positive number": "Invoer moet een positief getal", - "Input must be a number": "Invoer moet een getal", - "Input must be in the format: yyyy-mm-dd": "Invoer moet worden in de indeling: jjjj-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Invoer moet worden in het formaat: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?", - "Open Media Builder": "Open Media opbouw", - "please put in a time '00:00:00 (.0)'": "Gelieve te zetten in een tijd '00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:", - "Dynamic block is not previewable": "Dynamische blok is niet previewable", - "Limit to: ": "Beperk tot:", - "Playlist saved": "Afspeellijst opgeslagen", - "Playlist shuffled": "Afspeellijst geschud", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken.", - "Listener Count on %s: %s": "Luisteraar rekenen op %s: %s", - "Remind me in 1 week": "Stuur me een herinnering in 1 week", - "Remind me never": "Herinner me nooit", - "Yes, help Airtime": "Ja, help Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Afbeelding moet een van jpg, jpeg, png of gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "slimme blok geschud", - "Smart block generated and criteria saved": "slimme blok gegenereerd en opgeslagen criteria", - "Smart block saved": "Smart blok opgeslagen", - "Processing...": "Wordt verwerkt...", - "Select modifier": "Selecteer modifier", - "contains": "bevat", - "does not contain": "bevat niet", - "is": "is", - "is not": "is niet gelijk aan", - "starts with": "Begint met", - "ends with": "Eindigt op", - "is greater than": "is groter dan", - "is less than": "is minder dan", - "is in the range": "in het gebied", - "Generate": "Genereren", - "Choose Storage Folder": "Kies opslagmap", - "Choose Folder to Watch": "Kies map voor bewaken", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!", - "Manage Media Folders": "Mediamappen beheren", - "Are you sure you want to remove the watched folder?": "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?", - "This path is currently not accessible.": "Dit pad is momenteel niet toegankelijk.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt.", - "Connected to the streaming server": "Aangesloten op de streaming server", - "The stream is disabled": "De stream is uitgeschakeld", - "Getting information from the server...": "Het verkrijgen van informatie van de server ...", - "Can not connect to the streaming server": "Kan geen verbinding maken met de streaming server", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken.", - "Warning: You cannot change this field while the show is currently playing": "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen", - "No result found": "Geen resultaat gevonden", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken.", - "Specify custom authentication which will work only for this show.": "Geef aangepaste verificatie die alleen voor deze show werken zal.", - "The show instance doesn't exist anymore!": "De Toon-exemplaar bestaat niet meer!", - "Warning: Shows cannot be re-linked": "Waarschuwing: Shows kunnen niet opnieuw gekoppelde", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen.", - "Show": "Show", - "Show is empty": "Show Is leeg", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Retreiving gegevens van de server...", - "This show has no scheduled content.": "Deze show heeft geen geplande inhoud.", - "This show is not completely filled with content.": "Deze show is niet volledig gevuld met inhoud.", - "January": "Januari", - "February": "Februari", - "March": "maart", - "April": "april", - "May": "mei", - "June": "juni", - "July": "juli", - "August": "augustus", - "September": "september", - "October": "oktober", - "November": "november", - "December": "december", - "Jan": "jan", - "Feb": "feb", - "Mar": "maa", - "Apr": "apr", - "Jun": "jun", - "Jul": "jul", - "Aug": "aug", - "Sep": "sep", - "Oct": "okt", - "Nov": "nov", - "Dec": "dec", - "Today": "vandaag", - "Day": "dag", - "Week": "week", - "Month": "maand", - "Sunday": "zondag", - "Monday": "maandag", - "Tuesday": "dinsdag", - "Wednesday": "woensdag", - "Thursday": "donderdag", - "Friday": "vrijdag", - "Saturday": "zaterdag", - "Sun": "zon", - "Mon": "ma", - "Tue": "di", - "Wed": "wo", - "Thu": "do", - "Fri": "vrij", - "Sat": "zat", - "Shows longer than their scheduled time will be cut off by a following show.": "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling.", - "Cancel Current Show?": "Annuleer Huidige Show?", - "Stop recording current show?": "Stop de opname huidige show?", - "Ok": "oke", - "Contents of Show": "Inhoud van Show", - "Remove all content?": "Alle inhoud verwijderen?", - "Delete selected item(s)?": "verwijderd geselecteerd object(en)?", - "Start": "Start", - "End": "einde", - "Duration": "Duur", - "Filtering out ": "Filteren op", - " of ": "of", - " records": "records", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Infaden", - "Fade Out": "uitfaden", - "Show Empty": "Show leeg", - "Recording From Line In": "Opname van de Line In", - "Track preview": "Track Voorbeeld", - "Cannot schedule outside a show.": "Niet gepland buiten een show.", - "Moving 1 Item": "1 Item verplaatsen", - "Moving %s Items": "%s Items verplaatsen", - "Save": "opslaan", - "Cancel": "anuleren", - "Fade Editor": "Fade Bewerken", - "Cue Editor": "Cue Bewerken", - "Waveform features are available in a browser supporting the Web Audio API": "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API", - "Select all": "Selecteer alles", - "Select none": "Niets selecteren", - "Trim overbooked shows": "Trim overboekte shows", - "Remove selected scheduled items": "Geselecteerde geplande items verwijderen", - "Jump to the current playing track": "Jump naar de huidige playing track", - "Jump to Current": "", - "Cancel current show": "Annuleren van de huidige show", - "Open library to add or remove content": "Open bibliotheek toevoegen of verwijderen van inhoud", - "Add / Remove Content": "Toevoegen / verwijderen van inhoud", - "in use": "In gebruik", - "Disk": "hardeschijf", - "Look in": "Zoeken in:", - "Open": "open", - "Admin": "Admin", - "DJ": "DJ", - "Program Manager": "Programmabeheer", - "Guest": "gast", - "Guests can do the following:": "Gasten kunnen het volgende doen:", - "View schedule": "Schema weergeven", - "View show content": "Weergave show content", - "DJs can do the following:": "DJ's kunnen het volgende doen:", - "Manage assigned show content": "Toegewezen Toon inhoud beheren", - "Import media files": "Mediabestanden importeren", - "Create playlists, smart blocks, and webstreams": "Maak afspeellijsten, slimme blokken en webstreams", - "Manage their own library content": "De inhoud van hun eigen bibliotheek beheren", - "Program Managers can do the following:": "", - "View and manage show content": "Bekijken en beheren van inhoud weergeven", - "Schedule shows": "Schema shows", - "Manage all library content": "Alle inhoud van de bibliotheek beheren", - "Admins can do the following:": "Beheerders kunnen het volgende doen:", - "Manage preferences": "Voorkeuren beheren", - "Manage users": "Gebruikers beheren", - "Manage watched folders": "Bewaakte mappen beheren", - "Send support feedback": "Ondersteuning feedback verzenden", - "View system status": "Bekijk systeem status", - "Access playout history": "Toegang playout geschiedenis", - "View listener stats": "Weergave luisteraar status", - "Show / hide columns": "Geef weer / verberg kolommen", - "Columns": "", - "From {from} to {to}": "Van {from} tot {to}", - "kbps": "kbps", - "yyyy-mm-dd": "jjjj-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Zo", - "Mo": "Ma", - "Tu": "Di", - "We": "Wo", - "Th": "Do", - "Fr": "Vr", - "Sa": "Za", - "Close": "Sluiten", - "Hour": "Uur", - "Minute": "Minuut", - "Done": "Klaar", - "Select files": "Selecteer bestanden", - "Add files to the upload queue and click the start button.": "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop", - "Filename": "", - "Size": "", - "Add Files": "Bestanden toevoegen", - "Stop Upload": "Stop upload", - "Start upload": "Begin upload", - "Start Upload": "", - "Add files": "Bestanden toevoegen", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Geüploade %d/%d bestanden", - "N/A": "N/B", - "Drag files here.": "Sleep bestanden hierheen.", - "File extension error.": "Bestandsextensie fout", - "File size error.": "Bestandsgrote fout.", - "File count error.": "Graaf bestandsfout.", - "Init error.": "Init fout.", - "HTTP Error.": "HTTP fout.", - "Security error.": "Beveiligingsfout.", - "Generic error.": "Generieke fout.", - "IO error.": "IO fout.", - "File: %s": "Bestand: %s", - "%d files queued": "%d bestanden in de wachtrij", - "File: %f, size: %s, max file size: %m": "File: %f, grootte: %s, max bestandsgrootte: %m", - "Upload URL might be wrong or doesn't exist": "Upload URL zou verkeerd kunnen zijn of bestaat niet", - "Error: File too large: ": "Fout: Bestand is te groot", - "Error: Invalid file extension: ": "Fout: Niet toegestane bestandsextensie ", - "Set Default": "Standaard instellen", - "Create Entry": "Aangemaakt op:", - "Edit History Record": "Geschiedenis Record bewerken", - "No Show": "geen show", - "Copied %s row%s to the clipboard": "Rij gekopieerde %s %s naar het Klembord", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent.", - "New Show": "Nieuw Show", - "New Log Entry": "Nieuwe logboekvermelding", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Beschrijving", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ingeschakeld", - "Disabled": "Uitgeschakeld", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "Voer uw gebruikersnaam en wachtwoord.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd.", - "Wrong username or password provided. Please try again.": "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw.", - "You are viewing an older version of %s": "U bekijkt een oudere versie van %s", - "You cannot add tracks to dynamic blocks.": "U kunt nummers toevoegen aan dynamische blokken.", - "You don't have permission to delete selected %s(s).": "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)", - "You can only add tracks to smart block.": "U kunt alleen nummers toevoegen aan smart blok.", - "Untitled Playlist": "Naamloze afspeellijst", - "Untitled Smart Block": "Naamloze slimme block", - "Unknown Playlist": "Onbekende afspeellijst", - "Preferences updated.": "Voorkeuren bijgewerkt.", - "Stream Setting Updated.": "Stream vaststelling van bijgewerkte.", - "path should be specified": "pad moet worden opgegeven", - "Problem with Liquidsoap...": "Probleem met Liquidsoap...", - "Request method not accepted": "Verzoek methode niet geaccepteerd", - "Rebroadcast of show %s from %s at %s": "Rebroadcast van show %s van %s in %s", - "Select cursor": "Selecteer cursor", - "Remove cursor": "Cursor verwijderen", - "show does not exist": "show bestaat niet", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "gebruiker Succesvol Toegevoegd", - "User updated successfully!": "gebruiker Succesvol bijgewerkt", - "Settings updated successfully!": "Instellingen met succes bijgewerkt!", - "Untitled Webstream": "Naamloze Webstream", - "Webstream saved.": "Webstream opgeslagen.", - "Invalid form values.": "Ongeldige formulierwaarden.", - "Invalid character entered": "Ongeldig teken ingevoerd", - "Day must be specified": "Dag moet worden opgegeven", - "Time must be specified": "Tijd moet worden opgegeven", - "Must wait at least 1 hour to rebroadcast": "Ten minste 1 uur opnieuw uitzenden moet wachten", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "verificatie %s gebruiken:", - "Use Custom Authentication:": "Gebruik aangepaste verificatie:", - "Custom Username": "Aangepaste gebruikersnaam", - "Custom Password": "Aangepaste wachtwoord", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Veld Gebruikersnaam mag niet leeg.", - "Password field cannot be empty.": "veld wachtwoord mag niet leeg.", - "Record from Line In?": "Opnemen vanaf de lijn In?", - "Rebroadcast?": "Rebroadcast?", - "days": "dagen", - "Link:": "link", - "Repeat Type:": "Herhaal Type:", - "weekly": "wekelijks", - "every 2 weeks": "elke 2 weken", - "every 3 weeks": "elke 3 weken", - "every 4 weeks": "elke 4 weken", - "monthly": "per maand", - "Select Days:": "Selecteer dagen:", - "Repeat By:": "Herhaal door:", - "day of the month": "dag van de maand", - "day of the week": "Dag van de week", - "Date End:": "datum einde", - "No End?": "Geen einde?", - "End date must be after start date": "Einddatum moet worden na begindatum ligt", - "Please select a repeat day": "Selecteer een Herhaal dag", - "Background Colour:": "achtergrond kleur", - "Text Colour:": "tekst kleur", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "naam", - "Untitled Show": "Zonder titel show", - "URL:": "URL", - "Genre:": "genre:", - "Description:": "Omschrijving:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} past niet de tijdnotatie 'UU:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Looptijd:", - "Timezone:": "tijdzone:", - "Repeats?": "herhaalt?", - "Cannot create show in the past": "kan niet aanmaken show in het verleden weergeven", - "Cannot modify start date/time of the show that is already started": "Start datum/tijd van de show die is al gestart wijzigen niet", - "End date/time cannot be in the past": "Eind datum/tijd mogen niet in het verleden", - "Cannot have duration < 0m": "Geen duur hebben < 0m", - "Cannot have duration 00h 00m": "Kan niet hebben duur 00h 00m", - "Cannot have duration greater than 24h": "Duur groter is dan 24h kan niet hebben", - "Cannot schedule overlapping shows": "kan Niet gepland overlappen shows", - "Search Users:": "zoek gebruikers", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "gebuikersnaam", - "Password:": "wachtwoord", - "Verify Password:": "Wachtwoord verifiëren:", - "Firstname:": "voornaam", - "Lastname:": "achternaam", - "Email:": "e-mail", - "Mobile Phone:": "mobiel nummer", - "Skype:": "skype", - "Jabber:": "Jabber:", - "User Type:": "Gebruiker Type :", - "Login name is not unique.": "Login naam is niet uniek.", - "Delete All Tracks in Library": "", - "Date Start:": "datum start", - "Title:": "Titel", - "Creator:": "Aangemaakt door", - "Album:": "Album", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Jaar", - "Label:": "label", - "Composer:": "schrijver van een muziekwerk", - "Conductor:": "Conductor:", - "Mood:": "Mood:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "ISRC nummer:", - "Website:": "Website:", - "Language:": "Taal:", - "Publish...": "", - "Start Time": "Begintijd", - "End Time": "Eindtijd", - "Interface Timezone:": "Interface tijdzone:", - "Station Name": "station naam", - "Station Description": "", - "Station Logo:": "Station Logo:", - "Note: Anything larger than 600x600 will be resized.": "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast.", - "Default Crossfade Duration (s):": "Standaardduur Crossfade (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "standaard fade in (s):", - "Default Fade Out (s):": "standaard fade uit (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "station tijdzone", - "Week Starts On": "Week start aan", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Inloggen", - "Password": "wachtwoord", - "Confirm new password": "Bevestig nieuw wachtwoord", - "Password confirmation does not match your password.": "Wachtwoord bevestiging komt niet overeen met uw wachtwoord.", - "Email": "", - "Username": "gebuikersnaam", - "Reset password": "Reset wachtwoord", - "Back": "", - "Now Playing": "Nu spelen", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "al mij shows", - "My Shows": "", - "Select criteria": "Selecteer criteria", - "Bit Rate (Kbps)": "Bit Rate (kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Sample Rate (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "Uren", - "minutes": "minuten", - "items": "artikelen", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamisch", - "Static": "status", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Genereren van inhoud van de afspeellijst en criteria opslaan", - "Shuffle playlist content": "Shuffle afspeellijst inhoud", - "Shuffle": "Shuffle", - "Limit cannot be empty or smaller than 0": "Limiet kan niet leeg zijn of kleiner is dan 0", - "Limit cannot be more than 24 hrs": "Limiet mag niet meer dan 24 uur", - "The value should be an integer": "De waarde moet een geheel getal", - "500 is the max item limit value you can set": "500 is de grenswaarde max object die kunt u instellen", - "You must select Criteria and Modifier": "U moet Criteria en Modifier selecteren", - "'Length' should be in '00:00:00' format": "'Lengte' moet in ' 00:00:00 ' formaat", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "De waarde moet worden numerieke", - "The value should be less then 2147483648": "De waarde moet minder dan 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "De waarde moet kleiner zijn dan %s tekens", - "Value cannot be empty": "Waarde kan niet leeg", - "Stream Label:": "Stream Label:", - "Artist - Title": "Artiest - Titel", - "Show - Artist - Title": "Show - Artiest - titel", - "Station name - Show name": "Station naam - Show naam", - "Off Air Metadata": "Off Air Metadata", - "Enable Replay Gain": "Inschakelen Replay Gain", - "Replay Gain Modifier": "Replay Gain Modifier", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Ingeschakeld", - "Mobile:": "", - "Stream Type:": "Stream Type:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Service Type:", - "Channels:": "kanalen:", - "Server": "Server", - "Port": "poort", - "Mount Point": "Aankoppelpunt", - "Name": "naam", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "mappen importeren", - "Watched Folders:": "Gecontroleerde mappen:", - "Not a valid Directory": "Niet een geldige map", - "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is geen geldig e-mailadres in de basis formaat lokale-onderdeel {'@'} hostnaam", - "{msg} does not fit the date format '%format%'": "{msg} past niet in de datumnotatie '%format%'", - "{msg} is less than %min% characters long": "{msg} is minder dan %min% tekens lang", - "{msg} is more than %max% characters long": "{msg} is meer dan %max% karakters lang", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is niet tussen '%min%' en '%max%', inclusief", - "Passwords do not match": "Wachtwoorden komen niet overeen.", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "%s wachtwoord Reset", - "Cue in and cue out are null.": "Het Cue in en cue uit null zijn.", - "Can't set cue out to be greater than file length.": "Niet instellen cue uit groter zijn dan de bestandslengte van het", - "Can't set cue in to be larger than cue out.": "Niet instellen cue in groter dan cue uit.", - "Can't set cue out to be smaller than cue in.": "Niet instellen cue uit op kleiner zijn dan het cue in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Selecteer land", - "livestream": "", - "Cannot move items out of linked shows": "Items uit gekoppelde toont kan niet verplaatsen", - "The schedule you're viewing is out of date! (sched mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)", - "The schedule you're viewing is out of date! (instance mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)", - "The schedule you're viewing is out of date!": "Het schema dat u aan het bekijken bent is verouderd!", - "You are not allowed to schedule show %s.": "U zijn niet toegestaan om te plannen show %s.", - "You cannot add files to recording shows.": "U kunt bestanden toevoegen aan het opnemen van programma's.", - "The show %s is over and cannot be scheduled.": "De show %s is voorbij en kan niet worden gepland.", - "The show %s has been previously updated!": "De show %s heeft al eerder zijn bijgewerkt!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "Niet gepland een afspeellijst die ontbrekende bestanden bevat.", - "A selected File does not exist!": "Een geselecteerd bestand bestaat niet!", - "Shows can have a max length of 24 hours.": "Shows kunnen hebben een maximale lengte van 24 uur.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen.", - "Rebroadcast of %s from %s": "Rebroadcast van %s van %s", - "Length needs to be greater than 0 minutes": "Lengte moet groter zijn dan 0 minuten", - "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", - "URL should be 512 characters or less": "URL moet 512 tekens of minder", - "No MIME type found for webstream.": "Geen MIME-type gevonden voor webstream.", - "Webstream name cannot be empty": "Webstream naam mag niet leeg zijn", - "Could not parse XSPF playlist": "Could not parse XSPF playlist", - "Could not parse PLS playlist": "Kon niet ontleden PLS afspeellijst", - "Could not parse M3U playlist": "Kon niet ontleden M3U playlist", - "Invalid webstream - This appears to be a file download.": "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden.", - "Unrecognized stream type: %s": "Niet herkende type stream: %s", - "Record file doesn't exist": "Record bestand bestaat niet", - "View Recorded File Metadata": "Weergave opgenomen bestand Metadata", - "Schedule Tracks": "Schema Tracks", - "Clear Show": "Wissen show", - "Cancel Show": "Annuleren show", - "Edit Instance": "Aanleg bewerken", - "Edit Show": "Bewerken van Show", - "Delete Instance": "Exemplaar verwijderen", - "Delete Instance and All Following": "Exemplaar verwijderen en alle volgende", - "Permission denied": "Toestemming geweigerd", - "Can't drag and drop repeating shows": "Kan niet slepen en neerzetten herhalende shows", - "Can't move a past show": "Een verleden Show verplaatsen niet", - "Can't move show into past": "Niet verplaatsen show in verleden", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet.", - "Show was deleted because recorded show does not exist!": "Toon is verwijderd omdat opgenomen programma niet bestaat!", - "Must wait 1 hour to rebroadcast.": "Moet wachten 1 uur opnieuw uitzenden..", - "Track": "track", - "Played": "Gespeeld", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Het jaar %s moet binnen het bereik van 1753-9999", + "%s-%s-%s is not a valid date": "%s-%s-%s dit is geen geldige datum", + "%s:%s:%s is not a valid time": "%s:%s:%s Dit is geen geldige tijd", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s.", + "Click the 'New Show' button and fill out the required fields.": "Klik op de knop 'Nieuwe Show' en vul de vereiste velden.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'.", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n%sCreate een niet-gekoppelde Toon nu%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calender", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "gebruikers", + "Track Types": "", + "Streams": "streams", + "Status": "Status", + "Analytics": "", + "Playout History": "Playout geschiedenis", + "History Templates": "Geschiedenis sjablonen", + "Listener Stats": "luister status", + "Show Listener Stats": "", + "Help": "Help", + "Getting Started": "Aan de slag", + "User Manual": "Gebruikershandleiding", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "U bent niet toegestaan voor toegang tot deze bron.", + "You are not allowed to access this resource. ": "U bent niet toegestaan voor toegang tot deze bron.", + "File does not exist in %s": "Bestand bestaat niet in %s", + "Bad request. no 'mode' parameter passed.": "Slecht verzoek. geen 'mode' parameter doorgegeven.", + "Bad request. 'mode' parameter is invalid": "Slecht verzoek. 'mode' parameter is ongeldig", + "You don't have permission to disconnect source.": "Je hebt geen toestemming om te bron verbreken", + "There is no source connected to this input.": "Er is geen bron die aangesloten op deze ingang.", + "You don't have permission to switch source.": "Je hebt geen toestemming om over te schakelen van de bron.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Pagina niet gevonden", + "The requested action is not supported.": "De gevraagde actie wordt niet ondersteund.", + "You do not have permission to access this resource.": "U bent niet gemachtigd voor toegang tot deze bron.", + "An internal application error has occurred.": "Een interne toepassingsfout opgetreden.", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s niet gevonden", + "Something went wrong.": "Er ging iets mis.", + "Preview": "Voorbeeld", + "Add to Playlist": "Toevoegen aan afspeellijst", + "Add to Smart Block": "Toevoegen aan slimme blok", + "Delete": "Verwijderen", + "Edit...": "", + "Download": "Download", + "Duplicate Playlist": "Dubbele afspeellijst", + "Duplicate Smartblock": "", + "No action available": "Geen actie beschikbaar", + "You don't have permission to delete selected items.": "Je hebt geen toestemming om geselecteerde items te verwijderen", + "Could not delete file because it is scheduled in the future.": "Kan bestand niet verwijderen omdat het in de toekomst is gepland.", + "Could not delete file(s).": "Bestand(en) kan geen gegevens verwijderen.", + "Copy of %s": "Kopie van %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina.", + "Audio Player": "Audio Player", + "Something went wrong!": "", + "Recording:": "Opname", + "Master Stream": "Master Stream", + "Live Stream": "Live stream", + "Nothing Scheduled": "Niets gepland", + "Current Show:": "Huidige Show:", + "Current": "Huidige", + "You are running the latest version": "U werkt de meest recente versie", + "New version available: ": "Nieuwe versie beschikbaar:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Toevoegen aan huidige afspeellijst", + "Add to current smart block": "Toevoegen aan huidigeslimme block", + "Adding 1 Item": "1 Item toevoegen", + "Adding %s Items": "%s Items toe te voegen", + "You can only add tracks to smart blocks.": "U kunt alleen nummers naar slimme blokken toevoegen.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten.", + "Please select a cursor position on timeline.": "Selecteer een cursorpositie op de tijdlijn.", + "You haven't added any tracks": "U hebt de nummers nog niet toegevoegd", + "You haven't added any playlists": "U heb niet alle afspeellijsten toegevoegd", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "U nog niet toegevoegd een slimme blokken", + "You haven't added any webstreams": "U hebt webstreams nog niet toegevoegd", + "Learn about tracks": "Informatie over nummers", + "Learn about playlists": "Meer informatie over afspeellijsten", + "Learn about podcasts": "", + "Learn about smart blocks": "Informatie over slimme blokken", + "Learn about webstreams": "Meer informatie over webstreams", + "Click 'New' to create one.": "Klik op 'Nieuw' te maken.", + "Add": "toevoegen", + "New": "", + "Edit": "Bewerken", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "verwijderen", + "Edit Metadata": "Metagegevens bewerken", + "Add to selected show": "Toevoegen aan geselecteerde Toon", + "Select": "Selecteer", + "Select this page": "Selecteer deze pagina", + "Deselect this page": "Hef de selectie van deze pagina", + "Deselect all": "Alle selecties opheffen", + "Are you sure you want to delete the selected item(s)?": "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?", + "Scheduled": "Gepland", + "Tracks": "track", + "Playlist": "Afspeellijsten", + "Title": "Titel", + "Creator": "Aangemaakt door", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Componist", + "Conductor": "Dirigent", + "Copyright": "Copyright:", + "Encoded By": "Encoded Bij", + "Genre": "Genre", + "ISRC": "ISRC", + "Label": "label", + "Language": "Taal", + "Last Modified": "Laatst Gewijzigd", + "Last Played": "Laatst gespeeld", + "Length": "Lengte", + "Mime": "Mime", + "Mood": "Mood", + "Owner": "Eigenaar", + "Replay Gain": "Herhalen Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Track nummer", + "Uploaded": "Uploaded", + "Website": "Website:", + "Year": "Jaar", + "Loading...": "Bezig met laden...", + "All": "Alle", + "Files": "Bestanden", + "Playlists": "Afspeellijsten", + "Smart Blocks": "slimme blokken", + "Web Streams": "Web Streams", + "Unknown type: ": "Onbekend type", + "Are you sure you want to delete the selected item?": "Wilt u de geselecteerde gegevens werkelijk verwijderen?", + "Uploading in progress...": "Uploaden in vooruitgang...", + "Retrieving data from the server...": "Gegevens op te halen van de server...", + "Import": "", + "Imported?": "", + "View": "Weergeven", + "Error code: ": "foutcode", + "Error msg: ": "Fout msg:", + "Input must be a positive number": "Invoer moet een positief getal", + "Input must be a number": "Invoer moet een getal", + "Input must be in the format: yyyy-mm-dd": "Invoer moet worden in de indeling: jjjj-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Invoer moet worden in het formaat: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?", + "Open Media Builder": "Open Media opbouw", + "please put in a time '00:00:00 (.0)'": "Gelieve te zetten in een tijd '00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:", + "Dynamic block is not previewable": "Dynamische blok is niet previewable", + "Limit to: ": "Beperk tot:", + "Playlist saved": "Afspeellijst opgeslagen", + "Playlist shuffled": "Afspeellijst geschud", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken.", + "Listener Count on %s: %s": "Luisteraar rekenen op %s: %s", + "Remind me in 1 week": "Stuur me een herinnering in 1 week", + "Remind me never": "Herinner me nooit", + "Yes, help Airtime": "Ja, help Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Afbeelding moet een van jpg, jpeg, png of gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "slimme blok geschud", + "Smart block generated and criteria saved": "slimme blok gegenereerd en opgeslagen criteria", + "Smart block saved": "Smart blok opgeslagen", + "Processing...": "Wordt verwerkt...", + "Select modifier": "Selecteer modifier", + "contains": "bevat", + "does not contain": "bevat niet", + "is": "is", + "is not": "is niet gelijk aan", + "starts with": "Begint met", + "ends with": "Eindigt op", + "is greater than": "is groter dan", + "is less than": "is minder dan", + "is in the range": "in het gebied", + "Generate": "Genereren", + "Choose Storage Folder": "Kies opslagmap", + "Choose Folder to Watch": "Kies map voor bewaken", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!", + "Manage Media Folders": "Mediamappen beheren", + "Are you sure you want to remove the watched folder?": "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?", + "This path is currently not accessible.": "Dit pad is momenteel niet toegankelijk.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt.", + "Connected to the streaming server": "Aangesloten op de streaming server", + "The stream is disabled": "De stream is uitgeschakeld", + "Getting information from the server...": "Het verkrijgen van informatie van de server ...", + "Can not connect to the streaming server": "Kan geen verbinding maken met de streaming server", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken.", + "Warning: You cannot change this field while the show is currently playing": "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen", + "No result found": "Geen resultaat gevonden", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken.", + "Specify custom authentication which will work only for this show.": "Geef aangepaste verificatie die alleen voor deze show werken zal.", + "The show instance doesn't exist anymore!": "De Toon-exemplaar bestaat niet meer!", + "Warning: Shows cannot be re-linked": "Waarschuwing: Shows kunnen niet opnieuw gekoppelde", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen.", + "Show": "Show", + "Show is empty": "Show Is leeg", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Retreiving gegevens van de server...", + "This show has no scheduled content.": "Deze show heeft geen geplande inhoud.", + "This show is not completely filled with content.": "Deze show is niet volledig gevuld met inhoud.", + "January": "Januari", + "February": "Februari", + "March": "maart", + "April": "april", + "May": "mei", + "June": "juni", + "July": "juli", + "August": "augustus", + "September": "september", + "October": "oktober", + "November": "november", + "December": "december", + "Jan": "jan", + "Feb": "feb", + "Mar": "maa", + "Apr": "apr", + "Jun": "jun", + "Jul": "jul", + "Aug": "aug", + "Sep": "sep", + "Oct": "okt", + "Nov": "nov", + "Dec": "dec", + "Today": "vandaag", + "Day": "dag", + "Week": "week", + "Month": "maand", + "Sunday": "zondag", + "Monday": "maandag", + "Tuesday": "dinsdag", + "Wednesday": "woensdag", + "Thursday": "donderdag", + "Friday": "vrijdag", + "Saturday": "zaterdag", + "Sun": "zon", + "Mon": "ma", + "Tue": "di", + "Wed": "wo", + "Thu": "do", + "Fri": "vrij", + "Sat": "zat", + "Shows longer than their scheduled time will be cut off by a following show.": "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling.", + "Cancel Current Show?": "Annuleer Huidige Show?", + "Stop recording current show?": "Stop de opname huidige show?", + "Ok": "oke", + "Contents of Show": "Inhoud van Show", + "Remove all content?": "Alle inhoud verwijderen?", + "Delete selected item(s)?": "verwijderd geselecteerd object(en)?", + "Start": "Start", + "End": "einde", + "Duration": "Duur", + "Filtering out ": "Filteren op", + " of ": "of", + " records": "records", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Infaden", + "Fade Out": "uitfaden", + "Show Empty": "Show leeg", + "Recording From Line In": "Opname van de Line In", + "Track preview": "Track Voorbeeld", + "Cannot schedule outside a show.": "Niet gepland buiten een show.", + "Moving 1 Item": "1 Item verplaatsen", + "Moving %s Items": "%s Items verplaatsen", + "Save": "opslaan", + "Cancel": "anuleren", + "Fade Editor": "Fade Bewerken", + "Cue Editor": "Cue Bewerken", + "Waveform features are available in a browser supporting the Web Audio API": "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API", + "Select all": "Selecteer alles", + "Select none": "Niets selecteren", + "Trim overbooked shows": "Trim overboekte shows", + "Remove selected scheduled items": "Geselecteerde geplande items verwijderen", + "Jump to the current playing track": "Jump naar de huidige playing track", + "Jump to Current": "", + "Cancel current show": "Annuleren van de huidige show", + "Open library to add or remove content": "Open bibliotheek toevoegen of verwijderen van inhoud", + "Add / Remove Content": "Toevoegen / verwijderen van inhoud", + "in use": "In gebruik", + "Disk": "hardeschijf", + "Look in": "Zoeken in:", + "Open": "open", + "Admin": "Admin", + "DJ": "DJ", + "Program Manager": "Programmabeheer", + "Guest": "gast", + "Guests can do the following:": "Gasten kunnen het volgende doen:", + "View schedule": "Schema weergeven", + "View show content": "Weergave show content", + "DJs can do the following:": "DJ's kunnen het volgende doen:", + "Manage assigned show content": "Toegewezen Toon inhoud beheren", + "Import media files": "Mediabestanden importeren", + "Create playlists, smart blocks, and webstreams": "Maak afspeellijsten, slimme blokken en webstreams", + "Manage their own library content": "De inhoud van hun eigen bibliotheek beheren", + "Program Managers can do the following:": "", + "View and manage show content": "Bekijken en beheren van inhoud weergeven", + "Schedule shows": "Schema shows", + "Manage all library content": "Alle inhoud van de bibliotheek beheren", + "Admins can do the following:": "Beheerders kunnen het volgende doen:", + "Manage preferences": "Voorkeuren beheren", + "Manage users": "Gebruikers beheren", + "Manage watched folders": "Bewaakte mappen beheren", + "Send support feedback": "Ondersteuning feedback verzenden", + "View system status": "Bekijk systeem status", + "Access playout history": "Toegang playout geschiedenis", + "View listener stats": "Weergave luisteraar status", + "Show / hide columns": "Geef weer / verberg kolommen", + "Columns": "", + "From {from} to {to}": "Van {from} tot {to}", + "kbps": "kbps", + "yyyy-mm-dd": "jjjj-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Zo", + "Mo": "Ma", + "Tu": "Di", + "We": "Wo", + "Th": "Do", + "Fr": "Vr", + "Sa": "Za", + "Close": "Sluiten", + "Hour": "Uur", + "Minute": "Minuut", + "Done": "Klaar", + "Select files": "Selecteer bestanden", + "Add files to the upload queue and click the start button.": "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop", + "Filename": "", + "Size": "", + "Add Files": "Bestanden toevoegen", + "Stop Upload": "Stop upload", + "Start upload": "Begin upload", + "Start Upload": "", + "Add files": "Bestanden toevoegen", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Geüploade %d/%d bestanden", + "N/A": "N/B", + "Drag files here.": "Sleep bestanden hierheen.", + "File extension error.": "Bestandsextensie fout", + "File size error.": "Bestandsgrote fout.", + "File count error.": "Graaf bestandsfout.", + "Init error.": "Init fout.", + "HTTP Error.": "HTTP fout.", + "Security error.": "Beveiligingsfout.", + "Generic error.": "Generieke fout.", + "IO error.": "IO fout.", + "File: %s": "Bestand: %s", + "%d files queued": "%d bestanden in de wachtrij", + "File: %f, size: %s, max file size: %m": "File: %f, grootte: %s, max bestandsgrootte: %m", + "Upload URL might be wrong or doesn't exist": "Upload URL zou verkeerd kunnen zijn of bestaat niet", + "Error: File too large: ": "Fout: Bestand is te groot", + "Error: Invalid file extension: ": "Fout: Niet toegestane bestandsextensie ", + "Set Default": "Standaard instellen", + "Create Entry": "Aangemaakt op:", + "Edit History Record": "Geschiedenis Record bewerken", + "No Show": "geen show", + "Copied %s row%s to the clipboard": "Rij gekopieerde %s %s naar het Klembord", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent.", + "New Show": "Nieuw Show", + "New Log Entry": "Nieuwe logboekvermelding", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Beschrijving", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ingeschakeld", + "Disabled": "Uitgeschakeld", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "Voer uw gebruikersnaam en wachtwoord.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd.", + "Wrong username or password provided. Please try again.": "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw.", + "You are viewing an older version of %s": "U bekijkt een oudere versie van %s", + "You cannot add tracks to dynamic blocks.": "U kunt nummers toevoegen aan dynamische blokken.", + "You don't have permission to delete selected %s(s).": "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)", + "You can only add tracks to smart block.": "U kunt alleen nummers toevoegen aan smart blok.", + "Untitled Playlist": "Naamloze afspeellijst", + "Untitled Smart Block": "Naamloze slimme block", + "Unknown Playlist": "Onbekende afspeellijst", + "Preferences updated.": "Voorkeuren bijgewerkt.", + "Stream Setting Updated.": "Stream vaststelling van bijgewerkte.", + "path should be specified": "pad moet worden opgegeven", + "Problem with Liquidsoap...": "Probleem met Liquidsoap...", + "Request method not accepted": "Verzoek methode niet geaccepteerd", + "Rebroadcast of show %s from %s at %s": "Rebroadcast van show %s van %s in %s", + "Select cursor": "Selecteer cursor", + "Remove cursor": "Cursor verwijderen", + "show does not exist": "show bestaat niet", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "gebruiker Succesvol Toegevoegd", + "User updated successfully!": "gebruiker Succesvol bijgewerkt", + "Settings updated successfully!": "Instellingen met succes bijgewerkt!", + "Untitled Webstream": "Naamloze Webstream", + "Webstream saved.": "Webstream opgeslagen.", + "Invalid form values.": "Ongeldige formulierwaarden.", + "Invalid character entered": "Ongeldig teken ingevoerd", + "Day must be specified": "Dag moet worden opgegeven", + "Time must be specified": "Tijd moet worden opgegeven", + "Must wait at least 1 hour to rebroadcast": "Ten minste 1 uur opnieuw uitzenden moet wachten", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "verificatie %s gebruiken:", + "Use Custom Authentication:": "Gebruik aangepaste verificatie:", + "Custom Username": "Aangepaste gebruikersnaam", + "Custom Password": "Aangepaste wachtwoord", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Veld Gebruikersnaam mag niet leeg.", + "Password field cannot be empty.": "veld wachtwoord mag niet leeg.", + "Record from Line In?": "Opnemen vanaf de lijn In?", + "Rebroadcast?": "Rebroadcast?", + "days": "dagen", + "Link:": "link", + "Repeat Type:": "Herhaal Type:", + "weekly": "wekelijks", + "every 2 weeks": "elke 2 weken", + "every 3 weeks": "elke 3 weken", + "every 4 weeks": "elke 4 weken", + "monthly": "per maand", + "Select Days:": "Selecteer dagen:", + "Repeat By:": "Herhaal door:", + "day of the month": "dag van de maand", + "day of the week": "Dag van de week", + "Date End:": "datum einde", + "No End?": "Geen einde?", + "End date must be after start date": "Einddatum moet worden na begindatum ligt", + "Please select a repeat day": "Selecteer een Herhaal dag", + "Background Colour:": "achtergrond kleur", + "Text Colour:": "tekst kleur", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "naam", + "Untitled Show": "Zonder titel show", + "URL:": "URL", + "Genre:": "genre:", + "Description:": "Omschrijving:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} past niet de tijdnotatie 'UU:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Looptijd:", + "Timezone:": "tijdzone:", + "Repeats?": "herhaalt?", + "Cannot create show in the past": "kan niet aanmaken show in het verleden weergeven", + "Cannot modify start date/time of the show that is already started": "Start datum/tijd van de show die is al gestart wijzigen niet", + "End date/time cannot be in the past": "Eind datum/tijd mogen niet in het verleden", + "Cannot have duration < 0m": "Geen duur hebben < 0m", + "Cannot have duration 00h 00m": "Kan niet hebben duur 00h 00m", + "Cannot have duration greater than 24h": "Duur groter is dan 24h kan niet hebben", + "Cannot schedule overlapping shows": "kan Niet gepland overlappen shows", + "Search Users:": "zoek gebruikers", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "gebuikersnaam", + "Password:": "wachtwoord", + "Verify Password:": "Wachtwoord verifiëren:", + "Firstname:": "voornaam", + "Lastname:": "achternaam", + "Email:": "e-mail", + "Mobile Phone:": "mobiel nummer", + "Skype:": "skype", + "Jabber:": "Jabber:", + "User Type:": "Gebruiker Type :", + "Login name is not unique.": "Login naam is niet uniek.", + "Delete All Tracks in Library": "", + "Date Start:": "datum start", + "Title:": "Titel", + "Creator:": "Aangemaakt door", + "Album:": "Album", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Jaar", + "Label:": "label", + "Composer:": "schrijver van een muziekwerk", + "Conductor:": "Conductor:", + "Mood:": "Mood:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "ISRC nummer:", + "Website:": "Website:", + "Language:": "Taal:", + "Publish...": "", + "Start Time": "Begintijd", + "End Time": "Eindtijd", + "Interface Timezone:": "Interface tijdzone:", + "Station Name": "station naam", + "Station Description": "", + "Station Logo:": "Station Logo:", + "Note: Anything larger than 600x600 will be resized.": "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast.", + "Default Crossfade Duration (s):": "Standaardduur Crossfade (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "standaard fade in (s):", + "Default Fade Out (s):": "standaard fade uit (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "station tijdzone", + "Week Starts On": "Week start aan", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Inloggen", + "Password": "wachtwoord", + "Confirm new password": "Bevestig nieuw wachtwoord", + "Password confirmation does not match your password.": "Wachtwoord bevestiging komt niet overeen met uw wachtwoord.", + "Email": "", + "Username": "gebuikersnaam", + "Reset password": "Reset wachtwoord", + "Back": "", + "Now Playing": "Nu spelen", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "al mij shows", + "My Shows": "", + "Select criteria": "Selecteer criteria", + "Bit Rate (Kbps)": "Bit Rate (kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Sample Rate (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "Uren", + "minutes": "minuten", + "items": "artikelen", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamisch", + "Static": "status", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Genereren van inhoud van de afspeellijst en criteria opslaan", + "Shuffle playlist content": "Shuffle afspeellijst inhoud", + "Shuffle": "Shuffle", + "Limit cannot be empty or smaller than 0": "Limiet kan niet leeg zijn of kleiner is dan 0", + "Limit cannot be more than 24 hrs": "Limiet mag niet meer dan 24 uur", + "The value should be an integer": "De waarde moet een geheel getal", + "500 is the max item limit value you can set": "500 is de grenswaarde max object die kunt u instellen", + "You must select Criteria and Modifier": "U moet Criteria en Modifier selecteren", + "'Length' should be in '00:00:00' format": "'Lengte' moet in ' 00:00:00 ' formaat", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "De waarde moet worden numerieke", + "The value should be less then 2147483648": "De waarde moet minder dan 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "De waarde moet kleiner zijn dan %s tekens", + "Value cannot be empty": "Waarde kan niet leeg", + "Stream Label:": "Stream Label:", + "Artist - Title": "Artiest - Titel", + "Show - Artist - Title": "Show - Artiest - titel", + "Station name - Show name": "Station naam - Show naam", + "Off Air Metadata": "Off Air Metadata", + "Enable Replay Gain": "Inschakelen Replay Gain", + "Replay Gain Modifier": "Replay Gain Modifier", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Ingeschakeld", + "Mobile:": "", + "Stream Type:": "Stream Type:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Service Type:", + "Channels:": "kanalen:", + "Server": "Server", + "Port": "poort", + "Mount Point": "Aankoppelpunt", + "Name": "naam", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "mappen importeren", + "Watched Folders:": "Gecontroleerde mappen:", + "Not a valid Directory": "Niet een geldige map", + "Value is required and can't be empty": "Waarde is vereist en mag niet leeg zijn", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} is geen geldig e-mailadres in de basis formaat lokale-onderdeel {'@'} hostnaam", + "{msg} does not fit the date format '%format%'": "{msg} past niet in de datumnotatie '%format%'", + "{msg} is less than %min% characters long": "{msg} is minder dan %min% tekens lang", + "{msg} is more than %max% characters long": "{msg} is meer dan %max% karakters lang", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} is niet tussen '%min%' en '%max%', inclusief", + "Passwords do not match": "Wachtwoorden komen niet overeen.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "%s wachtwoord Reset", + "Cue in and cue out are null.": "Het Cue in en cue uit null zijn.", + "Can't set cue out to be greater than file length.": "Niet instellen cue uit groter zijn dan de bestandslengte van het", + "Can't set cue in to be larger than cue out.": "Niet instellen cue in groter dan cue uit.", + "Can't set cue out to be smaller than cue in.": "Niet instellen cue uit op kleiner zijn dan het cue in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecteer land", + "livestream": "", + "Cannot move items out of linked shows": "Items uit gekoppelde toont kan niet verplaatsen", + "The schedule you're viewing is out of date! (sched mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)", + "The schedule you're viewing is out of date! (instance mismatch)": "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)", + "The schedule you're viewing is out of date!": "Het schema dat u aan het bekijken bent is verouderd!", + "You are not allowed to schedule show %s.": "U zijn niet toegestaan om te plannen show %s.", + "You cannot add files to recording shows.": "U kunt bestanden toevoegen aan het opnemen van programma's.", + "The show %s is over and cannot be scheduled.": "De show %s is voorbij en kan niet worden gepland.", + "The show %s has been previously updated!": "De show %s heeft al eerder zijn bijgewerkt!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "Niet gepland een afspeellijst die ontbrekende bestanden bevat.", + "A selected File does not exist!": "Een geselecteerd bestand bestaat niet!", + "Shows can have a max length of 24 hours.": "Shows kunnen hebben een maximale lengte van 24 uur.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen.", + "Rebroadcast of %s from %s": "Rebroadcast van %s van %s", + "Length needs to be greater than 0 minutes": "Lengte moet groter zijn dan 0 minuten", + "Length should be of form \"00h 00m\"": "Length should be of form \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL should be of form \"https://example.org\"", + "URL should be 512 characters or less": "URL moet 512 tekens of minder", + "No MIME type found for webstream.": "Geen MIME-type gevonden voor webstream.", + "Webstream name cannot be empty": "Webstream naam mag niet leeg zijn", + "Could not parse XSPF playlist": "Could not parse XSPF playlist", + "Could not parse PLS playlist": "Kon niet ontleden PLS afspeellijst", + "Could not parse M3U playlist": "Kon niet ontleden M3U playlist", + "Invalid webstream - This appears to be a file download.": "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden.", + "Unrecognized stream type: %s": "Niet herkende type stream: %s", + "Record file doesn't exist": "Record bestand bestaat niet", + "View Recorded File Metadata": "Weergave opgenomen bestand Metadata", + "Schedule Tracks": "Schema Tracks", + "Clear Show": "Wissen show", + "Cancel Show": "Annuleren show", + "Edit Instance": "Aanleg bewerken", + "Edit Show": "Bewerken van Show", + "Delete Instance": "Exemplaar verwijderen", + "Delete Instance and All Following": "Exemplaar verwijderen en alle volgende", + "Permission denied": "Toestemming geweigerd", + "Can't drag and drop repeating shows": "Kan niet slepen en neerzetten herhalende shows", + "Can't move a past show": "Een verleden Show verplaatsen niet", + "Can't move show into past": "Niet verplaatsen show in verleden", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet.", + "Show was deleted because recorded show does not exist!": "Toon is verwijderd omdat opgenomen programma niet bestaat!", + "Must wait 1 hour to rebroadcast.": "Moet wachten 1 uur opnieuw uitzenden..", + "Track": "track", + "Played": "Gespeeld", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/pl_PL.json b/webapp/src/locale/pl_PL.json index 249b5210b4..74ac87acec 100644 --- a/webapp/src/locale/pl_PL.json +++ b/webapp/src/locale/pl_PL.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Rok %s musi być w przedziale od 1753 do 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s nie jest poprawną datą", - "%s:%s:%s is not a valid time": "%s:%s:%s nie jest prawidłowym czasem", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Kalendarz", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Użytkownicy", - "Track Types": "", - "Streams": "Strumienie", - "Status": "Status", - "Analytics": "", - "Playout History": "Historia odtwarzania", - "History Templates": "", - "Listener Stats": "Statystyki słuchaczy", - "Show Listener Stats": "", - "Help": "Pomoc", - "Getting Started": "Jak zacząć", - "User Manual": "Instrukcja użytkowania", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Nie masz dostępu do tej lokalizacji", - "You are not allowed to access this resource. ": "Nie masz dostępu do tej lokalizacji.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Złe zapytanie. Nie zaakceprtowano parametru 'mode'", - "Bad request. 'mode' parameter is invalid": "Złe zapytanie. Parametr 'mode' jest nieprawidłowy", - "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", - "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", - "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "nie znaleziono %s", - "Something went wrong.": "Wystapił błąd", - "Preview": "Podgląd", - "Add to Playlist": "Dodaj do listy odtwarzania", - "Add to Smart Block": "Dodaj do smartblocku", - "Delete": "Usuń", - "Edit...": "", - "Download": "Pobierz", - "Duplicate Playlist": "Skopiuj listę odtwarzania", - "Duplicate Smartblock": "", - "No action available": "Brak dostepnych czynności", - "You don't have permission to delete selected items.": "Nie masz uprawnień do usunięcia wybranych elementów", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Kopia %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie.", - "Audio Player": "Odtwrzacz ", - "Something went wrong!": "", - "Recording:": "Nagrywanie:", - "Master Stream": "Strumień Nadrzędny", - "Live Stream": "Transmisja na żywo", - "Nothing Scheduled": "Nic nie zaplanowano", - "Current Show:": "Aktualna audycja:", - "Current": "Aktualny", - "You are running the latest version": "Używasz najnowszej wersji", - "New version available: ": "Dostępna jest nowa wersja:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Dodaj do bieżącej listy odtwarzania", - "Add to current smart block": "Dodaj do bieżącego smart blocku", - "Adding 1 Item": "Dodawanie 1 elementu", - "Adding %s Items": "Dodawanie %s elementów", - "You can only add tracks to smart blocks.": "do smart blocków mozna dodawać tylko utwory.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy", - "Please select a cursor position on timeline.": "Proszę wybrać pozycję kursora na osi czasu.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Dodaj", - "New": "", - "Edit": "Edytuj", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Usuń", - "Edit Metadata": "Edytuj Metadane.", - "Add to selected show": "Dodaj do wybranej audycji", - "Select": "Zaznacz", - "Select this page": "Zaznacz tę stronę", - "Deselect this page": "Odznacz tę stronę", - "Deselect all": "Odznacz wszystko", - "Are you sure you want to delete the selected item(s)?": "Czy na pewno chcesz usunąć wybrane elementy?", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Tytuł", - "Creator": "Twórca", - "Album": "Album", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Kompozytor", - "Conductor": "Dyrygent/Pod batutą", - "Copyright": "Prawa autorskie", - "Encoded By": "Kodowane przez", - "Genre": "Gatunek", - "ISRC": "ISRC", - "Label": "Wydawnictwo", - "Language": "Język", - "Last Modified": "Ostatnio zmodyfikowany", - "Last Played": "Ostatnio odtwarzany", - "Length": "Długość", - "Mime": "Podobne do", - "Mood": "Nastrój", - "Owner": "Właściciel", - "Replay Gain": "Normalizacja głośności (Replay Gain)", - "Sample Rate": "Wartość próbkowania", - "Track Number": "Numer utworu", - "Uploaded": "Przesłano", - "Website": "Strona internetowa", - "Year": "Rok", - "Loading...": "Ładowanie", - "All": "Wszystko", - "Files": "Pliki", - "Playlists": "Listy odtwarzania", - "Smart Blocks": "Smart Blocki", - "Web Streams": "Web Stream", - "Unknown type: ": "Nieznany typ:", - "Are you sure you want to delete the selected item?": "Czy na pewno chcesz usunąć wybrany element?", - "Uploading in progress...": "Wysyłanie w toku...", - "Retrieving data from the server...": "Pobieranie danych z serwera...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Kod błędu:", - "Error msg: ": "Komunikat błędu:", - "Input must be a positive number": "Podana wartość musi być liczbą dodatnią", - "Input must be a number": "Podana wartość musi być liczbą", - "Input must be in the format: yyyy-mm-dd": "Podana wartość musi mieć format yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Podana wartość musi mieć format hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "Wprowadź czas w formacie: '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:", - "Dynamic block is not previewable": "Podgląd bloku dynamicznego nie jest możliwy", - "Limit to: ": "Ograniczenie do:", - "Playlist saved": "Lista odtwarzania została zapisana", - "Playlist shuffled": "Playlista została przemieszana", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\".", - "Listener Count on %s: %s": "Licznik słuchaczy na %s: %s", - "Remind me in 1 week": "Przypomnij mi za 1 tydzień", - "Remind me never": "Nie przypominaj nigdy", - "Yes, help Airtime": "Tak, wspieraj Airtime", - "Image must be one of jpg, jpeg, png, or gif": "Obraz musi mieć format jpg, jpeg, png lub gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart blocku został przemieszany", - "Smart block generated and criteria saved": "Utworzono smartblock i zapisano kryteria", - "Smart block saved": "Smart block został zapisany", - "Processing...": "Przetwarzanie...", - "Select modifier": "Wybierz modyfikator", - "contains": "zawiera", - "does not contain": "nie zawiera", - "is": "to", - "is not": "to nie", - "starts with": "zaczyna się od", - "ends with": "kończy się", - "is greater than": "jest większa niż", - "is less than": "jest mniejsza niż", - "is in the range": "mieści się w zakresie", - "Generate": "Utwórz", - "Choose Storage Folder": "Wybierz ścieżkę do katalogu importu", - "Choose Folder to Watch": "Wybierz katalog do obserwacji", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\nWszystkie pliki z biblioteki Airtime zostaną usunięte.", - "Manage Media Folders": "Zarządzaj folderami mediów", - "Are you sure you want to remove the watched folder?": "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?", - "This path is currently not accessible.": "Ściezka jest obecnie niedostepna.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Połączono z serwerem streamingu", - "The stream is disabled": "Strumień jest odłączony", - "Getting information from the server...": "Pobieranie informacji z serwera...", - "Can not connect to the streaming server": "Nie można połączyć z serwerem streamującym", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu.", - "Check this box to automatically switch on Master/Show source upon source connection.": "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nie znaleziono wyników", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć.", - "Specify custom authentication which will work only for this show.": "Ustal własne uwierzytelnienie tylko dla tej audycji.", - "The show instance doesn't exist anymore!": "Instancja audycji już nie istnieje.", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Audycja", - "Show is empty": "Audycja jest pusta", - "1m": "1 min", - "5m": "5 min", - "10m": "10 min", - "15m": "15 min", - "30m": "30 min", - "60m": "60 min", - "Retreiving data from the server...": "Odbieranie danych z serwera", - "This show has no scheduled content.": "Ta audycja nie ma zawartości", - "This show is not completely filled with content.": "Brak pełnej zawartości tej audycji.", - "January": "Styczeń", - "February": "Luty", - "March": "Marzec", - "April": "Kwiecień", - "May": "Maj", - "June": "Czerwiec", - "July": "Lipiec", - "August": "Sierpień", - "September": "Wrzesień", - "October": "Październik", - "November": "Listopad", - "December": "Grudzień", - "Jan": "Sty", - "Feb": "Lut", - "Mar": "Mar", - "Apr": "Kwi", - "Jun": "Cze", - "Jul": "Lip", - "Aug": "Sie", - "Sep": "Wrz", - "Oct": "Paź", - "Nov": "Lis", - "Dec": "Gru", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Niedziela", - "Monday": "Poniedziałek", - "Tuesday": "Wtorek", - "Wednesday": "Środa", - "Thursday": "Czwartek", - "Friday": "Piątek", - "Saturday": "Sobota", - "Sun": "Nie", - "Mon": "Pon", - "Tue": "Wt", - "Wed": "Śr", - "Thu": "Czw", - "Fri": "Pt", - "Sat": "Sob", - "Shows longer than their scheduled time will be cut off by a following show.": "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne .", - "Cancel Current Show?": "Skasować obecną audycję?", - "Stop recording current show?": "Przerwać nagrywanie aktualnej audycji?", - "Ok": "Ok", - "Contents of Show": "Zawartośc audycji", - "Remove all content?": "Usunąć całą zawartość?", - "Delete selected item(s)?": "Skasować wybrane elementy?", - "Start": "Rozpocznij", - "End": "Zakończ", - "Duration": "Czas trwania", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue out", - "Fade In": "Zgłaśnianie [Fade In]", - "Fade Out": "Wyciszanie [Fade out]", - "Show Empty": "Audycja jest pusta", - "Recording From Line In": "Nagrywaanie z wejścia liniowego", - "Track preview": "Podgląd utworu", - "Cannot schedule outside a show.": "Nie ma możliwości planowania poza audycją.", - "Moving 1 Item": "Przenoszenie 1 elementu", - "Moving %s Items": "Przenoszenie %s elementów", - "Save": "Zapisz", - "Cancel": "Anuluj", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Zaznacz wszystko", - "Select none": "Odznacz wszystkie", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Usuń wybrane elementy", - "Jump to the current playing track": "Przejdź do obecnie odtwarzanej ściezki", - "Jump to Current": "", - "Cancel current show": "Skasuj obecną audycję", - "Open library to add or remove content": "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości", - "Add / Remove Content": "Dodaj/usuń zawartość", - "in use": "W użyciu", - "Disk": "Dysk", - "Look in": "Sprawdź", - "Open": "Otwórz", - "Admin": "Administrator", - "DJ": "Prowadzący", - "Program Manager": "Menedżer programowy", - "Guest": "Gość", - "Guests can do the following:": "Goście mają mozliwość:", - "View schedule": "Przeglądanie harmonogramu", - "View show content": "Przeglądanie zawartości audycji", - "DJs can do the following:": "Prowadzący ma możliwość:", - "Manage assigned show content": "Zarządzać przypisaną sobie zawartością audycji", - "Import media files": "Importować pliki mediów", - "Create playlists, smart blocks, and webstreams": "Tworzyć playlisty, smart blocki i webstreamy", - "Manage their own library content": "Zarządzać zawartością własnej biblioteki", - "Program Managers can do the following:": "", - "View and manage show content": "Przeglądać i zarządzać zawartością audycji", - "Schedule shows": "Planować audycję", - "Manage all library content": "Zarządzać całą zawartością biblioteki", - "Admins can do the following:": "Administrator ma mozliwość:", - "Manage preferences": "Zarządzać preferencjami", - "Manage users": "Zarządzać użytkownikami", - "Manage watched folders": "Zarządzać przeglądanymi katalogami", - "Send support feedback": "Wyślij informację zwrotną", - "View system status": "Sprawdzać status systemu", - "Access playout history": "Przeglądać historię odtworzeń", - "View listener stats": "Sprawdzać statystyki słuchaczy", - "Show / hide columns": "Pokaż/ukryj kolumny", - "Columns": "", - "From {from} to {to}": "Od {from} do {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Nd", - "Mo": "Pn", - "Tu": "Wt", - "We": "Śr", - "Th": "Cz", - "Fr": "Pt", - "Sa": "So", - "Close": "Zamknij", - "Hour": "Godzina", - "Minute": "Minuta", - "Done": "Gotowe", - "Select files": "Wybierz pliki", - "Add files to the upload queue and click the start button.": "Dodaj pliki do kolejki i wciśnij \"start\"", - "Filename": "", - "Size": "", - "Add Files": "Dodaj pliki", - "Stop Upload": "Zatrzymaj przesyłanie", - "Start upload": "Rozpocznij przesyłanie", - "Start Upload": "", - "Add files": "Dodaj pliki", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Dodano pliki %d%d", - "N/A": "Nie dotyczy", - "Drag files here.": "Przeciągnij pliki tutaj.", - "File extension error.": "Błąd rozszerzenia pliku.", - "File size error.": "Błąd rozmiaru pliku.", - "File count error.": "Błąd liczenia plików", - "Init error.": "Błąd inicjalizacji", - "HTTP Error.": "Błąd HTTP.", - "Security error.": "Błąd zabezpieczeń.", - "Generic error.": "Błąd ogólny.", - "IO error.": "Błąd I/O", - "File: %s": "Plik: %s", - "%d files queued": "%d plików oczekujących", - "File: %f, size: %s, max file size: %m": "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m", - "Upload URL might be wrong or doesn't exist": "URL nie istnieje bądź jest niewłaściwy", - "Error: File too large: ": "Błąd: plik jest za duży:", - "Error: Invalid file extension: ": "Błąd: nieprawidłowe rozszerzenie pliku:", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "Skopiowano %srow%s do schowka", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Opis", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Włączone", - "Disabled": "Wyłączone", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie.", - "You are viewing an older version of %s": "Przeglądasz starszą wersję %s", - "You cannot add tracks to dynamic blocks.": "Nie można dodać ścieżek do bloków dynamicznych", - "You don't have permission to delete selected %s(s).": "Nie masz pozwolenia na usunięcie wybranych %s(s)", - "You can only add tracks to smart block.": "Utwory mogą być dodane tylko do smartblocku", - "Untitled Playlist": "Lista odtwarzania bez tytułu", - "Untitled Smart Block": "Smartblock bez tytułu", - "Unknown Playlist": "Nieznana playlista", - "Preferences updated.": "Zaktualizowano preferencje.", - "Stream Setting Updated.": "Zaktualizowano ustawienia strumienia", - "path should be specified": "należy okreslić ścieżkę", - "Problem with Liquidsoap...": "Problem z Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Retransmisja audycji %s z %s o %s", - "Select cursor": "Wybierz kursor", - "Remove cursor": "Usuń kursor", - "show does not exist": "audycja nie istnieje", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Użytkownik został dodany poprawnie!", - "User updated successfully!": "Użytkownik został poprawnie zaktualizowany!", - "Settings updated successfully!": "Ustawienia zostały poprawnie zaktualizowane!", - "Untitled Webstream": "Webstream bez nazwy", - "Webstream saved.": "Zapisano webstream", - "Invalid form values.": "Nieprawidłowe wartości formularzy", - "Invalid character entered": "Wprowadzony znak jest nieprawidłowy", - "Day must be specified": "Należy określić dzień", - "Time must be specified": "Należy określić czas", - "Must wait at least 1 hour to rebroadcast": "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Zastosuj własne uwierzytelnienie:", - "Custom Username": "Nazwa użytkownika", - "Custom Password": "Hasło", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Pole nazwy użytkownika nie może być puste.", - "Password field cannot be empty.": "Pole hasła nie może być puste.", - "Record from Line In?": "Nagrywać z wejścia liniowego?", - "Rebroadcast?": "Odtwarzać ponownie?", - "days": "dni", - "Link:": "", - "Repeat Type:": "Typ powtarzania:", - "weekly": "tygodniowo", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "miesięcznie", - "Select Days:": "Wybierz dni:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data zakończenia:", - "No End?": "Bez czasu końcowego?", - "End date must be after start date": "Data końcowa musi występować po dacie początkowej", - "Please select a repeat day": "", - "Background Colour:": "Kolor tła:", - "Text Colour:": "Kolor tekstu:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nazwa:", - "Untitled Show": "Audycja bez nazwy", - "URL:": "Adres URL", - "Genre:": "Rodzaj:", - "Description:": "Opis:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Czas trwania:", - "Timezone:": "Strefa czasowa:", - "Repeats?": "Powtarzanie?", - "Cannot create show in the past": "Nie można utworzyć audycji w przeszłości", - "Cannot modify start date/time of the show that is already started": "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła", - "End date/time cannot be in the past": "Data lub czas zakończenia nie może być z przeszłości.", - "Cannot have duration < 0m": "Czas trwania nie może być mniejszy niż 0m", - "Cannot have duration 00h 00m": "Czas trwania nie może wynosić 00h 00m", - "Cannot have duration greater than 24h": "Czas trwania nie może być dłuższy niż 24h", - "Cannot schedule overlapping shows": "Nie można planować nakładających się audycji", - "Search Users:": "Szukaj Użytkowników:", - "DJs:": "Prowadzący:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Nazwa użytkownika:", - "Password:": "Hasło:", - "Verify Password:": "Potwierdź hasło:", - "Firstname:": "Imię:", - "Lastname:": "Nazwisko:", - "Email:": "Email:", - "Mobile Phone:": "Telefon:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Typ użytkownika:", - "Login name is not unique.": "Nazwa użytkownika musi być unikalna.", - "Delete All Tracks in Library": "", - "Date Start:": "Data rozpoczęcia:", - "Title:": "Tytuł:", - "Creator:": "Autor:", - "Album:": "Album:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Rok:", - "Label:": "Wydawnictwo:", - "Composer:": "Kompozytor:", - "Conductor:": "Dyrygent/Pod batutą:", - "Mood:": "Nastrój:", - "BPM:": "BPM:", - "Copyright:": "Prawa autorskie:", - "ISRC Number:": "Numer ISRC:", - "Website:": "Strona internetowa:", - "Language:": "Język:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nazwa stacji", - "Station Description": "", - "Station Logo:": "Logo stacji:", - "Note: Anything larger than 600x600 will be resized.": "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "Tydzień zaczynaj od", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Zaloguj", - "Password": "Hasło", - "Confirm new password": "Potwierdź nowe hasło", - "Password confirmation does not match your password.": "Hasła muszą się zgadzać.", - "Email": "", - "Username": "Nazwa użytkownika", - "Reset password": "Resetuj hasło", - "Back": "", - "Now Playing": "Aktualnie odtwarzane", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Wszystkie moje audycje:", - "My Shows": "", - "Select criteria": "Wybierz kryteria", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Częstotliwość próbkowania (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "godzin(y)", - "minutes": "minut(y)", - "items": "elementy", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dynamiczny", - "Static": "Statyczny", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Tworzenie zawartości listy odtwarzania i zapisz kryteria", - "Shuffle playlist content": "Losowa kolejność odtwarzania", - "Shuffle": "Przemieszaj", - "Limit cannot be empty or smaller than 0": "Limit nie może być pusty oraz mniejszy od 0", - "Limit cannot be more than 24 hrs": "Limit nie może być większy niż 24 godziny", - "The value should be an integer": "Wartość powinna być liczbą całkowitą", - "500 is the max item limit value you can set": "Maksymalna liczba elementów do ustawienia to 500", - "You must select Criteria and Modifier": "Należy wybrać kryteria i modyfikator", - "'Length' should be in '00:00:00' format": "Długość powinna być wprowadzona w formacie '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Wartość musi być liczbą", - "The value should be less then 2147483648": "Wartość powinna być mniejsza niż 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Wartość powinna posiadać mniej niż %s znaków", - "Value cannot be empty": "Wartość nie może być pusta", - "Stream Label:": "Nazwa strumienia:", - "Artist - Title": "Artysta - Tytuł", - "Show - Artist - Title": "Audycja - Artysta -Tytuł", - "Station name - Show name": "Nazwa stacji - Nazwa audycji", - "Off Air Metadata": "Metadane Off Air", - "Enable Replay Gain": "Włącz normalizację głośności (Replay Gain)", - "Replay Gain Modifier": "Modyfikator normalizacji głośności", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Włączony:", - "Mobile:": "", - "Stream Type:": "Typ strumienia:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Typ usługi:", - "Channels:": "Kanały:", - "Server": "Serwer", - "Port": "Port", - "Mount Point": "Punkt montowania", - "Name": "Nazwa", - "URL": "adres URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Katalog importu:", - "Watched Folders:": "Katalogi obserwowane:", - "Not a valid Directory": "Nieprawidłowy katalog", - "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nie jest poprawnym adresem email w podstawowym formacie local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} nie pasuje do formatu daty '%format%'", - "{msg} is less than %min% characters long": "{msg} zawiera mniej niż %min% znaków", - "{msg} is more than %max% characters long": "{msg} zawiera więcej niż %max% znaków", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nie zawiera się w przedziale od '%min%' do '%max%'", - "Passwords do not match": "Hasła muszą się zgadzać", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue-in i cue-out mają wartość zerową.", - "Can't set cue out to be greater than file length.": "Wartość cue-out nie może być większa niż długość pliku.", - "Can't set cue in to be larger than cue out.": "Wartość cue-in nie może być większa niż cue-out.", - "Can't set cue out to be smaller than cue in.": "Wartość cue-out nie może być mniejsza od cue-in.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Wybierz kraj", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)", - "The schedule you're viewing is out of date! (instance mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)", - "The schedule you're viewing is out of date!": "Harmonogram, który przeglądasz jest nieaktualny!", - "You are not allowed to schedule show %s.": "Nie posiadasz uprawnień, aby zaplanować audycję %s.", - "You cannot add files to recording shows.": "Nie można dodawać plików do nagrywanych audycji.", - "The show %s is over and cannot be scheduled.": "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana.", - "The show %s has been previously updated!": "Audycja %s została zaktualizowana wcześniej!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Wybrany plik nie istnieje!", - "Shows can have a max length of 24 hours.": "Audycje mogą mieć maksymalną długość 24 godzin.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nie można planować audycji nakładających się na siebie.\nUwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń.", - "Rebroadcast of %s from %s": "Retransmisja z %s do %s", - "Length needs to be greater than 0 minutes": "Długość musi być większa niż 0 minut", - "Length should be of form \"00h 00m\"": "Długość powinna mieć postać \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL powinien mieć postać \"https://example.org\"", - "URL should be 512 characters or less": "URL powinien mieć 512 znaków lub mniej", - "No MIME type found for webstream.": "Nie znaleziono typu MIME dla webstreamu", - "Webstream name cannot be empty": "Nazwa webstreamu nie może być pusta", - "Could not parse XSPF playlist": "Nie można przeanalizować playlisty XSPF", - "Could not parse PLS playlist": "Nie można przeanalizować playlisty PLS", - "Could not parse M3U playlist": "Nie można przeanalizować playlisty M3U", - "Invalid webstream - This appears to be a file download.": "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku.", - "Unrecognized stream type: %s": "Nie rozpoznano typu strumienia: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Przeglądaj metadane nagrania", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Edytuj audycję", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji.", - "Can't move a past show": "Nie można przenieść audycji archiwalnej", - "Can't move show into past": "Nie można przenieść audycji w przeszłość", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką.", - "Show was deleted because recorded show does not exist!": "Audycja została usunięta, ponieważ nagranie nie istnieje!", - "Must wait 1 hour to rebroadcast.": "Należy odczekać 1 godzinę przed ponownym odtworzeniem.", - "Track": "", - "Played": "Odtwarzane", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Rok %s musi być w przedziale od 1753 do 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s nie jest poprawną datą", + "%s:%s:%s is not a valid time": "%s:%s:%s nie jest prawidłowym czasem", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Kalendarz", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Użytkownicy", + "Track Types": "", + "Streams": "Strumienie", + "Status": "Status", + "Analytics": "", + "Playout History": "Historia odtwarzania", + "History Templates": "", + "Listener Stats": "Statystyki słuchaczy", + "Show Listener Stats": "", + "Help": "Pomoc", + "Getting Started": "Jak zacząć", + "User Manual": "Instrukcja użytkowania", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Nie masz dostępu do tej lokalizacji", + "You are not allowed to access this resource. ": "Nie masz dostępu do tej lokalizacji.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Złe zapytanie. Nie zaakceprtowano parametru 'mode'", + "Bad request. 'mode' parameter is invalid": "Złe zapytanie. Parametr 'mode' jest nieprawidłowy", + "You don't have permission to disconnect source.": "Nie masz uprawnień do odłączenia żródła", + "There is no source connected to this input.": "Źródło nie jest podłączone do tego wyjścia.", + "You don't have permission to switch source.": "Nie masz uprawnień do przełączenia źródła.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "nie znaleziono %s", + "Something went wrong.": "Wystapił błąd", + "Preview": "Podgląd", + "Add to Playlist": "Dodaj do listy odtwarzania", + "Add to Smart Block": "Dodaj do smartblocku", + "Delete": "Usuń", + "Edit...": "", + "Download": "Pobierz", + "Duplicate Playlist": "Skopiuj listę odtwarzania", + "Duplicate Smartblock": "", + "No action available": "Brak dostepnych czynności", + "You don't have permission to delete selected items.": "Nie masz uprawnień do usunięcia wybranych elementów", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Kopia %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie.", + "Audio Player": "Odtwrzacz ", + "Something went wrong!": "", + "Recording:": "Nagrywanie:", + "Master Stream": "Strumień Nadrzędny", + "Live Stream": "Transmisja na żywo", + "Nothing Scheduled": "Nic nie zaplanowano", + "Current Show:": "Aktualna audycja:", + "Current": "Aktualny", + "You are running the latest version": "Używasz najnowszej wersji", + "New version available: ": "Dostępna jest nowa wersja:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Dodaj do bieżącej listy odtwarzania", + "Add to current smart block": "Dodaj do bieżącego smart blocku", + "Adding 1 Item": "Dodawanie 1 elementu", + "Adding %s Items": "Dodawanie %s elementów", + "You can only add tracks to smart blocks.": "do smart blocków mozna dodawać tylko utwory.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy", + "Please select a cursor position on timeline.": "Proszę wybrać pozycję kursora na osi czasu.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Dodaj", + "New": "", + "Edit": "Edytuj", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Usuń", + "Edit Metadata": "Edytuj Metadane.", + "Add to selected show": "Dodaj do wybranej audycji", + "Select": "Zaznacz", + "Select this page": "Zaznacz tę stronę", + "Deselect this page": "Odznacz tę stronę", + "Deselect all": "Odznacz wszystko", + "Are you sure you want to delete the selected item(s)?": "Czy na pewno chcesz usunąć wybrane elementy?", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Tytuł", + "Creator": "Twórca", + "Album": "Album", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Kompozytor", + "Conductor": "Dyrygent/Pod batutą", + "Copyright": "Prawa autorskie", + "Encoded By": "Kodowane przez", + "Genre": "Gatunek", + "ISRC": "ISRC", + "Label": "Wydawnictwo", + "Language": "Język", + "Last Modified": "Ostatnio zmodyfikowany", + "Last Played": "Ostatnio odtwarzany", + "Length": "Długość", + "Mime": "Podobne do", + "Mood": "Nastrój", + "Owner": "Właściciel", + "Replay Gain": "Normalizacja głośności (Replay Gain)", + "Sample Rate": "Wartość próbkowania", + "Track Number": "Numer utworu", + "Uploaded": "Przesłano", + "Website": "Strona internetowa", + "Year": "Rok", + "Loading...": "Ładowanie", + "All": "Wszystko", + "Files": "Pliki", + "Playlists": "Listy odtwarzania", + "Smart Blocks": "Smart Blocki", + "Web Streams": "Web Stream", + "Unknown type: ": "Nieznany typ:", + "Are you sure you want to delete the selected item?": "Czy na pewno chcesz usunąć wybrany element?", + "Uploading in progress...": "Wysyłanie w toku...", + "Retrieving data from the server...": "Pobieranie danych z serwera...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Kod błędu:", + "Error msg: ": "Komunikat błędu:", + "Input must be a positive number": "Podana wartość musi być liczbą dodatnią", + "Input must be a number": "Podana wartość musi być liczbą", + "Input must be in the format: yyyy-mm-dd": "Podana wartość musi mieć format yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Podana wartość musi mieć format hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "Wprowadź czas w formacie: '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:", + "Dynamic block is not previewable": "Podgląd bloku dynamicznego nie jest możliwy", + "Limit to: ": "Ograniczenie do:", + "Playlist saved": "Lista odtwarzania została zapisana", + "Playlist shuffled": "Playlista została przemieszana", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\".", + "Listener Count on %s: %s": "Licznik słuchaczy na %s: %s", + "Remind me in 1 week": "Przypomnij mi za 1 tydzień", + "Remind me never": "Nie przypominaj nigdy", + "Yes, help Airtime": "Tak, wspieraj Airtime", + "Image must be one of jpg, jpeg, png, or gif": "Obraz musi mieć format jpg, jpeg, png lub gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart blocku został przemieszany", + "Smart block generated and criteria saved": "Utworzono smartblock i zapisano kryteria", + "Smart block saved": "Smart block został zapisany", + "Processing...": "Przetwarzanie...", + "Select modifier": "Wybierz modyfikator", + "contains": "zawiera", + "does not contain": "nie zawiera", + "is": "to", + "is not": "to nie", + "starts with": "zaczyna się od", + "ends with": "kończy się", + "is greater than": "jest większa niż", + "is less than": "jest mniejsza niż", + "is in the range": "mieści się w zakresie", + "Generate": "Utwórz", + "Choose Storage Folder": "Wybierz ścieżkę do katalogu importu", + "Choose Folder to Watch": "Wybierz katalog do obserwacji", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\nWszystkie pliki z biblioteki Airtime zostaną usunięte.", + "Manage Media Folders": "Zarządzaj folderami mediów", + "Are you sure you want to remove the watched folder?": "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?", + "This path is currently not accessible.": "Ściezka jest obecnie niedostepna.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Połączono z serwerem streamingu", + "The stream is disabled": "Strumień jest odłączony", + "Getting information from the server...": "Pobieranie informacji z serwera...", + "Can not connect to the streaming server": "Nie można połączyć z serwerem streamującym", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu.", + "Check this box to automatically switch on Master/Show source upon source connection.": "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nie znaleziono wyników", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć.", + "Specify custom authentication which will work only for this show.": "Ustal własne uwierzytelnienie tylko dla tej audycji.", + "The show instance doesn't exist anymore!": "Instancja audycji już nie istnieje.", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Audycja", + "Show is empty": "Audycja jest pusta", + "1m": "1 min", + "5m": "5 min", + "10m": "10 min", + "15m": "15 min", + "30m": "30 min", + "60m": "60 min", + "Retreiving data from the server...": "Odbieranie danych z serwera", + "This show has no scheduled content.": "Ta audycja nie ma zawartości", + "This show is not completely filled with content.": "Brak pełnej zawartości tej audycji.", + "January": "Styczeń", + "February": "Luty", + "March": "Marzec", + "April": "Kwiecień", + "May": "Maj", + "June": "Czerwiec", + "July": "Lipiec", + "August": "Sierpień", + "September": "Wrzesień", + "October": "Październik", + "November": "Listopad", + "December": "Grudzień", + "Jan": "Sty", + "Feb": "Lut", + "Mar": "Mar", + "Apr": "Kwi", + "Jun": "Cze", + "Jul": "Lip", + "Aug": "Sie", + "Sep": "Wrz", + "Oct": "Paź", + "Nov": "Lis", + "Dec": "Gru", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Niedziela", + "Monday": "Poniedziałek", + "Tuesday": "Wtorek", + "Wednesday": "Środa", + "Thursday": "Czwartek", + "Friday": "Piątek", + "Saturday": "Sobota", + "Sun": "Nie", + "Mon": "Pon", + "Tue": "Wt", + "Wed": "Śr", + "Thu": "Czw", + "Fri": "Pt", + "Sat": "Sob", + "Shows longer than their scheduled time will be cut off by a following show.": "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne .", + "Cancel Current Show?": "Skasować obecną audycję?", + "Stop recording current show?": "Przerwać nagrywanie aktualnej audycji?", + "Ok": "Ok", + "Contents of Show": "Zawartośc audycji", + "Remove all content?": "Usunąć całą zawartość?", + "Delete selected item(s)?": "Skasować wybrane elementy?", + "Start": "Rozpocznij", + "End": "Zakończ", + "Duration": "Czas trwania", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue out", + "Fade In": "Zgłaśnianie [Fade In]", + "Fade Out": "Wyciszanie [Fade out]", + "Show Empty": "Audycja jest pusta", + "Recording From Line In": "Nagrywaanie z wejścia liniowego", + "Track preview": "Podgląd utworu", + "Cannot schedule outside a show.": "Nie ma możliwości planowania poza audycją.", + "Moving 1 Item": "Przenoszenie 1 elementu", + "Moving %s Items": "Przenoszenie %s elementów", + "Save": "Zapisz", + "Cancel": "Anuluj", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Zaznacz wszystko", + "Select none": "Odznacz wszystkie", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Usuń wybrane elementy", + "Jump to the current playing track": "Przejdź do obecnie odtwarzanej ściezki", + "Jump to Current": "", + "Cancel current show": "Skasuj obecną audycję", + "Open library to add or remove content": "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości", + "Add / Remove Content": "Dodaj/usuń zawartość", + "in use": "W użyciu", + "Disk": "Dysk", + "Look in": "Sprawdź", + "Open": "Otwórz", + "Admin": "Administrator", + "DJ": "Prowadzący", + "Program Manager": "Menedżer programowy", + "Guest": "Gość", + "Guests can do the following:": "Goście mają mozliwość:", + "View schedule": "Przeglądanie harmonogramu", + "View show content": "Przeglądanie zawartości audycji", + "DJs can do the following:": "Prowadzący ma możliwość:", + "Manage assigned show content": "Zarządzać przypisaną sobie zawartością audycji", + "Import media files": "Importować pliki mediów", + "Create playlists, smart blocks, and webstreams": "Tworzyć playlisty, smart blocki i webstreamy", + "Manage their own library content": "Zarządzać zawartością własnej biblioteki", + "Program Managers can do the following:": "", + "View and manage show content": "Przeglądać i zarządzać zawartością audycji", + "Schedule shows": "Planować audycję", + "Manage all library content": "Zarządzać całą zawartością biblioteki", + "Admins can do the following:": "Administrator ma mozliwość:", + "Manage preferences": "Zarządzać preferencjami", + "Manage users": "Zarządzać użytkownikami", + "Manage watched folders": "Zarządzać przeglądanymi katalogami", + "Send support feedback": "Wyślij informację zwrotną", + "View system status": "Sprawdzać status systemu", + "Access playout history": "Przeglądać historię odtworzeń", + "View listener stats": "Sprawdzać statystyki słuchaczy", + "Show / hide columns": "Pokaż/ukryj kolumny", + "Columns": "", + "From {from} to {to}": "Od {from} do {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Nd", + "Mo": "Pn", + "Tu": "Wt", + "We": "Śr", + "Th": "Cz", + "Fr": "Pt", + "Sa": "So", + "Close": "Zamknij", + "Hour": "Godzina", + "Minute": "Minuta", + "Done": "Gotowe", + "Select files": "Wybierz pliki", + "Add files to the upload queue and click the start button.": "Dodaj pliki do kolejki i wciśnij \"start\"", + "Filename": "", + "Size": "", + "Add Files": "Dodaj pliki", + "Stop Upload": "Zatrzymaj przesyłanie", + "Start upload": "Rozpocznij przesyłanie", + "Start Upload": "", + "Add files": "Dodaj pliki", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Dodano pliki %d%d", + "N/A": "Nie dotyczy", + "Drag files here.": "Przeciągnij pliki tutaj.", + "File extension error.": "Błąd rozszerzenia pliku.", + "File size error.": "Błąd rozmiaru pliku.", + "File count error.": "Błąd liczenia plików", + "Init error.": "Błąd inicjalizacji", + "HTTP Error.": "Błąd HTTP.", + "Security error.": "Błąd zabezpieczeń.", + "Generic error.": "Błąd ogólny.", + "IO error.": "Błąd I/O", + "File: %s": "Plik: %s", + "%d files queued": "%d plików oczekujących", + "File: %f, size: %s, max file size: %m": "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m", + "Upload URL might be wrong or doesn't exist": "URL nie istnieje bądź jest niewłaściwy", + "Error: File too large: ": "Błąd: plik jest za duży:", + "Error: Invalid file extension: ": "Błąd: nieprawidłowe rozszerzenie pliku:", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "Skopiowano %srow%s do schowka", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Opis", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Włączone", + "Disabled": "Wyłączone", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie.", + "You are viewing an older version of %s": "Przeglądasz starszą wersję %s", + "You cannot add tracks to dynamic blocks.": "Nie można dodać ścieżek do bloków dynamicznych", + "You don't have permission to delete selected %s(s).": "Nie masz pozwolenia na usunięcie wybranych %s(s)", + "You can only add tracks to smart block.": "Utwory mogą być dodane tylko do smartblocku", + "Untitled Playlist": "Lista odtwarzania bez tytułu", + "Untitled Smart Block": "Smartblock bez tytułu", + "Unknown Playlist": "Nieznana playlista", + "Preferences updated.": "Zaktualizowano preferencje.", + "Stream Setting Updated.": "Zaktualizowano ustawienia strumienia", + "path should be specified": "należy okreslić ścieżkę", + "Problem with Liquidsoap...": "Problem z Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmisja audycji %s z %s o %s", + "Select cursor": "Wybierz kursor", + "Remove cursor": "Usuń kursor", + "show does not exist": "audycja nie istnieje", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Użytkownik został dodany poprawnie!", + "User updated successfully!": "Użytkownik został poprawnie zaktualizowany!", + "Settings updated successfully!": "Ustawienia zostały poprawnie zaktualizowane!", + "Untitled Webstream": "Webstream bez nazwy", + "Webstream saved.": "Zapisano webstream", + "Invalid form values.": "Nieprawidłowe wartości formularzy", + "Invalid character entered": "Wprowadzony znak jest nieprawidłowy", + "Day must be specified": "Należy określić dzień", + "Time must be specified": "Należy określić czas", + "Must wait at least 1 hour to rebroadcast": "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Zastosuj własne uwierzytelnienie:", + "Custom Username": "Nazwa użytkownika", + "Custom Password": "Hasło", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Pole nazwy użytkownika nie może być puste.", + "Password field cannot be empty.": "Pole hasła nie może być puste.", + "Record from Line In?": "Nagrywać z wejścia liniowego?", + "Rebroadcast?": "Odtwarzać ponownie?", + "days": "dni", + "Link:": "", + "Repeat Type:": "Typ powtarzania:", + "weekly": "tygodniowo", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "miesięcznie", + "Select Days:": "Wybierz dni:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data zakończenia:", + "No End?": "Bez czasu końcowego?", + "End date must be after start date": "Data końcowa musi występować po dacie początkowej", + "Please select a repeat day": "", + "Background Colour:": "Kolor tła:", + "Text Colour:": "Kolor tekstu:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nazwa:", + "Untitled Show": "Audycja bez nazwy", + "URL:": "Adres URL", + "Genre:": "Rodzaj:", + "Description:": "Opis:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "%value% nie odpowiada formatowi 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Czas trwania:", + "Timezone:": "Strefa czasowa:", + "Repeats?": "Powtarzanie?", + "Cannot create show in the past": "Nie można utworzyć audycji w przeszłości", + "Cannot modify start date/time of the show that is already started": "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła", + "End date/time cannot be in the past": "Data lub czas zakończenia nie może być z przeszłości.", + "Cannot have duration < 0m": "Czas trwania nie może być mniejszy niż 0m", + "Cannot have duration 00h 00m": "Czas trwania nie może wynosić 00h 00m", + "Cannot have duration greater than 24h": "Czas trwania nie może być dłuższy niż 24h", + "Cannot schedule overlapping shows": "Nie można planować nakładających się audycji", + "Search Users:": "Szukaj Użytkowników:", + "DJs:": "Prowadzący:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Nazwa użytkownika:", + "Password:": "Hasło:", + "Verify Password:": "Potwierdź hasło:", + "Firstname:": "Imię:", + "Lastname:": "Nazwisko:", + "Email:": "Email:", + "Mobile Phone:": "Telefon:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Typ użytkownika:", + "Login name is not unique.": "Nazwa użytkownika musi być unikalna.", + "Delete All Tracks in Library": "", + "Date Start:": "Data rozpoczęcia:", + "Title:": "Tytuł:", + "Creator:": "Autor:", + "Album:": "Album:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Rok:", + "Label:": "Wydawnictwo:", + "Composer:": "Kompozytor:", + "Conductor:": "Dyrygent/Pod batutą:", + "Mood:": "Nastrój:", + "BPM:": "BPM:", + "Copyright:": "Prawa autorskie:", + "ISRC Number:": "Numer ISRC:", + "Website:": "Strona internetowa:", + "Language:": "Język:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nazwa stacji", + "Station Description": "", + "Station Logo:": "Logo stacji:", + "Note: Anything larger than 600x600 will be resized.": "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Tydzień zaczynaj od", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Zaloguj", + "Password": "Hasło", + "Confirm new password": "Potwierdź nowe hasło", + "Password confirmation does not match your password.": "Hasła muszą się zgadzać.", + "Email": "", + "Username": "Nazwa użytkownika", + "Reset password": "Resetuj hasło", + "Back": "", + "Now Playing": "Aktualnie odtwarzane", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Wszystkie moje audycje:", + "My Shows": "", + "Select criteria": "Wybierz kryteria", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Częstotliwość próbkowania (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "godzin(y)", + "minutes": "minut(y)", + "items": "elementy", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dynamiczny", + "Static": "Statyczny", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Tworzenie zawartości listy odtwarzania i zapisz kryteria", + "Shuffle playlist content": "Losowa kolejność odtwarzania", + "Shuffle": "Przemieszaj", + "Limit cannot be empty or smaller than 0": "Limit nie może być pusty oraz mniejszy od 0", + "Limit cannot be more than 24 hrs": "Limit nie może być większy niż 24 godziny", + "The value should be an integer": "Wartość powinna być liczbą całkowitą", + "500 is the max item limit value you can set": "Maksymalna liczba elementów do ustawienia to 500", + "You must select Criteria and Modifier": "Należy wybrać kryteria i modyfikator", + "'Length' should be in '00:00:00' format": "Długość powinna być wprowadzona w formacie '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Wartość musi być liczbą", + "The value should be less then 2147483648": "Wartość powinna być mniejsza niż 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Wartość powinna posiadać mniej niż %s znaków", + "Value cannot be empty": "Wartość nie może być pusta", + "Stream Label:": "Nazwa strumienia:", + "Artist - Title": "Artysta - Tytuł", + "Show - Artist - Title": "Audycja - Artysta -Tytuł", + "Station name - Show name": "Nazwa stacji - Nazwa audycji", + "Off Air Metadata": "Metadane Off Air", + "Enable Replay Gain": "Włącz normalizację głośności (Replay Gain)", + "Replay Gain Modifier": "Modyfikator normalizacji głośności", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Włączony:", + "Mobile:": "", + "Stream Type:": "Typ strumienia:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Typ usługi:", + "Channels:": "Kanały:", + "Server": "Serwer", + "Port": "Port", + "Mount Point": "Punkt montowania", + "Name": "Nazwa", + "URL": "adres URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Katalog importu:", + "Watched Folders:": "Katalogi obserwowane:", + "Not a valid Directory": "Nieprawidłowy katalog", + "Value is required and can't be empty": "Pole jest wymagane i nie może być puste", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} nie jest poprawnym adresem email w podstawowym formacie local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} nie pasuje do formatu daty '%format%'", + "{msg} is less than %min% characters long": "{msg} zawiera mniej niż %min% znaków", + "{msg} is more than %max% characters long": "{msg} zawiera więcej niż %max% znaków", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} nie zawiera się w przedziale od '%min%' do '%max%'", + "Passwords do not match": "Hasła muszą się zgadzać", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue-in i cue-out mają wartość zerową.", + "Can't set cue out to be greater than file length.": "Wartość cue-out nie może być większa niż długość pliku.", + "Can't set cue in to be larger than cue out.": "Wartość cue-in nie może być większa niż cue-out.", + "Can't set cue out to be smaller than cue in.": "Wartość cue-out nie może być mniejsza od cue-in.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Wybierz kraj", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)", + "The schedule you're viewing is out of date! (instance mismatch)": "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)", + "The schedule you're viewing is out of date!": "Harmonogram, który przeglądasz jest nieaktualny!", + "You are not allowed to schedule show %s.": "Nie posiadasz uprawnień, aby zaplanować audycję %s.", + "You cannot add files to recording shows.": "Nie można dodawać plików do nagrywanych audycji.", + "The show %s is over and cannot be scheduled.": "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana.", + "The show %s has been previously updated!": "Audycja %s została zaktualizowana wcześniej!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Wybrany plik nie istnieje!", + "Shows can have a max length of 24 hours.": "Audycje mogą mieć maksymalną długość 24 godzin.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Nie można planować audycji nakładających się na siebie.\nUwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń.", + "Rebroadcast of %s from %s": "Retransmisja z %s do %s", + "Length needs to be greater than 0 minutes": "Długość musi być większa niż 0 minut", + "Length should be of form \"00h 00m\"": "Długość powinna mieć postać \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL powinien mieć postać \"https://example.org\"", + "URL should be 512 characters or less": "URL powinien mieć 512 znaków lub mniej", + "No MIME type found for webstream.": "Nie znaleziono typu MIME dla webstreamu", + "Webstream name cannot be empty": "Nazwa webstreamu nie może być pusta", + "Could not parse XSPF playlist": "Nie można przeanalizować playlisty XSPF", + "Could not parse PLS playlist": "Nie można przeanalizować playlisty PLS", + "Could not parse M3U playlist": "Nie można przeanalizować playlisty M3U", + "Invalid webstream - This appears to be a file download.": "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku.", + "Unrecognized stream type: %s": "Nie rozpoznano typu strumienia: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Przeglądaj metadane nagrania", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Edytuj audycję", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji.", + "Can't move a past show": "Nie można przenieść audycji archiwalnej", + "Can't move show into past": "Nie można przenieść audycji w przeszłość", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką.", + "Show was deleted because recorded show does not exist!": "Audycja została usunięta, ponieważ nagranie nie istnieje!", + "Must wait 1 hour to rebroadcast.": "Należy odczekać 1 godzinę przed ponownym odtworzeniem.", + "Track": "", + "Played": "Odtwarzane", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/pt_BR.json b/webapp/src/locale/pt_BR.json index 75dbc2524a..cfddec657d 100644 --- a/webapp/src/locale/pt_BR.json +++ b/webapp/src/locale/pt_BR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "O ano %s deve estar compreendido no intervalo entre 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s não é uma data válida", - "%s:%s:%s is not a valid time": "%s:%s:%s não é um horário válido", - "English": "Inglês", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "Catalão", - "Corsican": "", - "Czech": "Tcheco", - "Welsh": "", - "Danish": "", - "German": "Alemão", - "Bhutani": "", - "Greek": "Grego", - "Esperanto": "", - "Spanish": "Espanhol", - "Estonian": "", - "Basque": "", - "Persian": "Persa", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "Francês", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "Italiano", - "Hebrew": "Hebraíco", - "Japanese": "Japonês", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "Português", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "Chinês", - "Zulu": "", - "Use station default": "Usar estação padrão", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "Seviço de API do LibreTime", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Calendário", - "Widgets": "", - "Player": "Reprodutor", - "Weekly Schedule": "", - "Settings": "Configurações", - "General": "Geral", - "My Profile": "Meu perfil", - "Users": "Usuários", - "Track Types": "", - "Streams": "Fluxos", - "Status": "Estado", - "Analytics": "", - "Playout History": "Histórico da Programação", - "History Templates": "", - "Listener Stats": "Estatísticas de Ouvintes", - "Show Listener Stats": "", - "Help": "Ajuda", - "Getting Started": "Iniciando", - "User Manual": "Manual do Usuário", - "Get Help Online": "", - "Contribute to LibreTime": "Contribua para o LibreTime", - "What's New?": "O que há de novo?", - "You are not allowed to access this resource.": "Você não tem permissão para acessar esta funcionalidade.", - "You are not allowed to access this resource. ": "Você não tem permissão para acessar esta funcionalidade.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Requisição inválida. Parâmetro não informado.", - "Bad request. 'mode' parameter is invalid": "Requisição inválida. Parâmetro informado é inválido.", - "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", - "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", - "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Página não encontrada.", - "The requested action is not supported.": "A ação solicitada não é suportada.", - "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", - "An internal application error has occurred.": "", - "%s Podcast": "Podcast %s", - "No tracks have been published yet.": "", - "%s not found": "%s não encontrado", - "Something went wrong.": "Ocorreu algo errado.", - "Preview": "Visualizar", - "Add to Playlist": "Adicionar à Lista", - "Add to Smart Block": "Adicionar ao Bloco", - "Delete": "Excluir", - "Edit...": "Editar...", - "Download": "Download", - "Duplicate Playlist": "Duplicar Lista", - "Duplicate Smartblock": "", - "No action available": "Nenhuma ação disponível", - "You don't have permission to delete selected items.": "Você não tem permissão para excluir os itens selecionados.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "Não foi possível apagar arquivo(s).", - "Copy of %s": "Cópia de %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos.", - "Audio Player": "Player de Áudio", - "Something went wrong!": "", - "Recording:": "Gravando:", - "Master Stream": "Fluxo Mestre", - "Live Stream": "Fluxo Ao Vivo", - "Nothing Scheduled": "Nada Programado", - "Current Show:": "Programa em Exibição:", - "Current": "Agora", - "You are running the latest version": "Você está executando a versão mais recente", - "New version available: ": "Nova versão disponível:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Adicionar a esta lista de reprodução", - "Add to current smart block": "Adiconar a este bloco", - "Adding 1 Item": "Adicionando 1 item", - "Adding %s Items": "Adicionando %s items", - "You can only add tracks to smart blocks.": "Você pode adicionar somente faixas a um bloco inteligente.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução", - "Please select a cursor position on timeline.": "Por favor selecione um posição do cursor na linha do tempo.", - "You haven't added any tracks": "", - "You haven't added any playlists": "Você não adicionou nenhuma playlist", - "You haven't added any podcasts": "Você não adicionou nenhum podcast", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Adicionar", - "New": "Novo", - "Edit": "Editar", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "Publicar", - "Remove": "Remover", - "Edit Metadata": "Editar Metadados", - "Add to selected show": "Adicionar ao programa selecionado", - "Select": "Selecionar", - "Select this page": "Selecionar esta página", - "Deselect this page": "Desmarcar esta página", - "Deselect all": "Desmarcar todos", - "Are you sure you want to delete the selected item(s)?": "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?", - "Scheduled": "Agendado", - "Tracks": "", - "Playlist": "", - "Title": "Título", - "Creator": "Criador", - "Album": "Álbum", - "Bit Rate": "Bitrate", - "BPM": "BPM", - "Composer": "Compositor", - "Conductor": "Maestro", - "Copyright": "Copyright", - "Encoded By": "Convertido por", - "Genre": "Gênero", - "ISRC": "ISRC", - "Label": "Legenda", - "Language": "Idioma", - "Last Modified": "Última Ateração", - "Last Played": "Última Execução", - "Length": "Duração", - "Mime": "Mime", - "Mood": "Humor", - "Owner": "Prorietário", - "Replay Gain": "Ganho de Reprodução", - "Sample Rate": "Taxa de Amostragem", - "Track Number": "Número de Faixa", - "Uploaded": "Adicionado", - "Website": "Website", - "Year": "Ano", - "Loading...": "Carregando...", - "All": "Todos", - "Files": "Arquivos", - "Playlists": "Listas", - "Smart Blocks": "Blocos", - "Web Streams": "Fluxos", - "Unknown type: ": "Tipo Desconhecido:", - "Are you sure you want to delete the selected item?": "Você tem certeza que deseja excluir o item selecionado?", - "Uploading in progress...": "Upload em andamento...", - "Retrieving data from the server...": "Obtendo dados do servidor...", - "Import": "Importar", - "Imported?": "", - "View": "", - "Error code: ": "Código do erro:", - "Error msg: ": "Mensagem de erro:", - "Input must be a positive number": "A entrada deve ser um número positivo", - "Input must be a number": "A entrada deve ser um número", - "Input must be in the format: yyyy-mm-dd": "A entrada deve estar no formato yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "A entrada deve estar no formato hh:mm:ss.t", - "My Podcast": "Meu Podcast", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "por favor informe o tempo no formato '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Seu navegador não suporta a execução deste tipo de arquivo:", - "Dynamic block is not previewable": "Não é possível o preview de blocos dinâmicos", - "Limit to: ": "Limitar em:", - "Playlist saved": "A lista foi salva", - "Playlist shuffled": "A lista foi embaralhada", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'.", - "Listener Count on %s: %s": "Número de Ouvintes em %s: %s", - "Remind me in 1 week": "Lembrar-me dentro de uma semana", - "Remind me never": "Não me lembrar novamente", - "Yes, help Airtime": "Sim, quero colaborar com o Airtime", - "Image must be one of jpg, jpeg, png, or gif": "A imagem precisa conter extensão jpg, jpeg, png ou gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "O bloco foi embaralhado", - "Smart block generated and criteria saved": "O bloco foi gerado e o criterio foi salvo", - "Smart block saved": "O bloco foi salvo", - "Processing...": "Processando...", - "Select modifier": "Selecionar modificador", - "contains": "contém", - "does not contain": "não contém", - "is": "é", - "is not": "não é", - "starts with": "começa com", - "ends with": "termina com", - "is greater than": "é maior que", - "is less than": "é menor que", - "is in the range": "está no intervalo", - "Generate": "Gerar", - "Choose Storage Folder": "Selecione o Diretório de Armazenamento", - "Choose Folder to Watch": "Selecione o Diretório para Monitoramento", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Tem certeza de que deseja alterar o diretório de armazenamento? \nIsto irá remover os arquivos de sua biblioteca Airtime!", - "Manage Media Folders": "Gerenciar Diretórios de Mídia", - "Are you sure you want to remove the watched folder?": "Tem certeza que deseja remover o diretório monitorado?", - "This path is currently not accessible.": "O caminho está inacessível no momento.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "Conectado ao servidor de fluxo", - "The stream is disabled": "O fluxo está desabilitado", - "Getting information from the server...": "Obtendo informações do servidor...", - "Can not connect to the streaming server": "Não é possível conectar ao servidor de streaming", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\".", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes.", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "Nenhum resultado encontrado", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar.", - "Specify custom authentication which will work only for this show.": "Defina uma autenticação personalizada que funcionará apenas neste programa.", - "The show instance doesn't exist anymore!": "A instância deste programa não existe mais!", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "Programa", - "Show is empty": "O programa está vazio", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Obtendo dados do servidor...", - "This show has no scheduled content.": "Este programa não possui conteúdo agendado.", - "This show is not completely filled with content.": "Este programa não possui duração completa de conteúdos.", - "January": "Janeiro", - "February": "Fevereiro", - "March": "Março", - "April": "Abril", - "May": "Maio", - "June": "Junho", - "July": "Julho", - "August": "Agosto", - "September": "Setembro", - "October": "Outubro", - "November": "Novembro", - "December": "Dezembro", - "Jan": "Jan", - "Feb": "Fev", - "Mar": "Mar", - "Apr": "Abr", - "Jun": "Jun", - "Jul": "Jul", - "Aug": "Ago", - "Sep": "Set", - "Oct": "Out", - "Nov": "Nov", - "Dec": "Dez", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Domingo", - "Monday": "Segunda", - "Tuesday": "Terça", - "Wednesday": "Quarta", - "Thursday": "Quinta", - "Friday": "Sexta", - "Saturday": "Sábado", - "Sun": "Dom", - "Mon": "Seg", - "Tue": "Ter", - "Wed": "Qua", - "Thu": "Qui", - "Fri": "Sex", - "Sat": "Sab", - "Shows longer than their scheduled time will be cut off by a following show.": "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte.", - "Cancel Current Show?": "Cancelar Programa em Execução?", - "Stop recording current show?": "Parar gravação do programa em execução?", - "Ok": "Ok", - "Contents of Show": "Conteúdos do Programa", - "Remove all content?": "Remover todos os conteúdos?", - "Delete selected item(s)?": "Excluir item(ns) selecionado(s)?", - "Start": "Início", - "End": "Fim", - "Duration": "Duração", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue Entrada", - "Cue Out": "Cue Saída", - "Fade In": "Fade Entrada", - "Fade Out": "Fade Saída", - "Show Empty": "Programa vazio", - "Recording From Line In": "Gravando a partir do Line In", - "Track preview": "Prévia da faixa", - "Cannot schedule outside a show.": "Não é possível realizar agendamento fora de um programa.", - "Moving 1 Item": "Movendo 1 item", - "Moving %s Items": "Movendo %s itens", - "Save": "Salvar", - "Cancel": "Cancelar", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "Selecionar todos", - "Select none": "Selecionar nenhum", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Remover seleção de itens agendados", - "Jump to the current playing track": "Saltar para faixa em execução", - "Jump to Current": "", - "Cancel current show": "Cancelar programa atual", - "Open library to add or remove content": "Abrir biblioteca para adicionar ou remover conteúdo", - "Add / Remove Content": "Adicionar / Remover Conteúdo", - "in use": "em uso", - "Disk": "Disco", - "Look in": "Explorar", - "Open": "Abrir", - "Admin": "Administrador", - "DJ": "DJ", - "Program Manager": "Gerente de Programação", - "Guest": "Visitante", - "Guests can do the following:": "Visitantes podem fazer o seguinte:", - "View schedule": "Visualizar agendamentos", - "View show content": "Visualizar conteúdo dos programas", - "DJs can do the following:": "DJs podem fazer o seguinte:", - "Manage assigned show content": "Gerenciar o conteúdo de programas delegados a ele", - "Import media files": "Importar arquivos de mídia", - "Create playlists, smart blocks, and webstreams": "Criar listas de reprodução, blocos inteligentes e fluxos", - "Manage their own library content": "Gerenciar sua própria blblioteca de conteúdos", - "Program Managers can do the following:": "", - "View and manage show content": "Visualizar e gerenciar o conteúdo dos programas", - "Schedule shows": "Agendar programas", - "Manage all library content": "Gerenciar bibliotecas de conteúdo", - "Admins can do the following:": "Administradores podem fazer o seguinte:", - "Manage preferences": "Gerenciar configurações", - "Manage users": "Gerenciar usuários", - "Manage watched folders": "Gerenciar diretórios monitorados", - "Send support feedback": "Enviar informações de suporte", - "View system status": "Visualizar estado do sistema", - "Access playout history": "Acessar o histórico da programação", - "View listener stats": "Ver estado dos ouvintes", - "Show / hide columns": "Exibir / ocultar colunas", - "Columns": "", - "From {from} to {to}": "De {from} até {to}", - "kbps": "kbps", - "yyyy-mm-dd": "yyy-mm-dd", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "khz", - "Su": "Do", - "Mo": "Se", - "Tu": "Te", - "We": "Qu", - "Th": "Qu", - "Fr": "Se", - "Sa": "Sa", - "Close": "Fechar", - "Hour": "Hora", - "Minute": "Minuto", - "Done": "Concluído", - "Select files": "Selecionar arquivos", - "Add files to the upload queue and click the start button.": "Adicione arquivos para a fila de upload e pressione o botão iniciar ", - "Filename": "", - "Size": "", - "Add Files": "Adicionar Arquivos", - "Stop Upload": "Parar Upload", - "Start upload": "Iniciar Upload", - "Start Upload": "", - "Add files": "Adicionar arquivos", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "%d/%d arquivos importados", - "N/A": "N/A", - "Drag files here.": "Arraste arquivos nesta área.", - "File extension error.": "Erro na extensão do arquivo.", - "File size error.": "Erro no tamanho do arquivo.", - "File count error.": "Erro na contagem dos arquivos.", - "Init error.": "Erro de inicialização.", - "HTTP Error.": "Erro HTTP.", - "Security error.": "Erro de segurança.", - "Generic error.": "Erro genérico.", - "IO error.": "Erro de I/O.", - "File: %s": "Arquivos: %s.", - "%d files queued": "%d arquivos adicionados à fila.", - "File: %f, size: %s, max file size: %m": "Arquivo: %f, tamanho: %s, tamanho máximo: %m", - "Upload URL might be wrong or doesn't exist": "URL de upload pode estar incorreta ou inexiste.", - "Error: File too large: ": "Erro: Arquivo muito grande:", - "Error: Invalid file extension: ": "Erro: Extensão de arquivo inválida.", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "", - "Copied %s row%s to the clipboard": "%s linhas%s copiadas para a área de transferência", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Descrição", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Ativo", - "Disabled": "Inativo", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Usuário ou senha inválidos. Tente novamente.", - "You are viewing an older version of %s": "Você está vendo uma versão obsoleta de %s", - "You cannot add tracks to dynamic blocks.": "Você não pode adicionar faixas a um bloco dinâmico", - "You don't have permission to delete selected %s(s).": "Você não tem permissão para excluir os %s(s) selecionados.", - "You can only add tracks to smart block.": "Você pode somente adicionar faixas um bloco inteligente.", - "Untitled Playlist": "Lista Sem Título", - "Untitled Smart Block": "Bloco Sem Título", - "Unknown Playlist": "Lista Desconhecida", - "Preferences updated.": "Preferências atualizadas.", - "Stream Setting Updated.": "Preferências de fluxo atualizadas.", - "path should be specified": "o caminho precisa ser informado", - "Problem with Liquidsoap...": "Problemas com o Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Retransmissão do programa %s de %s as %s", - "Select cursor": "Selecione o cursor", - "Remove cursor": "Remover o cursor", - "show does not exist": "programa inexistente", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Usuário adicionado com sucesso!", - "User updated successfully!": "Usuário atualizado com sucesso!", - "Settings updated successfully!": "Configurações atualizadas com sucesso!", - "Untitled Webstream": "Fluxo Sem Título", - "Webstream saved.": "Fluxo gravado.", - "Invalid form values.": "Valores do formulário inválidos.", - "Invalid character entered": "Caracter inválido informado", - "Day must be specified": "O dia precisa ser especificado", - "Time must be specified": "O horário deve ser especificado", - "Must wait at least 1 hour to rebroadcast": "É preciso aguardar uma hora para retransmitir", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Usar Autenticação Personalizada:", - "Custom Username": "Definir Usuário:", - "Custom Password": "Definir Senha:", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "O usuário não pode estar em branco.", - "Password field cannot be empty.": "A senha não pode estar em branco.", - "Record from Line In?": "Gravar a partir do Line In?", - "Rebroadcast?": "Retransmitir?", - "days": "dias", - "Link:": "", - "Repeat Type:": "Tipo de Reexibição:", - "weekly": "semanal", - "every 2 weeks": "", - "every 3 weeks": "", - "every 4 weeks": "", - "monthly": "mensal", - "Select Days:": "Selecione os Dias:", - "Repeat By:": "", - "day of the month": "", - "day of the week": "", - "Date End:": "Data de Fim:", - "No End?": "Sem fim?", - "End date must be after start date": "A data de fim deve ser posterior à data de início", - "Please select a repeat day": "", - "Background Colour:": "Cor de Fundo:", - "Text Colour:": "Cor da Fonte:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Nome:", - "Untitled Show": "Programa Sem Título", - "URL:": "URL:", - "Genre:": "Gênero:", - "Description:": "Descrição:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} não corresponde ao formato 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Duração:", - "Timezone:": "Fuso Horário:", - "Repeats?": "Reexibir?", - "Cannot create show in the past": "Não é possível criar um programa no passado.", - "Cannot modify start date/time of the show that is already started": "Não é possível alterar o início de um programa que está em execução", - "End date/time cannot be in the past": "Data e horário finais não podem ser definidos no passado.", - "Cannot have duration < 0m": "Não pode ter duração < 0m", - "Cannot have duration 00h 00m": "Não pode ter duração 00h 00m", - "Cannot have duration greater than 24h": "Não pode ter duração maior que 24 horas", - "Cannot schedule overlapping shows": "Não é permitido agendar programas sobrepostos", - "Search Users:": "Procurar Usuários:", - "DJs:": "DJs:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Usuário:", - "Password:": "Senha:", - "Verify Password:": "Confirmar Senha:", - "Firstname:": "Primeiro nome:", - "Lastname:": "Último nome:", - "Email:": "Email:", - "Mobile Phone:": "Celular:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Perfil do Usuário:", - "Login name is not unique.": "Usuário já existe.", - "Delete All Tracks in Library": "", - "Date Start:": "Data de Início:", - "Title:": "Título:", - "Creator:": "Criador:", - "Album:": "Álbum:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Ano:", - "Label:": "Legenda:", - "Composer:": "Compositor:", - "Conductor:": "Maestro:", - "Mood:": "Humor:", - "BPM:": "BPM:", - "Copyright:": "Copyright:", - "ISRC Number:": "Número ISRC:", - "Website:": "Website:", - "Language:": "Idioma:", - "Publish...": "", - "Start Time": "", - "End Time": "", - "Interface Timezone:": "", - "Station Name": "Nome da Estação", - "Station Description": "", - "Station Logo:": "Logo da Estação:", - "Note: Anything larger than 600x600 will be resized.": "Nota: qualquer arquivo maior que 600x600 será redimensionado", - "Default Crossfade Duration (s):": "", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "", - "Default Fade Out (s):": "", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "", - "Week Starts On": "Semana Inicia Em", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Acessar", - "Password": "Senha", - "Confirm new password": "Confirmar nova senha", - "Password confirmation does not match your password.": "A senha de confirmação não confere.", - "Email": "", - "Username": "Usuário", - "Reset password": "Redefinir senha", - "Back": "", - "Now Playing": "Tocando agora", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Meus Programas:", - "My Shows": "", - "Select criteria": "Selecione um critério", - "Bit Rate (Kbps)": "Bitrate (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Taxa de Amostragem (khz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "horas", - "minutes": "minutos", - "items": "itens", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinâmico", - "Static": "Estático", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Gerar conteúdo da lista e salvar critério", - "Shuffle playlist content": "Embaralhar conteúdo da lista", - "Shuffle": "Embaralhar", - "Limit cannot be empty or smaller than 0": "O limite não pode ser vazio ou menor que 0", - "Limit cannot be more than 24 hrs": "O limite não pode ser maior que 24 horas", - "The value should be an integer": "O valor deve ser um número inteiro", - "500 is the max item limit value you can set": "O número máximo de itens é 500", - "You must select Criteria and Modifier": "Você precisa selecionar Critério e Modificador ", - "'Length' should be in '00:00:00' format": "A duração deve ser informada no formato '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "O valor deve ser numérico", - "The value should be less then 2147483648": "O valor precisa ser menor que 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "O valor deve conter no máximo %s caracteres", - "Value cannot be empty": "O valor não pode estar em branco", - "Stream Label:": "Legenda do Fluxo:", - "Artist - Title": "Artista - Título", - "Show - Artist - Title": "Programa - Artista - Título", - "Station name - Show name": "Nome da Estação - Nome do Programa", - "Off Air Metadata": "Metadados Off Air", - "Enable Replay Gain": "Habilitar Ganho de Reprodução", - "Replay Gain Modifier": "Modificador de Ganho de Reprodução", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Habilitado:", - "Mobile:": "", - "Stream Type:": "Tipo de Fluxo:", - "Bit Rate:": "Bitrate:", - "Service Type:": "Tipo de Serviço:", - "Channels:": "Canais:", - "Server": "Servidor", - "Port": "Porta", - "Mount Point": "Ponto de Montagem", - "Name": "Nome", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Diretório de Importação:", - "Watched Folders:": "Diretórios Monitorados: ", - "Not a valid Directory": "Não é um diretório válido", - "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "%value%' não é um enderçeo de email válido", - "{msg} does not fit the date format '%format%'": "{msg} não corresponde a uma data válida '%format%'", - "{msg} is less than %min% characters long": "{msg} is menor que comprimento mínimo %min% de caracteres", - "{msg} is more than %max% characters long": "{msg} is maior que o número máximo %max% de caracteres", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} não está compreendido entre '%min%' e '%max%', inclusive", - "Passwords do not match": "Senhas não conferem", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "Cue de entrada e saída são nulos.", - "Can't set cue out to be greater than file length.": "O ponto de saída não pode ser maior que a duração do arquivo", - "Can't set cue in to be larger than cue out.": "A duração do ponto de entrada não pode ser maior que a do ponto de saída.", - "Can't set cue out to be smaller than cue in.": "A duração do ponto de saída não pode ser menor que a do ponto de entrada.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Selecione o País", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "A programação que você está vendo está desatualizada! (programação incompatível)", - "The schedule you're viewing is out of date! (instance mismatch)": "A programação que você está vendo está desatualizada! (instância incompatível)", - "The schedule you're viewing is out of date!": "A programação que você está vendo está desatualizada!", - "You are not allowed to schedule show %s.": "Você não tem permissão para agendar programa %s.", - "You cannot add files to recording shows.": "Você não pode adicionar arquivos para gravação de programas.", - "The show %s is over and cannot be scheduled.": "O programa %s terminou e não pode ser agendado.", - "The show %s has been previously updated!": "O programa %s foi previamente atualizado!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Um dos arquivos selecionados não existe!", - "Shows can have a max length of 24 hours.": "Os programas podem ter duração máxima de 24 horas.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Não é possível agendar programas sobrepostos.\nNota: Redimensionar um programa repetitivo afeta todas as suas repetições.", - "Rebroadcast of %s from %s": "Retransmissão de %s a partir de %s", - "Length needs to be greater than 0 minutes": "A duração precisa ser maior que 0 minuto", - "Length should be of form \"00h 00m\"": "A duração deve ser informada no formato \"00h 00m\"", - "URL should be of form \"https://example.org\"": "A URL deve estar no formato \"https://example.org\"", - "URL should be 512 characters or less": "A URL de conter no máximo 512 caracteres", - "No MIME type found for webstream.": "Nenhum tipo MIME encontrado para o fluxo.", - "Webstream name cannot be empty": "O nome do fluxo não pode estar vazio", - "Could not parse XSPF playlist": "Não foi possível analisar a lista XSPF", - "Could not parse PLS playlist": "Não foi possível analisar a lista PLS", - "Could not parse M3U playlist": "Não foi possível analisar a lista M3U", - "Invalid webstream - This appears to be a file download.": "Fluxo web inválido. A URL parece tratar-se de download de arquivo.", - "Unrecognized stream type: %s": "Tipo de fluxo não reconhecido: %s", - "Record file doesn't exist": "", - "View Recorded File Metadata": "Visualizar Metadados do Arquivo Gravado", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Editar Programa", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "Não é possível arrastar e soltar programas repetidos", - "Can't move a past show": "Não é possível mover um programa anterior", - "Can't move show into past": "Não é possível mover um programa anterior", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões.", - "Show was deleted because recorded show does not exist!": "O programa foi excluído porque a gravação prévia não existe!", - "Must wait 1 hour to rebroadcast.": "É necessário aguardar 1 hora antes de retransmitir.", - "Track": "", - "Played": "Executado", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "O ano %s deve estar compreendido no intervalo entre 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s não é uma data válida", + "%s:%s:%s is not a valid time": "%s:%s:%s não é um horário válido", + "English": "Inglês", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "Catalão", + "Corsican": "", + "Czech": "Tcheco", + "Welsh": "", + "Danish": "", + "German": "Alemão", + "Bhutani": "", + "Greek": "Grego", + "Esperanto": "", + "Spanish": "Espanhol", + "Estonian": "", + "Basque": "", + "Persian": "Persa", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "Francês", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "Italiano", + "Hebrew": "Hebraíco", + "Japanese": "Japonês", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "Português", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Chinês", + "Zulu": "", + "Use station default": "Usar estação padrão", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "Seviço de API do LibreTime", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Calendário", + "Widgets": "", + "Player": "Reprodutor", + "Weekly Schedule": "", + "Settings": "Configurações", + "General": "Geral", + "My Profile": "Meu perfil", + "Users": "Usuários", + "Track Types": "", + "Streams": "Fluxos", + "Status": "Estado", + "Analytics": "", + "Playout History": "Histórico da Programação", + "History Templates": "", + "Listener Stats": "Estatísticas de Ouvintes", + "Show Listener Stats": "", + "Help": "Ajuda", + "Getting Started": "Iniciando", + "User Manual": "Manual do Usuário", + "Get Help Online": "", + "Contribute to LibreTime": "Contribua para o LibreTime", + "What's New?": "O que há de novo?", + "You are not allowed to access this resource.": "Você não tem permissão para acessar esta funcionalidade.", + "You are not allowed to access this resource. ": "Você não tem permissão para acessar esta funcionalidade.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Requisição inválida. Parâmetro não informado.", + "Bad request. 'mode' parameter is invalid": "Requisição inválida. Parâmetro informado é inválido.", + "You don't have permission to disconnect source.": "Você não tem permissão para desconectar a fonte.", + "There is no source connected to this input.": "Não há fonte conectada a esta entrada.", + "You don't have permission to switch source.": "Você não tem permissão para alternar entre as fontes.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Página não encontrada.", + "The requested action is not supported.": "A ação solicitada não é suportada.", + "You do not have permission to access this resource.": "Você não tem permissão para acessar este recurso.", + "An internal application error has occurred.": "", + "%s Podcast": "Podcast %s", + "No tracks have been published yet.": "", + "%s not found": "%s não encontrado", + "Something went wrong.": "Ocorreu algo errado.", + "Preview": "Visualizar", + "Add to Playlist": "Adicionar à Lista", + "Add to Smart Block": "Adicionar ao Bloco", + "Delete": "Excluir", + "Edit...": "Editar...", + "Download": "Download", + "Duplicate Playlist": "Duplicar Lista", + "Duplicate Smartblock": "", + "No action available": "Nenhuma ação disponível", + "You don't have permission to delete selected items.": "Você não tem permissão para excluir os itens selecionados.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "Não foi possível apagar arquivo(s).", + "Copy of %s": "Cópia de %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos.", + "Audio Player": "Player de Áudio", + "Something went wrong!": "", + "Recording:": "Gravando:", + "Master Stream": "Fluxo Mestre", + "Live Stream": "Fluxo Ao Vivo", + "Nothing Scheduled": "Nada Programado", + "Current Show:": "Programa em Exibição:", + "Current": "Agora", + "You are running the latest version": "Você está executando a versão mais recente", + "New version available: ": "Nova versão disponível:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Adicionar a esta lista de reprodução", + "Add to current smart block": "Adiconar a este bloco", + "Adding 1 Item": "Adicionando 1 item", + "Adding %s Items": "Adicionando %s items", + "You can only add tracks to smart blocks.": "Você pode adicionar somente faixas a um bloco inteligente.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução", + "Please select a cursor position on timeline.": "Por favor selecione um posição do cursor na linha do tempo.", + "You haven't added any tracks": "", + "You haven't added any playlists": "Você não adicionou nenhuma playlist", + "You haven't added any podcasts": "Você não adicionou nenhum podcast", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Adicionar", + "New": "Novo", + "Edit": "Editar", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "Publicar", + "Remove": "Remover", + "Edit Metadata": "Editar Metadados", + "Add to selected show": "Adicionar ao programa selecionado", + "Select": "Selecionar", + "Select this page": "Selecionar esta página", + "Deselect this page": "Desmarcar esta página", + "Deselect all": "Desmarcar todos", + "Are you sure you want to delete the selected item(s)?": "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?", + "Scheduled": "Agendado", + "Tracks": "", + "Playlist": "", + "Title": "Título", + "Creator": "Criador", + "Album": "Álbum", + "Bit Rate": "Bitrate", + "BPM": "BPM", + "Composer": "Compositor", + "Conductor": "Maestro", + "Copyright": "Copyright", + "Encoded By": "Convertido por", + "Genre": "Gênero", + "ISRC": "ISRC", + "Label": "Legenda", + "Language": "Idioma", + "Last Modified": "Última Ateração", + "Last Played": "Última Execução", + "Length": "Duração", + "Mime": "Mime", + "Mood": "Humor", + "Owner": "Prorietário", + "Replay Gain": "Ganho de Reprodução", + "Sample Rate": "Taxa de Amostragem", + "Track Number": "Número de Faixa", + "Uploaded": "Adicionado", + "Website": "Website", + "Year": "Ano", + "Loading...": "Carregando...", + "All": "Todos", + "Files": "Arquivos", + "Playlists": "Listas", + "Smart Blocks": "Blocos", + "Web Streams": "Fluxos", + "Unknown type: ": "Tipo Desconhecido:", + "Are you sure you want to delete the selected item?": "Você tem certeza que deseja excluir o item selecionado?", + "Uploading in progress...": "Upload em andamento...", + "Retrieving data from the server...": "Obtendo dados do servidor...", + "Import": "Importar", + "Imported?": "", + "View": "", + "Error code: ": "Código do erro:", + "Error msg: ": "Mensagem de erro:", + "Input must be a positive number": "A entrada deve ser um número positivo", + "Input must be a number": "A entrada deve ser um número", + "Input must be in the format: yyyy-mm-dd": "A entrada deve estar no formato yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "A entrada deve estar no formato hh:mm:ss.t", + "My Podcast": "Meu Podcast", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "por favor informe o tempo no formato '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Seu navegador não suporta a execução deste tipo de arquivo:", + "Dynamic block is not previewable": "Não é possível o preview de blocos dinâmicos", + "Limit to: ": "Limitar em:", + "Playlist saved": "A lista foi salva", + "Playlist shuffled": "A lista foi embaralhada", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'.", + "Listener Count on %s: %s": "Número de Ouvintes em %s: %s", + "Remind me in 1 week": "Lembrar-me dentro de uma semana", + "Remind me never": "Não me lembrar novamente", + "Yes, help Airtime": "Sim, quero colaborar com o Airtime", + "Image must be one of jpg, jpeg, png, or gif": "A imagem precisa conter extensão jpg, jpeg, png ou gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "O bloco foi embaralhado", + "Smart block generated and criteria saved": "O bloco foi gerado e o criterio foi salvo", + "Smart block saved": "O bloco foi salvo", + "Processing...": "Processando...", + "Select modifier": "Selecionar modificador", + "contains": "contém", + "does not contain": "não contém", + "is": "é", + "is not": "não é", + "starts with": "começa com", + "ends with": "termina com", + "is greater than": "é maior que", + "is less than": "é menor que", + "is in the range": "está no intervalo", + "Generate": "Gerar", + "Choose Storage Folder": "Selecione o Diretório de Armazenamento", + "Choose Folder to Watch": "Selecione o Diretório para Monitoramento", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Tem certeza de que deseja alterar o diretório de armazenamento? \nIsto irá remover os arquivos de sua biblioteca Airtime!", + "Manage Media Folders": "Gerenciar Diretórios de Mídia", + "Are you sure you want to remove the watched folder?": "Tem certeza que deseja remover o diretório monitorado?", + "This path is currently not accessible.": "O caminho está inacessível no momento.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "Conectado ao servidor de fluxo", + "The stream is disabled": "O fluxo está desabilitado", + "Getting information from the server...": "Obtendo informações do servidor...", + "Can not connect to the streaming server": "Não é possível conectar ao servidor de streaming", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\".", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes.", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "Nenhum resultado encontrado", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar.", + "Specify custom authentication which will work only for this show.": "Defina uma autenticação personalizada que funcionará apenas neste programa.", + "The show instance doesn't exist anymore!": "A instância deste programa não existe mais!", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "Programa", + "Show is empty": "O programa está vazio", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Obtendo dados do servidor...", + "This show has no scheduled content.": "Este programa não possui conteúdo agendado.", + "This show is not completely filled with content.": "Este programa não possui duração completa de conteúdos.", + "January": "Janeiro", + "February": "Fevereiro", + "March": "Março", + "April": "Abril", + "May": "Maio", + "June": "Junho", + "July": "Julho", + "August": "Agosto", + "September": "Setembro", + "October": "Outubro", + "November": "Novembro", + "December": "Dezembro", + "Jan": "Jan", + "Feb": "Fev", + "Mar": "Mar", + "Apr": "Abr", + "Jun": "Jun", + "Jul": "Jul", + "Aug": "Ago", + "Sep": "Set", + "Oct": "Out", + "Nov": "Nov", + "Dec": "Dez", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Domingo", + "Monday": "Segunda", + "Tuesday": "Terça", + "Wednesday": "Quarta", + "Thursday": "Quinta", + "Friday": "Sexta", + "Saturday": "Sábado", + "Sun": "Dom", + "Mon": "Seg", + "Tue": "Ter", + "Wed": "Qua", + "Thu": "Qui", + "Fri": "Sex", + "Sat": "Sab", + "Shows longer than their scheduled time will be cut off by a following show.": "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte.", + "Cancel Current Show?": "Cancelar Programa em Execução?", + "Stop recording current show?": "Parar gravação do programa em execução?", + "Ok": "Ok", + "Contents of Show": "Conteúdos do Programa", + "Remove all content?": "Remover todos os conteúdos?", + "Delete selected item(s)?": "Excluir item(ns) selecionado(s)?", + "Start": "Início", + "End": "Fim", + "Duration": "Duração", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue Entrada", + "Cue Out": "Cue Saída", + "Fade In": "Fade Entrada", + "Fade Out": "Fade Saída", + "Show Empty": "Programa vazio", + "Recording From Line In": "Gravando a partir do Line In", + "Track preview": "Prévia da faixa", + "Cannot schedule outside a show.": "Não é possível realizar agendamento fora de um programa.", + "Moving 1 Item": "Movendo 1 item", + "Moving %s Items": "Movendo %s itens", + "Save": "Salvar", + "Cancel": "Cancelar", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "Selecionar todos", + "Select none": "Selecionar nenhum", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Remover seleção de itens agendados", + "Jump to the current playing track": "Saltar para faixa em execução", + "Jump to Current": "", + "Cancel current show": "Cancelar programa atual", + "Open library to add or remove content": "Abrir biblioteca para adicionar ou remover conteúdo", + "Add / Remove Content": "Adicionar / Remover Conteúdo", + "in use": "em uso", + "Disk": "Disco", + "Look in": "Explorar", + "Open": "Abrir", + "Admin": "Administrador", + "DJ": "DJ", + "Program Manager": "Gerente de Programação", + "Guest": "Visitante", + "Guests can do the following:": "Visitantes podem fazer o seguinte:", + "View schedule": "Visualizar agendamentos", + "View show content": "Visualizar conteúdo dos programas", + "DJs can do the following:": "DJs podem fazer o seguinte:", + "Manage assigned show content": "Gerenciar o conteúdo de programas delegados a ele", + "Import media files": "Importar arquivos de mídia", + "Create playlists, smart blocks, and webstreams": "Criar listas de reprodução, blocos inteligentes e fluxos", + "Manage their own library content": "Gerenciar sua própria blblioteca de conteúdos", + "Program Managers can do the following:": "", + "View and manage show content": "Visualizar e gerenciar o conteúdo dos programas", + "Schedule shows": "Agendar programas", + "Manage all library content": "Gerenciar bibliotecas de conteúdo", + "Admins can do the following:": "Administradores podem fazer o seguinte:", + "Manage preferences": "Gerenciar configurações", + "Manage users": "Gerenciar usuários", + "Manage watched folders": "Gerenciar diretórios monitorados", + "Send support feedback": "Enviar informações de suporte", + "View system status": "Visualizar estado do sistema", + "Access playout history": "Acessar o histórico da programação", + "View listener stats": "Ver estado dos ouvintes", + "Show / hide columns": "Exibir / ocultar colunas", + "Columns": "", + "From {from} to {to}": "De {from} até {to}", + "kbps": "kbps", + "yyyy-mm-dd": "yyy-mm-dd", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "khz", + "Su": "Do", + "Mo": "Se", + "Tu": "Te", + "We": "Qu", + "Th": "Qu", + "Fr": "Se", + "Sa": "Sa", + "Close": "Fechar", + "Hour": "Hora", + "Minute": "Minuto", + "Done": "Concluído", + "Select files": "Selecionar arquivos", + "Add files to the upload queue and click the start button.": "Adicione arquivos para a fila de upload e pressione o botão iniciar ", + "Filename": "", + "Size": "", + "Add Files": "Adicionar Arquivos", + "Stop Upload": "Parar Upload", + "Start upload": "Iniciar Upload", + "Start Upload": "", + "Add files": "Adicionar arquivos", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "%d/%d arquivos importados", + "N/A": "N/A", + "Drag files here.": "Arraste arquivos nesta área.", + "File extension error.": "Erro na extensão do arquivo.", + "File size error.": "Erro no tamanho do arquivo.", + "File count error.": "Erro na contagem dos arquivos.", + "Init error.": "Erro de inicialização.", + "HTTP Error.": "Erro HTTP.", + "Security error.": "Erro de segurança.", + "Generic error.": "Erro genérico.", + "IO error.": "Erro de I/O.", + "File: %s": "Arquivos: %s.", + "%d files queued": "%d arquivos adicionados à fila.", + "File: %f, size: %s, max file size: %m": "Arquivo: %f, tamanho: %s, tamanho máximo: %m", + "Upload URL might be wrong or doesn't exist": "URL de upload pode estar incorreta ou inexiste.", + "Error: File too large: ": "Erro: Arquivo muito grande:", + "Error: Invalid file extension: ": "Erro: Extensão de arquivo inválida.", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "", + "Copied %s row%s to the clipboard": "%s linhas%s copiadas para a área de transferência", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Descrição", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Ativo", + "Disabled": "Inativo", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Usuário ou senha inválidos. Tente novamente.", + "You are viewing an older version of %s": "Você está vendo uma versão obsoleta de %s", + "You cannot add tracks to dynamic blocks.": "Você não pode adicionar faixas a um bloco dinâmico", + "You don't have permission to delete selected %s(s).": "Você não tem permissão para excluir os %s(s) selecionados.", + "You can only add tracks to smart block.": "Você pode somente adicionar faixas um bloco inteligente.", + "Untitled Playlist": "Lista Sem Título", + "Untitled Smart Block": "Bloco Sem Título", + "Unknown Playlist": "Lista Desconhecida", + "Preferences updated.": "Preferências atualizadas.", + "Stream Setting Updated.": "Preferências de fluxo atualizadas.", + "path should be specified": "o caminho precisa ser informado", + "Problem with Liquidsoap...": "Problemas com o Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Retransmissão do programa %s de %s as %s", + "Select cursor": "Selecione o cursor", + "Remove cursor": "Remover o cursor", + "show does not exist": "programa inexistente", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Usuário adicionado com sucesso!", + "User updated successfully!": "Usuário atualizado com sucesso!", + "Settings updated successfully!": "Configurações atualizadas com sucesso!", + "Untitled Webstream": "Fluxo Sem Título", + "Webstream saved.": "Fluxo gravado.", + "Invalid form values.": "Valores do formulário inválidos.", + "Invalid character entered": "Caracter inválido informado", + "Day must be specified": "O dia precisa ser especificado", + "Time must be specified": "O horário deve ser especificado", + "Must wait at least 1 hour to rebroadcast": "É preciso aguardar uma hora para retransmitir", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Usar Autenticação Personalizada:", + "Custom Username": "Definir Usuário:", + "Custom Password": "Definir Senha:", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "O usuário não pode estar em branco.", + "Password field cannot be empty.": "A senha não pode estar em branco.", + "Record from Line In?": "Gravar a partir do Line In?", + "Rebroadcast?": "Retransmitir?", + "days": "dias", + "Link:": "", + "Repeat Type:": "Tipo de Reexibição:", + "weekly": "semanal", + "every 2 weeks": "", + "every 3 weeks": "", + "every 4 weeks": "", + "monthly": "mensal", + "Select Days:": "Selecione os Dias:", + "Repeat By:": "", + "day of the month": "", + "day of the week": "", + "Date End:": "Data de Fim:", + "No End?": "Sem fim?", + "End date must be after start date": "A data de fim deve ser posterior à data de início", + "Please select a repeat day": "", + "Background Colour:": "Cor de Fundo:", + "Text Colour:": "Cor da Fonte:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Nome:", + "Untitled Show": "Programa Sem Título", + "URL:": "URL:", + "Genre:": "Gênero:", + "Description:": "Descrição:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} não corresponde ao formato 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Duração:", + "Timezone:": "Fuso Horário:", + "Repeats?": "Reexibir?", + "Cannot create show in the past": "Não é possível criar um programa no passado.", + "Cannot modify start date/time of the show that is already started": "Não é possível alterar o início de um programa que está em execução", + "End date/time cannot be in the past": "Data e horário finais não podem ser definidos no passado.", + "Cannot have duration < 0m": "Não pode ter duração < 0m", + "Cannot have duration 00h 00m": "Não pode ter duração 00h 00m", + "Cannot have duration greater than 24h": "Não pode ter duração maior que 24 horas", + "Cannot schedule overlapping shows": "Não é permitido agendar programas sobrepostos", + "Search Users:": "Procurar Usuários:", + "DJs:": "DJs:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Usuário:", + "Password:": "Senha:", + "Verify Password:": "Confirmar Senha:", + "Firstname:": "Primeiro nome:", + "Lastname:": "Último nome:", + "Email:": "Email:", + "Mobile Phone:": "Celular:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Perfil do Usuário:", + "Login name is not unique.": "Usuário já existe.", + "Delete All Tracks in Library": "", + "Date Start:": "Data de Início:", + "Title:": "Título:", + "Creator:": "Criador:", + "Album:": "Álbum:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Ano:", + "Label:": "Legenda:", + "Composer:": "Compositor:", + "Conductor:": "Maestro:", + "Mood:": "Humor:", + "BPM:": "BPM:", + "Copyright:": "Copyright:", + "ISRC Number:": "Número ISRC:", + "Website:": "Website:", + "Language:": "Idioma:", + "Publish...": "", + "Start Time": "", + "End Time": "", + "Interface Timezone:": "", + "Station Name": "Nome da Estação", + "Station Description": "", + "Station Logo:": "Logo da Estação:", + "Note: Anything larger than 600x600 will be resized.": "Nota: qualquer arquivo maior que 600x600 será redimensionado", + "Default Crossfade Duration (s):": "", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "", + "Default Fade Out (s):": "", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "", + "Week Starts On": "Semana Inicia Em", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Acessar", + "Password": "Senha", + "Confirm new password": "Confirmar nova senha", + "Password confirmation does not match your password.": "A senha de confirmação não confere.", + "Email": "", + "Username": "Usuário", + "Reset password": "Redefinir senha", + "Back": "", + "Now Playing": "Tocando agora", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Meus Programas:", + "My Shows": "", + "Select criteria": "Selecione um critério", + "Bit Rate (Kbps)": "Bitrate (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Taxa de Amostragem (khz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "horas", + "minutes": "minutos", + "items": "itens", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinâmico", + "Static": "Estático", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Gerar conteúdo da lista e salvar critério", + "Shuffle playlist content": "Embaralhar conteúdo da lista", + "Shuffle": "Embaralhar", + "Limit cannot be empty or smaller than 0": "O limite não pode ser vazio ou menor que 0", + "Limit cannot be more than 24 hrs": "O limite não pode ser maior que 24 horas", + "The value should be an integer": "O valor deve ser um número inteiro", + "500 is the max item limit value you can set": "O número máximo de itens é 500", + "You must select Criteria and Modifier": "Você precisa selecionar Critério e Modificador ", + "'Length' should be in '00:00:00' format": "A duração deve ser informada no formato '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "O valor deve ser numérico", + "The value should be less then 2147483648": "O valor precisa ser menor que 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "O valor deve conter no máximo %s caracteres", + "Value cannot be empty": "O valor não pode estar em branco", + "Stream Label:": "Legenda do Fluxo:", + "Artist - Title": "Artista - Título", + "Show - Artist - Title": "Programa - Artista - Título", + "Station name - Show name": "Nome da Estação - Nome do Programa", + "Off Air Metadata": "Metadados Off Air", + "Enable Replay Gain": "Habilitar Ganho de Reprodução", + "Replay Gain Modifier": "Modificador de Ganho de Reprodução", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Habilitado:", + "Mobile:": "", + "Stream Type:": "Tipo de Fluxo:", + "Bit Rate:": "Bitrate:", + "Service Type:": "Tipo de Serviço:", + "Channels:": "Canais:", + "Server": "Servidor", + "Port": "Porta", + "Mount Point": "Ponto de Montagem", + "Name": "Nome", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Diretório de Importação:", + "Watched Folders:": "Diretórios Monitorados: ", + "Not a valid Directory": "Não é um diretório válido", + "Value is required and can't be empty": "Valor é obrigatório e não poder estar em branco.", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "%value%' não é um enderçeo de email válido", + "{msg} does not fit the date format '%format%'": "{msg} não corresponde a uma data válida '%format%'", + "{msg} is less than %min% characters long": "{msg} is menor que comprimento mínimo %min% de caracteres", + "{msg} is more than %max% characters long": "{msg} is maior que o número máximo %max% de caracteres", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} não está compreendido entre '%min%' e '%max%', inclusive", + "Passwords do not match": "Senhas não conferem", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "Cue de entrada e saída são nulos.", + "Can't set cue out to be greater than file length.": "O ponto de saída não pode ser maior que a duração do arquivo", + "Can't set cue in to be larger than cue out.": "A duração do ponto de entrada não pode ser maior que a do ponto de saída.", + "Can't set cue out to be smaller than cue in.": "A duração do ponto de saída não pode ser menor que a do ponto de entrada.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Selecione o País", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "A programação que você está vendo está desatualizada! (programação incompatível)", + "The schedule you're viewing is out of date! (instance mismatch)": "A programação que você está vendo está desatualizada! (instância incompatível)", + "The schedule you're viewing is out of date!": "A programação que você está vendo está desatualizada!", + "You are not allowed to schedule show %s.": "Você não tem permissão para agendar programa %s.", + "You cannot add files to recording shows.": "Você não pode adicionar arquivos para gravação de programas.", + "The show %s is over and cannot be scheduled.": "O programa %s terminou e não pode ser agendado.", + "The show %s has been previously updated!": "O programa %s foi previamente atualizado!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Um dos arquivos selecionados não existe!", + "Shows can have a max length of 24 hours.": "Os programas podem ter duração máxima de 24 horas.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Não é possível agendar programas sobrepostos.\nNota: Redimensionar um programa repetitivo afeta todas as suas repetições.", + "Rebroadcast of %s from %s": "Retransmissão de %s a partir de %s", + "Length needs to be greater than 0 minutes": "A duração precisa ser maior que 0 minuto", + "Length should be of form \"00h 00m\"": "A duração deve ser informada no formato \"00h 00m\"", + "URL should be of form \"https://example.org\"": "A URL deve estar no formato \"https://example.org\"", + "URL should be 512 characters or less": "A URL de conter no máximo 512 caracteres", + "No MIME type found for webstream.": "Nenhum tipo MIME encontrado para o fluxo.", + "Webstream name cannot be empty": "O nome do fluxo não pode estar vazio", + "Could not parse XSPF playlist": "Não foi possível analisar a lista XSPF", + "Could not parse PLS playlist": "Não foi possível analisar a lista PLS", + "Could not parse M3U playlist": "Não foi possível analisar a lista M3U", + "Invalid webstream - This appears to be a file download.": "Fluxo web inválido. A URL parece tratar-se de download de arquivo.", + "Unrecognized stream type: %s": "Tipo de fluxo não reconhecido: %s", + "Record file doesn't exist": "", + "View Recorded File Metadata": "Visualizar Metadados do Arquivo Gravado", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Editar Programa", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "Não é possível arrastar e soltar programas repetidos", + "Can't move a past show": "Não é possível mover um programa anterior", + "Can't move show into past": "Não é possível mover um programa anterior", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões.", + "Show was deleted because recorded show does not exist!": "O programa foi excluído porque a gravação prévia não existe!", + "Must wait 1 hour to rebroadcast.": "É necessário aguardar 1 hora antes de retransmitir.", + "Track": "", + "Played": "Executado", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/ru_RU.json b/webapp/src/locale/ru_RU.json index e05c236a2b..ad5dbe3157 100644 --- a/webapp/src/locale/ru_RU.json +++ b/webapp/src/locale/ru_RU.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s год должен быть в пределах 1753 - 9999", - "%s-%s-%s is not a valid date": "%s - %s - %s недопустимая дата", - "%s:%s:%s is not a valid time": "%s : %s : %s недопустимое время", - "English": "Английский", - "Afar": "Афар", - "Abkhazian": "Абхазский", - "Afrikaans": "Африкаанс", - "Amharic": "Амхарский", - "Arabic": "Арабский", - "Assamese": "Ассамский", - "Aymara": "Аймара", - "Azerbaijani": "Азербаджанский", - "Bashkir": "Башкирский", - "Belarusian": "Белорусский", - "Bulgarian": "Болгарский", - "Bihari": "Бихари", - "Bislama": "Бислама", - "Bengali/Bangla": "Бенгали", - "Tibetan": "Тибетский", - "Breton": "Бретонский", - "Catalan": "Каталанский", - "Corsican": "Корсиканский", - "Czech": "Чешский", - "Welsh": "Вэльский", - "Danish": "Данский", - "German": "Немецкий", - "Bhutani": "Бутан", - "Greek": "Греческий", - "Esperanto": "Эсперанто", - "Spanish": "Испанский", - "Estonian": "Эстонский", - "Basque": "Басков", - "Persian": "Персидский", - "Finnish": "Финский", - "Fiji": "Фиджи", - "Faeroese": "Фарси", - "French": "Французский", - "Frisian": "Фризский", - "Irish": "Ирландский", - "Scots/Gaelic": "Шотландский", - "Galician": "Галицийский", - "Guarani": "Гуананский", - "Gujarati": "Гуджарати", - "Hausa": "Науса", - "Hindi": "Хинди", - "Croatian": "Хорватский", - "Hungarian": "Венгерский", - "Armenian": "Армянский", - "Interlingua": "Интернациональный", - "Interlingue": "Интерлинг", - "Inupiak": "Инупиак", - "Indonesian": "Индонезийский", - "Icelandic": "Исландский", - "Italian": "Итальянский", - "Hebrew": "Иврит", - "Japanese": "Японский", - "Yiddish": "Иудейский", - "Javanese": "Яванский", - "Georgian": "Грузинский", - "Kazakh": "Казахский", - "Greenlandic": "Гренландский", - "Cambodian": "Камбоджийский", - "Kannada": "Каннадский", - "Korean": "Корейский", - "Kashmiri": "Кашмирский", - "Kurdish": "Курдский", - "Kirghiz": "Киргизский", - "Latin": "Латынь", - "Lingala": "Лингала", - "Laothian": "Лаосский", - "Lithuanian": "Литовский", - "Latvian/Lettish": "Латвийский", - "Malagasy": "Малайзийский", - "Maori": "Маори", - "Macedonian": "Македонский", - "Malayalam": "Малаямский", - "Mongolian": "Монгольский", - "Moldavian": "Молдавский", - "Marathi": "Маратхи", - "Malay": "Малайзийский", - "Maltese": "Мальтийский", - "Burmese": "Бирманский", - "Nauru": "Науру", - "Nepali": "Непальский", - "Dutch": "Немецкий", - "Norwegian": "Норвежский", - "Occitan": "Окситанский", - "(Afan)/Oromoor/Oriya": "(Афан)/Оромур/Ория", - "Punjabi": "Панджаби Эм Си", - "Polish": "Польский", - "Pashto/Pushto": "Пушту", - "Portuguese": "Португальский", - "Quechua": "Кечуа", - "Rhaeto-Romance": "Рэето-романс", - "Kirundi": "Кирунди", - "Romanian": "Румынский", - "Russian": "Русский", - "Kinyarwanda": "Киньяруанда", - "Sanskrit": "Санскрит", - "Sindhi": "Синди", - "Sangro": "Сангро", - "Serbo-Croatian": "Сербский", - "Singhalese": "Синигальский", - "Slovak": "Словацкий", - "Slovenian": "Славянский", - "Samoan": "Самоанский", - "Shona": "Шона", - "Somali": "Сомалийский", - "Albanian": "Албанский", - "Serbian": "Сербский", - "Siswati": "Сисвати", - "Sesotho": "Сесото", - "Sundanese": "Сунданский", - "Swedish": "Шведский", - "Swahili": "Суахили", - "Tamil": "Тамильский", - "Tegulu": "Телугу", - "Tajik": "Таджикский", - "Thai": "Тайский", - "Tigrinya": "Тигринья", - "Turkmen": "Туркменский", - "Tagalog": "Тагальский", - "Setswana": "Сетсвана", - "Tonga": "Тонга", - "Turkish": "Турецкий", - "Tsonga": "Тсонга", - "Tatar": "Татарский", - "Twi": "Тви", - "Ukrainian": "Украинский", - "Urdu": "Урду", - "Uzbek": "Узбекский", - "Vietnamese": "Въетнамский", - "Volapuk": "Волапукский", - "Wolof": "Волоф", - "Xhosa": "Хоса", - "Yoruba": "Юрубский", - "Chinese": "Китайский", - "Zulu": "Зулу", - "Use station default": "Время станции по умолчанию", - "Upload some tracks below to add them to your library!": "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s.", - "Click the 'New Show' button and fill out the required fields.": "Нажмите на кнопку «Новая Программа» и заполните необходимые поля.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Выберите следующую Программу и нажмите «Запланировать Треки»", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s.", - "LibreTime media analyzer service": "Служба медиа анализатора LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Проверьте, что служба libretime-analyzer правильно установлена в ", - " and ensure that it's running with ": " а также убедитесь, что она запущена ", - "If not, try ": "Если нет - попробуйте запустить", - "LibreTime playout service": "Служба воспроизведения LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Проверьте, что служба libretime-playout правильно установлена в ", - "LibreTime liquidsoap service": "Служба Liquidsoap LibreTime", - "Check that the libretime-liquidsoap service is installed correctly in ": "Проверьте, что служба libretime-liquidsoap правильно установлена в ", - "LibreTime Celery Task service": "Служба Celery Task LibreTime", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "Страница Радио", - "Calendar": "Календарь", - "Widgets": "Виджеты", - "Player": "Плеер", - "Weekly Schedule": "Расписание программ", - "Settings": "Настройки", - "General": "Основные", - "My Profile": "Мой профиль", - "Users": "Пользователи", - "Track Types": "Типы треков", - "Streams": "Аудио потоки", - "Status": "Статус системы", - "Analytics": "Аналитика", - "Playout History": "История воспроизведения треков", - "History Templates": "Шаблоны истории", - "Listener Stats": "Статистика по слушателям", - "Show Listener Stats": "Статистика прослушиваний", - "Help": "Справка", - "Getting Started": "С чего начать", - "User Manual": "Руководство пользователя", - "Get Help Online": "Получить справку онлайн", - "Contribute to LibreTime": "", - "What's New?": "Что нового?", - "You are not allowed to access this resource.": "Вы не имеете доступа к этому ресурсу.", - "You are not allowed to access this resource. ": "Вы не имеете доступа к этому ресурсу. ", - "File does not exist in %s": "Файл не существует в %s", - "Bad request. no 'mode' parameter passed.": "Неверный запрос. Параметр «режим» не прошел.", - "Bad request. 'mode' parameter is invalid": "Неверный запрос. Параметр «режим» является недопустимым", - "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", - "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", - "You don't have permission to switch source.": "У вас нет прав для переключения источника.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", - "Page not found.": "Страница не найдена.", - "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", - "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", - "An internal application error has occurred.": "Произошла внутренняя ошибка.", - "%s Podcast": "%s Подкаст", - "No tracks have been published yet.": "Ни одного трека пока не опубликовано.", - "%s not found": "%s не найден", - "Something went wrong.": "Что-то пошло не так.", - "Preview": "Прослушать", - "Add to Playlist": "Добавить в Плейлист", - "Add to Smart Block": "Добавить в Смарт-блок", - "Delete": "Удалить", - "Edit...": "Редактировать...", - "Download": "Загрузка", - "Duplicate Playlist": "Дублировать Плейлист", - "Duplicate Smartblock": "Дублировать Смарт-блок", - "No action available": "Нет доступных действий", - "You don't have permission to delete selected items.": "У вас нет разрешения на удаление выбранных объектов.", - "Could not delete file because it is scheduled in the future.": "Нельзя удалить запланированный файл.", - "Could not delete file(s).": "Нельзя удалить файл(ы)", - "Copy of %s": "Копия %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки.", - "Audio Player": "Аудио плеер", - "Something went wrong!": "Что-то пошло не так!", - "Recording:": "Запись:", - "Master Stream": "Master-Steam", - "Live Stream": "Live Stream", - "Nothing Scheduled": "Ничего нет", - "Current Show:": "Текущая Программа:", - "Current": "Играет", - "You are running the latest version": "Вы используете последнюю версию", - "New version available: ": "Доступна новая версия: ", - "You have a pre-release version of LibreTime intalled.": "У вас установлена предварительная версия LibreTime.", - "A patch update for your LibreTime installation is available.": "Доступен патч обновлений для текущей версии LibreTime.", - "A feature update for your LibreTime installation is available.": "Доступно обновление функций для текущей версии LibreTime.", - "A major update for your LibreTime installation is available.": "Доступно важное обновление для текущей версии LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее.", - "Add to current playlist": "Добавить в текущий Плейлист", - "Add to current smart block": "Добавить в текущий Смарт-блок", - "Adding 1 Item": "Добавление одного элемента", - "Adding %s Items": "Добавление %s элементов", - "You can only add tracks to smart blocks.": "Вы можете добавить только треки в Смарт-блоки.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты.", - "Please select a cursor position on timeline.": "Переместите курсор по временной шкале.", - "You haven't added any tracks": "Вы не добавили ни одного трека", - "You haven't added any playlists": "Вы не добавили ни одного Плейлиста", - "You haven't added any podcasts": "У вас не добавлено ни одного подкаста", - "You haven't added any smart blocks": "Вы не добавили ни одного Смарт-блока", - "You haven't added any webstreams": "Вы не добавили ни одного веб-потока", - "Learn about tracks": "Узнать больше о треках", - "Learn about playlists": "Узнать больше о Плейлистах", - "Learn about podcasts": "Узнать больше о Подкастах", - "Learn about smart blocks": "Узнать больше об Смарт-блоках", - "Learn about webstreams": "Узнать больше о веб-потоках", - "Click 'New' to create one.": "Выберите «Новый» для создания.", - "Add": "Добавить", - "New": "Новый", - "Edit": "Редактировать", - "Add to Schedule": "Добавить в расписание", - "Add to next show": "Добавить к следующему шоу", - "Add to current show": "Добавить к текущему шоу", - "Add after selected items": "", - "Publish": "Опубликовать", - "Remove": "Удалить", - "Edit Metadata": "Править мета-данные", - "Add to selected show": "Добавить в выбранную Программу", - "Select": "Выбрать", - "Select this page": "Выбрать текущую страницу", - "Deselect this page": "Отменить выбор текущей страницы", - "Deselect all": "Отменить все выделения", - "Are you sure you want to delete the selected item(s)?": "Вы действительно хотите удалить выбранные элементы?", - "Scheduled": "Запланирован", - "Tracks": "Треки", - "Playlist": "Плейлист", - "Title": "Название", - "Creator": "Автор", - "Album": "Альбом", - "Bit Rate": "Битрейт", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Дирижер", - "Copyright": "Копирайт", - "Encoded By": "Закодировано", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Метка", - "Language": "Язык", - "Last Modified": "Изменен", - "Last Played": "Последнее проигрывание", - "Length": "Длительность", - "Mime": "Mime", - "Mood": "Настроение", - "Owner": "Владелец", - "Replay Gain": "Replay Gain", - "Sample Rate": "Sample Rate", - "Track Number": "Номер трека", - "Uploaded": "Загружено", - "Website": "Вебсайт", - "Year": "Год", - "Loading...": "Загрузка...", - "All": "Все", - "Files": "Файлы", - "Playlists": "Плейлисты", - "Smart Blocks": "Смарт-блоки", - "Web Streams": "Веб-потоки", - "Unknown type: ": "Неизвестный тип: ", - "Are you sure you want to delete the selected item?": "Вы действительно хотите удалить выбранный элемент?", - "Uploading in progress...": "Загружается ...", - "Retrieving data from the server...": "Получение данных с сервера ...", - "Import": "Импорт", - "Imported?": "Импортировано?", - "View": "Посмотреть", - "Error code: ": "Код ошибки: ", - "Error msg: ": "Сообщение об ошибке: ", - "Input must be a positive number": "Ввод должен быть положительным числом", - "Input must be a number": "Ввод должен быть числом", - "Input must be in the format: yyyy-mm-dd": "Ввод должен быть в формате: гггг-мм-дд", - "Input must be in the format: hh:mm:ss.t": "Ввод должен быть в формате: чч:мм:сс", - "My Podcast": "Мой Подкаст", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?", - "Open Media Builder": "Открыть медиа-построитель", - "please put in a time '00:00:00 (.0)'": "пожалуйста, установите время '00:00:00.0'", - "Please enter a valid time in seconds. Eg. 0.5": "Пожалуйста, укажите допустимое время в секундах. Например: 0.5", - "Your browser does not support playing this file type: ": "Ваш браузер не поддерживает воспроизведения данного типа файлов: ", - "Dynamic block is not previewable": "Динамический Блок не подлежит предпросмотру", - "Limit to: ": "Ограничить до: ", - "Playlist saved": "Плейлист сохранен", - "Playlist shuffled": "Плейлист перемешан", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра.", - "Listener Count on %s: %s": "Количество слушателей %s : %s", - "Remind me in 1 week": "Напомнить мне через одну неделю", - "Remind me never": "Никогда не напоминать", - "Yes, help Airtime": "Да, помочь LibreTime", - "Image must be one of jpg, jpeg, png, or gif": "Изображение должно быть в формате: jpg, jpeg, png или gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке.", - "Smart block shuffled": "Смарт-блок перемешан", - "Smart block generated and criteria saved": "Смарт-блок создан и критерии сохранены", - "Smart block saved": "Смарт-блок сохранен", - "Processing...": "Подождите...", - "Select modifier": "Выберите модификатор", - "contains": "содержит", - "does not contain": "не содержит", - "is": "является", - "is not": "не является", - "starts with": "начинается с", - "ends with": "заканчивается", - "is greater than": "больше, чем", - "is less than": "меньше, чем", - "is in the range": "в диапазоне", - "Generate": "Сгенерировать", - "Choose Storage Folder": "Выберите папку хранения", - "Choose Folder to Watch": "Выберите папку для просмотра", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Вы уверены, что хотите изменить папку хранения? \n Файлы из вашей Библиотеки будут удалены!", - "Manage Media Folders": "Управление папками медиа-файлов", - "Are you sure you want to remove the watched folder?": "Вы уверены, что хотите удалить просматриваемую папку?", - "This path is currently not accessible.": "Этот путь в настоящий момент недоступен.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены.", - "Connected to the streaming server": "Подключено к потоковому серверу", - "The stream is disabled": "Поток отключен", - "Getting information from the server...": "Получение информации с сервера ...", - "Can not connect to the streaming server": "Не удалось подключиться к потоковому серверу", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151.", - "For more details, please read the %s%s Manual%s": "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source».", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях.", - "Warning: You cannot change this field while the show is currently playing": "Внимание: Вы не можете изменить данное поле, пока Программа в эфире", - "No result found": "Не найдено", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться.", - "Specify custom authentication which will work only for this show.": "Укажите пользователя, который будет работать только в этой Программе.", - "The show instance doesn't exist anymore!": "Программы больше не существует!", - "Warning: Shows cannot be re-linked": "Внимание: Программы не могут быть пересвязаны", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса.", - "Show": "Программа", - "Show is empty": "Пустая Программа", - "1m": "1 мин", - "5m": "5 мин", - "10m": "10 мин", - "15m": "15 мин", - "30m": "30 мин", - "60m": "60 мин", - "Retreiving data from the server...": "Получение данных с сервера ...", - "This show has no scheduled content.": "В этой Программе нет запланированного контента.", - "This show is not completely filled with content.": "Данная Программа не до конца заполнена контентом.", - "January": "Январь", - "February": "Февраль", - "March": "Март", - "April": "Апрель", - "May": "Май", - "June": "Июнь", - "July": "Июль", - "August": "Август", - "September": "Сентябрь", - "October": "Октябрь", - "November": "Ноябрь", - "December": "Декабрь", - "Jan": "Янв", - "Feb": "Фев", - "Mar": "Март", - "Apr": "Апр", - "Jun": "Июн", - "Jul": "Июл", - "Aug": "Авг", - "Sep": "Сент", - "Oct": "Окт", - "Nov": "Нояб", - "Dec": "Дек", - "Today": "Сегодня", - "Day": "День", - "Week": "Неделя", - "Month": "Месяц", - "Sunday": "Воскресенье", - "Monday": "Понедельник", - "Tuesday": "Вторник", - "Wednesday": "Среда", - "Thursday": "Четверг", - "Friday": "Пятница", - "Saturday": "Суббота", - "Sun": "Вс", - "Mon": "Пн", - "Tue": "Вт", - "Wed": "Ср", - "Thu": "Чт", - "Fri": "Пт", - "Sat": "Сб", - "Shows longer than their scheduled time will be cut off by a following show.": "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой.", - "Cancel Current Show?": "Отменить эту Программу?", - "Stop recording current show?": "Остановить запись текущей Программы?", - "Ok": "Оk", - "Contents of Show": "Содержимое Программы", - "Remove all content?": "Удалить все содержимое?", - "Delete selected item(s)?": "Удалить выбранные элементы?", - "Start": "Начало", - "End": "Конец", - "Duration": "Длительность", - "Filtering out ": "Фильтрация ", - " of ": " из ", - " records": " записи", - "There are no shows scheduled during the specified time period.": "Нет Программ, запланированных в указанный период времени.", - "Cue In": "Начало звучания", - "Cue Out": "Окончание звучания", - "Fade In": "Сведение", - "Fade Out": "Затухание", - "Show Empty": "Программа пуста", - "Recording From Line In": "Запись с линейного входа", - "Track preview": "Предпросмотр трека", - "Cannot schedule outside a show.": "Нельзя планировать вне рамок Программы.", - "Moving 1 Item": "Перемещение одного элемента", - "Moving %s Items": "Перемещение %s элементов", - "Save": "Сохранить", - "Cancel": "Отменить", - "Fade Editor": "Редактор затухания", - "Cue Editor": "Редактор начала трека", - "Waveform features are available in a browser supporting the Web Audio API": "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API", - "Select all": "Выбрать все", - "Select none": "Снять выделения", - "Trim overbooked shows": "Обрезать пересекающиеся Программы", - "Remove selected scheduled items": "Удалить выбранные запланированные элементы", - "Jump to the current playing track": "Перейти к текущей проигрываемой дорожке", - "Jump to Current": "Перейти к текущему треку", - "Cancel current show": "Отмена текущей Программы", - "Open library to add or remove content": "Открыть Библиотеку, чтобы добавить или удалить содержимое", - "Add / Remove Content": "Добавить/удалить содержимое", - "in use": "используется", - "Disk": "Диск", - "Look in": "Посмотреть", - "Open": "Открыть", - "Admin": "Админ", - "DJ": "Диджей", - "Program Manager": "Менеджер", - "Guest": "Гость", - "Guests can do the following:": "Гости могут следующее:", - "View schedule": "Просматривать расписание", - "View show content": "Просматривать содержимое программы", - "DJs can do the following:": "DJ может:", - "Manage assigned show content": "- Управлять контентом назначенной ему Программы;", - "Import media files": "Импортировать медиа-файлы", - "Create playlists, smart blocks, and webstreams": "Создавать плейлисты, смарт-блоки и вебстримы", - "Manage their own library content": "Управлять содержимым собственной библиотеки", - "Program Managers can do the following:": "Менеджеры Программ могут следующее:", - "View and manage show content": "Просматривать и управлять содержимым программы", - "Schedule shows": "Планировать программы", - "Manage all library content": "Управлять содержимым всех библиотек", - "Admins can do the following:": "Администраторы могут:", - "Manage preferences": "Управлять настройками", - "Manage users": "Управлять пользователями", - "Manage watched folders": "Управлять просматриваемыми папками", - "Send support feedback": "Отправлять отзыв поддержке", - "View system status": "Просматривать статус системы", - "Access playout history": "Получить доступ к истории воспроизведений", - "View listener stats": "Видеть статистику слушателей", - "Show / hide columns": "Показать/скрыть столбцы", - "Columns": "Столбцы", - "From {from} to {to}": "С {from} до {to}", - "kbps": "кбит/с", - "yyyy-mm-dd": "гггг-мм-дд", - "hh:mm:ss.t": "чч:мм:сс.t", - "kHz": "кГц", - "Su": "Вс", - "Mo": "Пн", - "Tu": "Вт", - "We": "Ср", - "Th": "Чт", - "Fr": "Пт", - "Sa": "Сб", - "Close": "Закрыть", - "Hour": "Часы", - "Minute": "Минуты", - "Done": "Готово", - "Select files": "Выбрать файлы", - "Add files to the upload queue and click the start button.": "Добавьте файлы в очередь загрузки и нажмите кнопку Старт.", - "Filename": "", - "Size": "", - "Add Files": "Добавить файлы", - "Stop Upload": "Остановить загрузку", - "Start upload": "Начать загрузку", - "Start Upload": "", - "Add files": "Добавить файлы", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Загружено %d/%d файлов", - "N/A": "н/д", - "Drag files here.": "Перетащите файлы сюда.", - "File extension error.": "Неверное расширение файла.", - "File size error.": "Неверный размер файла.", - "File count error.": "Ошибка подсчета файла.", - "Init error.": "Ошибка инициализации.", - "HTTP Error.": "Ошибка HTTP.", - "Security error.": "Ошибка безопасности.", - "Generic error.": "Общая ошибка.", - "IO error.": "Ошибка записи/чтения.", - "File: %s": "Файл: %s", - "%d files queued": "%d файлов в очереди", - "File: %f, size: %s, max file size: %m": "Файл: %f, размер: %s, максимальный размер файла: %m", - "Upload URL might be wrong or doesn't exist": "URL загрузки указан неверно или не существует", - "Error: File too large: ": "Ошибка: Файл слишком большой: ", - "Error: Invalid file extension: ": "Ошибка: Неверное расширение файла: ", - "Set Default": "Установить по умолчанию", - "Create Entry": "Создать", - "Edit History Record": "Редактировать историю", - "No Show": "Нет программы", - "Copied %s row%s to the clipboard": "Скопировано %s строк %s в буфер обмена", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения.", - "New Show": "Новая Программа", - "New Log Entry": "Новая запись в журнале", - "No data available in table": "В таблице нет данных", - "(filtered from _MAX_ total entries)": "(отфильтровано из _MAX_ записей)", - "First": "Первая", - "Last": "Последняя", - "Next": "Следующая", - "Previous": "Предыдущая", - "Search:": "Поиск:", - "No matching records found": "Записи отсутствуют.", - "Drag tracks here from the library": "Перетащите треки сюда из Библиотеки", - "No tracks were played during the selected time period.": "В течение выбранного периода времени треки не воспроизводились.", - "Unpublish": "Снять с публикации", - "No matching results found.": "Результаты не найдены.", - "Author": "Автор", - "Description": "Описание", - "Link": "Ссылка", - "Publication Date": "Дата публикации", - "Import Status": "Статус загрузки", - "Actions": "Действия", - "Delete from Library": "Удалить из Библиотеки", - "Successfully imported": "Успешно загружено", - "Show _MENU_": "Показать _MENU_", - "Show _MENU_ entries": "Показать _MENU_ записей", - "Showing _START_ to _END_ of _TOTAL_ entries": "Записи с _START_ до _END_ из _TOTAL_ записей", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано с _START_ по _END_ из _TOTAL_ треков", - "Showing _START_ to _END_ of _TOTAL_ track types": "Показано с _START_ по _END_ из _TOTAL_ типов трека", - "Showing _START_ to _END_ of _TOTAL_ users": "Показано с _START_ по _END_ из _TOTAL_ пользователей", - "Showing 0 to 0 of 0 entries": "Записи с 0 до 0 из 0 записей", - "Showing 0 to 0 of 0 tracks": "Показано с 0 по 0 из 0 треков", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "Вы уверены что хотите удалить этот тип трека?", - "No track types were found.": "Типы треков не были найдены.", - "No track types found": "Типы треков не найдены", - "No matching track types found": "Не найдено подходящих типов треков", - "Enabled": "Включено", - "Disabled": "Отключено", - "Cancel upload": "Отменить загрузку", - "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "Настройки подкаста сохранены", - "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", - "Can't delete yourself!": "Вы не можете удалить себя!", - "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", - "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", - "Try it now": "Попробовать сейчас", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": " Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности. Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок. ", - "Playlist preview": "Предпросмотр плейлиста", - "Smart Block": "Смарт-блок", - "Webstream preview": "Предпросмотр веб-потока", - "You don't have permission to view the library.": "У вас нет разрешений для просмотра Библиотеки", - "Now": "С текущего момента", - "Click 'New' to create one now.": "Нажмите «Новый» чтобы создать новый", - "Click 'Upload' to add some now.": "Нажмите «Загрузить» чтобы добавить новый", - "Feed URL": "Ссылка на ленту", - "Import Date": "Дата импорта", - "Add New Podcast": "Добавить новый подкаст", - "Cannot schedule outside a show.\nTry creating a show first.": "Нельзя планировать аудио вне рамок Программы.\nПопробуйте сначала создать Программу", - "No files have been uploaded yet.": "Еще ни одного файла не загружено", - "On Air": "В прямом эфире", - "Off Air": "Не в эфире", - "Offline": "Офлайн", - "Nothing scheduled": "Ничего не запланировано", - "Click 'Add' to create one now.": "Нажмите «Добавить» чтобы создать новый", - "Please enter your username and password.": "Пожалуйста введите ваш логин и пароль.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом.", - "That username or email address could not be found.": "Такой пользователь или e-mail не найдены.", - "There was a problem with the username or email address you entered.": "Неправильно ввели логин или e-mail.", - "Wrong username or password provided. Please try again.": "Неверный логин или пароль. Пожалуйста, попробуйте еще раз.", - "You are viewing an older version of %s": "Вы просматриваете старые версии %s", - "You cannot add tracks to dynamic blocks.": "Вы не можете добавить треки в динамические блоки.", - "You don't have permission to delete selected %s(s).": "У вас нет разрешения на удаление выбранных %s(s).", - "You can only add tracks to smart block.": "Вы можете добавить треки только в Смарт-блок.", - "Untitled Playlist": "Плейлист без названия", - "Untitled Smart Block": "Смарт-блок без названия", - "Unknown Playlist": "Неизвестный Плейлист", - "Preferences updated.": "Настройки сохранены.", - "Stream Setting Updated.": "Настройки потока обновлены.", - "path should be specified": "необходимо указать путь", - "Problem with Liquidsoap...": "Проблема с Liquidsoap ...", - "Request method not accepted": "Метод запроса не принят", - "Rebroadcast of show %s from %s at %s": "Ретрансляция Программы %s от %s в %s", - "Select cursor": "Выбрать курсор", - "Remove cursor": "Удалить курсор", - "show does not exist": "Программы не существует", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Пользователь успешно добавлен!", - "User updated successfully!": "Пользователь успешно обновлен!", - "Settings updated successfully!": "Настройки успешно обновлены!", - "Untitled Webstream": "Веб-поток без названия", - "Webstream saved.": "Веб-поток сохранен.", - "Invalid form values.": "Недопустимые значения.", - "Invalid character entered": "Неверно введенный символ", - "Day must be specified": "Укажите день", - "Time must be specified": "Укажите время", - "Must wait at least 1 hour to rebroadcast": "Нужно подождать хотя бы один час для ретрансляции", - "Add Autoloading Playlist ?": "Добавить?", - "Select Playlist": "Выбрать Плейлист", - "Repeat Playlist Until Show is Full ?": "Повторять Плейлист, пока Программа не заполнится?", - "Use %s Authentication:": "Использовать %s Аутентификацию:", - "Use Custom Authentication:": "Использование пользовательской идентификации:", - "Custom Username": "Пользовательский логин", - "Custom Password": "Пользовательский пароль", - "Host:": "Хост:", - "Port:": "Порт:", - "Mount:": "Точка монтирования:", - "Username field cannot be empty.": "Поле «Логин» не может быть пустым.", - "Password field cannot be empty.": "Поле «Пароль» не может быть пустым.", - "Record from Line In?": "Запись с линейного входа?", - "Rebroadcast?": "Ретрансляция?", - "days": "дней", - "Link:": "Связать?", - "Repeat Type:": "Тип повтора:", - "weekly": "еженедельно", - "every 2 weeks": "каждые 2 недели", - "every 3 weeks": "каждые 3 недели", - "every 4 weeks": "каждые 4 недели", - "monthly": "ежемесячно", - "Select Days:": "Выберите дни недели:", - "Repeat By:": "Повторять:", - "day of the month": "день месяца", - "day of the week": "день недели", - "Date End:": "Дата окончания:", - "No End?": "Бесконечно?", - "End date must be after start date": "Дата окончания должна быть после даты начала", - "Please select a repeat day": "Укажите день повтора", - "Background Colour:": "Цвет фона:", - "Text Colour:": "Цвет текста:", - "Current Logo:": "Текущий логотип:", - "Show Logo:": "Логотип Программы:", - "Logo Preview:": "Предпросмотр логотипа:", - "Name:": "Имя:", - "Untitled Show": "Программа без названия", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Описание:", - "Instance Description:": "Описание экземпляра:", - "{msg} does not fit the time format 'HH:mm'": "{msg} не соответствует формату времени 'HH:mm'", - "Start Time:": "Время начала:", - "In the Future:": "В будущем:", - "End Time:": "Время завершения:", - "Duration:": "Длительность:", - "Timezone:": "Часовой пояс:", - "Repeats?": "Повторы?", - "Cannot create show in the past": "Нельзя создать Программу в прошлом", - "Cannot modify start date/time of the show that is already started": "Нельзя изменить дату/время начала Программы, которая уже началась", - "End date/time cannot be in the past": "Дата/время окончания не могут быть в прошлом", - "Cannot have duration < 0m": "Не может длиться меньше 0 мин.", - "Cannot have duration 00h 00m": "Не может длиться 00 ч 00 мин", - "Cannot have duration greater than 24h": "Программа не может длиться больше 24 часов", - "Cannot schedule overlapping shows": "Нельзя запланировать пересекающиеся Программы.", - "Search Users:": "Поиск пользователей:", - "DJs:": "Диджеи:", - "Type Name:": "Название типа", - "Code:": "Код:", - "Visibility:": "Видимость:", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Логин:", - "Password:": "Пароль:", - "Verify Password:": "Пароль еще раз:", - "Firstname:": "Имя:", - "Lastname:": "Фамилия:", - "Email:": "E-mail:", - "Mobile Phone:": "Номер телефона:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Категория:", - "Login name is not unique.": "Логин не является уникальным.", - "Delete All Tracks in Library": "Удалить все треки в Библиотеке", - "Date Start:": "Дата начала:", - "Title:": "Название:", - "Creator:": "Автор:", - "Album:": "Альбом:", - "Owner:": "Владелец:", - "Select a Type": "", - "Track Type:": "", - "Year:": "Год:", - "Label:": "Метка:", - "Composer:": "Композитор:", - "Conductor:": "Исполнитель:", - "Mood:": "Настроение:", - "BPM:": "BPM:", - "Copyright:": "Авторское право:", - "ISRC Number:": "ISRC номер:", - "Website:": "Сайт:", - "Language:": "Язык:", - "Publish...": "Опубликовать...", - "Start Time": "Время начала", - "End Time": "Время окончания", - "Interface Timezone:": "Часовой пояс:", - "Station Name": "Название Станции:", - "Station Description": "Описание Станции:", - "Station Logo:": "Логотип Станции:", - "Note: Anything larger than 600x600 will be resized.": "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены.", - "Default Crossfade Duration (s):": "Стандартная длительность сведения треков (сек):", - "Please enter a time in seconds (eg. 0.5)": "Пожалуйста введите время в секундах (например 0.5)", - "Default Fade In (s):": "Сведение по умолчанию (сек):", - "Default Fade Out (s):": "Затухание по умолчанию (сек):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "Вступительный автозагружаемый плейлист (Intro)", - "Outro Autoloading Playlist": "Завершающий автозагружаемый плейлист (Outro)", - "Overwrite Podcast Episode Metatags": "Перезапись мета-тегов эпизодов Подкастов:", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды.", - "Public LibreTime API": "Разрешить публичный API для LibreTime?", - "Required for embeddable schedule widget.": "Требуется для встраиваемого виджета-расписания.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт.", - "Default Language": "Язык по умолчанию:", - "Station Timezone": "Часовой пояс станции:", - "Week Starts On": "Неделя начинается с:", - "Display login button on your Radio Page?": "Отображать кнопку «Вход» на Странице Радио?", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "Авто-откл. внешнего потока:", - "Auto Switch On:": "Авто-вкл. внешнего потока:", - "Switch Transition Fade (s):": "Затухание при переключ. (сек):", - "Master Source Host:": "Хост для источника Master:", - "Master Source Port:": "Порт для источника Master:", - "Master Source Mount:": "Точка монтирования для источника Master:", - "Show Source Host:": "Хост для источника Show:", - "Show Source Port:": "Порт для источника Show:", - "Show Source Mount:": "Точка монтирования для источника Show:", - "Login": "Вход", - "Password": "Пароль", - "Confirm new password": "Подтвердить новый пароль", - "Password confirmation does not match your password.": "Подтверждение пароля не совпадает с вашим паролем.", - "Email": "Электронная почта", - "Username": "Логин", - "Reset password": "Сбросить пароль", - "Back": "Назад", - "Now Playing": "Сейчас играет", - "Select Stream:": "Выбрать поток:", - "Auto detect the most appropriate stream to use.": "Автоопределение наиболее приоритетного потока вещания.", - "Select a stream:": "Выберите поток:", - " - Mobile friendly": " - Совместимость с мобильными", - " - The player does not support Opus streams.": " - Проигрыватель не поддерживает вещание Opus .", - "Embeddable code:": "Встраиваемый код:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер.", - "Preview:": "Предпросмотр:", - "Feed Privacy": "Приватность ленты", - "Public": "Публичный", - "Private": "Частный", - "Station Language": "Язык радиостанции", - "Filter by Show": "Фильтровать по Программам", - "All My Shows:": "Все мои Программы:", - "My Shows": "Мои Программы", - "Select criteria": "Выбрать критерии", - "Bit Rate (Kbps)": "Битрейт (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Частота дискретизации (кГц)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "часов", - "minutes": "минут", - "items": "элементы", - "time remaining in show": "оставшееся время программы", - "Randomly": "Случайно", - "Newest": "Новые", - "Oldest": "Старые", - "Most recently played": "Давно проигранные", - "Least recently played": "Недавно проигранные", - "Select Track Type": "", - "Type:": "Тип:", - "Dynamic": "Динамический", - "Static": "Статический", - "Select track type": "", - "Allow Repeated Tracks:": "Разрешить повторение треков:", - "Allow last track to exceed time limit:": "Разрешить последнему треку превышать лимит времени:", - "Sort Tracks:": "Сортировка треков:", - "Limit to:": "Ограничить в:", - "Generate playlist content and save criteria": "Сгенерировать содержимое Плейлиста и сохранить критерии", - "Shuffle playlist content": "Перемешать содержимое Плейлиста", - "Shuffle": "Перемешать", - "Limit cannot be empty or smaller than 0": "Интервал не может быть пустым или менее 0", - "Limit cannot be more than 24 hrs": "Интервал не может быть более 24 часов", - "The value should be an integer": "Значение должно быть целым числом", - "500 is the max item limit value you can set": "500 является максимально допустимым значением", - "You must select Criteria and Modifier": "Вы должны выбрать Критерии и Модификаторы", - "'Length' should be in '00:00:00' format": "«Длительность» должна быть в формате '00:00:00'", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Значение должно быть числом", - "The value should be less then 2147483648": "Значение должно быть меньше, чем 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Значение должно быть менее %s символов", - "Value cannot be empty": "Значение не может быть пустым", - "Stream Label:": "Мета-данные потока:", - "Artist - Title": "Исполнитель - Название трека ", - "Show - Artist - Title": "Программа - Исполнитель - Название трека", - "Station name - Show name": "Название станции - Программа", - "Off Air Metadata": "Мета-данные при выкл. эфире", - "Enable Replay Gain": "Включить коэфф. усиления", - "Replay Gain Modifier": "Изменить коэфф. усиления", - "Hardware Audio Output:": "Аппаратный аудио выход", - "Output Type": "Тип выхода", - "Enabled:": "Активировать:", - "Mobile:": "Мобильный:", - "Stream Type:": "Тип потока:", - "Bit Rate:": "Битрейт:", - "Service Type:": "Тип сервиса:", - "Channels:": "Аудио каналы:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Точка монтирования", - "Name": "Название", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "Добавить мета-данные вашей станции в TuneIn?", - "Station ID:": "ID станции:", - "Partner Key:": "Ключ партнера:", - "Partner Id:": "Идентификатор партнера:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку.", - "Import Folder:": "Импорт папки:", - "Watched Folders:": "Просматриваемые папки:", - "Not a valid Directory": "Не является допустимой папкой", - "Value is required and can't be empty": "Поля не могут быть пустыми", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не является действительным адресом электронной почты в формате local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} не соответствует формату даты '%format%'", - "{msg} is less than %min% characters long": "{msg} имеет менее %min% символов", - "{msg} is more than %max% characters long": "{msg} имеет более %max% символов", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не входит в промежуток '%min%' и '%max%', включительно", - "Passwords do not match": "Пароли не совпадают", - "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", - "\n\nThank you,\nThe %s Team": "\n\nСпасибо,\nКоманда %s", - "%s Password Reset": "%s Сброс пароля", - "Cue in and cue out are null.": "Время начала и окончания звучания трека не заполнены.", - "Can't set cue out to be greater than file length.": "Время окончания звучания не может превышать длину трека.", - "Can't set cue in to be larger than cue out.": "Время начала звучания не может быть позже времени окончания.", - "Can't set cue out to be smaller than cue in.": "Время окончания звучания не может быть раньше времени начала.", - "Upload Time": "Время загрузки", - "None": "Ничего", - "Powered by %s": "При поддержке %s", - "Select Country": "Выберите страну", - "livestream": "живой аудио поток", - "Cannot move items out of linked shows": "Невозможно переместить элементы из связанных Программ", - "The schedule you're viewing is out of date! (sched mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)", - "The schedule you're viewing is out of date! (instance mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)", - "The schedule you're viewing is out of date!": "Расписание, которое вы просматриваете - устарело!", - "You are not allowed to schedule show %s.": "Вы не допущены к планированию Программы %s.", - "You cannot add files to recording shows.": "Вы не можете добавлять файлы в записываемую Программу.", - "The show %s is over and cannot be scheduled.": "Программа %s окончилась и не может быть добавлена в расписание.", - "The show %s has been previously updated!": "Программа %s была обновлена ранее!", - "Content in linked shows cannot be changed while on air!": "Контент в связанных Программах не может быть изменен пока Программа в эфире!", - "Cannot schedule a playlist that contains missing files.": "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы.", - "A selected File does not exist!": "Выбранный файл не существует!", - "Shows can have a max length of 24 hours.": "Максимальная продолжительность Программы - 24 часа.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Нельзя планировать пересекающиеся Программы.\nПримечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры.", - "Rebroadcast of %s from %s": "Ретрансляция %s из %s", - "Length needs to be greater than 0 minutes": "Длительность должна быть более 0 минут", - "Length should be of form \"00h 00m\"": "Длительность должна быть указана в формате '00h 00min'", - "URL should be of form \"https://example.org\"": "URL должен быть в формате \"http://домен\"", - "URL should be 512 characters or less": "Длина URL должна составлять не более 512 символов", - "No MIME type found for webstream.": "Для веб-потока не найдено MIME типа.", - "Webstream name cannot be empty": "Имя веб-потока должно быть заполнено", - "Could not parse XSPF playlist": "Не удалось анализировать XSPF Плейлист", - "Could not parse PLS playlist": "Не удалось анализировать PLS Плейлист", - "Could not parse M3U playlist": "Не удалось анализировать M3U Плейлист", - "Invalid webstream - This appears to be a file download.": "Неверный веб-поток - скорее всего это загрузка файла.", - "Unrecognized stream type: %s": "Нераспознанный тип потока: %s", - "Record file doesn't exist": "Записанный файл не существует", - "View Recorded File Metadata": "Просмотр мета-данных записанного файла", - "Schedule Tracks": "Запланировать Треки", - "Clear Show": "Очистить Программу", - "Cancel Show": "Отменить Программу", - "Edit Instance": "Редактировать этот Экземпляр", - "Edit Show": "Редактировать Программу", - "Delete Instance": "Удалить этот Экземпляр", - "Delete Instance and All Following": "Удалить этот Экземпляр и все связанные", - "Permission denied": "Доступ запрещен", - "Can't drag and drop repeating shows": "Невозможно перетащить повторяющиеся Программы", - "Can't move a past show": "Невозможно переместить завершившуюся Программу", - "Can't move show into past": "Невозможно переместить Программу в прошлое", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции.", - "Show was deleted because recorded show does not exist!": "Программа была удалена, потому что записанной Программы не существует!", - "Must wait 1 hour to rebroadcast.": "Подождите один час до ретрансляции.", - "Track": "Трек", - "Played": "Проиграно", - "Auto-generated smartblock for podcast": "Автоматически сгенерированный Смарт-блок для подкаста", - "Webstreams": "Веб-потоки" + "The year %s must be within the range of 1753 - 9999": "%s год должен быть в пределах 1753 - 9999", + "%s-%s-%s is not a valid date": "%s - %s - %s недопустимая дата", + "%s:%s:%s is not a valid time": "%s : %s : %s недопустимое время", + "English": "Английский", + "Afar": "Афар", + "Abkhazian": "Абхазский", + "Afrikaans": "Африкаанс", + "Amharic": "Амхарский", + "Arabic": "Арабский", + "Assamese": "Ассамский", + "Aymara": "Аймара", + "Azerbaijani": "Азербаджанский", + "Bashkir": "Башкирский", + "Belarusian": "Белорусский", + "Bulgarian": "Болгарский", + "Bihari": "Бихари", + "Bislama": "Бислама", + "Bengali/Bangla": "Бенгали", + "Tibetan": "Тибетский", + "Breton": "Бретонский", + "Catalan": "Каталанский", + "Corsican": "Корсиканский", + "Czech": "Чешский", + "Welsh": "Вэльский", + "Danish": "Данский", + "German": "Немецкий", + "Bhutani": "Бутан", + "Greek": "Греческий", + "Esperanto": "Эсперанто", + "Spanish": "Испанский", + "Estonian": "Эстонский", + "Basque": "Басков", + "Persian": "Персидский", + "Finnish": "Финский", + "Fiji": "Фиджи", + "Faeroese": "Фарси", + "French": "Французский", + "Frisian": "Фризский", + "Irish": "Ирландский", + "Scots/Gaelic": "Шотландский", + "Galician": "Галицийский", + "Guarani": "Гуананский", + "Gujarati": "Гуджарати", + "Hausa": "Науса", + "Hindi": "Хинди", + "Croatian": "Хорватский", + "Hungarian": "Венгерский", + "Armenian": "Армянский", + "Interlingua": "Интернациональный", + "Interlingue": "Интерлинг", + "Inupiak": "Инупиак", + "Indonesian": "Индонезийский", + "Icelandic": "Исландский", + "Italian": "Итальянский", + "Hebrew": "Иврит", + "Japanese": "Японский", + "Yiddish": "Иудейский", + "Javanese": "Яванский", + "Georgian": "Грузинский", + "Kazakh": "Казахский", + "Greenlandic": "Гренландский", + "Cambodian": "Камбоджийский", + "Kannada": "Каннадский", + "Korean": "Корейский", + "Kashmiri": "Кашмирский", + "Kurdish": "Курдский", + "Kirghiz": "Киргизский", + "Latin": "Латынь", + "Lingala": "Лингала", + "Laothian": "Лаосский", + "Lithuanian": "Литовский", + "Latvian/Lettish": "Латвийский", + "Malagasy": "Малайзийский", + "Maori": "Маори", + "Macedonian": "Македонский", + "Malayalam": "Малаямский", + "Mongolian": "Монгольский", + "Moldavian": "Молдавский", + "Marathi": "Маратхи", + "Malay": "Малайзийский", + "Maltese": "Мальтийский", + "Burmese": "Бирманский", + "Nauru": "Науру", + "Nepali": "Непальский", + "Dutch": "Немецкий", + "Norwegian": "Норвежский", + "Occitan": "Окситанский", + "(Afan)/Oromoor/Oriya": "(Афан)/Оромур/Ория", + "Punjabi": "Панджаби Эм Си", + "Polish": "Польский", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальский", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рэето-романс", + "Kirundi": "Кирунди", + "Romanian": "Румынский", + "Russian": "Русский", + "Kinyarwanda": "Киньяруанда", + "Sanskrit": "Санскрит", + "Sindhi": "Синди", + "Sangro": "Сангро", + "Serbo-Croatian": "Сербский", + "Singhalese": "Синигальский", + "Slovak": "Словацкий", + "Slovenian": "Славянский", + "Samoan": "Самоанский", + "Shona": "Шона", + "Somali": "Сомалийский", + "Albanian": "Албанский", + "Serbian": "Сербский", + "Siswati": "Сисвати", + "Sesotho": "Сесото", + "Sundanese": "Сунданский", + "Swedish": "Шведский", + "Swahili": "Суахили", + "Tamil": "Тамильский", + "Tegulu": "Телугу", + "Tajik": "Таджикский", + "Thai": "Тайский", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменский", + "Tagalog": "Тагальский", + "Setswana": "Сетсвана", + "Tonga": "Тонга", + "Turkish": "Турецкий", + "Tsonga": "Тсонга", + "Tatar": "Татарский", + "Twi": "Тви", + "Ukrainian": "Украинский", + "Urdu": "Урду", + "Uzbek": "Узбекский", + "Vietnamese": "Въетнамский", + "Volapuk": "Волапукский", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубский", + "Chinese": "Китайский", + "Zulu": "Зулу", + "Use station default": "Время станции по умолчанию", + "Upload some tracks below to add them to your library!": "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s.", + "Click the 'New Show' button and fill out the required fields.": "Нажмите на кнопку «Новая Программа» и заполните необходимые поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Выберите следующую Программу и нажмите «Запланировать Треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s.", + "LibreTime media analyzer service": "Служба медиа анализатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Проверьте, что служба libretime-analyzer правильно установлена в ", + " and ensure that it's running with ": " а также убедитесь, что она запущена ", + "If not, try ": "Если нет - попробуйте запустить", + "LibreTime playout service": "Служба воспроизведения LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Проверьте, что служба libretime-playout правильно установлена в ", + "LibreTime liquidsoap service": "Служба Liquidsoap LibreTime", + "Check that the libretime-liquidsoap service is installed correctly in ": "Проверьте, что служба libretime-liquidsoap правильно установлена в ", + "LibreTime Celery Task service": "Служба Celery Task LibreTime", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "Страница Радио", + "Calendar": "Календарь", + "Widgets": "Виджеты", + "Player": "Плеер", + "Weekly Schedule": "Расписание программ", + "Settings": "Настройки", + "General": "Основные", + "My Profile": "Мой профиль", + "Users": "Пользователи", + "Track Types": "Типы треков", + "Streams": "Аудио потоки", + "Status": "Статус системы", + "Analytics": "Аналитика", + "Playout History": "История воспроизведения треков", + "History Templates": "Шаблоны истории", + "Listener Stats": "Статистика по слушателям", + "Show Listener Stats": "Статистика прослушиваний", + "Help": "Справка", + "Getting Started": "С чего начать", + "User Manual": "Руководство пользователя", + "Get Help Online": "Получить справку онлайн", + "Contribute to LibreTime": "", + "What's New?": "Что нового?", + "You are not allowed to access this resource.": "Вы не имеете доступа к этому ресурсу.", + "You are not allowed to access this resource. ": "Вы не имеете доступа к этому ресурсу. ", + "File does not exist in %s": "Файл не существует в %s", + "Bad request. no 'mode' parameter passed.": "Неверный запрос. Параметр «режим» не прошел.", + "Bad request. 'mode' parameter is invalid": "Неверный запрос. Параметр «режим» является недопустимым", + "You don't have permission to disconnect source.": "У вас нет прав отсоединить источник.", + "There is no source connected to this input.": "Нет источника, подключенного к этому входу.", + "You don't have permission to switch source.": "У вас нет прав для переключения источника.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний плеер вам нужно:\n 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:\n Включить Публичный API для LibreTime в разделе Настройки -> Основные", + "Page not found.": "Страница не найдена.", + "The requested action is not supported.": "Запрашиваемое действие не поддерживается.", + "You do not have permission to access this resource.": "У вас нет доступа к данному ресурсу.", + "An internal application error has occurred.": "Произошла внутренняя ошибка.", + "%s Podcast": "%s Подкаст", + "No tracks have been published yet.": "Ни одного трека пока не опубликовано.", + "%s not found": "%s не найден", + "Something went wrong.": "Что-то пошло не так.", + "Preview": "Прослушать", + "Add to Playlist": "Добавить в Плейлист", + "Add to Smart Block": "Добавить в Смарт-блок", + "Delete": "Удалить", + "Edit...": "Редактировать...", + "Download": "Загрузка", + "Duplicate Playlist": "Дублировать Плейлист", + "Duplicate Smartblock": "Дублировать Смарт-блок", + "No action available": "Нет доступных действий", + "You don't have permission to delete selected items.": "У вас нет разрешения на удаление выбранных объектов.", + "Could not delete file because it is scheduled in the future.": "Нельзя удалить запланированный файл.", + "Could not delete file(s).": "Нельзя удалить файл(ы)", + "Copy of %s": "Копия %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки.", + "Audio Player": "Аудио плеер", + "Something went wrong!": "Что-то пошло не так!", + "Recording:": "Запись:", + "Master Stream": "Master-Steam", + "Live Stream": "Live Stream", + "Nothing Scheduled": "Ничего нет", + "Current Show:": "Текущая Программа:", + "Current": "Играет", + "You are running the latest version": "Вы используете последнюю версию", + "New version available: ": "Доступна новая версия: ", + "You have a pre-release version of LibreTime intalled.": "У вас установлена предварительная версия LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступен патч обновлений для текущей версии LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступно обновление функций для текущей версии LibreTime.", + "A major update for your LibreTime installation is available.": "Доступно важное обновление для текущей версии LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее.", + "Add to current playlist": "Добавить в текущий Плейлист", + "Add to current smart block": "Добавить в текущий Смарт-блок", + "Adding 1 Item": "Добавление одного элемента", + "Adding %s Items": "Добавление %s элементов", + "You can only add tracks to smart blocks.": "Вы можете добавить только треки в Смарт-блоки.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты.", + "Please select a cursor position on timeline.": "Переместите курсор по временной шкале.", + "You haven't added any tracks": "Вы не добавили ни одного трека", + "You haven't added any playlists": "Вы не добавили ни одного Плейлиста", + "You haven't added any podcasts": "У вас не добавлено ни одного подкаста", + "You haven't added any smart blocks": "Вы не добавили ни одного Смарт-блока", + "You haven't added any webstreams": "Вы не добавили ни одного веб-потока", + "Learn about tracks": "Узнать больше о треках", + "Learn about playlists": "Узнать больше о Плейлистах", + "Learn about podcasts": "Узнать больше о Подкастах", + "Learn about smart blocks": "Узнать больше об Смарт-блоках", + "Learn about webstreams": "Узнать больше о веб-потоках", + "Click 'New' to create one.": "Выберите «Новый» для создания.", + "Add": "Добавить", + "New": "Новый", + "Edit": "Редактировать", + "Add to Schedule": "Добавить в расписание", + "Add to next show": "Добавить к следующему шоу", + "Add to current show": "Добавить к текущему шоу", + "Add after selected items": "", + "Publish": "Опубликовать", + "Remove": "Удалить", + "Edit Metadata": "Править мета-данные", + "Add to selected show": "Добавить в выбранную Программу", + "Select": "Выбрать", + "Select this page": "Выбрать текущую страницу", + "Deselect this page": "Отменить выбор текущей страницы", + "Deselect all": "Отменить все выделения", + "Are you sure you want to delete the selected item(s)?": "Вы действительно хотите удалить выбранные элементы?", + "Scheduled": "Запланирован", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Название", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Битрейт", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Дирижер", + "Copyright": "Копирайт", + "Encoded By": "Закодировано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Метка", + "Language": "Язык", + "Last Modified": "Изменен", + "Last Played": "Последнее проигрывание", + "Length": "Длительность", + "Mime": "Mime", + "Mood": "Настроение", + "Owner": "Владелец", + "Replay Gain": "Replay Gain", + "Sample Rate": "Sample Rate", + "Track Number": "Номер трека", + "Uploaded": "Загружено", + "Website": "Вебсайт", + "Year": "Год", + "Loading...": "Загрузка...", + "All": "Все", + "Files": "Файлы", + "Playlists": "Плейлисты", + "Smart Blocks": "Смарт-блоки", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Неизвестный тип: ", + "Are you sure you want to delete the selected item?": "Вы действительно хотите удалить выбранный элемент?", + "Uploading in progress...": "Загружается ...", + "Retrieving data from the server...": "Получение данных с сервера ...", + "Import": "Импорт", + "Imported?": "Импортировано?", + "View": "Посмотреть", + "Error code: ": "Код ошибки: ", + "Error msg: ": "Сообщение об ошибке: ", + "Input must be a positive number": "Ввод должен быть положительным числом", + "Input must be a number": "Ввод должен быть числом", + "Input must be in the format: yyyy-mm-dd": "Ввод должен быть в формате: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Ввод должен быть в формате: чч:мм:сс", + "My Podcast": "Мой Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?", + "Open Media Builder": "Открыть медиа-построитель", + "please put in a time '00:00:00 (.0)'": "пожалуйста, установите время '00:00:00.0'", + "Please enter a valid time in seconds. Eg. 0.5": "Пожалуйста, укажите допустимое время в секундах. Например: 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не поддерживает воспроизведения данного типа файлов: ", + "Dynamic block is not previewable": "Динамический Блок не подлежит предпросмотру", + "Limit to: ": "Ограничить до: ", + "Playlist saved": "Плейлист сохранен", + "Playlist shuffled": "Плейлист перемешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра.", + "Listener Count on %s: %s": "Количество слушателей %s : %s", + "Remind me in 1 week": "Напомнить мне через одну неделю", + "Remind me never": "Никогда не напоминать", + "Yes, help Airtime": "Да, помочь LibreTime", + "Image must be one of jpg, jpeg, png, or gif": "Изображение должно быть в формате: jpg, jpeg, png или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке.", + "Smart block shuffled": "Смарт-блок перемешан", + "Smart block generated and criteria saved": "Смарт-блок создан и критерии сохранены", + "Smart block saved": "Смарт-блок сохранен", + "Processing...": "Подождите...", + "Select modifier": "Выберите модификатор", + "contains": "содержит", + "does not contain": "не содержит", + "is": "является", + "is not": "не является", + "starts with": "начинается с", + "ends with": "заканчивается", + "is greater than": "больше, чем", + "is less than": "меньше, чем", + "is in the range": "в диапазоне", + "Generate": "Сгенерировать", + "Choose Storage Folder": "Выберите папку хранения", + "Choose Folder to Watch": "Выберите папку для просмотра", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Вы уверены, что хотите изменить папку хранения? \n Файлы из вашей Библиотеки будут удалены!", + "Manage Media Folders": "Управление папками медиа-файлов", + "Are you sure you want to remove the watched folder?": "Вы уверены, что хотите удалить просматриваемую папку?", + "This path is currently not accessible.": "Этот путь в настоящий момент недоступен.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены.", + "Connected to the streaming server": "Подключено к потоковому серверу", + "The stream is disabled": "Поток отключен", + "Getting information from the server...": "Получение информации с сервера ...", + "Can not connect to the streaming server": "Не удалось подключиться к потоковому серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Если %s находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост/порт/точку монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151.", + "For more details, please read the %s%s Manual%s": "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source».", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях.", + "Warning: You cannot change this field while the show is currently playing": "Внимание: Вы не можете изменить данное поле, пока Программа в эфире", + "No result found": "Не найдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться.", + "Specify custom authentication which will work only for this show.": "Укажите пользователя, который будет работать только в этой Программе.", + "The show instance doesn't exist anymore!": "Программы больше не существует!", + "Warning: Shows cannot be re-linked": "Внимание: Программы не могут быть пересвязаны", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса.", + "Show": "Программа", + "Show is empty": "Пустая Программа", + "1m": "1 мин", + "5m": "5 мин", + "10m": "10 мин", + "15m": "15 мин", + "30m": "30 мин", + "60m": "60 мин", + "Retreiving data from the server...": "Получение данных с сервера ...", + "This show has no scheduled content.": "В этой Программе нет запланированного контента.", + "This show is not completely filled with content.": "Данная Программа не до конца заполнена контентом.", + "January": "Январь", + "February": "Февраль", + "March": "Март", + "April": "Апрель", + "May": "Май", + "June": "Июнь", + "July": "Июль", + "August": "Август", + "September": "Сентябрь", + "October": "Октябрь", + "November": "Ноябрь", + "December": "Декабрь", + "Jan": "Янв", + "Feb": "Фев", + "Mar": "Март", + "Apr": "Апр", + "Jun": "Июн", + "Jul": "Июл", + "Aug": "Авг", + "Sep": "Сент", + "Oct": "Окт", + "Nov": "Нояб", + "Dec": "Дек", + "Today": "Сегодня", + "Day": "День", + "Week": "Неделя", + "Month": "Месяц", + "Sunday": "Воскресенье", + "Monday": "Понедельник", + "Tuesday": "Вторник", + "Wednesday": "Среда", + "Thursday": "Четверг", + "Friday": "Пятница", + "Saturday": "Суббота", + "Sun": "Вс", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой.", + "Cancel Current Show?": "Отменить эту Программу?", + "Stop recording current show?": "Остановить запись текущей Программы?", + "Ok": "Оk", + "Contents of Show": "Содержимое Программы", + "Remove all content?": "Удалить все содержимое?", + "Delete selected item(s)?": "Удалить выбранные элементы?", + "Start": "Начало", + "End": "Конец", + "Duration": "Длительность", + "Filtering out ": "Фильтрация ", + " of ": " из ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "Нет Программ, запланированных в указанный период времени.", + "Cue In": "Начало звучания", + "Cue Out": "Окончание звучания", + "Fade In": "Сведение", + "Fade Out": "Затухание", + "Show Empty": "Программа пуста", + "Recording From Line In": "Запись с линейного входа", + "Track preview": "Предпросмотр трека", + "Cannot schedule outside a show.": "Нельзя планировать вне рамок Программы.", + "Moving 1 Item": "Перемещение одного элемента", + "Moving %s Items": "Перемещение %s элементов", + "Save": "Сохранить", + "Cancel": "Отменить", + "Fade Editor": "Редактор затухания", + "Cue Editor": "Редактор начала трека", + "Waveform features are available in a browser supporting the Web Audio API": "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API", + "Select all": "Выбрать все", + "Select none": "Снять выделения", + "Trim overbooked shows": "Обрезать пересекающиеся Программы", + "Remove selected scheduled items": "Удалить выбранные запланированные элементы", + "Jump to the current playing track": "Перейти к текущей проигрываемой дорожке", + "Jump to Current": "Перейти к текущему треку", + "Cancel current show": "Отмена текущей Программы", + "Open library to add or remove content": "Открыть Библиотеку, чтобы добавить или удалить содержимое", + "Add / Remove Content": "Добавить/удалить содержимое", + "in use": "используется", + "Disk": "Диск", + "Look in": "Посмотреть", + "Open": "Открыть", + "Admin": "Админ", + "DJ": "Диджей", + "Program Manager": "Менеджер", + "Guest": "Гость", + "Guests can do the following:": "Гости могут следующее:", + "View schedule": "Просматривать расписание", + "View show content": "Просматривать содержимое программы", + "DJs can do the following:": "DJ может:", + "Manage assigned show content": "- Управлять контентом назначенной ему Программы;", + "Import media files": "Импортировать медиа-файлы", + "Create playlists, smart blocks, and webstreams": "Создавать плейлисты, смарт-блоки и вебстримы", + "Manage their own library content": "Управлять содержимым собственной библиотеки", + "Program Managers can do the following:": "Менеджеры Программ могут следующее:", + "View and manage show content": "Просматривать и управлять содержимым программы", + "Schedule shows": "Планировать программы", + "Manage all library content": "Управлять содержимым всех библиотек", + "Admins can do the following:": "Администраторы могут:", + "Manage preferences": "Управлять настройками", + "Manage users": "Управлять пользователями", + "Manage watched folders": "Управлять просматриваемыми папками", + "Send support feedback": "Отправлять отзыв поддержке", + "View system status": "Просматривать статус системы", + "Access playout history": "Получить доступ к истории воспроизведений", + "View listener stats": "Видеть статистику слушателей", + "Show / hide columns": "Показать/скрыть столбцы", + "Columns": "Столбцы", + "From {from} to {to}": "С {from} до {to}", + "kbps": "кбит/с", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "чч:мм:сс.t", + "kHz": "кГц", + "Su": "Вс", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрыть", + "Hour": "Часы", + "Minute": "Минуты", + "Done": "Готово", + "Select files": "Выбрать файлы", + "Add files to the upload queue and click the start button.": "Добавьте файлы в очередь загрузки и нажмите кнопку Старт.", + "Filename": "", + "Size": "", + "Add Files": "Добавить файлы", + "Stop Upload": "Остановить загрузку", + "Start upload": "Начать загрузку", + "Start Upload": "", + "Add files": "Добавить файлы", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Загружено %d/%d файлов", + "N/A": "н/д", + "Drag files here.": "Перетащите файлы сюда.", + "File extension error.": "Неверное расширение файла.", + "File size error.": "Неверный размер файла.", + "File count error.": "Ошибка подсчета файла.", + "Init error.": "Ошибка инициализации.", + "HTTP Error.": "Ошибка HTTP.", + "Security error.": "Ошибка безопасности.", + "Generic error.": "Общая ошибка.", + "IO error.": "Ошибка записи/чтения.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлов в очереди", + "File: %f, size: %s, max file size: %m": "Файл: %f, размер: %s, максимальный размер файла: %m", + "Upload URL might be wrong or doesn't exist": "URL загрузки указан неверно или не существует", + "Error: File too large: ": "Ошибка: Файл слишком большой: ", + "Error: Invalid file extension: ": "Ошибка: Неверное расширение файла: ", + "Set Default": "Установить по умолчанию", + "Create Entry": "Создать", + "Edit History Record": "Редактировать историю", + "No Show": "Нет программы", + "Copied %s row%s to the clipboard": "Скопировано %s строк %s в буфер обмена", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения.", + "New Show": "Новая Программа", + "New Log Entry": "Новая запись в журнале", + "No data available in table": "В таблице нет данных", + "(filtered from _MAX_ total entries)": "(отфильтровано из _MAX_ записей)", + "First": "Первая", + "Last": "Последняя", + "Next": "Следующая", + "Previous": "Предыдущая", + "Search:": "Поиск:", + "No matching records found": "Записи отсутствуют.", + "Drag tracks here from the library": "Перетащите треки сюда из Библиотеки", + "No tracks were played during the selected time period.": "В течение выбранного периода времени треки не воспроизводились.", + "Unpublish": "Снять с публикации", + "No matching results found.": "Результаты не найдены.", + "Author": "Автор", + "Description": "Описание", + "Link": "Ссылка", + "Publication Date": "Дата публикации", + "Import Status": "Статус загрузки", + "Actions": "Действия", + "Delete from Library": "Удалить из Библиотеки", + "Successfully imported": "Успешно загружено", + "Show _MENU_": "Показать _MENU_", + "Show _MENU_ entries": "Показать _MENU_ записей", + "Showing _START_ to _END_ of _TOTAL_ entries": "Записи с _START_ до _END_ из _TOTAL_ записей", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано с _START_ по _END_ из _TOTAL_ треков", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано с _START_ по _END_ из _TOTAL_ типов трека", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано с _START_ по _END_ из _TOTAL_ пользователей", + "Showing 0 to 0 of 0 entries": "Записи с 0 до 0 из 0 записей", + "Showing 0 to 0 of 0 tracks": "Показано с 0 по 0 из 0 треков", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "Вы уверены что хотите удалить этот тип трека?", + "No track types were found.": "Типы треков не были найдены.", + "No track types found": "Типы треков не найдены", + "No matching track types found": "Не найдено подходящих типов треков", + "Enabled": "Включено", + "Disabled": "Отключено", + "Cancel upload": "Отменить загрузку", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "Настройки подкаста сохранены", + "Are you sure you want to delete this user?": "Вы уверены что хотите удалить этого пользователя?", + "Can't delete yourself!": "Вы не можете удалить себя!", + "You haven't published any episodes!": "У вас нет опубликованных эпизодов!", + "You can publish your uploaded content from the 'Tracks' view.": "Вы можете опубликовать ваш загруженный контент из панели «Треки».", + "Try it now": "Попробовать сейчас", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": " Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности. Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок. ", + "Playlist preview": "Предпросмотр плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Предпросмотр веб-потока", + "You don't have permission to view the library.": "У вас нет разрешений для просмотра Библиотеки", + "Now": "С текущего момента", + "Click 'New' to create one now.": "Нажмите «Новый» чтобы создать новый", + "Click 'Upload' to add some now.": "Нажмите «Загрузить» чтобы добавить новый", + "Feed URL": "Ссылка на ленту", + "Import Date": "Дата импорта", + "Add New Podcast": "Добавить новый подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Нельзя планировать аудио вне рамок Программы.\nПопробуйте сначала создать Программу", + "No files have been uploaded yet.": "Еще ни одного файла не загружено", + "On Air": "В прямом эфире", + "Off Air": "Не в эфире", + "Offline": "Офлайн", + "Nothing scheduled": "Ничего не запланировано", + "Click 'Add' to create one now.": "Нажмите «Добавить» чтобы создать новый", + "Please enter your username and password.": "Пожалуйста введите ваш логин и пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом.", + "That username or email address could not be found.": "Такой пользователь или e-mail не найдены.", + "There was a problem with the username or email address you entered.": "Неправильно ввели логин или e-mail.", + "Wrong username or password provided. Please try again.": "Неверный логин или пароль. Пожалуйста, попробуйте еще раз.", + "You are viewing an older version of %s": "Вы просматриваете старые версии %s", + "You cannot add tracks to dynamic blocks.": "Вы не можете добавить треки в динамические блоки.", + "You don't have permission to delete selected %s(s).": "У вас нет разрешения на удаление выбранных %s(s).", + "You can only add tracks to smart block.": "Вы можете добавить треки только в Смарт-блок.", + "Untitled Playlist": "Плейлист без названия", + "Untitled Smart Block": "Смарт-блок без названия", + "Unknown Playlist": "Неизвестный Плейлист", + "Preferences updated.": "Настройки сохранены.", + "Stream Setting Updated.": "Настройки потока обновлены.", + "path should be specified": "необходимо указать путь", + "Problem with Liquidsoap...": "Проблема с Liquidsoap ...", + "Request method not accepted": "Метод запроса не принят", + "Rebroadcast of show %s from %s at %s": "Ретрансляция Программы %s от %s в %s", + "Select cursor": "Выбрать курсор", + "Remove cursor": "Удалить курсор", + "show does not exist": "Программы не существует", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Пользователь успешно добавлен!", + "User updated successfully!": "Пользователь успешно обновлен!", + "Settings updated successfully!": "Настройки успешно обновлены!", + "Untitled Webstream": "Веб-поток без названия", + "Webstream saved.": "Веб-поток сохранен.", + "Invalid form values.": "Недопустимые значения.", + "Invalid character entered": "Неверно введенный символ", + "Day must be specified": "Укажите день", + "Time must be specified": "Укажите время", + "Must wait at least 1 hour to rebroadcast": "Нужно подождать хотя бы один час для ретрансляции", + "Add Autoloading Playlist ?": "Добавить?", + "Select Playlist": "Выбрать Плейлист", + "Repeat Playlist Until Show is Full ?": "Повторять Плейлист, пока Программа не заполнится?", + "Use %s Authentication:": "Использовать %s Аутентификацию:", + "Use Custom Authentication:": "Использование пользовательской идентификации:", + "Custom Username": "Пользовательский логин", + "Custom Password": "Пользовательский пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтирования:", + "Username field cannot be empty.": "Поле «Логин» не может быть пустым.", + "Password field cannot be empty.": "Поле «Пароль» не может быть пустым.", + "Record from Line In?": "Запись с линейного входа?", + "Rebroadcast?": "Ретрансляция?", + "days": "дней", + "Link:": "Связать?", + "Repeat Type:": "Тип повтора:", + "weekly": "еженедельно", + "every 2 weeks": "каждые 2 недели", + "every 3 weeks": "каждые 3 недели", + "every 4 weeks": "каждые 4 недели", + "monthly": "ежемесячно", + "Select Days:": "Выберите дни недели:", + "Repeat By:": "Повторять:", + "day of the month": "день месяца", + "day of the week": "день недели", + "Date End:": "Дата окончания:", + "No End?": "Бесконечно?", + "End date must be after start date": "Дата окончания должна быть после даты начала", + "Please select a repeat day": "Укажите день повтора", + "Background Colour:": "Цвет фона:", + "Text Colour:": "Цвет текста:", + "Current Logo:": "Текущий логотип:", + "Show Logo:": "Логотип Программы:", + "Logo Preview:": "Предпросмотр логотипа:", + "Name:": "Имя:", + "Untitled Show": "Программа без названия", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Описание:", + "Instance Description:": "Описание экземпляра:", + "{msg} does not fit the time format 'HH:mm'": "{msg} не соответствует формату времени 'HH:mm'", + "Start Time:": "Время начала:", + "In the Future:": "В будущем:", + "End Time:": "Время завершения:", + "Duration:": "Длительность:", + "Timezone:": "Часовой пояс:", + "Repeats?": "Повторы?", + "Cannot create show in the past": "Нельзя создать Программу в прошлом", + "Cannot modify start date/time of the show that is already started": "Нельзя изменить дату/время начала Программы, которая уже началась", + "End date/time cannot be in the past": "Дата/время окончания не могут быть в прошлом", + "Cannot have duration < 0m": "Не может длиться меньше 0 мин.", + "Cannot have duration 00h 00m": "Не может длиться 00 ч 00 мин", + "Cannot have duration greater than 24h": "Программа не может длиться больше 24 часов", + "Cannot schedule overlapping shows": "Нельзя запланировать пересекающиеся Программы.", + "Search Users:": "Поиск пользователей:", + "DJs:": "Диджеи:", + "Type Name:": "Название типа", + "Code:": "Код:", + "Visibility:": "Видимость:", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Логин:", + "Password:": "Пароль:", + "Verify Password:": "Пароль еще раз:", + "Firstname:": "Имя:", + "Lastname:": "Фамилия:", + "Email:": "E-mail:", + "Mobile Phone:": "Номер телефона:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Категория:", + "Login name is not unique.": "Логин не является уникальным.", + "Delete All Tracks in Library": "Удалить все треки в Библиотеке", + "Date Start:": "Дата начала:", + "Title:": "Название:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Владелец:", + "Select a Type": "", + "Track Type:": "", + "Year:": "Год:", + "Label:": "Метка:", + "Composer:": "Композитор:", + "Conductor:": "Исполнитель:", + "Mood:": "Настроение:", + "BPM:": "BPM:", + "Copyright:": "Авторское право:", + "ISRC Number:": "ISRC номер:", + "Website:": "Сайт:", + "Language:": "Язык:", + "Publish...": "Опубликовать...", + "Start Time": "Время начала", + "End Time": "Время окончания", + "Interface Timezone:": "Часовой пояс:", + "Station Name": "Название Станции:", + "Station Description": "Описание Станции:", + "Station Logo:": "Логотип Станции:", + "Note: Anything larger than 600x600 will be resized.": "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены.", + "Default Crossfade Duration (s):": "Стандартная длительность сведения треков (сек):", + "Please enter a time in seconds (eg. 0.5)": "Пожалуйста введите время в секундах (например 0.5)", + "Default Fade In (s):": "Сведение по умолчанию (сек):", + "Default Fade Out (s):": "Затухание по умолчанию (сек):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "Вступительный автозагружаемый плейлист (Intro)", + "Outro Autoloading Playlist": "Завершающий автозагружаемый плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезапись мета-тегов эпизодов Подкастов:", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды.", + "Public LibreTime API": "Разрешить публичный API для LibreTime?", + "Required for embeddable schedule widget.": "Требуется для встраиваемого виджета-расписания.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт.", + "Default Language": "Язык по умолчанию:", + "Station Timezone": "Часовой пояс станции:", + "Week Starts On": "Неделя начинается с:", + "Display login button on your Radio Page?": "Отображать кнопку «Вход» на Странице Радио?", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "Авто-откл. внешнего потока:", + "Auto Switch On:": "Авто-вкл. внешнего потока:", + "Switch Transition Fade (s):": "Затухание при переключ. (сек):", + "Master Source Host:": "Хост для источника Master:", + "Master Source Port:": "Порт для источника Master:", + "Master Source Mount:": "Точка монтирования для источника Master:", + "Show Source Host:": "Хост для источника Show:", + "Show Source Port:": "Порт для источника Show:", + "Show Source Mount:": "Точка монтирования для источника Show:", + "Login": "Вход", + "Password": "Пароль", + "Confirm new password": "Подтвердить новый пароль", + "Password confirmation does not match your password.": "Подтверждение пароля не совпадает с вашим паролем.", + "Email": "Электронная почта", + "Username": "Логин", + "Reset password": "Сбросить пароль", + "Back": "Назад", + "Now Playing": "Сейчас играет", + "Select Stream:": "Выбрать поток:", + "Auto detect the most appropriate stream to use.": "Автоопределение наиболее приоритетного потока вещания.", + "Select a stream:": "Выберите поток:", + " - Mobile friendly": " - Совместимость с мобильными", + " - The player does not support Opus streams.": " - Проигрыватель не поддерживает вещание Opus .", + "Embeddable code:": "Встраиваемый код:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер.", + "Preview:": "Предпросмотр:", + "Feed Privacy": "Приватность ленты", + "Public": "Публичный", + "Private": "Частный", + "Station Language": "Язык радиостанции", + "Filter by Show": "Фильтровать по Программам", + "All My Shows:": "Все мои Программы:", + "My Shows": "Мои Программы", + "Select criteria": "Выбрать критерии", + "Bit Rate (Kbps)": "Битрейт (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Частота дискретизации (кГц)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "часов", + "minutes": "минут", + "items": "элементы", + "time remaining in show": "оставшееся время программы", + "Randomly": "Случайно", + "Newest": "Новые", + "Oldest": "Старые", + "Most recently played": "Давно проигранные", + "Least recently played": "Недавно проигранные", + "Select Track Type": "", + "Type:": "Тип:", + "Dynamic": "Динамический", + "Static": "Статический", + "Select track type": "", + "Allow Repeated Tracks:": "Разрешить повторение треков:", + "Allow last track to exceed time limit:": "Разрешить последнему треку превышать лимит времени:", + "Sort Tracks:": "Сортировка треков:", + "Limit to:": "Ограничить в:", + "Generate playlist content and save criteria": "Сгенерировать содержимое Плейлиста и сохранить критерии", + "Shuffle playlist content": "Перемешать содержимое Плейлиста", + "Shuffle": "Перемешать", + "Limit cannot be empty or smaller than 0": "Интервал не может быть пустым или менее 0", + "Limit cannot be more than 24 hrs": "Интервал не может быть более 24 часов", + "The value should be an integer": "Значение должно быть целым числом", + "500 is the max item limit value you can set": "500 является максимально допустимым значением", + "You must select Criteria and Modifier": "Вы должны выбрать Критерии и Модификаторы", + "'Length' should be in '00:00:00' format": "«Длительность» должна быть в формате '00:00:00'", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Значение должно быть числом", + "The value should be less then 2147483648": "Значение должно быть меньше, чем 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Значение должно быть менее %s символов", + "Value cannot be empty": "Значение не может быть пустым", + "Stream Label:": "Мета-данные потока:", + "Artist - Title": "Исполнитель - Название трека ", + "Show - Artist - Title": "Программа - Исполнитель - Название трека", + "Station name - Show name": "Название станции - Программа", + "Off Air Metadata": "Мета-данные при выкл. эфире", + "Enable Replay Gain": "Включить коэфф. усиления", + "Replay Gain Modifier": "Изменить коэфф. усиления", + "Hardware Audio Output:": "Аппаратный аудио выход", + "Output Type": "Тип выхода", + "Enabled:": "Активировать:", + "Mobile:": "Мобильный:", + "Stream Type:": "Тип потока:", + "Bit Rate:": "Битрейт:", + "Service Type:": "Тип сервиса:", + "Channels:": "Аудио каналы:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтирования", + "Name": "Название", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "Добавить мета-данные вашей станции в TuneIn?", + "Station ID:": "ID станции:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "Идентификатор партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку.", + "Import Folder:": "Импорт папки:", + "Watched Folders:": "Просматриваемые папки:", + "Not a valid Directory": "Не является допустимой папкой", + "Value is required and can't be empty": "Поля не могут быть пустыми", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не является действительным адресом электронной почты в формате local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не соответствует формату даты '%format%'", + "{msg} is less than %min% characters long": "{msg} имеет менее %min% символов", + "{msg} is more than %max% characters long": "{msg} имеет более %max% символов", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не входит в промежуток '%min%' и '%max%', включительно", + "Passwords do not match": "Пароли не совпадают", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привет %s, \n\nПожалуйста нажми ссылку, чтобы сбросить свой пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЕсли возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s", + "\n\nThank you,\nThe %s Team": "\n\nСпасибо,\nКоманда %s", + "%s Password Reset": "%s Сброс пароля", + "Cue in and cue out are null.": "Время начала и окончания звучания трека не заполнены.", + "Can't set cue out to be greater than file length.": "Время окончания звучания не может превышать длину трека.", + "Can't set cue in to be larger than cue out.": "Время начала звучания не может быть позже времени окончания.", + "Can't set cue out to be smaller than cue in.": "Время окончания звучания не может быть раньше времени начала.", + "Upload Time": "Время загрузки", + "None": "Ничего", + "Powered by %s": "При поддержке %s", + "Select Country": "Выберите страну", + "livestream": "живой аудио поток", + "Cannot move items out of linked shows": "Невозможно переместить элементы из связанных Программ", + "The schedule you're viewing is out of date! (sched mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)", + "The schedule you're viewing is out of date! (instance mismatch)": "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)", + "The schedule you're viewing is out of date!": "Расписание, которое вы просматриваете - устарело!", + "You are not allowed to schedule show %s.": "Вы не допущены к планированию Программы %s.", + "You cannot add files to recording shows.": "Вы не можете добавлять файлы в записываемую Программу.", + "The show %s is over and cannot be scheduled.": "Программа %s окончилась и не может быть добавлена в расписание.", + "The show %s has been previously updated!": "Программа %s была обновлена ранее!", + "Content in linked shows cannot be changed while on air!": "Контент в связанных Программах не может быть изменен пока Программа в эфире!", + "Cannot schedule a playlist that contains missing files.": "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы.", + "A selected File does not exist!": "Выбранный файл не существует!", + "Shows can have a max length of 24 hours.": "Максимальная продолжительность Программы - 24 часа.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Нельзя планировать пересекающиеся Программы.\nПримечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры.", + "Rebroadcast of %s from %s": "Ретрансляция %s из %s", + "Length needs to be greater than 0 minutes": "Длительность должна быть более 0 минут", + "Length should be of form \"00h 00m\"": "Длительность должна быть указана в формате '00h 00min'", + "URL should be of form \"https://example.org\"": "URL должен быть в формате \"http://домен\"", + "URL should be 512 characters or less": "Длина URL должна составлять не более 512 символов", + "No MIME type found for webstream.": "Для веб-потока не найдено MIME типа.", + "Webstream name cannot be empty": "Имя веб-потока должно быть заполнено", + "Could not parse XSPF playlist": "Не удалось анализировать XSPF Плейлист", + "Could not parse PLS playlist": "Не удалось анализировать PLS Плейлист", + "Could not parse M3U playlist": "Не удалось анализировать M3U Плейлист", + "Invalid webstream - This appears to be a file download.": "Неверный веб-поток - скорее всего это загрузка файла.", + "Unrecognized stream type: %s": "Нераспознанный тип потока: %s", + "Record file doesn't exist": "Записанный файл не существует", + "View Recorded File Metadata": "Просмотр мета-данных записанного файла", + "Schedule Tracks": "Запланировать Треки", + "Clear Show": "Очистить Программу", + "Cancel Show": "Отменить Программу", + "Edit Instance": "Редактировать этот Экземпляр", + "Edit Show": "Редактировать Программу", + "Delete Instance": "Удалить этот Экземпляр", + "Delete Instance and All Following": "Удалить этот Экземпляр и все связанные", + "Permission denied": "Доступ запрещен", + "Can't drag and drop repeating shows": "Невозможно перетащить повторяющиеся Программы", + "Can't move a past show": "Невозможно переместить завершившуюся Программу", + "Can't move show into past": "Невозможно переместить Программу в прошлое", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции.", + "Show was deleted because recorded show does not exist!": "Программа была удалена, потому что записанной Программы не существует!", + "Must wait 1 hour to rebroadcast.": "Подождите один час до ретрансляции.", + "Track": "Трек", + "Played": "Проиграно", + "Auto-generated smartblock for podcast": "Автоматически сгенерированный Смарт-блок для подкаста", + "Webstreams": "Веб-потоки" } diff --git a/webapp/src/locale/sr_RS.json b/webapp/src/locale/sr_RS.json index f64a55728c..6f9eacb36c 100644 --- a/webapp/src/locale/sr_RS.json +++ b/webapp/src/locale/sr_RS.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Година %s мора да буде у распону између 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s није исправан датум", - "%s:%s:%s is not a valid time": "%s:%s:%s није исправан датум", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "Календар", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "Корисници", - "Track Types": "", - "Streams": "Преноси", - "Status": "Стање", - "Analytics": "", - "Playout History": "Историја Пуштених Песама", - "History Templates": "Историјски Шаблони", - "Listener Stats": "Слушатељска Статистика", - "Show Listener Stats": "", - "Help": "Помоћ", - "Getting Started": "Почетак Коришћења", - "User Manual": "Упутство", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "Не смеш да приступиш овог извора.", - "You are not allowed to access this resource. ": "Не смеш да приступите овог извора.", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "Неисправан захтев.", - "Bad request. 'mode' parameter is invalid": "Неисправан захтев", - "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", - "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", - "You don't have permission to switch source.": "Немаш дозволу за промену извора.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s није пронађен", - "Something went wrong.": "Нешто је пошло по криву.", - "Preview": "Преглед", - "Add to Playlist": "Додај на Списак Песама", - "Add to Smart Block": "Додај у Smart Block", - "Delete": "Обриши", - "Edit...": "", - "Download": "Преузимање", - "Duplicate Playlist": "Удвостручавање", - "Duplicate Smartblock": "", - "No action available": "Нема доступних акција", - "You don't have permission to delete selected items.": "Немаш допуштење за брисање одабране ставке.", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "Копирање од %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси.", - "Audio Player": "Аудио Уређај", - "Something went wrong!": "", - "Recording:": "Снимање:", - "Master Stream": "Мајсторски Пренос", - "Live Stream": "Пренос Уживо", - "Nothing Scheduled": "Ништа по распореду", - "Current Show:": "Садашња Емисија:", - "Current": "Тренутна", - "You are running the latest version": "Ти имаш инсталирану најновију верзију", - "New version available: ": "Нова верзија је доступна:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "Додај у тренутни списак песама", - "Add to current smart block": "Додај у тренутни smart block", - "Adding 1 Item": "Додавање 1 Ставке", - "Adding %s Items": "Додавање %s Ставке", - "You can only add tracks to smart blocks.": "Можеш да додаш само песме код паметних блокова.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера.", - "Please select a cursor position on timeline.": "Молимо одабери место показивача на временској црти.", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Додај", - "New": "", - "Edit": "Уређивање", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Уклони", - "Edit Metadata": "Уреди Метаподатке", - "Add to selected show": "Додај у одабраној емисији", - "Select": "Одабери", - "Select this page": "Одабери ову страницу", - "Deselect this page": "Одзначи ову страницу", - "Deselect all": "Одзначи све", - "Are you sure you want to delete the selected item(s)?": "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?", - "Scheduled": "Заказана", - "Tracks": "", - "Playlist": "", - "Title": "Назив", - "Creator": "Творац", - "Album": "Албум", - "Bit Rate": "Пренос Бита", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Диригент", - "Copyright": "Ауторско право", - "Encoded By": "Кодирано је по", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Налепница", - "Language": "Језик", - "Last Modified": "Последња Измена", - "Last Played": "Задњи Пут Одиграна", - "Length": "Дужина", - "Mime": "Mime", - "Mood": "Расположење", - "Owner": "Власник", - "Replay Gain": "Replay Gain", - "Sample Rate": "Узорак Стопа", - "Track Number": "Број Песма", - "Uploaded": "Додата", - "Website": "Веб страница", - "Year": "Година", - "Loading...": "Учитавање...", - "All": "Све", - "Files": "Датотеке", - "Playlists": "Листе песама", - "Smart Blocks": "Smart Block-ови", - "Web Streams": "Преноси", - "Unknown type: ": "Непознати тип:", - "Are you sure you want to delete the selected item?": "Јеси ли сигуран да желиш да обришеш изабрану ставку?", - "Uploading in progress...": "Пренос је у току...", - "Retrieving data from the server...": "Преузимање података са сервера...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Шифра грешке:", - "Error msg: ": "Порука о грешци:", - "Input must be a positive number": "Мора да буде позитиван број", - "Input must be a number": "Мора да буде број", - "Input must be in the format: yyyy-mm-dd": "Мора да буде у облику: гггг-мм-дд", - "Input must be in the format: hh:mm:ss.t": "Мора да буде у облику: hh:mm:ss.t", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s", - "Open Media Builder": "Отвори Медијског Градитеља", - "please put in a time '00:00:00 (.0)'": "молимо стави у време '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "Твој претраживач не подржава ову врсту аудио фајл:", - "Dynamic block is not previewable": "Динамички блок није доступан за преглед", - "Limit to: ": "Ограничити се на:", - "Playlist saved": "Списак песама је спремљена", - "Playlist shuffled": "Списак песама је измешан", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'.", - "Listener Count on %s: %s": "Број Слушалаца %s: %s", - "Remind me in 1 week": "Подсети ме за 1 недељу", - "Remind me never": "Никад ме више не подсети", - "Yes, help Airtime": "Да, помажем Airtime-у", - "Image must be one of jpg, jpeg, png, or gif": "Слика мора да буде jpg, jpeg, png, или gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "Smart block је измешан", - "Smart block generated and criteria saved": "Smart block је генерисан и критеријуме су спремне", - "Smart block saved": "Smart block је сачуван", - "Processing...": "Обрада...", - "Select modifier": "Одабери модификатор", - "contains": "садржи", - "does not contain": "не садржи", - "is": "је", - "is not": "није", - "starts with": "почиње се са", - "ends with": "завршава се са", - "is greater than": "је већи од", - "is less than": "је мањи од", - "is in the range": "је у опсегу", - "Generate": "Генериши", - "Choose Storage Folder": "Одабери Мапу за Складиштење", - "Choose Folder to Watch": "Одабери Мапу за Праћење", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Јеси ли сигуран да желиш да промениш мапу за складиштење?\nТо ће да уклони датотеке из твоје библиотеке!", - "Manage Media Folders": "Управљање Медијске Мапе", - "Are you sure you want to remove the watched folder?": "Јеси ли сигуран да желиш да уклониш надзорску мапу?", - "This path is currently not accessible.": "Овај пут није тренутно доступан.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни.", - "Connected to the streaming server": "Прикључен је на серверу", - "The stream is disabled": "Пренос је онемогућен", - "Getting information from the server...": "Добијање информација са сервера...", - "Can not connect to the streaming server": "Не може да се повеже на серверу", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Провери ову опцију како би се омогућило метаподатака за OGG потоке.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику.", - "Warning: You cannot change this field while the show is currently playing": "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава", - "No result found": "Нема пронађених резултата", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију.", - "Specify custom authentication which will work only for this show.": "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију.", - "The show instance doesn't exist anymore!": "Емисија у овом случају више не постоји!", - "Warning: Shows cannot be re-linked": "Упозорење: Емисије не може поново да се повеже", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци.", - "Show": "Емисија", - "Show is empty": "Емисија је празна", - "1m": "1m", - "5m": "5m", - "10m": "10m", - "15m": "15m", - "30m": "30m", - "60m": "60m", - "Retreiving data from the server...": "Добијање података са сервера...", - "This show has no scheduled content.": "Ова емисија нема заказаног садржаја.", - "This show is not completely filled with content.": "Ова емисија није у потпуности испуњена са садржајем.", - "January": "Јануар", - "February": "Фебруар", - "March": "Март", - "April": "Април", - "May": "Мај", - "June": "Јун", - "July": "Јул", - "August": "Август", - "September": "Септембар", - "October": "Октобар", - "November": "Новембар", - "December": "Децембар", - "Jan": "Јан", - "Feb": "Феб", - "Mar": "Мар", - "Apr": "Апр", - "Jun": "Јун", - "Jul": "Јул", - "Aug": "Авг", - "Sep": "Сеп", - "Oct": "Окт", - "Nov": "Нов", - "Dec": "Дец", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "Недеља", - "Monday": "Понедељак", - "Tuesday": "Уторак", - "Wednesday": "Среда", - "Thursday": "Четвртак", - "Friday": "Петак", - "Saturday": "Субота", - "Sun": "Нед", - "Mon": "Пон", - "Tue": "Уто", - "Wed": "Сре", - "Thu": "Чет", - "Fri": "Пет", - "Sat": "Суб", - "Shows longer than their scheduled time will be cut off by a following show.": "Емисија дуже од предвиђеног времена ће да буде одсечен.", - "Cancel Current Show?": "Откажи Тренутног Програма?", - "Stop recording current show?": "Заустављање снимање емисије?", - "Ok": "Ок", - "Contents of Show": "Садржај Емисије", - "Remove all content?": "Уклониш све садржаје?", - "Delete selected item(s)?": "Обришеш ли одабрану (е) ставу (е)?", - "Start": "Почетак", - "End": "Завршетак", - "Duration": "Трајање", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Одтамњење", - "Fade Out": "Затамњење", - "Show Empty": "Празна Емисија", - "Recording From Line In": "Снимање са Line In", - "Track preview": "Преглед песма", - "Cannot schedule outside a show.": "Не може да се заказује ван емисије.", - "Moving 1 Item": "Премештање 1 Ставка", - "Moving %s Items": "Премештање %s Ставке", - "Save": "Сачувај", - "Cancel": "Одустани", - "Fade Editor": "Уређивач за (Од-/За-)тамњивање", - "Cue Editor": "Cue Уређивач", - "Waveform features are available in a browser supporting the Web Audio API": "Таласни облик функције су доступне у споредну Web Audio API прегледачу", - "Select all": "Одабери све", - "Select none": "Не одабери ништа", - "Trim overbooked shows": "", - "Remove selected scheduled items": "Уклони одабране заказане ставке", - "Jump to the current playing track": "Скочи на тренутну свирану песму", - "Jump to Current": "", - "Cancel current show": "Поништи тренутну емисију", - "Open library to add or remove content": "Отвори библиотеку за додавање или уклањање садржаја", - "Add / Remove Content": "Додај / Уклони Садржај", - "in use": "у употреби", - "Disk": "Диск", - "Look in": "Погледај унутра", - "Open": "Отвори", - "Admin": "Администратор", - "DJ": "Диск-џокеј", - "Program Manager": "Водитељ Програма", - "Guest": "Гост", - "Guests can do the following:": "Гости могу да уради следеће:", - "View schedule": "Преглед распореда", - "View show content": "Преглед садржај емисије", - "DJs can do the following:": "Диск-џокеји могу да уради следеће:", - "Manage assigned show content": "Управљање додељен садржај емисије", - "Import media files": "Увоз медијске фајлове", - "Create playlists, smart blocks, and webstreams": "Изради листе песама, паметне блокове, и преносе", - "Manage their own library content": "Управљање своје библиотечког садржаја", - "Program Managers can do the following:": "", - "View and manage show content": "Приказ и управљање садржај емисије", - "Schedule shows": "Распоредне емисије", - "Manage all library content": "Управљање све садржаје библиотека", - "Admins can do the following:": "Администратори могу да уради следеће:", - "Manage preferences": "Управљање подешавања", - "Manage users": "Управљање кориснике", - "Manage watched folders": "Управљање надзираних датотеке", - "Send support feedback": "Пошаљи повратне информације", - "View system status": "Преглед стања система", - "Access playout history": "Приступ за историју пуштених песама", - "View listener stats": "Погледај статистику слушаоце", - "Show / hide columns": "Покажи/сакриј колоне", - "Columns": "", - "From {from} to {to}": "Од {from} до {to}", - "kbps": "kbps", - "yyyy-mm-dd": "гггг-мм-дд", - "hh:mm:ss.t": "hh:mm:ss.t", - "kHz": "kHz", - "Su": "Не", - "Mo": "По", - "Tu": "Ут", - "We": "Ср", - "Th": "Че", - "Fr": "Пе", - "Sa": "Су", - "Close": "Затвори", - "Hour": "Сат", - "Minute": "Минута", - "Done": "Готово", - "Select files": "Изабери датотеке", - "Add files to the upload queue and click the start button.": "Додај датотеке и кликни на 'Покрени Upload' дугме.", - "Filename": "", - "Size": "", - "Add Files": "Додај Датотеке", - "Stop Upload": "Заустави Upload", - "Start upload": "Покрени upload", - "Start Upload": "", - "Add files": "Додај датотеке", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "Послата %d/%d датотека", - "N/A": "N/A", - "Drag files here.": "Повуци датотеке овде.", - "File extension error.": "Грешка (ознаку типа датотеке).", - "File size error.": "Грешка величине датотеке.", - "File count error.": "Грешка број датотеке.", - "Init error.": "Init грешка.", - "HTTP Error.": "HTTP Грешка.", - "Security error.": "Безбедносна грешка.", - "Generic error.": "Генеричка грешка.", - "IO error.": "IO грешка.", - "File: %s": "Фајл: %s", - "%d files queued": "%d датотека на чекању", - "File: %f, size: %s, max file size: %m": "Датотека: %f, величина: %s, макс величина датотеке: %m", - "Upload URL might be wrong or doesn't exist": "Преносни URL може да буде у криву или не постоји", - "Error: File too large: ": "Грешка: Датотека је превелика:", - "Error: Invalid file extension: ": "Грешка: Неважећи ознак типа датотека:", - "Set Default": "Постави Подразумевано", - "Create Entry": "Стварање Уноса", - "Edit History Record": "Уреди Историјат Уписа", - "No Show": "Нема Програма", - "Copied %s row%s to the clipboard": "%s ред%s је копиран у међумеморију", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape.", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Опис", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Омогућено", - "Disabled": "Онемогућено", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен.", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "Погрешно корисничко име или лозинка. Молимо покушај поново.", - "You are viewing an older version of %s": "Гледаш старију верзију %s", - "You cannot add tracks to dynamic blocks.": "Не можеш да додаш песме за динамичне блокове.", - "You don't have permission to delete selected %s(s).": "Немаш допуштење за брисање одабраног (е) %s.", - "You can only add tracks to smart block.": "Можеш само песме да додаш за паметног блока.", - "Untitled Playlist": "Неименовани Списак Песама", - "Untitled Smart Block": "Неименовани Smart Block", - "Unknown Playlist": "Непознати Списак Песама", - "Preferences updated.": "Подешавања су ажуриране.", - "Stream Setting Updated.": "Пренос Подешавање је Ажурирано.", - "path should be specified": "пут би требао да буде специфициран", - "Problem with Liquidsoap...": "Проблем са Liquidsoap...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "Реемитовање емисија %s од %s на %s", - "Select cursor": "Одабери показивач", - "Remove cursor": "Уклони показивач", - "show does not exist": "емисија не постоји", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Корисник је успешно додат!", - "User updated successfully!": "Корисник је успешно ажуриран!", - "Settings updated successfully!": "Подешавања су успешно ажуриране!", - "Untitled Webstream": "Неименовани Пренос", - "Webstream saved.": "Пренос је сачуван.", - "Invalid form values.": "Неважећи вредности обрасца.", - "Invalid character entered": "Унесени су неважећи знакови", - "Day must be specified": "Дан мора да буде наведен", - "Time must be specified": "Време мора да буде наведено", - "Must wait at least 1 hour to rebroadcast": "Мораш да чекаш најмање 1 сат за ре-емитовање", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "Користи Прилагођено потврду идентитета:", - "Custom Username": "Прилагођено Корисничко Име", - "Custom Password": "Прилагођена Лозинка", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "'Корисничко Име' поља не сме да остане празно.", - "Password field cannot be empty.": "'Лозинка' поља не сме да остане празно.", - "Record from Line In?": "Снимање са Line In?", - "Rebroadcast?": "Поново да емитује?", - "days": "дани", - "Link:": "Link:", - "Repeat Type:": "Тип Понављање:", - "weekly": "недељно", - "every 2 weeks": "сваке 2 недеље", - "every 3 weeks": "свака 3 недеље", - "every 4 weeks": "свака 4 недеље", - "monthly": "месечно", - "Select Days:": "Одабери Дане:", - "Repeat By:": "Понављање По:", - "day of the month": "дан у месецу", - "day of the week": "дан у недељи", - "Date End:": "Датум Завршетка:", - "No End?": "Нема Краја?", - "End date must be after start date": "Датум завршетка мора да буде после датума почетка", - "Please select a repeat day": "Молимо, одабери којег дана", - "Background Colour:": "Боја Позадине:", - "Text Colour:": "Боја Текста:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "Назив:", - "Untitled Show": "Неименована Емисија", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Опис:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} се не уклапа у временском формату 'HH:mm'", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Трајање:", - "Timezone:": "Временска Зона:", - "Repeats?": "Понављање?", - "Cannot create show in the past": "Не може да се створи емисију у прошлости", - "Cannot modify start date/time of the show that is already started": "Не можеш да мењаш датум/време почетак емисије, ако је већ почела", - "End date/time cannot be in the past": "Датум завршетка и време не може да буде у прошлости", - "Cannot have duration < 0m": "Не може да траје < 0m", - "Cannot have duration 00h 00m": "Не може да траје 00h 00m", - "Cannot have duration greater than 24h": "Не може да траје више од 24h", - "Cannot schedule overlapping shows": "Не можеш заказати преклапајуће емисије", - "Search Users:": "Тражи Кориснике:", - "DJs:": "Диск-џокеји:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Корисничко име:", - "Password:": "Лозинка:", - "Verify Password:": "Потврди Лозинку:", - "Firstname:": "Име:", - "Lastname:": "Презиме:", - "Email:": "Е-маил:", - "Mobile Phone:": "Мобилни Телефон:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Типова Корисника:", - "Login name is not unique.": "Име пријаве није јединствено.", - "Delete All Tracks in Library": "", - "Date Start:": "Датум Почетка:", - "Title:": "Назив:", - "Creator:": "Творац:", - "Album:": "Aлбум:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Година:", - "Label:": "Налепница:", - "Composer:": "Композитор:", - "Conductor:": "Диригент:", - "Mood:": "Расположење:", - "BPM:": "BPM:", - "Copyright:": "Ауторско право:", - "ISRC Number:": "ISRC Број:", - "Website:": "Веб страница:", - "Language:": "Језик:", - "Publish...": "", - "Start Time": "Време Почетка", - "End Time": "Време Завршетка", - "Interface Timezone:": "Временска Зона Интерфејси:", - "Station Name": "Назив Станице", - "Station Description": "", - "Station Logo:": "Лого:", - "Note: Anything larger than 600x600 will be resized.": "Напомена: Све већа од 600к600 ће да се мењају.", - "Default Crossfade Duration (s):": "Подразумевано Трајање Укрштено Стишавање (s):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Подразумевано Одтамњење (s):", - "Default Fade Out (s):": "Подразумевано Затамњење (s):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Станична Временска Зона", - "Week Starts On": "Први Дан у Недељи", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Пријава", - "Password": "Лозинка", - "Confirm new password": "Потврди нову лозинку", - "Password confirmation does not match your password.": "Лозинке које сте унели не подударају се.", - "Email": "", - "Username": "Корисничко име", - "Reset password": "Ресетуј лозинку", - "Back": "", - "Now Playing": "Тренутно Извођена", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Све Моје Емисије:", - "My Shows": "", - "Select criteria": "Одабери критеријуме", - "Bit Rate (Kbps)": "Брзина у Битовима (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Узорак Стопа (kHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "сати", - "minutes": "минути", - "items": "елементи", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Динамички", - "Static": "Статички", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Генерисање листе песама и чување садржаја критеријуме", - "Shuffle playlist content": "Садржај случајни избор списак песама", - "Shuffle": "Мешање", - "Limit cannot be empty or smaller than 0": "Ограничење не може да буде празан или мањи од 0", - "Limit cannot be more than 24 hrs": "Ограничење не може да буде више од 24 сати", - "The value should be an integer": "Вредност мора да буде цео број", - "500 is the max item limit value you can set": "500 је макс ставу граничну вредност могуће је да подесиш", - "You must select Criteria and Modifier": "Мораш да изабереш Критерију и Модификацију", - "'Length' should be in '00:00:00' format": "'Дужина' требала да буде у '00:00:00' облику", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Вредност мора да буде нумеричка", - "The value should be less then 2147483648": "Вредност би требала да буде мања од 2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "Вредност мора да буде мања од %s знакова", - "Value cannot be empty": "Вредност не може да буде празна", - "Stream Label:": "Видљиви Подаци:", - "Artist - Title": "Аутор - Назив", - "Show - Artist - Title": "Емисија - Аутор - Назив", - "Station name - Show name": "Назив станице - Назив емисије", - "Off Air Metadata": "Off Air Метаподаци", - "Enable Replay Gain": "Укључи Replay Gain", - "Replay Gain Modifier": "Replay Gain Модификатор", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Омогућено:", - "Mobile:": "", - "Stream Type:": "Пренос Типа:", - "Bit Rate:": "Брзина у Битовима:", - "Service Type:": "Тип Услуге:", - "Channels:": "Канали:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Тачка Монтирања", - "Name": "Назив", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "Увозна Мапа:", - "Watched Folders:": "Мапе Под Надзором:", - "Not a valid Directory": "Не важећи Директоријум", - "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} није ваљана е-маил адреса у основном облику local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} не одговара по облику датума '%format%'", - "{msg} is less than %min% characters long": "{msg} је мањи од %min% дугачко знакова", - "{msg} is more than %max% characters long": "{msg} је више од %max% дугачко знакова", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} није између '%min%' и '%max%', укључиво", - "Passwords do not match": "Лозинке се не подударају", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "'Cue in' и 'cue out' су нуле.", - "Can't set cue out to be greater than file length.": "Не можеш да подесиш да 'cue out' буде веће од дужине фајла.", - "Can't set cue in to be larger than cue out.": "Не можеш да подесиш да 'cue in' буде веће него 'cue out'.", - "Can't set cue out to be smaller than cue in.": "Не можеш да подесиш да 'cue out' буде мање него 'cue in'.", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "Одабери Државу", - "livestream": "", - "Cannot move items out of linked shows": "Не можеш да преместиш ставке из повезаних емисија", - "The schedule you're viewing is out of date! (sched mismatch)": "Застарео се прегледан распоред! (неважећи распоред)", - "The schedule you're viewing is out of date! (instance mismatch)": "Застарео се прегледан распоред! (пример неусклађеност)", - "The schedule you're viewing is out of date!": "Застарео се прегледан распоред!", - "You are not allowed to schedule show %s.": "Не смеш да закажеш распоредну емисију %s.", - "You cannot add files to recording shows.": "Не можеш да додаш датотеке за снимљене емисије.", - "The show %s is over and cannot be scheduled.": "Емисија %s је готова и не могу да буде заказана.", - "The show %s has been previously updated!": "Раније је %s емисија већ била ажурирана!", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "Изабрани Фајл не постоји!", - "Shows can have a max length of 24 hours.": "Емисије могу да имају највећу дужину 24 сата.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не може да се закаже преклапајуће емисије.\nНапомена: Промена величине понављане емисије утиче на све њене понављање.", - "Rebroadcast of %s from %s": "Реемитовање од %s од %s", - "Length needs to be greater than 0 minutes": "Дужина мора да буде већа од 0 минута", - "Length should be of form \"00h 00m\"": "Дужина мора да буде у облику \"00h 00m\"", - "URL should be of form \"https://example.org\"": "URL мора да буде у облику \"https://example.org\"", - "URL should be 512 characters or less": "URL мора да буде 512 знакова или мање", - "No MIME type found for webstream.": "Не постоји MIME тип за пренос.", - "Webstream name cannot be empty": "Име преноса не може да да буде празно", - "Could not parse XSPF playlist": "Нисмо могли анализирати XSPF списак песама", - "Could not parse PLS playlist": "Нисмо могли анализирати PLS списак песама", - "Could not parse M3U playlist": "Нисмо могли анализирати M3U списак песама", - "Invalid webstream - This appears to be a file download.": "Неважећи пренос - Чини се да је ово преузимање.", - "Unrecognized stream type: %s": "Непознати преносни тип: %s", - "Record file doesn't exist": "Снимљена датотека не постоји", - "View Recorded File Metadata": "Метаподаци снимљеног фајла", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "Уређивање Програма", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "Дозвола одбијена", - "Can't drag and drop repeating shows": "Не можеш повући и испустити понављајуће емисије", - "Can't move a past show": "Не можеш преместити догађане емисије", - "Can't move show into past": "Не можеш преместити емисију у прошлости", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања.", - "Show was deleted because recorded show does not exist!": "Емисија је избрисана јер је снимљена емисија не постоји!", - "Must wait 1 hour to rebroadcast.": "Мораш причекати 1 сат за ре-емитовање.", - "Track": "Песма", - "Played": "Пуштена", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "Година %s мора да буде у распону између 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s није исправан датум", + "%s:%s:%s is not a valid time": "%s:%s:%s није исправан датум", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "Календар", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "Корисници", + "Track Types": "", + "Streams": "Преноси", + "Status": "Стање", + "Analytics": "", + "Playout History": "Историја Пуштених Песама", + "History Templates": "Историјски Шаблони", + "Listener Stats": "Слушатељска Статистика", + "Show Listener Stats": "", + "Help": "Помоћ", + "Getting Started": "Почетак Коришћења", + "User Manual": "Упутство", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "Не смеш да приступиш овог извора.", + "You are not allowed to access this resource. ": "Не смеш да приступите овог извора.", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "Неисправан захтев.", + "Bad request. 'mode' parameter is invalid": "Неисправан захтев", + "You don't have permission to disconnect source.": "Немаш допуштење да искључиш извор.", + "There is no source connected to this input.": "Нема спојеног извора на овај улаз.", + "You don't have permission to switch source.": "Немаш дозволу за промену извора.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s није пронађен", + "Something went wrong.": "Нешто је пошло по криву.", + "Preview": "Преглед", + "Add to Playlist": "Додај на Списак Песама", + "Add to Smart Block": "Додај у Smart Block", + "Delete": "Обриши", + "Edit...": "", + "Download": "Преузимање", + "Duplicate Playlist": "Удвостручавање", + "Duplicate Smartblock": "", + "No action available": "Нема доступних акција", + "You don't have permission to delete selected items.": "Немаш допуштење за брисање одабране ставке.", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "Копирање од %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси.", + "Audio Player": "Аудио Уређај", + "Something went wrong!": "", + "Recording:": "Снимање:", + "Master Stream": "Мајсторски Пренос", + "Live Stream": "Пренос Уживо", + "Nothing Scheduled": "Ништа по распореду", + "Current Show:": "Садашња Емисија:", + "Current": "Тренутна", + "You are running the latest version": "Ти имаш инсталирану најновију верзију", + "New version available: ": "Нова верзија је доступна:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "Додај у тренутни списак песама", + "Add to current smart block": "Додај у тренутни smart block", + "Adding 1 Item": "Додавање 1 Ставке", + "Adding %s Items": "Додавање %s Ставке", + "You can only add tracks to smart blocks.": "Можеш да додаш само песме код паметних блокова.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера.", + "Please select a cursor position on timeline.": "Молимо одабери место показивача на временској црти.", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Додај", + "New": "", + "Edit": "Уређивање", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Уклони", + "Edit Metadata": "Уреди Метаподатке", + "Add to selected show": "Додај у одабраној емисији", + "Select": "Одабери", + "Select this page": "Одабери ову страницу", + "Deselect this page": "Одзначи ову страницу", + "Deselect all": "Одзначи све", + "Are you sure you want to delete the selected item(s)?": "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?", + "Scheduled": "Заказана", + "Tracks": "", + "Playlist": "", + "Title": "Назив", + "Creator": "Творац", + "Album": "Албум", + "Bit Rate": "Пренос Бита", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Диригент", + "Copyright": "Ауторско право", + "Encoded By": "Кодирано је по", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Налепница", + "Language": "Језик", + "Last Modified": "Последња Измена", + "Last Played": "Задњи Пут Одиграна", + "Length": "Дужина", + "Mime": "Mime", + "Mood": "Расположење", + "Owner": "Власник", + "Replay Gain": "Replay Gain", + "Sample Rate": "Узорак Стопа", + "Track Number": "Број Песма", + "Uploaded": "Додата", + "Website": "Веб страница", + "Year": "Година", + "Loading...": "Учитавање...", + "All": "Све", + "Files": "Датотеке", + "Playlists": "Листе песама", + "Smart Blocks": "Smart Block-ови", + "Web Streams": "Преноси", + "Unknown type: ": "Непознати тип:", + "Are you sure you want to delete the selected item?": "Јеси ли сигуран да желиш да обришеш изабрану ставку?", + "Uploading in progress...": "Пренос је у току...", + "Retrieving data from the server...": "Преузимање података са сервера...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Шифра грешке:", + "Error msg: ": "Порука о грешци:", + "Input must be a positive number": "Мора да буде позитиван број", + "Input must be a number": "Мора да буде број", + "Input must be in the format: yyyy-mm-dd": "Мора да буде у облику: гггг-мм-дд", + "Input must be in the format: hh:mm:ss.t": "Мора да буде у облику: hh:mm:ss.t", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s", + "Open Media Builder": "Отвори Медијског Градитеља", + "please put in a time '00:00:00 (.0)'": "молимо стави у време '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "Твој претраживач не подржава ову врсту аудио фајл:", + "Dynamic block is not previewable": "Динамички блок није доступан за преглед", + "Limit to: ": "Ограничити се на:", + "Playlist saved": "Списак песама је спремљена", + "Playlist shuffled": "Списак песама је измешан", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'.", + "Listener Count on %s: %s": "Број Слушалаца %s: %s", + "Remind me in 1 week": "Подсети ме за 1 недељу", + "Remind me never": "Никад ме више не подсети", + "Yes, help Airtime": "Да, помажем Airtime-у", + "Image must be one of jpg, jpeg, png, or gif": "Слика мора да буде jpg, jpeg, png, или gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "Smart block је измешан", + "Smart block generated and criteria saved": "Smart block је генерисан и критеријуме су спремне", + "Smart block saved": "Smart block је сачуван", + "Processing...": "Обрада...", + "Select modifier": "Одабери модификатор", + "contains": "садржи", + "does not contain": "не садржи", + "is": "је", + "is not": "није", + "starts with": "почиње се са", + "ends with": "завршава се са", + "is greater than": "је већи од", + "is less than": "је мањи од", + "is in the range": "је у опсегу", + "Generate": "Генериши", + "Choose Storage Folder": "Одабери Мапу за Складиштење", + "Choose Folder to Watch": "Одабери Мапу за Праћење", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Јеси ли сигуран да желиш да промениш мапу за складиштење?\nТо ће да уклони датотеке из твоје библиотеке!", + "Manage Media Folders": "Управљање Медијске Мапе", + "Are you sure you want to remove the watched folder?": "Јеси ли сигуран да желиш да уклониш надзорску мапу?", + "This path is currently not accessible.": "Овај пут није тренутно доступан.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни.", + "Connected to the streaming server": "Прикључен је на серверу", + "The stream is disabled": "Пренос је онемогућен", + "Getting information from the server...": "Добијање информација са сервера...", + "Can not connect to the streaming server": "Не може да се повеже на серверу", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Провери ову опцију како би се омогућило метаподатака за OGG потоке.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику.", + "Warning: You cannot change this field while the show is currently playing": "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава", + "No result found": "Нема пронађених резултата", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију.", + "Specify custom authentication which will work only for this show.": "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију.", + "The show instance doesn't exist anymore!": "Емисија у овом случају више не постоји!", + "Warning: Shows cannot be re-linked": "Упозорење: Емисије не може поново да се повеже", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци.", + "Show": "Емисија", + "Show is empty": "Емисија је празна", + "1m": "1m", + "5m": "5m", + "10m": "10m", + "15m": "15m", + "30m": "30m", + "60m": "60m", + "Retreiving data from the server...": "Добијање података са сервера...", + "This show has no scheduled content.": "Ова емисија нема заказаног садржаја.", + "This show is not completely filled with content.": "Ова емисија није у потпуности испуњена са садржајем.", + "January": "Јануар", + "February": "Фебруар", + "March": "Март", + "April": "Април", + "May": "Мај", + "June": "Јун", + "July": "Јул", + "August": "Август", + "September": "Септембар", + "October": "Октобар", + "November": "Новембар", + "December": "Децембар", + "Jan": "Јан", + "Feb": "Феб", + "Mar": "Мар", + "Apr": "Апр", + "Jun": "Јун", + "Jul": "Јул", + "Aug": "Авг", + "Sep": "Сеп", + "Oct": "Окт", + "Nov": "Нов", + "Dec": "Дец", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "Недеља", + "Monday": "Понедељак", + "Tuesday": "Уторак", + "Wednesday": "Среда", + "Thursday": "Четвртак", + "Friday": "Петак", + "Saturday": "Субота", + "Sun": "Нед", + "Mon": "Пон", + "Tue": "Уто", + "Wed": "Сре", + "Thu": "Чет", + "Fri": "Пет", + "Sat": "Суб", + "Shows longer than their scheduled time will be cut off by a following show.": "Емисија дуже од предвиђеног времена ће да буде одсечен.", + "Cancel Current Show?": "Откажи Тренутног Програма?", + "Stop recording current show?": "Заустављање снимање емисије?", + "Ok": "Ок", + "Contents of Show": "Садржај Емисије", + "Remove all content?": "Уклониш све садржаје?", + "Delete selected item(s)?": "Обришеш ли одабрану (е) ставу (е)?", + "Start": "Почетак", + "End": "Завршетак", + "Duration": "Трајање", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Одтамњење", + "Fade Out": "Затамњење", + "Show Empty": "Празна Емисија", + "Recording From Line In": "Снимање са Line In", + "Track preview": "Преглед песма", + "Cannot schedule outside a show.": "Не може да се заказује ван емисије.", + "Moving 1 Item": "Премештање 1 Ставка", + "Moving %s Items": "Премештање %s Ставке", + "Save": "Сачувај", + "Cancel": "Одустани", + "Fade Editor": "Уређивач за (Од-/За-)тамњивање", + "Cue Editor": "Cue Уређивач", + "Waveform features are available in a browser supporting the Web Audio API": "Таласни облик функције су доступне у споредну Web Audio API прегледачу", + "Select all": "Одабери све", + "Select none": "Не одабери ништа", + "Trim overbooked shows": "", + "Remove selected scheduled items": "Уклони одабране заказане ставке", + "Jump to the current playing track": "Скочи на тренутну свирану песму", + "Jump to Current": "", + "Cancel current show": "Поништи тренутну емисију", + "Open library to add or remove content": "Отвори библиотеку за додавање или уклањање садржаја", + "Add / Remove Content": "Додај / Уклони Садржај", + "in use": "у употреби", + "Disk": "Диск", + "Look in": "Погледај унутра", + "Open": "Отвори", + "Admin": "Администратор", + "DJ": "Диск-џокеј", + "Program Manager": "Водитељ Програма", + "Guest": "Гост", + "Guests can do the following:": "Гости могу да уради следеће:", + "View schedule": "Преглед распореда", + "View show content": "Преглед садржај емисије", + "DJs can do the following:": "Диск-џокеји могу да уради следеће:", + "Manage assigned show content": "Управљање додељен садржај емисије", + "Import media files": "Увоз медијске фајлове", + "Create playlists, smart blocks, and webstreams": "Изради листе песама, паметне блокове, и преносе", + "Manage their own library content": "Управљање своје библиотечког садржаја", + "Program Managers can do the following:": "", + "View and manage show content": "Приказ и управљање садржај емисије", + "Schedule shows": "Распоредне емисије", + "Manage all library content": "Управљање све садржаје библиотека", + "Admins can do the following:": "Администратори могу да уради следеће:", + "Manage preferences": "Управљање подешавања", + "Manage users": "Управљање кориснике", + "Manage watched folders": "Управљање надзираних датотеке", + "Send support feedback": "Пошаљи повратне информације", + "View system status": "Преглед стања система", + "Access playout history": "Приступ за историју пуштених песама", + "View listener stats": "Погледај статистику слушаоце", + "Show / hide columns": "Покажи/сакриј колоне", + "Columns": "", + "From {from} to {to}": "Од {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "гггг-мм-дд", + "hh:mm:ss.t": "hh:mm:ss.t", + "kHz": "kHz", + "Su": "Не", + "Mo": "По", + "Tu": "Ут", + "We": "Ср", + "Th": "Че", + "Fr": "Пе", + "Sa": "Су", + "Close": "Затвори", + "Hour": "Сат", + "Minute": "Минута", + "Done": "Готово", + "Select files": "Изабери датотеке", + "Add files to the upload queue and click the start button.": "Додај датотеке и кликни на 'Покрени Upload' дугме.", + "Filename": "", + "Size": "", + "Add Files": "Додај Датотеке", + "Stop Upload": "Заустави Upload", + "Start upload": "Покрени upload", + "Start Upload": "", + "Add files": "Додај датотеке", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "Послата %d/%d датотека", + "N/A": "N/A", + "Drag files here.": "Повуци датотеке овде.", + "File extension error.": "Грешка (ознаку типа датотеке).", + "File size error.": "Грешка величине датотеке.", + "File count error.": "Грешка број датотеке.", + "Init error.": "Init грешка.", + "HTTP Error.": "HTTP Грешка.", + "Security error.": "Безбедносна грешка.", + "Generic error.": "Генеричка грешка.", + "IO error.": "IO грешка.", + "File: %s": "Фајл: %s", + "%d files queued": "%d датотека на чекању", + "File: %f, size: %s, max file size: %m": "Датотека: %f, величина: %s, макс величина датотеке: %m", + "Upload URL might be wrong or doesn't exist": "Преносни URL може да буде у криву или не постоји", + "Error: File too large: ": "Грешка: Датотека је превелика:", + "Error: Invalid file extension: ": "Грешка: Неважећи ознак типа датотека:", + "Set Default": "Постави Подразумевано", + "Create Entry": "Стварање Уноса", + "Edit History Record": "Уреди Историјат Уписа", + "No Show": "Нема Програма", + "Copied %s row%s to the clipboard": "%s ред%s је копиран у међумеморију", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape.", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Опис", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Омогућено", + "Disabled": "Онемогућено", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен.", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "Погрешно корисничко име или лозинка. Молимо покушај поново.", + "You are viewing an older version of %s": "Гледаш старију верзију %s", + "You cannot add tracks to dynamic blocks.": "Не можеш да додаш песме за динамичне блокове.", + "You don't have permission to delete selected %s(s).": "Немаш допуштење за брисање одабраног (е) %s.", + "You can only add tracks to smart block.": "Можеш само песме да додаш за паметног блока.", + "Untitled Playlist": "Неименовани Списак Песама", + "Untitled Smart Block": "Неименовани Smart Block", + "Unknown Playlist": "Непознати Списак Песама", + "Preferences updated.": "Подешавања су ажуриране.", + "Stream Setting Updated.": "Пренос Подешавање је Ажурирано.", + "path should be specified": "пут би требао да буде специфициран", + "Problem with Liquidsoap...": "Проблем са Liquidsoap...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "Реемитовање емисија %s од %s на %s", + "Select cursor": "Одабери показивач", + "Remove cursor": "Уклони показивач", + "show does not exist": "емисија не постоји", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Корисник је успешно додат!", + "User updated successfully!": "Корисник је успешно ажуриран!", + "Settings updated successfully!": "Подешавања су успешно ажуриране!", + "Untitled Webstream": "Неименовани Пренос", + "Webstream saved.": "Пренос је сачуван.", + "Invalid form values.": "Неважећи вредности обрасца.", + "Invalid character entered": "Унесени су неважећи знакови", + "Day must be specified": "Дан мора да буде наведен", + "Time must be specified": "Време мора да буде наведено", + "Must wait at least 1 hour to rebroadcast": "Мораш да чекаш најмање 1 сат за ре-емитовање", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "Користи Прилагођено потврду идентитета:", + "Custom Username": "Прилагођено Корисничко Име", + "Custom Password": "Прилагођена Лозинка", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "'Корисничко Име' поља не сме да остане празно.", + "Password field cannot be empty.": "'Лозинка' поља не сме да остане празно.", + "Record from Line In?": "Снимање са Line In?", + "Rebroadcast?": "Поново да емитује?", + "days": "дани", + "Link:": "Link:", + "Repeat Type:": "Тип Понављање:", + "weekly": "недељно", + "every 2 weeks": "сваке 2 недеље", + "every 3 weeks": "свака 3 недеље", + "every 4 weeks": "свака 4 недеље", + "monthly": "месечно", + "Select Days:": "Одабери Дане:", + "Repeat By:": "Понављање По:", + "day of the month": "дан у месецу", + "day of the week": "дан у недељи", + "Date End:": "Датум Завршетка:", + "No End?": "Нема Краја?", + "End date must be after start date": "Датум завршетка мора да буде после датума почетка", + "Please select a repeat day": "Молимо, одабери којег дана", + "Background Colour:": "Боја Позадине:", + "Text Colour:": "Боја Текста:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "Назив:", + "Untitled Show": "Неименована Емисија", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} се не уклапа у временском формату 'HH:mm'", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Трајање:", + "Timezone:": "Временска Зона:", + "Repeats?": "Понављање?", + "Cannot create show in the past": "Не може да се створи емисију у прошлости", + "Cannot modify start date/time of the show that is already started": "Не можеш да мењаш датум/време почетак емисије, ако је већ почела", + "End date/time cannot be in the past": "Датум завршетка и време не може да буде у прошлости", + "Cannot have duration < 0m": "Не може да траје < 0m", + "Cannot have duration 00h 00m": "Не може да траје 00h 00m", + "Cannot have duration greater than 24h": "Не може да траје више од 24h", + "Cannot schedule overlapping shows": "Не можеш заказати преклапајуће емисије", + "Search Users:": "Тражи Кориснике:", + "DJs:": "Диск-џокеји:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Корисничко име:", + "Password:": "Лозинка:", + "Verify Password:": "Потврди Лозинку:", + "Firstname:": "Име:", + "Lastname:": "Презиме:", + "Email:": "Е-маил:", + "Mobile Phone:": "Мобилни Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Типова Корисника:", + "Login name is not unique.": "Име пријаве није јединствено.", + "Delete All Tracks in Library": "", + "Date Start:": "Датум Почетка:", + "Title:": "Назив:", + "Creator:": "Творац:", + "Album:": "Aлбум:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Година:", + "Label:": "Налепница:", + "Composer:": "Композитор:", + "Conductor:": "Диригент:", + "Mood:": "Расположење:", + "BPM:": "BPM:", + "Copyright:": "Ауторско право:", + "ISRC Number:": "ISRC Број:", + "Website:": "Веб страница:", + "Language:": "Језик:", + "Publish...": "", + "Start Time": "Време Почетка", + "End Time": "Време Завршетка", + "Interface Timezone:": "Временска Зона Интерфејси:", + "Station Name": "Назив Станице", + "Station Description": "", + "Station Logo:": "Лого:", + "Note: Anything larger than 600x600 will be resized.": "Напомена: Све већа од 600к600 ће да се мењају.", + "Default Crossfade Duration (s):": "Подразумевано Трајање Укрштено Стишавање (s):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Подразумевано Одтамњење (s):", + "Default Fade Out (s):": "Подразумевано Затамњење (s):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Станична Временска Зона", + "Week Starts On": "Први Дан у Недељи", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Пријава", + "Password": "Лозинка", + "Confirm new password": "Потврди нову лозинку", + "Password confirmation does not match your password.": "Лозинке које сте унели не подударају се.", + "Email": "", + "Username": "Корисничко име", + "Reset password": "Ресетуј лозинку", + "Back": "", + "Now Playing": "Тренутно Извођена", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Све Моје Емисије:", + "My Shows": "", + "Select criteria": "Одабери критеријуме", + "Bit Rate (Kbps)": "Брзина у Битовима (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Узорак Стопа (kHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "сати", + "minutes": "минути", + "items": "елементи", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Динамички", + "Static": "Статички", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Генерисање листе песама и чување садржаја критеријуме", + "Shuffle playlist content": "Садржај случајни избор списак песама", + "Shuffle": "Мешање", + "Limit cannot be empty or smaller than 0": "Ограничење не може да буде празан или мањи од 0", + "Limit cannot be more than 24 hrs": "Ограничење не може да буде више од 24 сати", + "The value should be an integer": "Вредност мора да буде цео број", + "500 is the max item limit value you can set": "500 је макс ставу граничну вредност могуће је да подесиш", + "You must select Criteria and Modifier": "Мораш да изабереш Критерију и Модификацију", + "'Length' should be in '00:00:00' format": "'Дужина' требала да буде у '00:00:00' облику", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Вредност мора да буде нумеричка", + "The value should be less then 2147483648": "Вредност би требала да буде мања од 2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "Вредност мора да буде мања од %s знакова", + "Value cannot be empty": "Вредност не може да буде празна", + "Stream Label:": "Видљиви Подаци:", + "Artist - Title": "Аутор - Назив", + "Show - Artist - Title": "Емисија - Аутор - Назив", + "Station name - Show name": "Назив станице - Назив емисије", + "Off Air Metadata": "Off Air Метаподаци", + "Enable Replay Gain": "Укључи Replay Gain", + "Replay Gain Modifier": "Replay Gain Модификатор", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Омогућено:", + "Mobile:": "", + "Stream Type:": "Пренос Типа:", + "Bit Rate:": "Брзина у Битовима:", + "Service Type:": "Тип Услуге:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Тачка Монтирања", + "Name": "Назив", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "Увозна Мапа:", + "Watched Folders:": "Мапе Под Надзором:", + "Not a valid Directory": "Не важећи Директоријум", + "Value is required and can't be empty": "Вредност је потребна и не може да буде празан", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} није ваљана е-маил адреса у основном облику local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не одговара по облику датума '%format%'", + "{msg} is less than %min% characters long": "{msg} је мањи од %min% дугачко знакова", + "{msg} is more than %max% characters long": "{msg} је више од %max% дугачко знакова", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} није између '%min%' и '%max%', укључиво", + "Passwords do not match": "Лозинке се не подударају", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "'Cue in' и 'cue out' су нуле.", + "Can't set cue out to be greater than file length.": "Не можеш да подесиш да 'cue out' буде веће од дужине фајла.", + "Can't set cue in to be larger than cue out.": "Не можеш да подесиш да 'cue in' буде веће него 'cue out'.", + "Can't set cue out to be smaller than cue in.": "Не можеш да подесиш да 'cue out' буде мање него 'cue in'.", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "Одабери Државу", + "livestream": "", + "Cannot move items out of linked shows": "Не можеш да преместиш ставке из повезаних емисија", + "The schedule you're viewing is out of date! (sched mismatch)": "Застарео се прегледан распоред! (неважећи распоред)", + "The schedule you're viewing is out of date! (instance mismatch)": "Застарео се прегледан распоред! (пример неусклађеност)", + "The schedule you're viewing is out of date!": "Застарео се прегледан распоред!", + "You are not allowed to schedule show %s.": "Не смеш да закажеш распоредну емисију %s.", + "You cannot add files to recording shows.": "Не можеш да додаш датотеке за снимљене емисије.", + "The show %s is over and cannot be scheduled.": "Емисија %s је готова и не могу да буде заказана.", + "The show %s has been previously updated!": "Раније је %s емисија већ била ажурирана!", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "Изабрани Фајл не постоји!", + "Shows can have a max length of 24 hours.": "Емисије могу да имају највећу дужину 24 сата.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не може да се закаже преклапајуће емисије.\nНапомена: Промена величине понављане емисије утиче на све њене понављање.", + "Rebroadcast of %s from %s": "Реемитовање од %s од %s", + "Length needs to be greater than 0 minutes": "Дужина мора да буде већа од 0 минута", + "Length should be of form \"00h 00m\"": "Дужина мора да буде у облику \"00h 00m\"", + "URL should be of form \"https://example.org\"": "URL мора да буде у облику \"https://example.org\"", + "URL should be 512 characters or less": "URL мора да буде 512 знакова или мање", + "No MIME type found for webstream.": "Не постоји MIME тип за пренос.", + "Webstream name cannot be empty": "Име преноса не може да да буде празно", + "Could not parse XSPF playlist": "Нисмо могли анализирати XSPF списак песама", + "Could not parse PLS playlist": "Нисмо могли анализирати PLS списак песама", + "Could not parse M3U playlist": "Нисмо могли анализирати M3U списак песама", + "Invalid webstream - This appears to be a file download.": "Неважећи пренос - Чини се да је ово преузимање.", + "Unrecognized stream type: %s": "Непознати преносни тип: %s", + "Record file doesn't exist": "Снимљена датотека не постоји", + "View Recorded File Metadata": "Метаподаци снимљеног фајла", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "Уређивање Програма", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "Дозвола одбијена", + "Can't drag and drop repeating shows": "Не можеш повући и испустити понављајуће емисије", + "Can't move a past show": "Не можеш преместити догађане емисије", + "Can't move show into past": "Не можеш преместити емисију у прошлости", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања.", + "Show was deleted because recorded show does not exist!": "Емисија је избрисана јер је снимљена емисија не постоји!", + "Must wait 1 hour to rebroadcast.": "Мораш причекати 1 сат за ре-емитовање.", + "Track": "Песма", + "Played": "Пуштена", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/tr_TR.json b/webapp/src/locale/tr_TR.json index 51013fb94c..33abc23453 100644 --- a/webapp/src/locale/tr_TR.json +++ b/webapp/src/locale/tr_TR.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "%s yılı 1753 - 9999 aralığında olmalıdır", - "%s-%s-%s is not a valid date": "%s-%s-%s geçerli bir tarih değil", - "%s:%s:%s is not a valid time": "%s:%s:%s geçerli bir zaman değil", - "English": "İngilizce", - "Afar": "Afarca", - "Abkhazian": "Abhazca", - "Afrikaans": "Afrikanca", - "Amharic": "Amharca", - "Arabic": "Arapça", - "Assamese": "Assam dili", - "Aymara": "Aymaraca", - "Azerbaijani": "Azerice", - "Bashkir": "Başkurtça", - "Belarusian": "Belarusça", - "Bulgarian": "Bulgarca", - "Bihari": "Bihari", - "Bislama": "Bislama", - "Bengali/Bangla": "Bengalce", - "Tibetan": "Tibetçe", - "Breton": "Bretonca", - "Catalan": "Katalanca", - "Corsican": "Korsikaca", - "Czech": "Çekçe", - "Welsh": "Galce", - "Danish": "Danca", - "German": "Almanca", - "Bhutani": "Bhutani", - "Greek": "Yunanca", - "Esperanto": "Esperanto", - "Spanish": "İspanyolca", - "Estonian": "Estonca", - "Basque": "Baskça", - "Persian": "Farsça", - "Finnish": "Fince", - "Fiji": "Fiji", - "Faeroese": "Faroece", - "French": "Fransızca", - "Frisian": "Frizce", - "Irish": "İrlandaca", - "Scots/Gaelic": "İskoçça", - "Galician": "Galiçyaca", - "Guarani": "Guarani", - "Gujarati": "Guceratça", - "Hausa": "Hausa dili", - "Hindi": "Hintçe", - "Croatian": "Hırvatça", - "Hungarian": "Macarca", - "Armenian": "Ermenice", - "Interlingua": "İnterlingua", - "Interlingue": "İnterlingue", - "Inupiak": "", - "Indonesian": "Endonezyaca", - "Icelandic": "İzlandaca", - "Italian": "İtalyanca", - "Hebrew": "İbranice", - "Japanese": "Japonca", - "Yiddish": "Yidçe", - "Javanese": "Cavaca", - "Georgian": "Gürcüce", - "Kazakh": "Kazakça", - "Greenlandic": "Grönlandca", - "Cambodian": "", - "Kannada": "Kannada", - "Korean": "Korece", - "Kashmiri": "", - "Kurdish": "Kürtçe", - "Kirghiz": "Kırgızca", - "Latin": "Latince", - "Lingala": "", - "Laothian": "", - "Lithuanian": "Litvanyaca", - "Latvian/Lettish": "Letonca/Lettçe", - "Malagasy": "Madagaskarca", - "Maori": "Maori dili", - "Macedonian": "Makedonca", - "Malayalam": "Malayalamca", - "Mongolian": "Moğolca", - "Moldavian": "Moldovyaca", - "Marathi": "", - "Malay": "Malayca", - "Maltese": "Maltaca", - "Burmese": "", - "Nauru": "", - "Nepali": "Nepalce", - "Dutch": "Felemenkçe", - "Norwegian": "Norveççe", - "Occitan": "Oksitanca", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "Pencapça", - "Polish": "Lehçe", - "Pashto/Pushto": "Peştuca/Puşto", - "Portuguese": "Portekizce", - "Quechua": "Keçuva", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "Rumence", - "Russian": "Rusça", - "Kinyarwanda": "", - "Sanskrit": "Sanskritçe", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "Sırpça-Hırvatça", - "Singhalese": "", - "Slovak": "Slovakça", - "Slovenian": "Slovence", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "Arnavutça", - "Serbian": "Sırpça", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "İsveççe", - "Swahili": "", - "Tamil": "Tamilce", - "Tegulu": "", - "Tajik": "Tacikçe", - "Thai": "", - "Tigrinya": "", - "Turkmen": "Türkmence", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "Türkçe", - "Tsonga": "", - "Tatar": "Tatarca", - "Twi": "", - "Ukrainian": "Ukraynaca", - "Urdu": "Urduca", - "Uzbek": "Özbekçe", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "Çince", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "Profilim", - "Users": "Kullanıcılar", - "Track Types": "", - "Streams": "", - "Status": "Durum", - "Analytics": "", - "Playout History": "", - "History Templates": "", - "Listener Stats": "", - "Show Listener Stats": "", - "Help": "Yardım", - "Getting Started": "Başlarken", - "User Manual": "Kullanım Kılavuzu", - "Get Help Online": "Çevrim İçi Yardım Alın", - "Contribute to LibreTime": "LibreTime'a Katkıda Bulunun", - "What's New?": "", - "You are not allowed to access this resource.": "", - "You are not allowed to access this resource. ": "", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "", - "Bad request. 'mode' parameter is invalid": "", - "You don't have permission to disconnect source.": "", - "There is no source connected to this input.": "", - "You don't have permission to switch source.": "", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "Sayfa bulunamadı.", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "", - "Something went wrong.": "Bir şeyler yanlış gitti.", - "Preview": "Ön izleme", - "Add to Playlist": "", - "Add to Smart Block": "", - "Delete": "Sil", - "Edit...": "Düzenle...", - "Download": "İndir", - "Duplicate Playlist": "", - "Duplicate Smartblock": "", - "No action available": "", - "You don't have permission to delete selected items.": "", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "", - "Please make sure admin user/password is correct on Settings->Streams page.": "", - "Audio Player": "Audio Player", - "Something went wrong!": "Bir şeyler yanlış gitti!", - "Recording:": "", - "Master Stream": "", - "Live Stream": "Canlı yayın", - "Nothing Scheduled": "", - "Current Show:": "", - "Current": "", - "You are running the latest version": "", - "New version available: ": "", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "", - "Add to current smart block": "", - "Adding 1 Item": "", - "Adding %s Items": "", - "You can only add tracks to smart blocks.": "", - "You can only add tracks, smart blocks, and webstreams to playlists.": "", - "Please select a cursor position on timeline.": "", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "Ekle", - "New": "Yeni", - "Edit": "Düzenle", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "Kaldır", - "Edit Metadata": "", - "Add to selected show": "", - "Select": "Seç", - "Select this page": "Bu sayfayı seç", - "Deselect this page": "Bu sayfanın seçimini kaldır", - "Deselect all": "Tümünün seçimini kaldır", - "Are you sure you want to delete the selected item(s)?": "", - "Scheduled": "", - "Tracks": "", - "Playlist": "", - "Title": "Parça Adı", - "Creator": "Oluşturan", - "Album": "Albüm", - "Bit Rate": "Bit Hızı", - "BPM": "BPM", - "Composer": "Besteleyen", - "Conductor": "Orkestra Şefi", - "Copyright": "Telif Hakkı", - "Encoded By": "Encode eden", - "Genre": "Tür", - "ISRC": "ISRC", - "Label": "Plak Şirketi", - "Language": "Dil", - "Last Modified": "Son Değiştirilme Zamanı", - "Last Played": "Son Oynatma Zamanı", - "Length": "Uzunluk", - "Mime": "Mime", - "Mood": "Ruh Hali", - "Owner": "Sahibi", - "Replay Gain": "Replay Gain", - "Sample Rate": "", - "Track Number": "Parça Numarası", - "Uploaded": "Yüklenme Tarihi", - "Website": "Website'si", - "Year": "Yıl", - "Loading...": "Yükleniyor...", - "All": "Tümü", - "Files": "Dosyalar", - "Playlists": "", - "Smart Blocks": "", - "Web Streams": "", - "Unknown type: ": "Bilinmeyen tür: ", - "Are you sure you want to delete the selected item?": "", - "Uploading in progress...": "", - "Retrieving data from the server...": "", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "Hata kodu: ", - "Error msg: ": "Hata mesajı: ", - "Input must be a positive number": "", - "Input must be a number": "", - "Input must be in the format: yyyy-mm-dd": "", - "Input must be in the format: hh:mm:ss.t": "", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "", - "Open Media Builder": "", - "please put in a time '00:00:00 (.0)'": "", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "", - "Dynamic block is not previewable": "", - "Limit to: ": "", - "Playlist saved": "", - "Playlist shuffled": "", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "", - "Listener Count on %s: %s": "", - "Remind me in 1 week": "", - "Remind me never": "", - "Yes, help Airtime": "", - "Image must be one of jpg, jpeg, png, or gif": "", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "", - "Smart block generated and criteria saved": "", - "Smart block saved": "", - "Processing...": "", - "Select modifier": "Değişken seçin", - "contains": "içersin", - "does not contain": "içermesin", - "is": "eşittir", - "is not": "eşit değildir", - "starts with": "ile başlayan", - "ends with": "ile biten", - "is greater than": "büyüktür", - "is less than": "küçüktür", - "is in the range": "aralıkta", - "Generate": "Oluştur", - "Choose Storage Folder": "", - "Choose Folder to Watch": "", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "", - "Manage Media Folders": "", - "Are you sure you want to remove the watched folder?": "", - "This path is currently not accessible.": "", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", - "Connected to the streaming server": "", - "The stream is disabled": "", - "Getting information from the server...": "Sunucudan bilgiler getiriliyor...", - "Can not connect to the streaming server": "", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "", - "Check this box to automatically switch on Master/Show source upon source connection.": "", - "If your Icecast server expects a username of 'source', this field can be left blank.": "", - "If your live streaming client does not ask for a username, this field should be 'source'.": "", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "", - "Specify custom authentication which will work only for this show.": "", - "The show instance doesn't exist anymore!": "", - "Warning: Shows cannot be re-linked": "", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", - "Show": "", - "Show is empty": "", - "1m": "", - "5m": "", - "10m": "", - "15m": "", - "30m": "", - "60m": "", - "Retreiving data from the server...": "", - "This show has no scheduled content.": "", - "This show is not completely filled with content.": "", - "January": "Ocak", - "February": "Şubat", - "March": "Mart", - "April": "Nisan", - "May": "Mayıs", - "June": "Haziran", - "July": "Temmuz", - "August": "Ağustos", - "September": "Eylül", - "October": "Ekim", - "November": "Kasım", - "December": "Aralık", - "Jan": "Oca", - "Feb": "Şub", - "Mar": "Mar", - "Apr": "Nis", - "Jun": "Haz", - "Jul": "Tem", - "Aug": "Ağu", - "Sep": "Eyl", - "Oct": "Eki", - "Nov": "Kas", - "Dec": "Ara", - "Today": "Bugün", - "Day": "Gün", - "Week": "Hafta", - "Month": "Ay", - "Sunday": "Pazar", - "Monday": "Pazartesi", - "Tuesday": "Salı", - "Wednesday": "Çarşamba", - "Thursday": "Perşembe", - "Friday": "Cuma", - "Saturday": "Cumartesi", - "Sun": "Paz", - "Mon": "Pzt", - "Tue": "Sal", - "Wed": "Çar", - "Thu": "Per", - "Fri": "Cum", - "Sat": "Cmt", - "Shows longer than their scheduled time will be cut off by a following show.": "", - "Cancel Current Show?": "", - "Stop recording current show?": "", - "Ok": "OK", - "Contents of Show": "", - "Remove all content?": "", - "Delete selected item(s)?": "", - "Start": "", - "End": "", - "Duration": "", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "Cue In", - "Cue Out": "Cue Out", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Show Empty": "", - "Recording From Line In": "", - "Track preview": "", - "Cannot schedule outside a show.": "", - "Moving 1 Item": "", - "Moving %s Items": "", - "Save": "Kaydet", - "Cancel": "İptal", - "Fade Editor": "", - "Cue Editor": "", - "Waveform features are available in a browser supporting the Web Audio API": "", - "Select all": "", - "Select none": "", - "Trim overbooked shows": "", - "Remove selected scheduled items": "", - "Jump to the current playing track": "", - "Jump to Current": "", - "Cancel current show": "", - "Open library to add or remove content": "", - "Add / Remove Content": "", - "in use": "", - "Disk": "", - "Look in": "", - "Open": "", - "Admin": "Yönetici (Admin)", - "DJ": "DJ", - "Program Manager": "Program Yöneticisi", - "Guest": "Ziyaretçi", - "Guests can do the following:": "", - "View schedule": "", - "View show content": "", - "DJs can do the following:": "", - "Manage assigned show content": "", - "Import media files": "", - "Create playlists, smart blocks, and webstreams": "", - "Manage their own library content": "", - "Program Managers can do the following:": "", - "View and manage show content": "", - "Schedule shows": "", - "Manage all library content": "", - "Admins can do the following:": "", - "Manage preferences": "", - "Manage users": "", - "Manage watched folders": "", - "Send support feedback": "Destek Geribildirimi gönder", - "View system status": "", - "Access playout history": "", - "View listener stats": "", - "Show / hide columns": "", - "Columns": "", - "From {from} to {to}": "", - "kbps": "", - "yyyy-mm-dd": "", - "hh:mm:ss.t": "", - "kHz": "kHz", - "Su": "Pa", - "Mo": "Pt", - "Tu": "Sa", - "We": "Ça", - "Th": "Pe", - "Fr": "Cu", - "Sa": "Ct", - "Close": "Kapat", - "Hour": "Saat", - "Minute": "Dakika", - "Done": "Bitti", - "Select files": "", - "Add files to the upload queue and click the start button.": "", - "Filename": "", - "Size": "", - "Add Files": "", - "Stop Upload": "", - "Start upload": "", - "Start Upload": "", - "Add files": "", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "", - "N/A": "", - "Drag files here.": "", - "File extension error.": "Dosya uzantısı hatası.", - "File size error.": "Dosya boyutu hatası.", - "File count error.": "Dosya sayısı hatası.", - "Init error.": "", - "HTTP Error.": "HTTP hatası.", - "Security error.": "Güvenlik hatası.", - "Generic error.": "Genel hata.", - "IO error.": "GÇ hatası.", - "File: %s": "Dosya: %s", - "%d files queued": "", - "File: %f, size: %s, max file size: %m": "", - "Upload URL might be wrong or doesn't exist": "", - "Error: File too large: ": "Hata: Dosya çok büyük: ", - "Error: Invalid file extension: ": "Hata: Geçersiz dosya uzantısı: ", - "Set Default": "", - "Create Entry": "", - "Edit History Record": "", - "No Show": "Show Yok", - "Copied %s row%s to the clipboard": "", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "Tanım", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "Aktif", - "Disabled": "Devre dışı", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "", - "You are viewing an older version of %s": "", - "You cannot add tracks to dynamic blocks.": "", - "You don't have permission to delete selected %s(s).": "", - "You can only add tracks to smart block.": "", - "Untitled Playlist": "", - "Untitled Smart Block": "", - "Unknown Playlist": "", - "Preferences updated.": "", - "Stream Setting Updated.": "", - "path should be specified": "", - "Problem with Liquidsoap...": "", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "", - "Select cursor": "", - "Remove cursor": "", - "show does not exist": "", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "Kullanıcı başarıyla eklendi!", - "User updated successfully!": "Kullanıcı başarıyla güncellendi!", - "Settings updated successfully!": "Ayarlar başarıyla güncellendi!", - "Untitled Webstream": "", - "Webstream saved.": "", - "Invalid form values.": "", - "Invalid character entered": "Yanlış karakter girdiniz", - "Day must be specified": "Günü belirtmelisiniz", - "Time must be specified": "Zamanı belirtmelisiniz", - "Must wait at least 1 hour to rebroadcast": "Tekrar yayın yapmak için en az bir saat bekleyiniz", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "%s Kimlik Doğrulamasını Kullan", - "Use Custom Authentication:": "Özel Kimlik Doğrulama Kullan", - "Custom Username": "Özel Kullanıcı Adı", - "Custom Password": "Özel Şifre", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "Kullanıcı adı kısmı boş bırakılamaz.", - "Password field cannot be empty.": "Şifre kısmı boş bırakılamaz.", - "Record from Line In?": "Line In'den Kaydet?", - "Rebroadcast?": "Tekrar yayınla?", - "days": "gün", - "Link:": "Birbirine Bağla:", - "Repeat Type:": "Tekrar Türü:", - "weekly": "haftalık", - "every 2 weeks": "2 haftada bir", - "every 3 weeks": "3 haftada bir", - "every 4 weeks": "4 haftada bir", - "monthly": "aylık", - "Select Days:": "Günleri Seçin:", - "Repeat By:": "Şuna göre tekrar et:", - "day of the month": "Ayın günü", - "day of the week": "Haftanın günü", - "Date End:": "Tarih Bitişi:", - "No End?": "Sonu yok?", - "End date must be after start date": "Bitiş tarihi başlangıç tarihinden sonra olmalı", - "Please select a repeat day": "Lütfen tekrar edilmesini istediğiniz günleri seçiniz", - "Background Colour:": "Arkaplan Rengi", - "Text Colour:": "Metin Rengi:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "İsim:", - "Untitled Show": "İsimsiz Show", - "URL:": "URL", - "Genre:": "Tür:", - "Description:": "Açıklama:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} değeri 'HH:mm' saat formatına uymuyor", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "Uzunluğu:", - "Timezone:": "Zaman Dilimi:", - "Repeats?": "Tekrar Ediyor mu?", - "Cannot create show in the past": "Geçmiş tarihli bir show oluşturamazsınız", - "Cannot modify start date/time of the show that is already started": "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz", - "End date/time cannot be in the past": "Bitiş tarihi geçmişte olamaz", - "Cannot have duration < 0m": "Uzunluk < 0dk'dan kısa olamaz", - "Cannot have duration 00h 00m": "00s 00dk Uzunluk olamaz", - "Cannot have duration greater than 24h": "Yayın süresi 24 saati geçemez", - "Cannot schedule overlapping shows": "Üst üste binen show'lar olamaz", - "Search Users:": "Kullanıcıları Ara:", - "DJs:": "DJ'ler:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "Kullanıcı Adı:", - "Password:": "Şifre:", - "Verify Password:": "Şifre Onayı:", - "Firstname:": "İsim:", - "Lastname:": "Soyisim:", - "Email:": "Eposta:", - "Mobile Phone:": "Cep Telefonu:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Kullanıcı Tipi:", - "Login name is not unique.": "Kullanıcı adı eşsiz değil.", - "Delete All Tracks in Library": "", - "Date Start:": "Tarih Başlangıcı:", - "Title:": "Parça Adı:", - "Creator:": "Oluşturan:", - "Album:": "Albüm:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "Yıl:", - "Label:": "Plak Şirketi:", - "Composer:": "Besteleyen:", - "Conductor:": "Orkestra Şefi:", - "Mood:": "Ruh Hali:", - "BPM:": "BPM:", - "Copyright:": "Telif Hakkı:", - "ISRC Number:": "ISRC No:", - "Website:": "Websitesi:", - "Language:": "Dil:", - "Publish...": "", - "Start Time": "Başlangıç Saati", - "End Time": "Bitiş Saati", - "Interface Timezone:": "Arayüz Zaman Dilimi", - "Station Name": "Radyo Adı", - "Station Description": "", - "Station Logo:": "Radyo Logosu:", - "Note: Anything larger than 600x600 will be resized.": "", - "Default Crossfade Duration (s):": "Varsayılan Çarpraz Geçiş Süresi:", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "Varsayılan Fade In geçişi (s)", - "Default Fade Out (s):": "Varsayılan Fade Out geçişi (s)", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "Radyo Saat Dilimi", - "Week Starts On": "Hafta Başlangıcı", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "Giriş yap", - "Password": "Şifre", - "Confirm new password": "Yeni şifreyi onayla", - "Password confirmation does not match your password.": "Onay şifresiyle şifreniz aynı değil.", - "Email": "", - "Username": "Kullanıcı adı", - "Reset password": "Parolayı değiştir", - "Back": "", - "Now Playing": "", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "Tüm Şovlarım:", - "My Shows": "Şovlarım", - "Select criteria": "Kriter seçin", - "Bit Rate (Kbps)": "Bit Oranı (Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "Örnekleme Oranı (kHz)", - "before": "önce", - "after": "sonra", - "between": "arasında", - "Select unit of time": "Zaman birimi seçin", - "minute(s)": "dakika", - "hour(s)": "saat", - "day(s)": "gün", - "week(s)": "hafta", - "month(s)": "ay", - "year(s)": "yıl", - "hours": "saat", - "minutes": "dakika", - "items": "parça", - "time remaining in show": "", - "Randomly": "Rastgele", - "Newest": "En yeni", - "Oldest": "En eski", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "Dinamik", - "Static": "Sabit", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "Çalma listesi içeriği oluştur ve kriterleri kaydet", - "Shuffle playlist content": "Çalma listesi içeriğini karıştır", - "Shuffle": "Karıştır", - "Limit cannot be empty or smaller than 0": "Sınırlama boş veya 0'dan küçük olamaz", - "Limit cannot be more than 24 hrs": "Sınırlama 24 saati geçemez", - "The value should be an integer": "Değer tamsayı olmalıdır", - "500 is the max item limit value you can set": "Ayarlayabileceğiniz azami parça sınırı 500'dür", - "You must select Criteria and Modifier": "Kriter ve Değişken seçin", - "'Length' should be in '00:00:00' format": "Uzunluk '00:00:00' türünde olmalıdır", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "Değer rakam cinsinden girilmelidir", - "The value should be less then 2147483648": "Değer 2147483648'den küçük olmalıdır", - "The value cannot be empty": "", - "The value should be less than %s characters": "Değer %s karakter'den az olmalıdır", - "Value cannot be empty": "Değer boş bırakılamaz", - "Stream Label:": "Yayın Etiketi:", - "Artist - Title": "Şarkıcı - Parça Adı", - "Show - Artist - Title": "Show - Şarkıcı - Parça Adı", - "Station name - Show name": "Radyo adı - Show adı", - "Off Air Metadata": "Yayın Dışında Gösterilecek Etiket", - "Enable Replay Gain": "ReplayGain'i aktif et", - "Replay Gain Modifier": "ReplayGain Değeri", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "Etkin:", - "Mobile:": "", - "Stream Type:": "Yayın Türü:", - "Bit Rate:": "Bit Değeri:", - "Service Type:": "Servis Türü:", - "Channels:": "Kanallar:", - "Server": "Sunucu", - "Port": "Port", - "Mount Point": "Bağlama Noktası", - "Name": "İsim", - "URL": "URL", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "İçe Aktarım Klasörü", - "Watched Folders:": "İzlenen Klasörler:", - "Not a valid Directory": "Geçerli bir Klasör değil.", - "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} kullanici{'@'}site.com yapısına uymayan geçersiz bir adres", - "{msg} does not fit the date format '%format%'": "{msg} değeri '%format%' zaman formatına uymuyor", - "{msg} is less than %min% characters long": "{msg} değeri olması gereken '%min%' karakterden daha az", - "{msg} is more than %max% characters long": "{msg} değeri olması gereken '%max%' karakterden daha fazla", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} değeri '%min%' ve '%max%' değerleri arasında değil", - "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "", - "Can't set cue out to be greater than file length.": "", - "Can't set cue in to be larger than cue out.": "", - "Can't set cue out to be smaller than cue in.": "", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "", - "livestream": "", - "Cannot move items out of linked shows": "", - "The schedule you're viewing is out of date! (sched mismatch)": "", - "The schedule you're viewing is out of date! (instance mismatch)": "", - "The schedule you're viewing is out of date!": "", - "You are not allowed to schedule show %s.": "", - "You cannot add files to recording shows.": "", - "The show %s is over and cannot be scheduled.": "", - "The show %s has been previously updated!": "", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "", - "Shows can have a max length of 24 hours.": "", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "", - "Rebroadcast of %s from %s": "", - "Length needs to be greater than 0 minutes": "", - "Length should be of form \"00h 00m\"": "", - "URL should be of form \"https://example.org\"": "", - "URL should be 512 characters or less": "", - "No MIME type found for webstream.": "", - "Webstream name cannot be empty": "", - "Could not parse XSPF playlist": "", - "Could not parse PLS playlist": "", - "Could not parse M3U playlist": "", - "Invalid webstream - This appears to be a file download.": "", - "Unrecognized stream type: %s": "", - "Record file doesn't exist": "", - "View Recorded File Metadata": "", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "", - "Can't drag and drop repeating shows": "", - "Can't move a past show": "", - "Can't move show into past": "", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "", - "Show was deleted because recorded show does not exist!": "", - "Must wait 1 hour to rebroadcast.": "", - "Track": "", - "Played": "", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "%s yılı 1753 - 9999 aralığında olmalıdır", + "%s-%s-%s is not a valid date": "%s-%s-%s geçerli bir tarih değil", + "%s:%s:%s is not a valid time": "%s:%s:%s geçerli bir zaman değil", + "English": "İngilizce", + "Afar": "Afarca", + "Abkhazian": "Abhazca", + "Afrikaans": "Afrikanca", + "Amharic": "Amharca", + "Arabic": "Arapça", + "Assamese": "Assam dili", + "Aymara": "Aymaraca", + "Azerbaijani": "Azerice", + "Bashkir": "Başkurtça", + "Belarusian": "Belarusça", + "Bulgarian": "Bulgarca", + "Bihari": "Bihari", + "Bislama": "Bislama", + "Bengali/Bangla": "Bengalce", + "Tibetan": "Tibetçe", + "Breton": "Bretonca", + "Catalan": "Katalanca", + "Corsican": "Korsikaca", + "Czech": "Çekçe", + "Welsh": "Galce", + "Danish": "Danca", + "German": "Almanca", + "Bhutani": "Bhutani", + "Greek": "Yunanca", + "Esperanto": "Esperanto", + "Spanish": "İspanyolca", + "Estonian": "Estonca", + "Basque": "Baskça", + "Persian": "Farsça", + "Finnish": "Fince", + "Fiji": "Fiji", + "Faeroese": "Faroece", + "French": "Fransızca", + "Frisian": "Frizce", + "Irish": "İrlandaca", + "Scots/Gaelic": "İskoçça", + "Galician": "Galiçyaca", + "Guarani": "Guarani", + "Gujarati": "Guceratça", + "Hausa": "Hausa dili", + "Hindi": "Hintçe", + "Croatian": "Hırvatça", + "Hungarian": "Macarca", + "Armenian": "Ermenice", + "Interlingua": "İnterlingua", + "Interlingue": "İnterlingue", + "Inupiak": "", + "Indonesian": "Endonezyaca", + "Icelandic": "İzlandaca", + "Italian": "İtalyanca", + "Hebrew": "İbranice", + "Japanese": "Japonca", + "Yiddish": "Yidçe", + "Javanese": "Cavaca", + "Georgian": "Gürcüce", + "Kazakh": "Kazakça", + "Greenlandic": "Grönlandca", + "Cambodian": "", + "Kannada": "Kannada", + "Korean": "Korece", + "Kashmiri": "", + "Kurdish": "Kürtçe", + "Kirghiz": "Kırgızca", + "Latin": "Latince", + "Lingala": "", + "Laothian": "", + "Lithuanian": "Litvanyaca", + "Latvian/Lettish": "Letonca/Lettçe", + "Malagasy": "Madagaskarca", + "Maori": "Maori dili", + "Macedonian": "Makedonca", + "Malayalam": "Malayalamca", + "Mongolian": "Moğolca", + "Moldavian": "Moldovyaca", + "Marathi": "", + "Malay": "Malayca", + "Maltese": "Maltaca", + "Burmese": "", + "Nauru": "", + "Nepali": "Nepalce", + "Dutch": "Felemenkçe", + "Norwegian": "Norveççe", + "Occitan": "Oksitanca", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "Pencapça", + "Polish": "Lehçe", + "Pashto/Pushto": "Peştuca/Puşto", + "Portuguese": "Portekizce", + "Quechua": "Keçuva", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "Rumence", + "Russian": "Rusça", + "Kinyarwanda": "", + "Sanskrit": "Sanskritçe", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "Sırpça-Hırvatça", + "Singhalese": "", + "Slovak": "Slovakça", + "Slovenian": "Slovence", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "Arnavutça", + "Serbian": "Sırpça", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "İsveççe", + "Swahili": "", + "Tamil": "Tamilce", + "Tegulu": "", + "Tajik": "Tacikçe", + "Thai": "", + "Tigrinya": "", + "Turkmen": "Türkmence", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "Türkçe", + "Tsonga": "", + "Tatar": "Tatarca", + "Twi": "", + "Ukrainian": "Ukraynaca", + "Urdu": "Urduca", + "Uzbek": "Özbekçe", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "Çince", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "Profilim", + "Users": "Kullanıcılar", + "Track Types": "", + "Streams": "", + "Status": "Durum", + "Analytics": "", + "Playout History": "", + "History Templates": "", + "Listener Stats": "", + "Show Listener Stats": "", + "Help": "Yardım", + "Getting Started": "Başlarken", + "User Manual": "Kullanım Kılavuzu", + "Get Help Online": "Çevrim İçi Yardım Alın", + "Contribute to LibreTime": "LibreTime'a Katkıda Bulunun", + "What's New?": "", + "You are not allowed to access this resource.": "", + "You are not allowed to access this resource. ": "", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "", + "Bad request. 'mode' parameter is invalid": "", + "You don't have permission to disconnect source.": "", + "There is no source connected to this input.": "", + "You don't have permission to switch source.": "", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "Sayfa bulunamadı.", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "", + "Something went wrong.": "Bir şeyler yanlış gitti.", + "Preview": "Ön izleme", + "Add to Playlist": "", + "Add to Smart Block": "", + "Delete": "Sil", + "Edit...": "Düzenle...", + "Download": "İndir", + "Duplicate Playlist": "", + "Duplicate Smartblock": "", + "No action available": "", + "You don't have permission to delete selected items.": "", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "", + "Please make sure admin user/password is correct on Settings->Streams page.": "", + "Audio Player": "Audio Player", + "Something went wrong!": "Bir şeyler yanlış gitti!", + "Recording:": "", + "Master Stream": "", + "Live Stream": "Canlı yayın", + "Nothing Scheduled": "", + "Current Show:": "", + "Current": "", + "You are running the latest version": "", + "New version available: ": "", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "", + "Add to current smart block": "", + "Adding 1 Item": "", + "Adding %s Items": "", + "You can only add tracks to smart blocks.": "", + "You can only add tracks, smart blocks, and webstreams to playlists.": "", + "Please select a cursor position on timeline.": "", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "Ekle", + "New": "Yeni", + "Edit": "Düzenle", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "Kaldır", + "Edit Metadata": "", + "Add to selected show": "", + "Select": "Seç", + "Select this page": "Bu sayfayı seç", + "Deselect this page": "Bu sayfanın seçimini kaldır", + "Deselect all": "Tümünün seçimini kaldır", + "Are you sure you want to delete the selected item(s)?": "", + "Scheduled": "", + "Tracks": "", + "Playlist": "", + "Title": "Parça Adı", + "Creator": "Oluşturan", + "Album": "Albüm", + "Bit Rate": "Bit Hızı", + "BPM": "BPM", + "Composer": "Besteleyen", + "Conductor": "Orkestra Şefi", + "Copyright": "Telif Hakkı", + "Encoded By": "Encode eden", + "Genre": "Tür", + "ISRC": "ISRC", + "Label": "Plak Şirketi", + "Language": "Dil", + "Last Modified": "Son Değiştirilme Zamanı", + "Last Played": "Son Oynatma Zamanı", + "Length": "Uzunluk", + "Mime": "Mime", + "Mood": "Ruh Hali", + "Owner": "Sahibi", + "Replay Gain": "Replay Gain", + "Sample Rate": "", + "Track Number": "Parça Numarası", + "Uploaded": "Yüklenme Tarihi", + "Website": "Website'si", + "Year": "Yıl", + "Loading...": "Yükleniyor...", + "All": "Tümü", + "Files": "Dosyalar", + "Playlists": "", + "Smart Blocks": "", + "Web Streams": "", + "Unknown type: ": "Bilinmeyen tür: ", + "Are you sure you want to delete the selected item?": "", + "Uploading in progress...": "", + "Retrieving data from the server...": "", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "Hata kodu: ", + "Error msg: ": "Hata mesajı: ", + "Input must be a positive number": "", + "Input must be a number": "", + "Input must be in the format: yyyy-mm-dd": "", + "Input must be in the format: hh:mm:ss.t": "", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "", + "Open Media Builder": "", + "please put in a time '00:00:00 (.0)'": "", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "", + "Dynamic block is not previewable": "", + "Limit to: ": "", + "Playlist saved": "", + "Playlist shuffled": "", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "", + "Listener Count on %s: %s": "", + "Remind me in 1 week": "", + "Remind me never": "", + "Yes, help Airtime": "", + "Image must be one of jpg, jpeg, png, or gif": "", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "", + "Smart block generated and criteria saved": "", + "Smart block saved": "", + "Processing...": "", + "Select modifier": "Değişken seçin", + "contains": "içersin", + "does not contain": "içermesin", + "is": "eşittir", + "is not": "eşit değildir", + "starts with": "ile başlayan", + "ends with": "ile biten", + "is greater than": "büyüktür", + "is less than": "küçüktür", + "is in the range": "aralıkta", + "Generate": "Oluştur", + "Choose Storage Folder": "", + "Choose Folder to Watch": "", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "", + "Manage Media Folders": "", + "Are you sure you want to remove the watched folder?": "", + "This path is currently not accessible.": "", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "", + "Connected to the streaming server": "", + "The stream is disabled": "", + "Getting information from the server...": "Sunucudan bilgiler getiriliyor...", + "Can not connect to the streaming server": "", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "", + "Check this box to automatically switch on Master/Show source upon source connection.": "", + "If your Icecast server expects a username of 'source', this field can be left blank.": "", + "If your live streaming client does not ask for a username, this field should be 'source'.": "", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "", + "Specify custom authentication which will work only for this show.": "", + "The show instance doesn't exist anymore!": "", + "Warning: Shows cannot be re-linked": "", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "", + "Show": "", + "Show is empty": "", + "1m": "", + "5m": "", + "10m": "", + "15m": "", + "30m": "", + "60m": "", + "Retreiving data from the server...": "", + "This show has no scheduled content.": "", + "This show is not completely filled with content.": "", + "January": "Ocak", + "February": "Şubat", + "March": "Mart", + "April": "Nisan", + "May": "Mayıs", + "June": "Haziran", + "July": "Temmuz", + "August": "Ağustos", + "September": "Eylül", + "October": "Ekim", + "November": "Kasım", + "December": "Aralık", + "Jan": "Oca", + "Feb": "Şub", + "Mar": "Mar", + "Apr": "Nis", + "Jun": "Haz", + "Jul": "Tem", + "Aug": "Ağu", + "Sep": "Eyl", + "Oct": "Eki", + "Nov": "Kas", + "Dec": "Ara", + "Today": "Bugün", + "Day": "Gün", + "Week": "Hafta", + "Month": "Ay", + "Sunday": "Pazar", + "Monday": "Pazartesi", + "Tuesday": "Salı", + "Wednesday": "Çarşamba", + "Thursday": "Perşembe", + "Friday": "Cuma", + "Saturday": "Cumartesi", + "Sun": "Paz", + "Mon": "Pzt", + "Tue": "Sal", + "Wed": "Çar", + "Thu": "Per", + "Fri": "Cum", + "Sat": "Cmt", + "Shows longer than their scheduled time will be cut off by a following show.": "", + "Cancel Current Show?": "", + "Stop recording current show?": "", + "Ok": "OK", + "Contents of Show": "", + "Remove all content?": "", + "Delete selected item(s)?": "", + "Start": "", + "End": "", + "Duration": "", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "Cue In", + "Cue Out": "Cue Out", + "Fade In": "Fade In", + "Fade Out": "Fade Out", + "Show Empty": "", + "Recording From Line In": "", + "Track preview": "", + "Cannot schedule outside a show.": "", + "Moving 1 Item": "", + "Moving %s Items": "", + "Save": "Kaydet", + "Cancel": "İptal", + "Fade Editor": "", + "Cue Editor": "", + "Waveform features are available in a browser supporting the Web Audio API": "", + "Select all": "", + "Select none": "", + "Trim overbooked shows": "", + "Remove selected scheduled items": "", + "Jump to the current playing track": "", + "Jump to Current": "", + "Cancel current show": "", + "Open library to add or remove content": "", + "Add / Remove Content": "", + "in use": "", + "Disk": "", + "Look in": "", + "Open": "", + "Admin": "Yönetici (Admin)", + "DJ": "DJ", + "Program Manager": "Program Yöneticisi", + "Guest": "Ziyaretçi", + "Guests can do the following:": "", + "View schedule": "", + "View show content": "", + "DJs can do the following:": "", + "Manage assigned show content": "", + "Import media files": "", + "Create playlists, smart blocks, and webstreams": "", + "Manage their own library content": "", + "Program Managers can do the following:": "", + "View and manage show content": "", + "Schedule shows": "", + "Manage all library content": "", + "Admins can do the following:": "", + "Manage preferences": "", + "Manage users": "", + "Manage watched folders": "", + "Send support feedback": "Destek Geribildirimi gönder", + "View system status": "", + "Access playout history": "", + "View listener stats": "", + "Show / hide columns": "", + "Columns": "", + "From {from} to {to}": "", + "kbps": "", + "yyyy-mm-dd": "", + "hh:mm:ss.t": "", + "kHz": "kHz", + "Su": "Pa", + "Mo": "Pt", + "Tu": "Sa", + "We": "Ça", + "Th": "Pe", + "Fr": "Cu", + "Sa": "Ct", + "Close": "Kapat", + "Hour": "Saat", + "Minute": "Dakika", + "Done": "Bitti", + "Select files": "", + "Add files to the upload queue and click the start button.": "", + "Filename": "", + "Size": "", + "Add Files": "", + "Stop Upload": "", + "Start upload": "", + "Start Upload": "", + "Add files": "", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "", + "N/A": "", + "Drag files here.": "", + "File extension error.": "Dosya uzantısı hatası.", + "File size error.": "Dosya boyutu hatası.", + "File count error.": "Dosya sayısı hatası.", + "Init error.": "", + "HTTP Error.": "HTTP hatası.", + "Security error.": "Güvenlik hatası.", + "Generic error.": "Genel hata.", + "IO error.": "GÇ hatası.", + "File: %s": "Dosya: %s", + "%d files queued": "", + "File: %f, size: %s, max file size: %m": "", + "Upload URL might be wrong or doesn't exist": "", + "Error: File too large: ": "Hata: Dosya çok büyük: ", + "Error: Invalid file extension: ": "Hata: Geçersiz dosya uzantısı: ", + "Set Default": "", + "Create Entry": "", + "Edit History Record": "", + "No Show": "Show Yok", + "Copied %s row%s to the clipboard": "", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "Tanım", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "Aktif", + "Disabled": "Devre dışı", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "", + "You are viewing an older version of %s": "", + "You cannot add tracks to dynamic blocks.": "", + "You don't have permission to delete selected %s(s).": "", + "You can only add tracks to smart block.": "", + "Untitled Playlist": "", + "Untitled Smart Block": "", + "Unknown Playlist": "", + "Preferences updated.": "", + "Stream Setting Updated.": "", + "path should be specified": "", + "Problem with Liquidsoap...": "", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "", + "Select cursor": "", + "Remove cursor": "", + "show does not exist": "", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "Kullanıcı başarıyla eklendi!", + "User updated successfully!": "Kullanıcı başarıyla güncellendi!", + "Settings updated successfully!": "Ayarlar başarıyla güncellendi!", + "Untitled Webstream": "", + "Webstream saved.": "", + "Invalid form values.": "", + "Invalid character entered": "Yanlış karakter girdiniz", + "Day must be specified": "Günü belirtmelisiniz", + "Time must be specified": "Zamanı belirtmelisiniz", + "Must wait at least 1 hour to rebroadcast": "Tekrar yayın yapmak için en az bir saat bekleyiniz", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "%s Kimlik Doğrulamasını Kullan", + "Use Custom Authentication:": "Özel Kimlik Doğrulama Kullan", + "Custom Username": "Özel Kullanıcı Adı", + "Custom Password": "Özel Şifre", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "Kullanıcı adı kısmı boş bırakılamaz.", + "Password field cannot be empty.": "Şifre kısmı boş bırakılamaz.", + "Record from Line In?": "Line In'den Kaydet?", + "Rebroadcast?": "Tekrar yayınla?", + "days": "gün", + "Link:": "Birbirine Bağla:", + "Repeat Type:": "Tekrar Türü:", + "weekly": "haftalık", + "every 2 weeks": "2 haftada bir", + "every 3 weeks": "3 haftada bir", + "every 4 weeks": "4 haftada bir", + "monthly": "aylık", + "Select Days:": "Günleri Seçin:", + "Repeat By:": "Şuna göre tekrar et:", + "day of the month": "Ayın günü", + "day of the week": "Haftanın günü", + "Date End:": "Tarih Bitişi:", + "No End?": "Sonu yok?", + "End date must be after start date": "Bitiş tarihi başlangıç tarihinden sonra olmalı", + "Please select a repeat day": "Lütfen tekrar edilmesini istediğiniz günleri seçiniz", + "Background Colour:": "Arkaplan Rengi", + "Text Colour:": "Metin Rengi:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "İsim:", + "Untitled Show": "İsimsiz Show", + "URL:": "URL", + "Genre:": "Tür:", + "Description:": "Açıklama:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} değeri 'HH:mm' saat formatına uymuyor", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "Uzunluğu:", + "Timezone:": "Zaman Dilimi:", + "Repeats?": "Tekrar Ediyor mu?", + "Cannot create show in the past": "Geçmiş tarihli bir show oluşturamazsınız", + "Cannot modify start date/time of the show that is already started": "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz", + "End date/time cannot be in the past": "Bitiş tarihi geçmişte olamaz", + "Cannot have duration < 0m": "Uzunluk < 0dk'dan kısa olamaz", + "Cannot have duration 00h 00m": "00s 00dk Uzunluk olamaz", + "Cannot have duration greater than 24h": "Yayın süresi 24 saati geçemez", + "Cannot schedule overlapping shows": "Üst üste binen show'lar olamaz", + "Search Users:": "Kullanıcıları Ara:", + "DJs:": "DJ'ler:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "Kullanıcı Adı:", + "Password:": "Şifre:", + "Verify Password:": "Şifre Onayı:", + "Firstname:": "İsim:", + "Lastname:": "Soyisim:", + "Email:": "Eposta:", + "Mobile Phone:": "Cep Telefonu:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Kullanıcı Tipi:", + "Login name is not unique.": "Kullanıcı adı eşsiz değil.", + "Delete All Tracks in Library": "", + "Date Start:": "Tarih Başlangıcı:", + "Title:": "Parça Adı:", + "Creator:": "Oluşturan:", + "Album:": "Albüm:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "Yıl:", + "Label:": "Plak Şirketi:", + "Composer:": "Besteleyen:", + "Conductor:": "Orkestra Şefi:", + "Mood:": "Ruh Hali:", + "BPM:": "BPM:", + "Copyright:": "Telif Hakkı:", + "ISRC Number:": "ISRC No:", + "Website:": "Websitesi:", + "Language:": "Dil:", + "Publish...": "", + "Start Time": "Başlangıç Saati", + "End Time": "Bitiş Saati", + "Interface Timezone:": "Arayüz Zaman Dilimi", + "Station Name": "Radyo Adı", + "Station Description": "", + "Station Logo:": "Radyo Logosu:", + "Note: Anything larger than 600x600 will be resized.": "", + "Default Crossfade Duration (s):": "Varsayılan Çarpraz Geçiş Süresi:", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "Varsayılan Fade In geçişi (s)", + "Default Fade Out (s):": "Varsayılan Fade Out geçişi (s)", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "Radyo Saat Dilimi", + "Week Starts On": "Hafta Başlangıcı", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "Giriş yap", + "Password": "Şifre", + "Confirm new password": "Yeni şifreyi onayla", + "Password confirmation does not match your password.": "Onay şifresiyle şifreniz aynı değil.", + "Email": "", + "Username": "Kullanıcı adı", + "Reset password": "Parolayı değiştir", + "Back": "", + "Now Playing": "", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "Tüm Şovlarım:", + "My Shows": "Şovlarım", + "Select criteria": "Kriter seçin", + "Bit Rate (Kbps)": "Bit Oranı (Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "Örnekleme Oranı (kHz)", + "before": "önce", + "after": "sonra", + "between": "arasında", + "Select unit of time": "Zaman birimi seçin", + "minute(s)": "dakika", + "hour(s)": "saat", + "day(s)": "gün", + "week(s)": "hafta", + "month(s)": "ay", + "year(s)": "yıl", + "hours": "saat", + "minutes": "dakika", + "items": "parça", + "time remaining in show": "", + "Randomly": "Rastgele", + "Newest": "En yeni", + "Oldest": "En eski", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "Dinamik", + "Static": "Sabit", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "Çalma listesi içeriği oluştur ve kriterleri kaydet", + "Shuffle playlist content": "Çalma listesi içeriğini karıştır", + "Shuffle": "Karıştır", + "Limit cannot be empty or smaller than 0": "Sınırlama boş veya 0'dan küçük olamaz", + "Limit cannot be more than 24 hrs": "Sınırlama 24 saati geçemez", + "The value should be an integer": "Değer tamsayı olmalıdır", + "500 is the max item limit value you can set": "Ayarlayabileceğiniz azami parça sınırı 500'dür", + "You must select Criteria and Modifier": "Kriter ve Değişken seçin", + "'Length' should be in '00:00:00' format": "Uzunluk '00:00:00' türünde olmalıdır", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "Değer rakam cinsinden girilmelidir", + "The value should be less then 2147483648": "Değer 2147483648'den küçük olmalıdır", + "The value cannot be empty": "", + "The value should be less than %s characters": "Değer %s karakter'den az olmalıdır", + "Value cannot be empty": "Değer boş bırakılamaz", + "Stream Label:": "Yayın Etiketi:", + "Artist - Title": "Şarkıcı - Parça Adı", + "Show - Artist - Title": "Show - Şarkıcı - Parça Adı", + "Station name - Show name": "Radyo adı - Show adı", + "Off Air Metadata": "Yayın Dışında Gösterilecek Etiket", + "Enable Replay Gain": "ReplayGain'i aktif et", + "Replay Gain Modifier": "ReplayGain Değeri", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "Etkin:", + "Mobile:": "", + "Stream Type:": "Yayın Türü:", + "Bit Rate:": "Bit Değeri:", + "Service Type:": "Servis Türü:", + "Channels:": "Kanallar:", + "Server": "Sunucu", + "Port": "Port", + "Mount Point": "Bağlama Noktası", + "Name": "İsim", + "URL": "URL", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "İçe Aktarım Klasörü", + "Watched Folders:": "İzlenen Klasörler:", + "Not a valid Directory": "Geçerli bir Klasör değil.", + "Value is required and can't be empty": "Değer gerekli ve boş bırakılamaz", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} kullanici{'@'}site.com yapısına uymayan geçersiz bir adres", + "{msg} does not fit the date format '%format%'": "{msg} değeri '%format%' zaman formatına uymuyor", + "{msg} is less than %min% characters long": "{msg} değeri olması gereken '%min%' karakterden daha az", + "{msg} is more than %max% characters long": "{msg} değeri olması gereken '%max%' karakterden daha fazla", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} değeri '%min%' ve '%max%' değerleri arasında değil", + "Passwords do not match": "Girdiğiniz şifreler örtüşmüyor.", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "", + "Can't set cue out to be greater than file length.": "", + "Can't set cue in to be larger than cue out.": "", + "Can't set cue out to be smaller than cue in.": "", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "", + "livestream": "", + "Cannot move items out of linked shows": "", + "The schedule you're viewing is out of date! (sched mismatch)": "", + "The schedule you're viewing is out of date! (instance mismatch)": "", + "The schedule you're viewing is out of date!": "", + "You are not allowed to schedule show %s.": "", + "You cannot add files to recording shows.": "", + "The show %s is over and cannot be scheduled.": "", + "The show %s has been previously updated!": "", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "", + "Shows can have a max length of 24 hours.": "", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "", + "Rebroadcast of %s from %s": "", + "Length needs to be greater than 0 minutes": "", + "Length should be of form \"00h 00m\"": "", + "URL should be of form \"https://example.org\"": "", + "URL should be 512 characters or less": "", + "No MIME type found for webstream.": "", + "Webstream name cannot be empty": "", + "Could not parse XSPF playlist": "", + "Could not parse PLS playlist": "", + "Could not parse M3U playlist": "", + "Invalid webstream - This appears to be a file download.": "", + "Unrecognized stream type: %s": "", + "Record file doesn't exist": "", + "View Recorded File Metadata": "", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "", + "Can't drag and drop repeating shows": "", + "Can't move a past show": "", + "Can't move show into past": "", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "", + "Show was deleted because recorded show does not exist!": "", + "Must wait 1 hour to rebroadcast.": "", + "Track": "", + "Played": "", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } diff --git a/webapp/src/locale/uk_UA.json b/webapp/src/locale/uk_UA.json index 190f1d4715..086ce037a6 100644 --- a/webapp/src/locale/uk_UA.json +++ b/webapp/src/locale/uk_UA.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "Рік %s має бути в діапазоні 1753 - 9999", - "%s-%s-%s is not a valid date": "%s-%s-%s дата недійсна", - "%s:%s:%s is not a valid time": "%s:%s:%s недійсний час", - "English": "Англійська", - "Afar": "Афар", - "Abkhazian": "Абхазька", - "Afrikaans": "Африканська", - "Amharic": "Амхарська", - "Arabic": "Арабська", - "Assamese": "Асамська", - "Aymara": "Аймара", - "Azerbaijani": "Азербайджанська", - "Bashkir": "Башкирська", - "Belarusian": "Білоруська", - "Bulgarian": "Болгарська", - "Bihari": "Біхарі", - "Bislama": "Біслама", - "Bengali/Bangla": "Бенгальська/Бангла", - "Tibetan": "Тибетська", - "Breton": "Бретонська", - "Catalan": "Каталонська", - "Corsican": "Корсиканська", - "Czech": "Чеська", - "Welsh": "Валлійська", - "Danish": "Датська", - "German": "Німецька", - "Bhutani": "Мови Бутану", - "Greek": "Грецька", - "Esperanto": "Есперанто", - "Spanish": "Іспанська", - "Estonian": "Естонська", - "Basque": "Баскська", - "Persian": "Перська", - "Finnish": "Фінська", - "Fiji": "Фіджійська", - "Faeroese": "Фарерська", - "French": "Французька", - "Frisian": "Фризька", - "Irish": "Ірландська", - "Scots/Gaelic": "Шотландська/Гельська", - "Galician": "Галісійська", - "Guarani": "Гуарані", - "Gujarati": "Гуджаратська", - "Hausa": "Хауса", - "Hindi": "Хінді", - "Croatian": "Хорватська", - "Hungarian": "Угорська", - "Armenian": "Вірменська", - "Interlingua": "Інтерлінгва", - "Interlingue": "Окциденталь", - "Inupiak": "Аляскинсько-інуїтська", - "Indonesian": "Індонезійська", - "Icelandic": "Ісландська", - "Italian": "Італійська", - "Hebrew": "Іврит", - "Japanese": "Японська", - "Yiddish": "Ідиш", - "Javanese": "Яванська", - "Georgian": "Грузинська", - "Kazakh": "Казахська", - "Greenlandic": "Гренландська", - "Cambodian": "Камбоджійська", - "Kannada": "Каннада", - "Korean": "Корейська", - "Kashmiri": "Кашмірська", - "Kurdish": "Курдська", - "Kirghiz": "Киргизька", - "Latin": "Латинська", - "Lingala": "Лінґала", - "Laothian": "Лаоська", - "Lithuanian": "Литовська", - "Latvian/Lettish": "Латиська", - "Malagasy": "Малагасійська", - "Maori": "Маорійська", - "Macedonian": "Македонська", - "Malayalam": "Малаялам", - "Mongolian": "Монгольська", - "Moldavian": "Молдавська", - "Marathi": "Мара́тська", - "Malay": "Малайська", - "Maltese": "Мальтійська", - "Burmese": "Бірманська", - "Nauru": "Науруанська", - "Nepali": "Непальська", - "Dutch": "Голландська", - "Norwegian": "Норвезька", - "Occitan": "Окситанська", - "(Afan)/Oromoor/Oriya": "Оромо", - "Punjabi": "Пенджабська", - "Polish": "Польська", - "Pashto/Pushto": "Пушту", - "Portuguese": "Португальська", - "Quechua": "Кечуа", - "Rhaeto-Romance": "Рето-романська", - "Kirundi": "Кірунді", - "Romanian": "Румунська", - "Russian": "Російська", - "Kinyarwanda": "Руандійська", - "Sanskrit": "Санскрит", - "Sindhi": "Сіндхі", - "Sangro": "Санго", - "Serbo-Croatian": "Сербохорватська", - "Singhalese": "Сингальська", - "Slovak": "Словацька", - "Slovenian": "Словенська", - "Samoan": "Самоанська", - "Shona": "Шона", - "Somali": "Сомалійська", - "Albanian": "Албанська", - "Serbian": "Сербська", - "Siswati": "Сваті", - "Sesotho": "Сесото", - "Sundanese": "Сунданська", - "Swedish": "Шведська", - "Swahili": "Суахілі", - "Tamil": "Тамільська", - "Tegulu": "Телугу", - "Tajik": "Таджицька", - "Thai": "Тайська", - "Tigrinya": "Тигринья", - "Turkmen": "Туркменський", - "Tagalog": "Тагальська", - "Setswana": "Тсвана", - "Tonga": "Тонганська", - "Turkish": "Турецька", - "Tsonga": "Тсонга", - "Tatar": "Татарська", - "Twi": "Чві", - "Ukrainian": "Українська", - "Urdu": "Урду", - "Uzbek": "Узбецька", - "Vietnamese": "В'єтнамська", - "Volapuk": "Волапюк", - "Wolof": "Волоф", - "Xhosa": "Хоса", - "Yoruba": "Юрубський", - "Chinese": "Китайська", - "Zulu": "Зулуська", - "Use station default": "Використовувати станцію за замовчуванням", - "Upload some tracks below to add them to your library!": "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s.", - "Click the 'New Show' button and fill out the required fields.": "Натисніть кнопку «Нова програма» та заповніть необхідні поля.", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s.", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму».", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n %sСтворіть непов'язану програму зараз%s.", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s.", - "Click on the show starting next and select 'Schedule Tracks'": "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s.", - "LibreTime media analyzer service": "Служба медіааналізатора LibreTime", - "Check that the libretime-analyzer service is installed correctly in ": "Переконайтеся, що службу libretime-analyzer встановлено правильно ", - " and ensure that it's running with ": " і переконайтеся, що вона працює ", - "If not, try ": "Якщо ні, спробуйте запустити ", - "LibreTime playout service": "Сервіс відтворення LibreTime", - "Check that the libretime-playout service is installed correctly in ": "Переконайтеся, що службу libretime-playout встановлено правильно ", - "LibreTime liquidsoap service": "Служба LibreTime liquidsoap", - "Check that the libretime-liquidsoap service is installed correctly in ": "Переконайтеся, що службу libretime-liquidsoap встановлено правильно ", - "LibreTime Celery Task service": "Служба завдань LibreTime Celery", - "Check that the libretime-worker service is installed correctly in ": "Переконайтеся, що служба libretime-worker коректно встановлена в ", - "LibreTime API service": "LibreTime API service", - "Check that the libretime-api service is installed correctly in ": "Переконайтеся, що службу libretime-api встановлено правильно ", - "Radio Page": "Сторінка радіо", - "Calendar": "Календар", - "Widgets": "Віджети", - "Player": "Плеєр", - "Weekly Schedule": "Тижневий розклад", - "Settings": "Налаштування", - "General": "Основні", - "My Profile": "Мій профіль", - "Users": "Користувачі", - "Track Types": "Типи треків", - "Streams": "Потоки", - "Status": "Статус", - "Analytics": "Аналітика", - "Playout History": "Історія відтворення", - "History Templates": "Історія шаблонів", - "Listener Stats": "Статистика слухачів", - "Show Listener Stats": "Показати статистику слухачів", - "Help": "Допомога", - "Getting Started": "Починаємо", - "User Manual": "Посібник користувача", - "Get Help Online": "Отримати допомогу онлайн", - "Contribute to LibreTime": "Зробіть внесок у LibreTime", - "What's New?": "Що нового?", - "You are not allowed to access this resource.": "Ви не маєте доступу до цього ресурсу.", - "You are not allowed to access this resource. ": "Ви не маєте доступу до цього ресурсу. ", - "File does not exist in %s": "Файл не існує в %s", - "Bad request. no 'mode' parameter passed.": "Неправильний запит. параметр 'mode' не передано.", - "Bad request. 'mode' parameter is invalid": "Неправильний запит. Параметр 'mode' недійсний", - "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", - "There is no source connected to this input.": "До цього входу не підключено джерело.", - "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", - "Page not found.": "Сторінку не знайдено.", - "The requested action is not supported.": "Задана дія не підтримується.", - "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", - "An internal application error has occurred.": "Сталася внутрішня помилка програми.", - "%s Podcast": "%s Підкаст", - "No tracks have been published yet.": "Треків ще не опубліковано.", - "%s not found": "%s не знайдено", - "Something went wrong.": "Щось пішло не так.", - "Preview": "Попередній перегляд", - "Add to Playlist": "Додати в плейлист", - "Add to Smart Block": "Додати до Смарт Блоку", - "Delete": "Видалити", - "Edit...": "Редагувати...", - "Download": "Завантажити", - "Duplicate Playlist": "Дублікат плейлиста", - "Duplicate Smartblock": "Дублікат Смарт-блоку", - "No action available": "Немає доступних дій", - "You don't have permission to delete selected items.": "Ви не маєте дозволу на видалення вибраних елементів.", - "Could not delete file because it is scheduled in the future.": "Не вдалося видалити файл, оскільки його заплановано в майбутньому.", - "Could not delete file(s).": "Не вдалося видалити файл(и).", - "Copy of %s": "Копія %s", - "Please make sure admin user/password is correct on Settings->Streams page.": "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки.", - "Audio Player": "Аудіоплеєр", - "Something went wrong!": "Щось пішло не так!", - "Recording:": "Запис:", - "Master Stream": "Головний потік", - "Live Stream": "Наживо", - "Nothing Scheduled": "Нічого не заплановано", - "Current Show:": "Поточна програма:", - "Current": "Поточний", - "You are running the latest version": "Ви використовуєте останню версію", - "New version available: ": "Доступна нова версія: ", - "You have a pre-release version of LibreTime intalled.": "У вас встановлено попередню версію LibreTime.", - "A patch update for your LibreTime installation is available.": "Доступне оновлення для вашої інсталяції LibreTime.", - "A feature update for your LibreTime installation is available.": "Доступне оновлення функції для вашої інсталяції LibreTime.", - "A major update for your LibreTime installation is available.": "Доступне велике оновлення для вашої інсталяції LibreTime.", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше.", - "Add to current playlist": "Додати до поточного списку відтворення", - "Add to current smart block": "Додати до поточного смарт-блоку", - "Adding 1 Item": "Додавання 1 елемента", - "Adding %s Items": "Додавання %s Елемента(ів)", - "You can only add tracks to smart blocks.": "Ви можете додавати треки лише до смарт-блоків.", - "You can only add tracks, smart blocks, and webstreams to playlists.": "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки.", - "Please select a cursor position on timeline.": "Виберіть позицію курсору на часовій шкалі.", - "You haven't added any tracks": "Ви не додали жодної композиції", - "You haven't added any playlists": "Ви не додали жодного плейлиста", - "You haven't added any podcasts": "Ви не додали подкастів", - "You haven't added any smart blocks": "Ви не додали смарт-блоків", - "You haven't added any webstreams": "Ви не додали жодного веб-потоку", - "Learn about tracks": "Дізнайтеся про треки", - "Learn about playlists": "Дізнайтеся про плейлисти", - "Learn about podcasts": "Дізнайтеся про подкасти", - "Learn about smart blocks": "Дізнайтеся про смарт-блоки", - "Learn about webstreams": "Дізнайтеся про веб-потоки", - "Click 'New' to create one.": "Натисніть «Новий», щоб створити.", - "Add": "Додати", - "New": "Новий", - "Edit": "Редагувати", - "Add to Schedule": "Додати до розкладу", - "Add to next show": "Додати до наступної програми", - "Add to current show": "Додати до поточної програми", - "Add after selected items": "Додати після вибраних елементів", - "Publish": "Опублікувати", - "Remove": "Видалити", - "Edit Metadata": "Редагувати метадані", - "Add to selected show": "Додати до вибраної програми", - "Select": "Вибрати", - "Select this page": "Вибрати поточну сторінку", - "Deselect this page": "Скасувати вибір поточної сторінки", - "Deselect all": "Скасувати виділення з усіх", - "Are you sure you want to delete the selected item(s)?": "Ви впевнені, що бажаєте видалити вибрані елементи?", - "Scheduled": "Запланований", - "Tracks": "Треки", - "Playlist": "Плейлист", - "Title": "Назва", - "Creator": "Автор", - "Album": "Альбом", - "Bit Rate": "Bit Rate", - "BPM": "BPM", - "Composer": "Композитор", - "Conductor": "Виконавець", - "Copyright": "Авторське право", - "Encoded By": "Закодовано", - "Genre": "Жанр", - "ISRC": "ISRC", - "Label": "Label", - "Language": "Мова", - "Last Modified": "Остання зміна", - "Last Played": "Останнє програвання", - "Length": "Довжина", - "Mime": "Mime", - "Mood": "Настрій", - "Owner": "Власник", - "Replay Gain": "Вирівнювання гучності", - "Sample Rate": "Частота дискретизації", - "Track Number": "Номер треку", - "Uploaded": "Завантажено", - "Website": "Веб-Сайт", - "Year": "Рік", - "Loading...": "Завантаження...", - "All": "Всі", - "Files": "Файли", - "Playlists": "Плейлист", - "Smart Blocks": "Смарт-блок", - "Web Streams": "Веб-потоки", - "Unknown type: ": "Невідомий тип: ", - "Are you sure you want to delete the selected item?": "Ви впевнені, що бажаєте видалити вибраний елемент?", - "Uploading in progress...": "Виконується завантаження...", - "Retrieving data from the server...": "Отримання даних із сервера...", - "Import": "Імпорт", - "Imported?": "Імпортований?", - "View": "Переглянути", - "Error code: ": "Код помилки: ", - "Error msg: ": "Повідомлення про помилку: ", - "Input must be a positive number": "Введене значення має бути позитивним числом", - "Input must be a number": "Введене значення має бути числом", - "Input must be in the format: yyyy-mm-dd": "Вхідні дані мають бути у такому форматі: yyyy-mm-dd", - "Input must be in the format: hh:mm:ss.t": "Вхідні дані мають бути у такому форматі: hh:mm:ss.t", - "My Podcast": "Мій Подкаст", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?", - "Open Media Builder": "Відкрити Конструктор Медіафайлів", - "please put in a time '00:00:00 (.0)'": "будь ласка, вкажіть час '00:00:00 (.0)'", - "Please enter a valid time in seconds. Eg. 0.5": "Введіть дійсний час у секундах. напр. 0.5", - "Your browser does not support playing this file type: ": "Ваш браузер не підтримує відтворення цього типу файлу: ", - "Dynamic block is not previewable": "Динамічний блок не доступний для попереднього перегляду", - "Limit to: ": "Обмеження до: ", - "Playlist saved": "Плейлист збережено", - "Playlist shuffled": "Плейлист перемішано", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується».", - "Listener Count on %s: %s": "Кількість слухачів %s: %s", - "Remind me in 1 week": "Нагадати через 1 тиждень", - "Remind me never": "Ніколи не нагадувати", - "Yes, help Airtime": "Так, допоможи Libretime", - "Image must be one of jpg, jpeg, png, or gif": "Зображення має бути jpg, jpeg, png, або gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми.", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці.", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку.", - "Smart block shuffled": "Смарт-блок перемішано", - "Smart block generated and criteria saved": "Створено смарт-блок і збережено критерії", - "Smart block saved": "Смарт-блок збережено", - "Processing...": "Обробка...", - "Select modifier": "Виберіть модифікатор", - "contains": "містить", - "does not contain": "не містить", - "is": "є", - "is not": "не", - "starts with": "починається з", - "ends with": "закінчується на", - "is greater than": "більше ніж", - "is less than": "менше ніж", - "is in the range": "знаходиться в діапазоні", - "Generate": "Генерувати", - "Choose Storage Folder": "Виберіть папку зберігання", - "Choose Folder to Watch": "Виберіть папку для перегляду", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Ви впевнені, що бажаєте змінити папку для зберігання?\nЦе видалить файли з вашої бібліотеки!", - "Manage Media Folders": "Керування медіа-папками", - "Are you sure you want to remove the watched folder?": "Ви впевнені, що хочете видалити переглянуту папку?", - "This path is currently not accessible.": "Цей шлях зараз недоступний.", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s.", - "Connected to the streaming server": "Підключено до потокового сервера", - "The stream is disabled": "Потік вимкнено", - "Getting information from the server...": "Отримання інформації з сервера...", - "Can not connect to the streaming server": "Не вдається підключитися до потокового сервера", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151.", - "For more details, please read the %s%s Manual%s": "Щоб дізнатися більше, прочитайте %s%s Мануал%s", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію.", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела.", - "Check this box to automatically switch on Master/Show source upon source connection.": "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime.", - "If your Icecast server expects a username of 'source', this field can be left blank.": "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім.", - "If your live streaming client does not ask for a username, this field should be 'source'.": "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'.", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів.", - "Warning: You cannot change this field while the show is currently playing": "Попередження: Ви не можете змінити це поле під час відтворення програми", - "No result found": "Результатів не знайдено", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися.", - "Specify custom authentication which will work only for this show.": "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми.", - "The show instance doesn't exist anymore!": "Екземпляр програми більше не існує!", - "Warning: Shows cannot be re-linked": "Застереження: програму не можна повторно пов’язати", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача.", - "Show": "Програма", - "Show is empty": "Програма порожня", - "1m": "1хв", - "5m": "5хв", - "10m": "10хв", - "15m": "15хв", - "30m": "30хв", - "60m": "60хв", - "Retreiving data from the server...": "Отримання даних із сервера...", - "This show has no scheduled content.": "Це програма не має запланованого вмісту.", - "This show is not completely filled with content.": "Це програма не повністю наповнена контентом.", - "January": "Січень", - "February": "Лютий", - "March": "Березень", - "April": "Квітень", - "May": "Травень", - "June": "Червень", - "July": "Липень", - "August": "Серпень", - "September": "Вересень", - "October": "Жовтень", - "November": "Листопад", - "December": "Грудень", - "Jan": "Січ", - "Feb": "Лют", - "Mar": "Бер", - "Apr": "Квіт", - "Jun": "Черв", - "Jul": "Лип", - "Aug": "Серп", - "Sep": "Вер", - "Oct": "Жовт", - "Nov": "Лист", - "Dec": "Груд", - "Today": "Сьогодні", - "Day": "День", - "Week": "Тиждень", - "Month": "Місяць", - "Sunday": "Неділя", - "Monday": "Понеділок", - "Tuesday": "Вівторок", - "Wednesday": "Середа", - "Thursday": "Четвер", - "Friday": "П'ятниця", - "Saturday": "Субота", - "Sun": "Нд", - "Mon": "Пн", - "Tue": "Вт", - "Wed": "Ср", - "Thu": "Чт", - "Fri": "Пт", - "Sat": "Сб", - "Shows longer than their scheduled time will be cut off by a following show.": "Програма, яка триває довше запланованого часу, буде перервана наступною програмою.", - "Cancel Current Show?": "Скасувати поточну програму?", - "Stop recording current show?": "Зупинити запис поточної програми?", - "Ok": "Ok", - "Contents of Show": "Зміст програми", - "Remove all content?": "Видалити весь вміст?", - "Delete selected item(s)?": "Видалити вибрані елементи?", - "Start": "Старт", - "End": "Кінець", - "Duration": "Тривалість", - "Filtering out ": "Фільтрація ", - " of ": " з ", - " records": " записи", - "There are no shows scheduled during the specified time period.": "На зазначений період часу не заплановано жодної програми.", - "Cue In": "Початок звучання", - "Cue Out": "Закінчення звучання", - "Fade In": "Зведення", - "Fade Out": "Затухання", - "Show Empty": "Програма порожня", - "Recording From Line In": "Запис з лінійного входу", - "Track preview": "Попередній перегляд треку", - "Cannot schedule outside a show.": "Не можна планувати поза програмою.", - "Moving 1 Item": "Переміщення 1 елементу", - "Moving %s Items": "Переміщення %s елементів", - "Save": "Зберегти", - "Cancel": "Відміна", - "Fade Editor": "Редактор Fade", - "Cue Editor": "Редактор Cue", - "Waveform features are available in a browser supporting the Web Audio API": "Функції Waveform доступні в браузері, який підтримує API Web Audio", - "Select all": "Вибрати все", - "Select none": "Зняти виділення", - "Trim overbooked shows": "Обрізати переповнені програми", - "Remove selected scheduled items": "Видалити вибрані заплановані елементи", - "Jump to the current playing track": "Перехід до поточного треку", - "Jump to Current": "Перейти до поточного", - "Cancel current show": "Скасувати поточну програму", - "Open library to add or remove content": "Відкрийте бібліотеку, щоб додати або видалити вміст", - "Add / Remove Content": "Додати / видалити вміст", - "in use": "у вживанні", - "Disk": "Диск", - "Look in": "Подивитись", - "Open": "Відкрити", - "Admin": "Адмін", - "DJ": "DJ", - "Program Manager": "Менеджер програми", - "Guest": "Гість", - "Guests can do the following:": "Гості можуть зробити наступне:", - "View schedule": "Переглянути розклад", - "View show content": "Переглянути вміст програм", - "DJs can do the following:": "DJs можуть робити наступне:", - "Manage assigned show content": "Керуйте призначеним вмістом програм", - "Import media files": "Імпорт медіафайлів", - "Create playlists, smart blocks, and webstreams": "Створюйте списки відтворення, смарт-блоки та веб-потоки", - "Manage their own library content": "Керувати вмістом власної бібліотеки", - "Program Managers can do the following:": "Керівники програм можуть робити наступне:", - "View and manage show content": "Перегляд вмісту програм та керування ними", - "Schedule shows": "Розклад програм", - "Manage all library content": "Керуйте всім вмістом бібліотеки", - "Admins can do the following:": "Адміністратори можуть робити наступне:", - "Manage preferences": "Керувати налаштуваннями", - "Manage users": "Керувати користувачами", - "Manage watched folders": "Керування папками, які переглядаються", - "Send support feedback": "Надіслати відгук у службу підтримки", - "View system status": "Переглянути стан системи", - "Access playout history": "Доступ до історії відтворення", - "View listener stats": "Переглянути статистику слухачів", - "Show / hide columns": "Показати/сховати стовпці", - "Columns": "Стовпці", - "From {from} to {to}": "З {from} до {to}", - "kbps": "kbps", - "yyyy-mm-dd": "рррр-мм-дд", - "hh:mm:ss.t": "гг:хх:ss.t", - "kHz": "кГц", - "Su": "Нд", - "Mo": "Пн", - "Tu": "Вт", - "We": "Ср", - "Th": "Чт", - "Fr": "Пт", - "Sa": "Сб", - "Close": "Закрити", - "Hour": "Година", - "Minute": "Хвилина", - "Done": "Готово", - "Select files": "Виберіть файли", - "Add files to the upload queue and click the start button.": "Додайте файли до черги завантаження та натисніть кнопку «Пуск».", - "Filename": "Назва файлу", - "Size": "Розмір", - "Add Files": "Додати файли", - "Stop Upload": "Зупинити завантаження", - "Start upload": "Почати завантаження", - "Start Upload": "Розпочати вивантаження", - "Add files": "Додати файли", - "Stop current upload": "Припинити поточне вивантаження", - "Start uploading queue": "Почати вивантаження черги", - "Uploaded %d/%d files": "Завантажено %d/%d файлів", - "N/A": "N/A", - "Drag files here.": "Перетягніть файли сюди.", - "File extension error.": "Помилка розширення файлу.", - "File size error.": "Помилка розміру файлу.", - "File count error.": "Помилка підрахунку файлів.", - "Init error.": "Помилка ініціалізації.", - "HTTP Error.": "HTTP помилка.", - "Security error.": "Помилка безпеки.", - "Generic error.": "Загальна помилка.", - "IO error.": "IO помилка.", - "File: %s": "Файл: %s", - "%d files queued": "%d файлів у черзі", - "File: %f, size: %s, max file size: %m": "Файл: %f, розмір: %s, макс. розмір файлу: %m", - "Upload URL might be wrong or doesn't exist": "URL-адреса завантаження може бути неправильною або не існує", - "Error: File too large: ": "Помилка: Файл завеликий: ", - "Error: Invalid file extension: ": "Помилка: Недійсне розширення файлу: ", - "Set Default": "Встановити за замовчуванням", - "Create Entry": "Створити запис", - "Edit History Record": "Редагувати запис історії", - "No Show": "Немає програми", - "Copied %s row%s to the clipboard": "Скопійовано %s рядок%s у буфер обміну", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape.", - "New Show": "Нова програма", - "New Log Entry": "Новий запис журналу", - "No data available in table": "Дані в таблиці відсутні", - "(filtered from _MAX_ total entries)": "(відфільтровано з _MAX_ всього записів)", - "First": "Спочатку", - "Last": "Останній", - "Next": "Наступний", - "Previous": "Попередній", - "Search:": "Пошук:", - "No matching records found": "Відповідних записів не знайдено", - "Drag tracks here from the library": "Перетягніть треки сюди з бібліотеки", - "No tracks were played during the selected time period.": "Жоден трек не відтворювався протягом вибраного періоду часу.", - "Unpublish": "Зняти з публікації", - "No matching results found.": "Відповідних результатів не знайдено.", - "Author": "Автор", - "Description": "Опис", - "Link": "Посилання", - "Publication Date": "Дата публікації", - "Import Status": "Статус імпорту", - "Actions": "Дії", - "Delete from Library": "Видалити з бібліотеки", - "Successfully imported": "Успішно імпортовано", - "Show _MENU_": "Показати _MENU_", - "Show _MENU_ entries": "Показати _MENU_ записів", - "Showing _START_ to _END_ of _TOTAL_ entries": "Показано від _START_ to _END_ of _TOTAL_ записів", - "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано від _START_ to _END_ of _TOTAL_ треків", - "Showing _START_ to _END_ of _TOTAL_ track types": "Показано від _START_ to _END_ of _TOTAL_типів треків", - "Showing _START_ to _END_ of _TOTAL_ users": "Показано від _START_ to _END_ of _TOTAL_ користувачів", - "Showing 0 to 0 of 0 entries": "Показано від 0 до 0 із 0 записів", - "Showing 0 to 0 of 0 tracks": "Показано від 0 до 0 із 0 треків", - "Showing 0 to 0 of 0 track types": "Показано від 0 до 0 із 0 типів треків", - "(filtered from _MAX_ total track types)": "(відфільтровано з _MAX_ загальних типів доріжок)", - "Are you sure you want to delete this tracktype?": "Ви впевнені, що хочете видалити цей тип треку?", - "No track types were found.": "Типи треків не знайдено.", - "No track types found": "Типи треків не знайдено", - "No matching track types found": "Відповідних типів треків не знайдено", - "Enabled": "Увімкнено", - "Disabled": "Вимкнено", - "Cancel upload": "Скасувати завантаження", - "Type": "Тип", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", - "Podcast settings saved": "Налаштування подкасту збережено", - "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", - "Can't delete yourself!": "Неможливо видалити себе!", - "You haven't published any episodes!": "Ви не опублікували жодного випуску!", - "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", - "Try it now": "Спробуй зараз", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.", - "Playlist preview": "Попередній перегляд плейлиста", - "Smart Block": "Смарт-блок", - "Webstream preview": "Попередній перегляд веб-потоку", - "You don't have permission to view the library.": "Ви не маєте дозволу переглядати бібліотеку.", - "Now": "Зараз", - "Click 'New' to create one now.": "Натисніть «Новий», щоб створити.", - "Click 'Upload' to add some now.": "Натисніть «Завантажити», щоб додати.", - "Feed URL": "URL стрічки", - "Import Date": "Дата імпорту", - "Add New Podcast": "Додати новий подкаст", - "Cannot schedule outside a show.\nTry creating a show first.": "Не можна планувати за межами програми.\nСпочатку створіть програму.", - "No files have been uploaded yet.": "Файли ще не завантажено.", - "On Air": "В ефірі", - "Off Air": "Не в ефірі", - "Offline": "Offline", - "Nothing scheduled": "Нічого не заплановано", - "Click 'Add' to create one now.": "Натисніть «Додати», щоб створити зараз.", - "Please enter your username and password.": "Будь ласка, введіть своє ім'я користувача та пароль.", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином.", - "That username or email address could not be found.": "Не вдалося знайти це ім’я користувача чи електронну адресу.", - "There was a problem with the username or email address you entered.": "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели.", - "Wrong username or password provided. Please try again.": "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз.", - "You are viewing an older version of %s": "Ви переглядаєте старішу версію %s", - "You cannot add tracks to dynamic blocks.": "До динамічних блоків не можна додавати треки.", - "You don't have permission to delete selected %s(s).": "Ви не маєте дозволу на видалення вибраного %s(х).", - "You can only add tracks to smart block.": "Ви можете додавати треки лише в смарт-блок.", - "Untitled Playlist": "Плейлист без назви", - "Untitled Smart Block": "Смарт-блок без назви", - "Unknown Playlist": "Невідомий плейлист", - "Preferences updated.": "Налаштування оновлено.", - "Stream Setting Updated.": "Налаштування потоку оновлено.", - "path should be specified": "слід вказати шлях", - "Problem with Liquidsoap...": "Проблема з Liquidsoap...", - "Request method not accepted": "Метод запиту не прийнято", - "Rebroadcast of show %s from %s at %s": "Ретрансяція програми %s від %s в %s", - "Select cursor": "Вибрати курсор", - "Remove cursor": "Видалити курсор", - "show does not exist": "програми не існує", - "Track Type added successfully!": "Тип треку успішно додано!", - "Track Type updated successfully!": "Тип треку успішно оновлено!", - "User added successfully!": "Користувача успішно додано!", - "User updated successfully!": "Користувача успішно оновлено!", - "Settings updated successfully!": "Налаштування успішно оновлено!", - "Untitled Webstream": "Веб-потік без назви", - "Webstream saved.": "Веб-потік збережено.", - "Invalid form values.": "Недійсні значення форми.", - "Invalid character entered": "Введено недійсний символ", - "Day must be specified": "Необхідно вказати день", - "Time must be specified": "Необхідно вказати час", - "Must wait at least 1 hour to rebroadcast": "Для повторної трансляції потрібно зачекати принаймні 1 годину", - "Add Autoloading Playlist ?": "Додати плейлист з автозавантаженням?", - "Select Playlist": "Вибір плейлиста", - "Repeat Playlist Until Show is Full ?": "Повторювати список відтворення до заповнення програми?", - "Use %s Authentication:": "Використовувати %s Аутентифікацію:", - "Use Custom Authentication:": "Використовувати спеціальну автентифікацію:", - "Custom Username": "Спеціальне ім'я користувача", - "Custom Password": "Користувацький пароль", - "Host:": "Хост:", - "Port:": "Порт:", - "Mount:": "Точка монтування:", - "Username field cannot be empty.": "Поле імені користувача не може бути порожнім.", - "Password field cannot be empty.": "Поле пароля не може бути порожнім.", - "Record from Line In?": "Записувати з лінійного входу?", - "Rebroadcast?": "Повторна трансляція?", - "days": "днів", - "Link:": "Посилання:", - "Repeat Type:": "Тип повтору:", - "weekly": "щотижня", - "every 2 weeks": "кожні 2 тижні", - "every 3 weeks": "кожні 3 тижні", - "every 4 weeks": "кожні 4 тижні", - "monthly": "щомісяця", - "Select Days:": "Оберіть дні:", - "Repeat By:": "Повторити:", - "day of the month": "день місяця", - "day of the week": "день тижня", - "Date End:": "Кінцева дата:", - "No End?": "Немає кінця?", - "End date must be after start date": "Дата завершення має бути після дати початку", - "Please select a repeat day": "Виберіть день повторення", - "Background Colour:": "Колір фону:", - "Text Colour:": "Колір тексту:", - "Current Logo:": "Поточний логотип:", - "Show Logo:": "Показати логотип:", - "Logo Preview:": "Попередній перегляд логотипу:", - "Name:": "Ім'я:", - "Untitled Show": "Програма без назви", - "URL:": "URL:", - "Genre:": "Жанр:", - "Description:": "Опис:", - "Instance Description:": "Опис екземпляру:", - "{msg} does not fit the time format 'HH:mm'": "{msg} не відповідає часовому формату 'HH:mm'", - "Start Time:": "Час початку:", - "In the Future:": "У майбутньому:", - "End Time:": "Час закінчення:", - "Duration:": "Тривалість:", - "Timezone:": "Часовий пояс:", - "Repeats?": "Повторювати?", - "Cannot create show in the past": "Неможливо створити програму в минулому часі", - "Cannot modify start date/time of the show that is already started": "Неможливо змінити дату/час початку програми, яка вже розпочата", - "End date/time cannot be in the past": "Дата/час завершення не можуть бути в минулому", - "Cannot have duration < 0m": "Не може мати тривалість < 0хв", - "Cannot have duration 00h 00m": "Не може мати тривалість 00год 00хв", - "Cannot have duration greater than 24h": "Тривалість не може перевищувати 24 год", - "Cannot schedule overlapping shows": "Неможливо запланувати накладені програми", - "Search Users:": "Пошук користувачів:", - "DJs:": "Діджеї:", - "Type Name:": "Назва типу:", - "Code:": "Код:", - "Visibility:": "Видимість:", - "Analyze cue points:": "Проаналізуйте контрольні точки:", - "Code is not unique.": "Код не унікальний.", - "Username:": "Ім'я користувача:", - "Password:": "Пароль:", - "Verify Password:": "Підтвердіть пароль:", - "Firstname:": "Ім'я:", - "Lastname:": "Прізвище:", - "Email:": "Email:", - "Mobile Phone:": "Телефон:", - "Skype:": "Skype:", - "Jabber:": "Jabber:", - "User Type:": "Тип користувача:", - "Login name is not unique.": "Логін не є унікальним.", - "Delete All Tracks in Library": "Видалити всі треки з бібліотеки", - "Date Start:": "Дата початку:", - "Title:": "Назва:", - "Creator:": "Автор:", - "Album:": "Альбом:", - "Owner:": "Власник:", - "Select a Type": "Виберіть тип", - "Track Type:": "Тип треку:", - "Year:": "Рік:", - "Label:": "Label:", - "Composer:": "Композитор:", - "Conductor:": "Виконавець:", - "Mood:": "Настрій:", - "BPM:": "BPM:", - "Copyright:": "Авторське право:", - "ISRC Number:": "Номер ISRC:", - "Website:": "Веб-сайт:", - "Language:": "Мова:", - "Publish...": "Опублікувати...", - "Start Time": "Час початку", - "End Time": "Час закінчення", - "Interface Timezone:": "Часовий пояс інтерфейсу:", - "Station Name": "Назва станції", - "Station Description": "Опис Станції", - "Station Logo:": "Лого Станції:", - "Note: Anything larger than 600x600 will be resized.": "Примітка: все, що перевищує 600x600, буде змінено.", - "Default Crossfade Duration (s):": "Тривалість переходу за замовчуванням (с):", - "Please enter a time in seconds (eg. 0.5)": "Будь ласка, введіть час у секундах (наприклад, 0,5)", - "Default Fade In (s):": "За замовчуванням Fade In (s):", - "Default Fade Out (s):": "За замовчуванням Fade Out (s):", - "Track Type Upload Default": "Тип доріжки Завантаження за замовчуванням", - "Intro Autoloading Playlist": "Вступний автозавантажуваний плейлист (Intro)", - "Outro Autoloading Playlist": "Завершальний автозавантажувальний плейлист (Outro)", - "Overwrite Podcast Episode Metatags": "Перезаписати метатеги епізоду подкасту", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки.", - "Generate a smartblock and a playlist upon creation of a new podcast": "Створіть смартблок і список відтворення після створення нового подкасту", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди.", - "Public LibreTime API": "Public LibreTime API", - "Required for embeddable schedule widget.": "Потрібний для вбудованого віджета розкладу.", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт.", - "Default Language": "Мова за замовчуванням", - "Station Timezone": "Часовий пояс станції", - "Week Starts On": "Тиждень починається з", - "Display login button on your Radio Page?": "Відображати кнопку входу на сторінці радіо?", - "Feature Previews": "Попередній перегляд функцій", - "Enable this to opt-in to test new features.": "Увімкніть це, щоб тестувати нові функції.", - "Auto Switch Off:": "Автоматичне вимкнення:", - "Auto Switch On:": "Автоматичне ввімкнення:", - "Switch Transition Fade (s):": "Перемикання переходу Fade (s):", - "Master Source Host:": "Головний вихідний хост:", - "Master Source Port:": "Головний вихідний порт:", - "Master Source Mount:": "Головне джерело монтування:", - "Show Source Host:": "Показати вихідний хост:", - "Show Source Port:": "Показати вихідний порт:", - "Show Source Mount:": "Показати джерела монтування:", - "Login": "Логін", - "Password": "Пароль", - "Confirm new password": "Підтвердити новий пароль", - "Password confirmation does not match your password.": "Підтвердження пароля не збігається з вашим.", - "Email": "Email", - "Username": "Ім'я користувача", - "Reset password": "Скинути пароль", - "Back": "Назад", - "Now Playing": "Зараз грає", - "Select Stream:": "Виберіть потік:", - "Auto detect the most appropriate stream to use.": "Автоматичне визначення потоку, який найбільше підходить для використання.", - "Select a stream:": "Виберіть потік:", - " - Mobile friendly": " - Зручний для мобільних пристроїв", - " - The player does not support Opus streams.": " - Плеєр не підтримує потоки Opus.", - "Embeddable code:": "Код для вбудовування:", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт.", - "Preview:": "Попередній перегляд:", - "Feed Privacy": "Конфіденційність стрічки", - "Public": "Публічний", - "Private": "Приватний", - "Station Language": "Мова станції", - "Filter by Show": "Фільтрувати мої програми", - "All My Shows:": "Усі мої програми:", - "My Shows": "Мої програми", - "Select criteria": "Виберіть критерії", - "Bit Rate (Kbps)": "Bit Rate (Kbps)", - "Track Type": "Тип треку", - "Sample Rate (kHz)": "Частота дискретизації (kHz)", - "before": "раніше", - "after": "після", - "between": "між", - "Select unit of time": "Виберіть одиницю часу", - "minute(s)": "хвилина(и)", - "hour(s)": "година(и)", - "day(s)": "День(Дні)", - "week(s)": "Тиждень(і)", - "month(s)": "місяць(і)", - "year(s)": "Рік(и)", - "hours": "година(и)", - "minutes": "хвилина(и)", - "items": "елементи", - "time remaining in show": "час, що залишився у програмі", - "Randomly": "Довільно", - "Newest": "Найновіший(і)", - "Oldest": "Найстаріший(і)", - "Most recently played": "Нещодавно зіграно", - "Least recently played": "Нещодавно грали", - "Select Track Type": "Виберіть тип доріжки", - "Type:": "Тип:", - "Dynamic": "Динамічний", - "Static": "Статичний", - "Select track type": "Виберіть тип доріжки", - "Allow Repeated Tracks:": "Дозволити повторення треків:", - "Allow last track to exceed time limit:": "Дозволити останньому треку перевищити ліміт часу:", - "Sort Tracks:": "Сортування треків:", - "Limit to:": "Обмежити в:", - "Generate playlist content and save criteria": "Створення вмісту списку відтворення та збереження критеріїв", - "Shuffle playlist content": "Перемішати вміст плейлиста", - "Shuffle": "Перемішати", - "Limit cannot be empty or smaller than 0": "Ліміт не може бути порожнім або меншим за 0", - "Limit cannot be more than 24 hrs": "Ліміт не може перевищувати 24 год", - "The value should be an integer": "Значення має бути цілим числом", - "500 is the max item limit value you can set": "500 максимальне граничне значення", - "You must select Criteria and Modifier": "Ви повинні вибрати Критерії і Модифікатор", - "'Length' should be in '00:00:00' format": "'Довжина має бути введена у '00:00:00' форматі", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)", - "You must select a time unit for a relative datetime.": "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу.", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)", - "Only non-negative integer numbers are allowed for a relative date time": "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа", - "The value has to be numeric": "Значення має бути числовим", - "The value should be less then 2147483648": "Значення має бути меншим, ніж 2147483648", - "The value cannot be empty": "Значення не може бути порожнім", - "The value should be less than %s characters": "Значення має бути менше ніж %s символів", - "Value cannot be empty": "Значення не може бути порожнім", - "Stream Label:": "Метадані потоку:", - "Artist - Title": "Виконавець - Назва", - "Show - Artist - Title": "Програма - Виконавець - Назва", - "Station name - Show name": "Назва станції - Показати назву", - "Off Air Metadata": "Метадані при вимкненому ефірі", - "Enable Replay Gain": "Вмикнути Replay Gain", - "Replay Gain Modifier": "Змінити Replay Gain", - "Hardware Audio Output:": "Апаратний аудіовихід:", - "Output Type": "Тип виходу", - "Enabled:": "Увімкнено:", - "Mobile:": "Телефон:", - "Stream Type:": "Тип потоку:", - "Bit Rate:": "Bit Rate:", - "Service Type:": "Тип сервіса:", - "Channels:": "Канали:", - "Server": "Сервер", - "Port": "Порт", - "Mount Point": "Точка монтування", - "Name": "Ім'я", - "URL": "URL", - "Stream URL": "URL-адреса трансляції", - "Push metadata to your station on TuneIn?": "Надішлати метадані на свою станцію в TuneIn?", - "Station ID:": "ID Станції:", - "Partner Key:": "Ключ партнера:", - "Partner Id:": "ID партнера:", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу.", - "Import Folder:": "Імпорт папки:", - "Watched Folders:": "Переглянути папки:", - "Not a valid Directory": "Недійсний каталог", - "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не є дійсною електронною адресою в форматі local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} не відповідає формату дати '%format%'", - "{msg} is less than %min% characters long": "{msg} є меншим ніж %min% довжина символів", - "{msg} is more than %max% characters long": "{msg} це більше ніж %max% довжина символів", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не знаходиться між '%min%' і '%max%', включно", - "Passwords do not match": "Паролі не співпадають", - "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", - "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", - "\n\nThank you,\nThe %s Team": "\n\nДякую Вам,\nThe %s Team", - "%s Password Reset": "%s Скидання паролю", - "Cue in and cue out are null.": "Час початку та закінчення звучання треку не заповнені.", - "Can't set cue out to be greater than file length.": "Час закінчення звучання не може перевищувати довжину треку.", - "Can't set cue in to be larger than cue out.": "Час початку звучання може бути пізніше часу закінчення.", - "Can't set cue out to be smaller than cue in.": "Час закінчення звучання не може бути раніше початку.", - "Upload Time": "Час завантаження", - "None": "Жодного", - "Powered by %s": "На основі %s", - "Select Country": "Оберіть Країну", - "livestream": "Наживо", - "Cannot move items out of linked shows": "Неможливо перемістити елементи з пов’язаних програм", - "The schedule you're viewing is out of date! (sched mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)", - "The schedule you're viewing is out of date! (instance mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)", - "The schedule you're viewing is out of date!": "Розклад, який ви переглядаєте, застарів!", - "You are not allowed to schedule show %s.": "Вам не дозволено планувати програму %s.", - "You cannot add files to recording shows.": "Ви не можете додавати файли до Програми, що записується.", - "The show %s is over and cannot be scheduled.": "Програма %s закінчилась, її не можливо запланувати.", - "The show %s has been previously updated!": "Програма %s була оновлена раніше!", - "Content in linked shows cannot be changed while on air!": "Вміст пов’язаних програм не можна змінювати під час трансляції!", - "Cannot schedule a playlist that contains missing files.": "Неможливо запланувати плейлист, який містить відсутні файли.", - "A selected File does not exist!": "Вибраний файл не існує!", - "Shows can have a max length of 24 hours.": "Програма може тривати не більше 24 годин.", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не можна планувати Програми, що перетинаються.\nПримітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники.", - "Rebroadcast of %s from %s": "Ретрансляція %s від %s", - "Length needs to be greater than 0 minutes": "Довжина повинна бути більше ніж 0 хвилин", - "Length should be of form \"00h 00m\"": "Довжина повинна відповідати формі \"00год 00хв\"", - "URL should be of form \"https://example.org\"": "URL має бути форми \"https://example.org\"", - "URL should be 512 characters or less": "URL-адреса має містити не більше 512 символів", - "No MIME type found for webstream.": "Для веб-потоку не знайдено тип MIME.", - "Webstream name cannot be empty": "Назва веб-потоку не може бути пустою", - "Could not parse XSPF playlist": "Не вдалося проаналізувати XSPF плейлист", - "Could not parse PLS playlist": "Не вдалося проаналізувати PLS плейлист", - "Could not parse M3U playlist": "Не вдалося проаналізувати M3U плейлист", - "Invalid webstream - This appears to be a file download.": "Недійсний веб-потік. Здається, це завантажений файл.", - "Unrecognized stream type: %s": "Нерозпізнаний тип потоку: %s", - "Record file doesn't exist": "Файл запису не існує", - "View Recorded File Metadata": "Перегляд метаданих записаного файлу", - "Schedule Tracks": "Заплановані треки", - "Clear Show": "Очистити програму", - "Cancel Show": "Відміна програми", - "Edit Instance": "Редагувати екземпляр", - "Edit Show": "Редагування програми", - "Delete Instance": "Видалити екземпляр", - "Delete Instance and All Following": "Видалити екземпляр і все наступне", - "Permission denied": "У дозволі відмовлено", - "Can't drag and drop repeating shows": "Не можна перетягувати повторювані програми", - "Can't move a past show": "Неможливо перемістити минулу програму", - "Can't move show into past": "Неможливо перенести програму в минуле", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції.", - "Show was deleted because recorded show does not exist!": "Програму видалено, оскільки записаної програми не існує!", - "Must wait 1 hour to rebroadcast.": "Для повторної трансляції потрібно почекати 1 годину.", - "Track": "Трек", - "Played": "Програно", - "Auto-generated smartblock for podcast": "Автоматично створений смарт-блок для подкасту", - "Webstreams": "Веб-потоки" + "The year %s must be within the range of 1753 - 9999": "Рік %s має бути в діапазоні 1753 - 9999", + "%s-%s-%s is not a valid date": "%s-%s-%s дата недійсна", + "%s:%s:%s is not a valid time": "%s:%s:%s недійсний час", + "English": "Англійська", + "Afar": "Афар", + "Abkhazian": "Абхазька", + "Afrikaans": "Африканська", + "Amharic": "Амхарська", + "Arabic": "Арабська", + "Assamese": "Асамська", + "Aymara": "Аймара", + "Azerbaijani": "Азербайджанська", + "Bashkir": "Башкирська", + "Belarusian": "Білоруська", + "Bulgarian": "Болгарська", + "Bihari": "Біхарі", + "Bislama": "Біслама", + "Bengali/Bangla": "Бенгальська/Бангла", + "Tibetan": "Тибетська", + "Breton": "Бретонська", + "Catalan": "Каталонська", + "Corsican": "Корсиканська", + "Czech": "Чеська", + "Welsh": "Валлійська", + "Danish": "Датська", + "German": "Німецька", + "Bhutani": "Мови Бутану", + "Greek": "Грецька", + "Esperanto": "Есперанто", + "Spanish": "Іспанська", + "Estonian": "Естонська", + "Basque": "Баскська", + "Persian": "Перська", + "Finnish": "Фінська", + "Fiji": "Фіджійська", + "Faeroese": "Фарерська", + "French": "Французька", + "Frisian": "Фризька", + "Irish": "Ірландська", + "Scots/Gaelic": "Шотландська/Гельська", + "Galician": "Галісійська", + "Guarani": "Гуарані", + "Gujarati": "Гуджаратська", + "Hausa": "Хауса", + "Hindi": "Хінді", + "Croatian": "Хорватська", + "Hungarian": "Угорська", + "Armenian": "Вірменська", + "Interlingua": "Інтерлінгва", + "Interlingue": "Окциденталь", + "Inupiak": "Аляскинсько-інуїтська", + "Indonesian": "Індонезійська", + "Icelandic": "Ісландська", + "Italian": "Італійська", + "Hebrew": "Іврит", + "Japanese": "Японська", + "Yiddish": "Ідиш", + "Javanese": "Яванська", + "Georgian": "Грузинська", + "Kazakh": "Казахська", + "Greenlandic": "Гренландська", + "Cambodian": "Камбоджійська", + "Kannada": "Каннада", + "Korean": "Корейська", + "Kashmiri": "Кашмірська", + "Kurdish": "Курдська", + "Kirghiz": "Киргизька", + "Latin": "Латинська", + "Lingala": "Лінґала", + "Laothian": "Лаоська", + "Lithuanian": "Литовська", + "Latvian/Lettish": "Латиська", + "Malagasy": "Малагасійська", + "Maori": "Маорійська", + "Macedonian": "Македонська", + "Malayalam": "Малаялам", + "Mongolian": "Монгольська", + "Moldavian": "Молдавська", + "Marathi": "Мара́тська", + "Malay": "Малайська", + "Maltese": "Мальтійська", + "Burmese": "Бірманська", + "Nauru": "Науруанська", + "Nepali": "Непальська", + "Dutch": "Голландська", + "Norwegian": "Норвезька", + "Occitan": "Окситанська", + "(Afan)/Oromoor/Oriya": "Оромо", + "Punjabi": "Пенджабська", + "Polish": "Польська", + "Pashto/Pushto": "Пушту", + "Portuguese": "Португальська", + "Quechua": "Кечуа", + "Rhaeto-Romance": "Рето-романська", + "Kirundi": "Кірунді", + "Romanian": "Румунська", + "Russian": "Російська", + "Kinyarwanda": "Руандійська", + "Sanskrit": "Санскрит", + "Sindhi": "Сіндхі", + "Sangro": "Санго", + "Serbo-Croatian": "Сербохорватська", + "Singhalese": "Сингальська", + "Slovak": "Словацька", + "Slovenian": "Словенська", + "Samoan": "Самоанська", + "Shona": "Шона", + "Somali": "Сомалійська", + "Albanian": "Албанська", + "Serbian": "Сербська", + "Siswati": "Сваті", + "Sesotho": "Сесото", + "Sundanese": "Сунданська", + "Swedish": "Шведська", + "Swahili": "Суахілі", + "Tamil": "Тамільська", + "Tegulu": "Телугу", + "Tajik": "Таджицька", + "Thai": "Тайська", + "Tigrinya": "Тигринья", + "Turkmen": "Туркменський", + "Tagalog": "Тагальська", + "Setswana": "Тсвана", + "Tonga": "Тонганська", + "Turkish": "Турецька", + "Tsonga": "Тсонга", + "Tatar": "Татарська", + "Twi": "Чві", + "Ukrainian": "Українська", + "Urdu": "Урду", + "Uzbek": "Узбецька", + "Vietnamese": "В'єтнамська", + "Volapuk": "Волапюк", + "Wolof": "Волоф", + "Xhosa": "Хоса", + "Yoruba": "Юрубський", + "Chinese": "Китайська", + "Zulu": "Зулуська", + "Use station default": "Використовувати станцію за замовчуванням", + "Upload some tracks below to add them to your library!": "Завантажте декілька композицій нижче, щоб додати їх до своєї бібліотеки!", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "Схоже, ви ще не завантажили жодного аудіофайлу.%sЗавантажте файли%s.", + "Click the 'New Show' button and fill out the required fields.": "Натисніть кнопку «Нова програма» та заповніть необхідні поля.", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "Схоже, у вас немає запланованих програм.%sСтворіть програму зараз%s.", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "Щоб розпочати трансляцію, скасуйте поточну пов’язану програму, клацнувши по ній оберіть «Скасувати програму».", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "Пов’язані програми потрібно заповнити треками перед їх початком. Щоб розпочати трансляцію, скасуйте поточне пов’язану програму та заплануйте незв’язану програму.\n %sСтворіть непов'язану програму зараз%s.", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "Щоб розпочати трансляцію, клацніть поточна програма та виберіть «Заплановані треки»", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "Схоже, поточне програма потребує більше треків. %sДодайте треки до своєї проограми зараз%s.", + "Click on the show starting next and select 'Schedule Tracks'": "Клацніть на програму що йде наступною, і оберіть «Заплановані треки»", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "Схоже, наступна програма порожня. %sДодайте треки до своєї програми%s.", + "LibreTime media analyzer service": "Служба медіааналізатора LibreTime", + "Check that the libretime-analyzer service is installed correctly in ": "Переконайтеся, що службу libretime-analyzer встановлено правильно ", + " and ensure that it's running with ": " і переконайтеся, що вона працює ", + "If not, try ": "Якщо ні, спробуйте запустити ", + "LibreTime playout service": "Сервіс відтворення LibreTime", + "Check that the libretime-playout service is installed correctly in ": "Переконайтеся, що службу libretime-playout встановлено правильно ", + "LibreTime liquidsoap service": "Служба LibreTime liquidsoap", + "Check that the libretime-liquidsoap service is installed correctly in ": "Переконайтеся, що службу libretime-liquidsoap встановлено правильно ", + "LibreTime Celery Task service": "Служба завдань LibreTime Celery", + "Check that the libretime-worker service is installed correctly in ": "Переконайтеся, що служба libretime-worker коректно встановлена в ", + "LibreTime API service": "LibreTime API service", + "Check that the libretime-api service is installed correctly in ": "Переконайтеся, що службу libretime-api встановлено правильно ", + "Radio Page": "Сторінка радіо", + "Calendar": "Календар", + "Widgets": "Віджети", + "Player": "Плеєр", + "Weekly Schedule": "Тижневий розклад", + "Settings": "Налаштування", + "General": "Основні", + "My Profile": "Мій профіль", + "Users": "Користувачі", + "Track Types": "Типи треків", + "Streams": "Потоки", + "Status": "Статус", + "Analytics": "Аналітика", + "Playout History": "Історія відтворення", + "History Templates": "Історія шаблонів", + "Listener Stats": "Статистика слухачів", + "Show Listener Stats": "Показати статистику слухачів", + "Help": "Допомога", + "Getting Started": "Починаємо", + "User Manual": "Посібник користувача", + "Get Help Online": "Отримати допомогу онлайн", + "Contribute to LibreTime": "Зробіть внесок у LibreTime", + "What's New?": "Що нового?", + "You are not allowed to access this resource.": "Ви не маєте доступу до цього ресурсу.", + "You are not allowed to access this resource. ": "Ви не маєте доступу до цього ресурсу. ", + "File does not exist in %s": "Файл не існує в %s", + "Bad request. no 'mode' parameter passed.": "Неправильний запит. параметр 'mode' не передано.", + "Bad request. 'mode' parameter is invalid": "Неправильний запит. Параметр 'mode' недійсний", + "You don't have permission to disconnect source.": "Ви не маєте дозволу на відключення джерела.", + "There is no source connected to this input.": "До цього входу не підключено джерело.", + "You don't have permission to switch source.": "Ви не маєте дозволу перемикати джерело.", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "Щоб налаштувати та використовувати вбудований програвач, необхідно:\n 1. Увімкніть принаймні один потік MP3, AAC або OGG у меню Налаштування -> Потоки 2. Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб використовувати вбудований віджет тижневого розкладу, ви повинні:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "Щоб додати вкладку «Радіо» на свою сторінку у Facebook, ви повинні спочатку:\n Увімкніть API Public LibreTime у меню Налаштування -> Основні", + "Page not found.": "Сторінку не знайдено.", + "The requested action is not supported.": "Задана дія не підтримується.", + "You do not have permission to access this resource.": "Ви не маєте дозволу на доступ до цього ресурсу.", + "An internal application error has occurred.": "Сталася внутрішня помилка програми.", + "%s Podcast": "%s Підкаст", + "No tracks have been published yet.": "Треків ще не опубліковано.", + "%s not found": "%s не знайдено", + "Something went wrong.": "Щось пішло не так.", + "Preview": "Попередній перегляд", + "Add to Playlist": "Додати в плейлист", + "Add to Smart Block": "Додати до Смарт Блоку", + "Delete": "Видалити", + "Edit...": "Редагувати...", + "Download": "Завантажити", + "Duplicate Playlist": "Дублікат плейлиста", + "Duplicate Smartblock": "Дублікат Смарт-блоку", + "No action available": "Немає доступних дій", + "You don't have permission to delete selected items.": "Ви не маєте дозволу на видалення вибраних елементів.", + "Could not delete file because it is scheduled in the future.": "Не вдалося видалити файл, оскільки його заплановано в майбутньому.", + "Could not delete file(s).": "Не вдалося видалити файл(и).", + "Copy of %s": "Копія %s", + "Please make sure admin user/password is correct on Settings->Streams page.": "Будь ласка, переконайтеся, що користувач/пароль адміністратора правильні на сторінці Налаштування->Потоки.", + "Audio Player": "Аудіоплеєр", + "Something went wrong!": "Щось пішло не так!", + "Recording:": "Запис:", + "Master Stream": "Головний потік", + "Live Stream": "Наживо", + "Nothing Scheduled": "Нічого не заплановано", + "Current Show:": "Поточна програма:", + "Current": "Поточний", + "You are running the latest version": "Ви використовуєте останню версію", + "New version available: ": "Доступна нова версія: ", + "You have a pre-release version of LibreTime intalled.": "У вас встановлено попередню версію LibreTime.", + "A patch update for your LibreTime installation is available.": "Доступне оновлення для вашої інсталяції LibreTime.", + "A feature update for your LibreTime installation is available.": "Доступне оновлення функції для вашої інсталяції LibreTime.", + "A major update for your LibreTime installation is available.": "Доступне велике оновлення для вашої інсталяції LibreTime.", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "Доступно кілька основних оновлень для встановлення LibreTime. Оновіть якнайшвидше.", + "Add to current playlist": "Додати до поточного списку відтворення", + "Add to current smart block": "Додати до поточного смарт-блоку", + "Adding 1 Item": "Додавання 1 елемента", + "Adding %s Items": "Додавання %s Елемента(ів)", + "You can only add tracks to smart blocks.": "Ви можете додавати треки лише до смарт-блоків.", + "You can only add tracks, smart blocks, and webstreams to playlists.": "До списків відтворення можна додавати лише треки, смарт-блоки та веб-потоки.", + "Please select a cursor position on timeline.": "Виберіть позицію курсору на часовій шкалі.", + "You haven't added any tracks": "Ви не додали жодної композиції", + "You haven't added any playlists": "Ви не додали жодного плейлиста", + "You haven't added any podcasts": "Ви не додали подкастів", + "You haven't added any smart blocks": "Ви не додали смарт-блоків", + "You haven't added any webstreams": "Ви не додали жодного веб-потоку", + "Learn about tracks": "Дізнайтеся про треки", + "Learn about playlists": "Дізнайтеся про плейлисти", + "Learn about podcasts": "Дізнайтеся про подкасти", + "Learn about smart blocks": "Дізнайтеся про смарт-блоки", + "Learn about webstreams": "Дізнайтеся про веб-потоки", + "Click 'New' to create one.": "Натисніть «Новий», щоб створити.", + "Add": "Додати", + "New": "Новий", + "Edit": "Редагувати", + "Add to Schedule": "Додати до розкладу", + "Add to next show": "Додати до наступної програми", + "Add to current show": "Додати до поточної програми", + "Add after selected items": "Додати після вибраних елементів", + "Publish": "Опублікувати", + "Remove": "Видалити", + "Edit Metadata": "Редагувати метадані", + "Add to selected show": "Додати до вибраної програми", + "Select": "Вибрати", + "Select this page": "Вибрати поточну сторінку", + "Deselect this page": "Скасувати вибір поточної сторінки", + "Deselect all": "Скасувати виділення з усіх", + "Are you sure you want to delete the selected item(s)?": "Ви впевнені, що бажаєте видалити вибрані елементи?", + "Scheduled": "Запланований", + "Tracks": "Треки", + "Playlist": "Плейлист", + "Title": "Назва", + "Creator": "Автор", + "Album": "Альбом", + "Bit Rate": "Bit Rate", + "BPM": "BPM", + "Composer": "Композитор", + "Conductor": "Виконавець", + "Copyright": "Авторське право", + "Encoded By": "Закодовано", + "Genre": "Жанр", + "ISRC": "ISRC", + "Label": "Label", + "Language": "Мова", + "Last Modified": "Остання зміна", + "Last Played": "Останнє програвання", + "Length": "Довжина", + "Mime": "Mime", + "Mood": "Настрій", + "Owner": "Власник", + "Replay Gain": "Вирівнювання гучності", + "Sample Rate": "Частота дискретизації", + "Track Number": "Номер треку", + "Uploaded": "Завантажено", + "Website": "Веб-Сайт", + "Year": "Рік", + "Loading...": "Завантаження...", + "All": "Всі", + "Files": "Файли", + "Playlists": "Плейлист", + "Smart Blocks": "Смарт-блок", + "Web Streams": "Веб-потоки", + "Unknown type: ": "Невідомий тип: ", + "Are you sure you want to delete the selected item?": "Ви впевнені, що бажаєте видалити вибраний елемент?", + "Uploading in progress...": "Виконується завантаження...", + "Retrieving data from the server...": "Отримання даних із сервера...", + "Import": "Імпорт", + "Imported?": "Імпортований?", + "View": "Переглянути", + "Error code: ": "Код помилки: ", + "Error msg: ": "Повідомлення про помилку: ", + "Input must be a positive number": "Введене значення має бути позитивним числом", + "Input must be a number": "Введене значення має бути числом", + "Input must be in the format: yyyy-mm-dd": "Вхідні дані мають бути у такому форматі: yyyy-mm-dd", + "Input must be in the format: hh:mm:ss.t": "Вхідні дані мають бути у такому форматі: hh:mm:ss.t", + "My Podcast": "Мій Подкаст", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "Зараз ви завантажуєте файли. %sПерехід на інший екран скасує процес завантаження. %sВи впевнені, що бажаєте залишити сторінку?", + "Open Media Builder": "Відкрити Конструктор Медіафайлів", + "please put in a time '00:00:00 (.0)'": "будь ласка, вкажіть час '00:00:00 (.0)'", + "Please enter a valid time in seconds. Eg. 0.5": "Введіть дійсний час у секундах. напр. 0.5", + "Your browser does not support playing this file type: ": "Ваш браузер не підтримує відтворення цього типу файлу: ", + "Dynamic block is not previewable": "Динамічний блок не доступний для попереднього перегляду", + "Limit to: ": "Обмеження до: ", + "Playlist saved": "Плейлист збережено", + "Playlist shuffled": "Плейлист перемішано", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "Libretime не впевнений щодо статусу цього файлу. Це може статися, коли файл знаходиться на віддаленому диску, до якого немає доступу, або файл знаходиться в каталозі, який більше не «відстежується».", + "Listener Count on %s: %s": "Кількість слухачів %s: %s", + "Remind me in 1 week": "Нагадати через 1 тиждень", + "Remind me never": "Ніколи не нагадувати", + "Yes, help Airtime": "Так, допоможи Libretime", + "Image must be one of jpg, jpeg, png, or gif": "Зображення має бути jpg, jpeg, png, або gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "Статичний смарт-блок збереже критерії та негайно згенерує вміст блоку. Це дозволяє редагувати та переглядати його в бібліотеці перед додаванням до програми.", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "Динамічний смарт-блок збереже лише критерії. Вміст блоку буде створено після додавання його до програми. Ви не зможете переглядати та редагувати вміст у бібліотеці.", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "Бажана довжина блоку не буде досягнута, якщо %s не зможе знайти достатньо унікальних доріжок, які б відповідали вашим критеріям. Увімкніть цю опцію, якщо ви бажаєте дозволити багаторазове додавання треків до смарт-блоку.", + "Smart block shuffled": "Смарт-блок перемішано", + "Smart block generated and criteria saved": "Створено смарт-блок і збережено критерії", + "Smart block saved": "Смарт-блок збережено", + "Processing...": "Обробка...", + "Select modifier": "Виберіть модифікатор", + "contains": "містить", + "does not contain": "не містить", + "is": "є", + "is not": "не", + "starts with": "починається з", + "ends with": "закінчується на", + "is greater than": "більше ніж", + "is less than": "менше ніж", + "is in the range": "знаходиться в діапазоні", + "Generate": "Генерувати", + "Choose Storage Folder": "Виберіть папку зберігання", + "Choose Folder to Watch": "Виберіть папку для перегляду", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "Ви впевнені, що бажаєте змінити папку для зберігання?\nЦе видалить файли з вашої бібліотеки!", + "Manage Media Folders": "Керування медіа-папками", + "Are you sure you want to remove the watched folder?": "Ви впевнені, що хочете видалити переглянуту папку?", + "This path is currently not accessible.": "Цей шлях зараз недоступний.", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "Деякі типи потоків потребують додаткового налаштування. Подано інформацію про ввімкнення %sAAC+ Support%s або %sOpus Support%s.", + "Connected to the streaming server": "Підключено до потокового сервера", + "The stream is disabled": "Потік вимкнено", + "Getting information from the server...": "Отримання інформації з сервера...", + "Can not connect to the streaming server": "Не вдається підключитися до потокового сервера", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "Якщо %s знаходиться за маршрутизатором або брандмауером, вам може знадобитися налаштувати переадресацію портів, і інформація в цьому полі буде неправильною. У цьому випадку вам потрібно буде вручну оновити це поле, щоб воно показувало правильний хост/порт/монтування, до якого ваш ді-джей має підключитися. Дозволений діапазон – від 1024 до 49151.", + "For more details, please read the %s%s Manual%s": "Щоб дізнатися більше, прочитайте %s%s Мануал%s", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "Позначте цей параметр, щоб увімкнути метадані для потоків OGG (метаданими потоку є назва композиції, виконавець і назва програми, які відображаються в аудіопрогравачі). VLC і mplayer мають серйозну помилку під час відтворення потоку OGG/VORBIS, у якому ввімкнено метадані: вони відключатимуться від потоку після кожної пісні. Якщо ви використовуєте потік OGG і вашим слухачам не потрібна підтримка цих аудіоплеєрів, сміливо вмикайте цю опцію.", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "Позначте цей прапорець, щоб автоматично вимикати джерело Мастер/Програми після відключення джерела.", + "Check this box to automatically switch on Master/Show source upon source connection.": "Позначте цей прапорець для автоматичного підключення зовнішнього джерела Мастер або Програми до серверу LibreTime.", + "If your Icecast server expects a username of 'source', this field can be left blank.": "Якщо ваш сервер Icecast очікує ім’я користувача 'source', це поле можна залишити порожнім.", + "If your live streaming client does not ask for a username, this field should be 'source'.": "Якщо ваш клієнт прямої трансляції не запитує ім’я користувача, це поле має бути 'source'.", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "ЗАСТЕРЕЖЕННЯ: це перезапустить ваш потік і може призвести до короткого відключення для ваших слухачів!", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "Це ім’я користувача та пароль адміністратора для Icecast/SHOUTcast для отримання статистики слухачів.", + "Warning: You cannot change this field while the show is currently playing": "Попередження: Ви не можете змінити це поле під час відтворення програми", + "No result found": "Результатів не знайдено", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "Це відбувається за тією ж схемою безпеки для програм: лише користувачі, призначені для програм, можуть підключатися.", + "Specify custom authentication which will work only for this show.": "Вкажіть спеціальну автентифікацію, яка працюватиме лише для цієї програми.", + "The show instance doesn't exist anymore!": "Екземпляр програми більше не існує!", + "Warning: Shows cannot be re-linked": "Застереження: програму не можна повторно пов’язати", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "Якщо пов’язати ваші повторювані програми, будь-які медіа-елементи, заплановані в будь-якому повторюваній програмі, також будуть заплановані в інших повторних програмах", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "За замовчуванням часовий пояс встановлено на часовий пояс станції. Програма в календарі відображатиметься за вашим місцевим часом, визначеним часовим поясом інтерфейсу в налаштуваннях користувача.", + "Show": "Програма", + "Show is empty": "Програма порожня", + "1m": "1хв", + "5m": "5хв", + "10m": "10хв", + "15m": "15хв", + "30m": "30хв", + "60m": "60хв", + "Retreiving data from the server...": "Отримання даних із сервера...", + "This show has no scheduled content.": "Це програма не має запланованого вмісту.", + "This show is not completely filled with content.": "Це програма не повністю наповнена контентом.", + "January": "Січень", + "February": "Лютий", + "March": "Березень", + "April": "Квітень", + "May": "Травень", + "June": "Червень", + "July": "Липень", + "August": "Серпень", + "September": "Вересень", + "October": "Жовтень", + "November": "Листопад", + "December": "Грудень", + "Jan": "Січ", + "Feb": "Лют", + "Mar": "Бер", + "Apr": "Квіт", + "Jun": "Черв", + "Jul": "Лип", + "Aug": "Серп", + "Sep": "Вер", + "Oct": "Жовт", + "Nov": "Лист", + "Dec": "Груд", + "Today": "Сьогодні", + "Day": "День", + "Week": "Тиждень", + "Month": "Місяць", + "Sunday": "Неділя", + "Monday": "Понеділок", + "Tuesday": "Вівторок", + "Wednesday": "Середа", + "Thursday": "Четвер", + "Friday": "П'ятниця", + "Saturday": "Субота", + "Sun": "Нд", + "Mon": "Пн", + "Tue": "Вт", + "Wed": "Ср", + "Thu": "Чт", + "Fri": "Пт", + "Sat": "Сб", + "Shows longer than their scheduled time will be cut off by a following show.": "Програма, яка триває довше запланованого часу, буде перервана наступною програмою.", + "Cancel Current Show?": "Скасувати поточну програму?", + "Stop recording current show?": "Зупинити запис поточної програми?", + "Ok": "Ok", + "Contents of Show": "Зміст програми", + "Remove all content?": "Видалити весь вміст?", + "Delete selected item(s)?": "Видалити вибрані елементи?", + "Start": "Старт", + "End": "Кінець", + "Duration": "Тривалість", + "Filtering out ": "Фільтрація ", + " of ": " з ", + " records": " записи", + "There are no shows scheduled during the specified time period.": "На зазначений період часу не заплановано жодної програми.", + "Cue In": "Початок звучання", + "Cue Out": "Закінчення звучання", + "Fade In": "Зведення", + "Fade Out": "Затухання", + "Show Empty": "Програма порожня", + "Recording From Line In": "Запис з лінійного входу", + "Track preview": "Попередній перегляд треку", + "Cannot schedule outside a show.": "Не можна планувати поза програмою.", + "Moving 1 Item": "Переміщення 1 елементу", + "Moving %s Items": "Переміщення %s елементів", + "Save": "Зберегти", + "Cancel": "Відміна", + "Fade Editor": "Редактор Fade", + "Cue Editor": "Редактор Cue", + "Waveform features are available in a browser supporting the Web Audio API": "Функції Waveform доступні в браузері, який підтримує API Web Audio", + "Select all": "Вибрати все", + "Select none": "Зняти виділення", + "Trim overbooked shows": "Обрізати переповнені програми", + "Remove selected scheduled items": "Видалити вибрані заплановані елементи", + "Jump to the current playing track": "Перехід до поточного треку", + "Jump to Current": "Перейти до поточного", + "Cancel current show": "Скасувати поточну програму", + "Open library to add or remove content": "Відкрийте бібліотеку, щоб додати або видалити вміст", + "Add / Remove Content": "Додати / видалити вміст", + "in use": "у вживанні", + "Disk": "Диск", + "Look in": "Подивитись", + "Open": "Відкрити", + "Admin": "Адмін", + "DJ": "DJ", + "Program Manager": "Менеджер програми", + "Guest": "Гість", + "Guests can do the following:": "Гості можуть зробити наступне:", + "View schedule": "Переглянути розклад", + "View show content": "Переглянути вміст програм", + "DJs can do the following:": "DJs можуть робити наступне:", + "Manage assigned show content": "Керуйте призначеним вмістом програм", + "Import media files": "Імпорт медіафайлів", + "Create playlists, smart blocks, and webstreams": "Створюйте списки відтворення, смарт-блоки та веб-потоки", + "Manage their own library content": "Керувати вмістом власної бібліотеки", + "Program Managers can do the following:": "Керівники програм можуть робити наступне:", + "View and manage show content": "Перегляд вмісту програм та керування ними", + "Schedule shows": "Розклад програм", + "Manage all library content": "Керуйте всім вмістом бібліотеки", + "Admins can do the following:": "Адміністратори можуть робити наступне:", + "Manage preferences": "Керувати налаштуваннями", + "Manage users": "Керувати користувачами", + "Manage watched folders": "Керування папками, які переглядаються", + "Send support feedback": "Надіслати відгук у службу підтримки", + "View system status": "Переглянути стан системи", + "Access playout history": "Доступ до історії відтворення", + "View listener stats": "Переглянути статистику слухачів", + "Show / hide columns": "Показати/сховати стовпці", + "Columns": "Стовпці", + "From {from} to {to}": "З {from} до {to}", + "kbps": "kbps", + "yyyy-mm-dd": "рррр-мм-дд", + "hh:mm:ss.t": "гг:хх:ss.t", + "kHz": "кГц", + "Su": "Нд", + "Mo": "Пн", + "Tu": "Вт", + "We": "Ср", + "Th": "Чт", + "Fr": "Пт", + "Sa": "Сб", + "Close": "Закрити", + "Hour": "Година", + "Minute": "Хвилина", + "Done": "Готово", + "Select files": "Виберіть файли", + "Add files to the upload queue and click the start button.": "Додайте файли до черги завантаження та натисніть кнопку «Пуск».", + "Filename": "Назва файлу", + "Size": "Розмір", + "Add Files": "Додати файли", + "Stop Upload": "Зупинити завантаження", + "Start upload": "Почати завантаження", + "Start Upload": "Розпочати вивантаження", + "Add files": "Додати файли", + "Stop current upload": "Припинити поточне вивантаження", + "Start uploading queue": "Почати вивантаження черги", + "Uploaded %d/%d files": "Завантажено %d/%d файлів", + "N/A": "N/A", + "Drag files here.": "Перетягніть файли сюди.", + "File extension error.": "Помилка розширення файлу.", + "File size error.": "Помилка розміру файлу.", + "File count error.": "Помилка підрахунку файлів.", + "Init error.": "Помилка ініціалізації.", + "HTTP Error.": "HTTP помилка.", + "Security error.": "Помилка безпеки.", + "Generic error.": "Загальна помилка.", + "IO error.": "IO помилка.", + "File: %s": "Файл: %s", + "%d files queued": "%d файлів у черзі", + "File: %f, size: %s, max file size: %m": "Файл: %f, розмір: %s, макс. розмір файлу: %m", + "Upload URL might be wrong or doesn't exist": "URL-адреса завантаження може бути неправильною або не існує", + "Error: File too large: ": "Помилка: Файл завеликий: ", + "Error: Invalid file extension: ": "Помилка: Недійсне розширення файлу: ", + "Set Default": "Встановити за замовчуванням", + "Create Entry": "Створити запис", + "Edit History Record": "Редагувати запис історії", + "No Show": "Немає програми", + "Copied %s row%s to the clipboard": "Скопійовано %s рядок%s у буфер обміну", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%sПерегляд для друку%sДля друку цієї таблиці скористайтеся функцією друку свого браузера. Коли закінчите, натисніть клавішу Escape.", + "New Show": "Нова програма", + "New Log Entry": "Новий запис журналу", + "No data available in table": "Дані в таблиці відсутні", + "(filtered from _MAX_ total entries)": "(відфільтровано з _MAX_ всього записів)", + "First": "Спочатку", + "Last": "Останній", + "Next": "Наступний", + "Previous": "Попередній", + "Search:": "Пошук:", + "No matching records found": "Відповідних записів не знайдено", + "Drag tracks here from the library": "Перетягніть треки сюди з бібліотеки", + "No tracks were played during the selected time period.": "Жоден трек не відтворювався протягом вибраного періоду часу.", + "Unpublish": "Зняти з публікації", + "No matching results found.": "Відповідних результатів не знайдено.", + "Author": "Автор", + "Description": "Опис", + "Link": "Посилання", + "Publication Date": "Дата публікації", + "Import Status": "Статус імпорту", + "Actions": "Дії", + "Delete from Library": "Видалити з бібліотеки", + "Successfully imported": "Успішно імпортовано", + "Show _MENU_": "Показати _MENU_", + "Show _MENU_ entries": "Показати _MENU_ записів", + "Showing _START_ to _END_ of _TOTAL_ entries": "Показано від _START_ to _END_ of _TOTAL_ записів", + "Showing _START_ to _END_ of _TOTAL_ tracks": "Показано від _START_ to _END_ of _TOTAL_ треків", + "Showing _START_ to _END_ of _TOTAL_ track types": "Показано від _START_ to _END_ of _TOTAL_типів треків", + "Showing _START_ to _END_ of _TOTAL_ users": "Показано від _START_ to _END_ of _TOTAL_ користувачів", + "Showing 0 to 0 of 0 entries": "Показано від 0 до 0 із 0 записів", + "Showing 0 to 0 of 0 tracks": "Показано від 0 до 0 із 0 треків", + "Showing 0 to 0 of 0 track types": "Показано від 0 до 0 із 0 типів треків", + "(filtered from _MAX_ total track types)": "(відфільтровано з _MAX_ загальних типів доріжок)", + "Are you sure you want to delete this tracktype?": "Ви впевнені, що хочете видалити цей тип треку?", + "No track types were found.": "Типи треків не знайдено.", + "No track types found": "Типи треків не знайдено", + "No matching track types found": "Відповідних типів треків не знайдено", + "Enabled": "Увімкнено", + "Disabled": "Вимкнено", + "Cancel upload": "Скасувати завантаження", + "Type": "Тип", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "Вміст автозавантажуваних списків відтворення додається до передач за годину до їх виходу в ефір. Докладніше", + "Podcast settings saved": "Налаштування подкасту збережено", + "Are you sure you want to delete this user?": "Ви впевнені, що хочете видалити цього користувача?", + "Can't delete yourself!": "Неможливо видалити себе!", + "You haven't published any episodes!": "Ви не опублікували жодного випуску!", + "You can publish your uploaded content from the 'Tracks' view.": "Ви можете опублікувати завантажений вміст із перегляду «Треки».", + "Try it now": "Спробуй зараз", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "Якщо цей параметр не позначено, smartblock запланує стільки треків, які можуть бути відтворені повністю протягом зазначеного періоду. Зазвичай це призведе до відтворення аудіо, яке буде трохи менше зазначеної тривалості.Якщо цей параметр позначено, smartblock також запланує одну останню доріжку, яка перевищуватиме вказану тривалість. Ця остання доріжка може бути обрізана на середині, якщо шоу, до якого додано смарт-блок, закінчиться.", + "Playlist preview": "Попередній перегляд плейлиста", + "Smart Block": "Смарт-блок", + "Webstream preview": "Попередній перегляд веб-потоку", + "You don't have permission to view the library.": "Ви не маєте дозволу переглядати бібліотеку.", + "Now": "Зараз", + "Click 'New' to create one now.": "Натисніть «Новий», щоб створити.", + "Click 'Upload' to add some now.": "Натисніть «Завантажити», щоб додати.", + "Feed URL": "URL стрічки", + "Import Date": "Дата імпорту", + "Add New Podcast": "Додати новий подкаст", + "Cannot schedule outside a show.\nTry creating a show first.": "Не можна планувати за межами програми.\nСпочатку створіть програму.", + "No files have been uploaded yet.": "Файли ще не завантажено.", + "On Air": "В ефірі", + "Off Air": "Не в ефірі", + "Offline": "Offline", + "Nothing scheduled": "Нічого не заплановано", + "Click 'Add' to create one now.": "Натисніть «Додати», щоб створити зараз.", + "Please enter your username and password.": "Будь ласка, введіть своє ім'я користувача та пароль.", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "Не вдалося надіслати електронний лист. Перевірте налаштування свого поштового сервера та переконайтеся, що його налаштовано належним чином.", + "That username or email address could not be found.": "Не вдалося знайти це ім’я користувача чи електронну адресу.", + "There was a problem with the username or email address you entered.": "Виникла проблема з іменем користувача або електронною адресою, яку ви ввели.", + "Wrong username or password provided. Please try again.": "Вказано неправильне ім'я користувача або пароль. Будь ласка спробуйте ще раз.", + "You are viewing an older version of %s": "Ви переглядаєте старішу версію %s", + "You cannot add tracks to dynamic blocks.": "До динамічних блоків не можна додавати треки.", + "You don't have permission to delete selected %s(s).": "Ви не маєте дозволу на видалення вибраного %s(х).", + "You can only add tracks to smart block.": "Ви можете додавати треки лише в смарт-блок.", + "Untitled Playlist": "Плейлист без назви", + "Untitled Smart Block": "Смарт-блок без назви", + "Unknown Playlist": "Невідомий плейлист", + "Preferences updated.": "Налаштування оновлено.", + "Stream Setting Updated.": "Налаштування потоку оновлено.", + "path should be specified": "слід вказати шлях", + "Problem with Liquidsoap...": "Проблема з Liquidsoap...", + "Request method not accepted": "Метод запиту не прийнято", + "Rebroadcast of show %s from %s at %s": "Ретрансяція програми %s від %s в %s", + "Select cursor": "Вибрати курсор", + "Remove cursor": "Видалити курсор", + "show does not exist": "програми не існує", + "Track Type added successfully!": "Тип треку успішно додано!", + "Track Type updated successfully!": "Тип треку успішно оновлено!", + "User added successfully!": "Користувача успішно додано!", + "User updated successfully!": "Користувача успішно оновлено!", + "Settings updated successfully!": "Налаштування успішно оновлено!", + "Untitled Webstream": "Веб-потік без назви", + "Webstream saved.": "Веб-потік збережено.", + "Invalid form values.": "Недійсні значення форми.", + "Invalid character entered": "Введено недійсний символ", + "Day must be specified": "Необхідно вказати день", + "Time must be specified": "Необхідно вказати час", + "Must wait at least 1 hour to rebroadcast": "Для повторної трансляції потрібно зачекати принаймні 1 годину", + "Add Autoloading Playlist ?": "Додати плейлист з автозавантаженням?", + "Select Playlist": "Вибір плейлиста", + "Repeat Playlist Until Show is Full ?": "Повторювати список відтворення до заповнення програми?", + "Use %s Authentication:": "Використовувати %s Аутентифікацію:", + "Use Custom Authentication:": "Використовувати спеціальну автентифікацію:", + "Custom Username": "Спеціальне ім'я користувача", + "Custom Password": "Користувацький пароль", + "Host:": "Хост:", + "Port:": "Порт:", + "Mount:": "Точка монтування:", + "Username field cannot be empty.": "Поле імені користувача не може бути порожнім.", + "Password field cannot be empty.": "Поле пароля не може бути порожнім.", + "Record from Line In?": "Записувати з лінійного входу?", + "Rebroadcast?": "Повторна трансляція?", + "days": "днів", + "Link:": "Посилання:", + "Repeat Type:": "Тип повтору:", + "weekly": "щотижня", + "every 2 weeks": "кожні 2 тижні", + "every 3 weeks": "кожні 3 тижні", + "every 4 weeks": "кожні 4 тижні", + "monthly": "щомісяця", + "Select Days:": "Оберіть дні:", + "Repeat By:": "Повторити:", + "day of the month": "день місяця", + "day of the week": "день тижня", + "Date End:": "Кінцева дата:", + "No End?": "Немає кінця?", + "End date must be after start date": "Дата завершення має бути після дати початку", + "Please select a repeat day": "Виберіть день повторення", + "Background Colour:": "Колір фону:", + "Text Colour:": "Колір тексту:", + "Current Logo:": "Поточний логотип:", + "Show Logo:": "Показати логотип:", + "Logo Preview:": "Попередній перегляд логотипу:", + "Name:": "Ім'я:", + "Untitled Show": "Програма без назви", + "URL:": "URL:", + "Genre:": "Жанр:", + "Description:": "Опис:", + "Instance Description:": "Опис екземпляру:", + "{msg} does not fit the time format 'HH:mm'": "{msg} не відповідає часовому формату 'HH:mm'", + "Start Time:": "Час початку:", + "In the Future:": "У майбутньому:", + "End Time:": "Час закінчення:", + "Duration:": "Тривалість:", + "Timezone:": "Часовий пояс:", + "Repeats?": "Повторювати?", + "Cannot create show in the past": "Неможливо створити програму в минулому часі", + "Cannot modify start date/time of the show that is already started": "Неможливо змінити дату/час початку програми, яка вже розпочата", + "End date/time cannot be in the past": "Дата/час завершення не можуть бути в минулому", + "Cannot have duration < 0m": "Не може мати тривалість < 0хв", + "Cannot have duration 00h 00m": "Не може мати тривалість 00год 00хв", + "Cannot have duration greater than 24h": "Тривалість не може перевищувати 24 год", + "Cannot schedule overlapping shows": "Неможливо запланувати накладені програми", + "Search Users:": "Пошук користувачів:", + "DJs:": "Діджеї:", + "Type Name:": "Назва типу:", + "Code:": "Код:", + "Visibility:": "Видимість:", + "Analyze cue points:": "Проаналізуйте контрольні точки:", + "Code is not unique.": "Код не унікальний.", + "Username:": "Ім'я користувача:", + "Password:": "Пароль:", + "Verify Password:": "Підтвердіть пароль:", + "Firstname:": "Ім'я:", + "Lastname:": "Прізвище:", + "Email:": "Email:", + "Mobile Phone:": "Телефон:", + "Skype:": "Skype:", + "Jabber:": "Jabber:", + "User Type:": "Тип користувача:", + "Login name is not unique.": "Логін не є унікальним.", + "Delete All Tracks in Library": "Видалити всі треки з бібліотеки", + "Date Start:": "Дата початку:", + "Title:": "Назва:", + "Creator:": "Автор:", + "Album:": "Альбом:", + "Owner:": "Власник:", + "Select a Type": "Виберіть тип", + "Track Type:": "Тип треку:", + "Year:": "Рік:", + "Label:": "Label:", + "Composer:": "Композитор:", + "Conductor:": "Виконавець:", + "Mood:": "Настрій:", + "BPM:": "BPM:", + "Copyright:": "Авторське право:", + "ISRC Number:": "Номер ISRC:", + "Website:": "Веб-сайт:", + "Language:": "Мова:", + "Publish...": "Опублікувати...", + "Start Time": "Час початку", + "End Time": "Час закінчення", + "Interface Timezone:": "Часовий пояс інтерфейсу:", + "Station Name": "Назва станції", + "Station Description": "Опис Станції", + "Station Logo:": "Лого Станції:", + "Note: Anything larger than 600x600 will be resized.": "Примітка: все, що перевищує 600x600, буде змінено.", + "Default Crossfade Duration (s):": "Тривалість переходу за замовчуванням (с):", + "Please enter a time in seconds (eg. 0.5)": "Будь ласка, введіть час у секундах (наприклад, 0,5)", + "Default Fade In (s):": "За замовчуванням Fade In (s):", + "Default Fade Out (s):": "За замовчуванням Fade Out (s):", + "Track Type Upload Default": "Тип доріжки Завантаження за замовчуванням", + "Intro Autoloading Playlist": "Вступний автозавантажуваний плейлист (Intro)", + "Outro Autoloading Playlist": "Завершальний автозавантажувальний плейлист (Outro)", + "Overwrite Podcast Episode Metatags": "Перезаписати метатеги епізоду подкасту", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "Якщо ввімкнути цю функцію, метатеги виконавця, назви та альбому для доріжок епізодів подкастів установлюватимуться зі значень каналу подкастів. Зауважте, що вмикати цю функцію рекомендується, щоб забезпечити надійне планування епізодів через смарт-блоки.", + "Generate a smartblock and a playlist upon creation of a new podcast": "Створіть смартблок і список відтворення після створення нового подкасту", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "Якщо цей параметр увімкнено, новий смарт-блок і список відтворення, які відповідають найновішому треку подкасту, будуть створені одразу після створення нового подкасту. Зауважте, що функція «Перезаписати метатеги епізоду подкасту» також має бути ввімкнена, щоб смарт-блок міг надійно знаходити епізоди.", + "Public LibreTime API": "Public LibreTime API", + "Required for embeddable schedule widget.": "Потрібний для вбудованого віджета розкладу.", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "Увімкнення цієї функції дозволить LibreTime надавати дані розкладу\n до зовнішніх віджетів, які можна вбудувати на ваш веб-сайт.", + "Default Language": "Мова за замовчуванням", + "Station Timezone": "Часовий пояс станції", + "Week Starts On": "Тиждень починається з", + "Display login button on your Radio Page?": "Відображати кнопку входу на сторінці радіо?", + "Feature Previews": "Попередній перегляд функцій", + "Enable this to opt-in to test new features.": "Увімкніть це, щоб тестувати нові функції.", + "Auto Switch Off:": "Автоматичне вимкнення:", + "Auto Switch On:": "Автоматичне ввімкнення:", + "Switch Transition Fade (s):": "Перемикання переходу Fade (s):", + "Master Source Host:": "Головний вихідний хост:", + "Master Source Port:": "Головний вихідний порт:", + "Master Source Mount:": "Головне джерело монтування:", + "Show Source Host:": "Показати вихідний хост:", + "Show Source Port:": "Показати вихідний порт:", + "Show Source Mount:": "Показати джерела монтування:", + "Login": "Логін", + "Password": "Пароль", + "Confirm new password": "Підтвердити новий пароль", + "Password confirmation does not match your password.": "Підтвердження пароля не збігається з вашим.", + "Email": "Email", + "Username": "Ім'я користувача", + "Reset password": "Скинути пароль", + "Back": "Назад", + "Now Playing": "Зараз грає", + "Select Stream:": "Виберіть потік:", + "Auto detect the most appropriate stream to use.": "Автоматичне визначення потоку, який найбільше підходить для використання.", + "Select a stream:": "Виберіть потік:", + " - Mobile friendly": " - Зручний для мобільних пристроїв", + " - The player does not support Opus streams.": " - Плеєр не підтримує потоки Opus.", + "Embeddable code:": "Код для вбудовування:", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "Скопіюйте цей код і вставте його в HTML-код свого веб-сайту, щоб вставити програвач на свій сайт.", + "Preview:": "Попередній перегляд:", + "Feed Privacy": "Конфіденційність стрічки", + "Public": "Публічний", + "Private": "Приватний", + "Station Language": "Мова станції", + "Filter by Show": "Фільтрувати мої програми", + "All My Shows:": "Усі мої програми:", + "My Shows": "Мої програми", + "Select criteria": "Виберіть критерії", + "Bit Rate (Kbps)": "Bit Rate (Kbps)", + "Track Type": "Тип треку", + "Sample Rate (kHz)": "Частота дискретизації (kHz)", + "before": "раніше", + "after": "після", + "between": "між", + "Select unit of time": "Виберіть одиницю часу", + "minute(s)": "хвилина(и)", + "hour(s)": "година(и)", + "day(s)": "День(Дні)", + "week(s)": "Тиждень(і)", + "month(s)": "місяць(і)", + "year(s)": "Рік(и)", + "hours": "година(и)", + "minutes": "хвилина(и)", + "items": "елементи", + "time remaining in show": "час, що залишився у програмі", + "Randomly": "Довільно", + "Newest": "Найновіший(і)", + "Oldest": "Найстаріший(і)", + "Most recently played": "Нещодавно зіграно", + "Least recently played": "Нещодавно грали", + "Select Track Type": "Виберіть тип доріжки", + "Type:": "Тип:", + "Dynamic": "Динамічний", + "Static": "Статичний", + "Select track type": "Виберіть тип доріжки", + "Allow Repeated Tracks:": "Дозволити повторення треків:", + "Allow last track to exceed time limit:": "Дозволити останньому треку перевищити ліміт часу:", + "Sort Tracks:": "Сортування треків:", + "Limit to:": "Обмежити в:", + "Generate playlist content and save criteria": "Створення вмісту списку відтворення та збереження критеріїв", + "Shuffle playlist content": "Перемішати вміст плейлиста", + "Shuffle": "Перемішати", + "Limit cannot be empty or smaller than 0": "Ліміт не може бути порожнім або меншим за 0", + "Limit cannot be more than 24 hrs": "Ліміт не може перевищувати 24 год", + "The value should be an integer": "Значення має бути цілим числом", + "500 is the max item limit value you can set": "500 максимальне граничне значення", + "You must select Criteria and Modifier": "Ви повинні вибрати Критерії і Модифікатор", + "'Length' should be in '00:00:00' format": "'Довжина має бути введена у '00:00:00' форматі", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "Для текстового значення допускаються лише невід’ємні цілі числа (наприклад, 1 або 5)", + "You must select a time unit for a relative datetime.": "Ви повинні вибрати одиницю вимірювання часу для відносної дати та часу.", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "Значення має бути у форматі позначки часу (e.g. 0000-00-00 or 0000-00-00 00:00:00)", + "Only non-negative integer numbers are allowed for a relative date time": "Для відносної дати й часу дозволено використовувати лише невід’ємні цілі числа", + "The value has to be numeric": "Значення має бути числовим", + "The value should be less then 2147483648": "Значення має бути меншим, ніж 2147483648", + "The value cannot be empty": "Значення не може бути порожнім", + "The value should be less than %s characters": "Значення має бути менше ніж %s символів", + "Value cannot be empty": "Значення не може бути порожнім", + "Stream Label:": "Метадані потоку:", + "Artist - Title": "Виконавець - Назва", + "Show - Artist - Title": "Програма - Виконавець - Назва", + "Station name - Show name": "Назва станції - Показати назву", + "Off Air Metadata": "Метадані при вимкненому ефірі", + "Enable Replay Gain": "Вмикнути Replay Gain", + "Replay Gain Modifier": "Змінити Replay Gain", + "Hardware Audio Output:": "Апаратний аудіовихід:", + "Output Type": "Тип виходу", + "Enabled:": "Увімкнено:", + "Mobile:": "Телефон:", + "Stream Type:": "Тип потоку:", + "Bit Rate:": "Bit Rate:", + "Service Type:": "Тип сервіса:", + "Channels:": "Канали:", + "Server": "Сервер", + "Port": "Порт", + "Mount Point": "Точка монтування", + "Name": "Ім'я", + "URL": "URL", + "Stream URL": "URL-адреса трансляції", + "Push metadata to your station on TuneIn?": "Надішлати метадані на свою станцію в TuneIn?", + "Station ID:": "ID Станції:", + "Partner Key:": "Ключ партнера:", + "Partner Id:": "ID партнера:", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "Недійсні налаштування TuneIn. Переконайтеся, що налаштування TuneIn правильні, і повторіть спробу.", + "Import Folder:": "Імпорт папки:", + "Watched Folders:": "Переглянути папки:", + "Not a valid Directory": "Недійсний каталог", + "Value is required and can't be empty": "Значення є обов’язковим і не може бути порожнім", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} не є дійсною електронною адресою в форматі local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} не відповідає формату дати '%format%'", + "{msg} is less than %min% characters long": "{msg} є меншим ніж %min% довжина символів", + "{msg} is more than %max% characters long": "{msg} це більше ніж %max% довжина символів", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} не знаходиться між '%min%' і '%max%', включно", + "Passwords do not match": "Паролі не співпадають", + "Hi %s, \n\nPlease click this link to reset your password: ": "Привіт %s, \n\nНатисніть це посилання, щоб змінити пароль: ", + "\n\nIf you have any problems, please contact our support team: %s": "\n\nЯкщо у вас виникли проблеми, зверніться до нашої служби підтримки: %s", + "\n\nThank you,\nThe %s Team": "\n\nДякую Вам,\nThe %s Team", + "%s Password Reset": "%s Скидання паролю", + "Cue in and cue out are null.": "Час початку та закінчення звучання треку не заповнені.", + "Can't set cue out to be greater than file length.": "Час закінчення звучання не може перевищувати довжину треку.", + "Can't set cue in to be larger than cue out.": "Час початку звучання може бути пізніше часу закінчення.", + "Can't set cue out to be smaller than cue in.": "Час закінчення звучання не може бути раніше початку.", + "Upload Time": "Час завантаження", + "None": "Жодного", + "Powered by %s": "На основі %s", + "Select Country": "Оберіть Країну", + "livestream": "Наживо", + "Cannot move items out of linked shows": "Неможливо перемістити елементи з пов’язаних програм", + "The schedule you're viewing is out of date! (sched mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність графіку)", + "The schedule you're viewing is out of date! (instance mismatch)": "Розклад, який ви переглядаєте, застарів! (невідповідність екземплярів)", + "The schedule you're viewing is out of date!": "Розклад, який ви переглядаєте, застарів!", + "You are not allowed to schedule show %s.": "Вам не дозволено планувати програму %s.", + "You cannot add files to recording shows.": "Ви не можете додавати файли до Програми, що записується.", + "The show %s is over and cannot be scheduled.": "Програма %s закінчилась, її не можливо запланувати.", + "The show %s has been previously updated!": "Програма %s була оновлена раніше!", + "Content in linked shows cannot be changed while on air!": "Вміст пов’язаних програм не можна змінювати під час трансляції!", + "Cannot schedule a playlist that contains missing files.": "Неможливо запланувати плейлист, який містить відсутні файли.", + "A selected File does not exist!": "Вибраний файл не існує!", + "Shows can have a max length of 24 hours.": "Програма може тривати не більше 24 годин.", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "Не можна планувати Програми, що перетинаються.\nПримітка: зміна розміру Програми, що повторюється, впливає на всі її пов'язані Примірники.", + "Rebroadcast of %s from %s": "Ретрансляція %s від %s", + "Length needs to be greater than 0 minutes": "Довжина повинна бути більше ніж 0 хвилин", + "Length should be of form \"00h 00m\"": "Довжина повинна відповідати формі \"00год 00хв\"", + "URL should be of form \"https://example.org\"": "URL має бути форми \"https://example.org\"", + "URL should be 512 characters or less": "URL-адреса має містити не більше 512 символів", + "No MIME type found for webstream.": "Для веб-потоку не знайдено тип MIME.", + "Webstream name cannot be empty": "Назва веб-потоку не може бути пустою", + "Could not parse XSPF playlist": "Не вдалося проаналізувати XSPF плейлист", + "Could not parse PLS playlist": "Не вдалося проаналізувати PLS плейлист", + "Could not parse M3U playlist": "Не вдалося проаналізувати M3U плейлист", + "Invalid webstream - This appears to be a file download.": "Недійсний веб-потік. Здається, це завантажений файл.", + "Unrecognized stream type: %s": "Нерозпізнаний тип потоку: %s", + "Record file doesn't exist": "Файл запису не існує", + "View Recorded File Metadata": "Перегляд метаданих записаного файлу", + "Schedule Tracks": "Заплановані треки", + "Clear Show": "Очистити програму", + "Cancel Show": "Відміна програми", + "Edit Instance": "Редагувати екземпляр", + "Edit Show": "Редагування програми", + "Delete Instance": "Видалити екземпляр", + "Delete Instance and All Following": "Видалити екземпляр і все наступне", + "Permission denied": "У дозволі відмовлено", + "Can't drag and drop repeating shows": "Не можна перетягувати повторювані програми", + "Can't move a past show": "Неможливо перемістити минулу програму", + "Can't move show into past": "Неможливо перенести програму в минуле", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "Не можна перемістити записану програму менш ніж за 1 годину до її повторної трансляції.", + "Show was deleted because recorded show does not exist!": "Програму видалено, оскільки записаної програми не існує!", + "Must wait 1 hour to rebroadcast.": "Для повторної трансляції потрібно почекати 1 годину.", + "Track": "Трек", + "Played": "Програно", + "Auto-generated smartblock for podcast": "Автоматично створений смарт-блок для подкасту", + "Webstreams": "Веб-потоки" } diff --git a/webapp/src/locale/zh_CN.json b/webapp/src/locale/zh_CN.json index c47a277398..e7cdca440e 100644 --- a/webapp/src/locale/zh_CN.json +++ b/webapp/src/locale/zh_CN.json @@ -1,941 +1,941 @@ { - "The year %s must be within the range of 1753 - 9999": "1753 - 9999 是可以接受的年代值,而不是“%s”", - "%s-%s-%s is not a valid date": "%s-%s-%s采用了错误的日期格式", - "%s:%s:%s is not a valid time": "%s:%s:%s 采用了错误的时间格式", - "English": "", - "Afar": "", - "Abkhazian": "", - "Afrikaans": "", - "Amharic": "", - "Arabic": "", - "Assamese": "", - "Aymara": "", - "Azerbaijani": "", - "Bashkir": "", - "Belarusian": "", - "Bulgarian": "", - "Bihari": "", - "Bislama": "", - "Bengali/Bangla": "", - "Tibetan": "", - "Breton": "", - "Catalan": "", - "Corsican": "", - "Czech": "", - "Welsh": "", - "Danish": "", - "German": "", - "Bhutani": "", - "Greek": "", - "Esperanto": "", - "Spanish": "", - "Estonian": "", - "Basque": "", - "Persian": "", - "Finnish": "", - "Fiji": "", - "Faeroese": "", - "French": "", - "Frisian": "", - "Irish": "", - "Scots/Gaelic": "", - "Galician": "", - "Guarani": "", - "Gujarati": "", - "Hausa": "", - "Hindi": "", - "Croatian": "", - "Hungarian": "", - "Armenian": "", - "Interlingua": "", - "Interlingue": "", - "Inupiak": "", - "Indonesian": "", - "Icelandic": "", - "Italian": "", - "Hebrew": "", - "Japanese": "", - "Yiddish": "", - "Javanese": "", - "Georgian": "", - "Kazakh": "", - "Greenlandic": "", - "Cambodian": "", - "Kannada": "", - "Korean": "", - "Kashmiri": "", - "Kurdish": "", - "Kirghiz": "", - "Latin": "", - "Lingala": "", - "Laothian": "", - "Lithuanian": "", - "Latvian/Lettish": "", - "Malagasy": "", - "Maori": "", - "Macedonian": "", - "Malayalam": "", - "Mongolian": "", - "Moldavian": "", - "Marathi": "", - "Malay": "", - "Maltese": "", - "Burmese": "", - "Nauru": "", - "Nepali": "", - "Dutch": "", - "Norwegian": "", - "Occitan": "", - "(Afan)/Oromoor/Oriya": "", - "Punjabi": "", - "Polish": "", - "Pashto/Pushto": "", - "Portuguese": "", - "Quechua": "", - "Rhaeto-Romance": "", - "Kirundi": "", - "Romanian": "", - "Russian": "", - "Kinyarwanda": "", - "Sanskrit": "", - "Sindhi": "", - "Sangro": "", - "Serbo-Croatian": "", - "Singhalese": "", - "Slovak": "", - "Slovenian": "", - "Samoan": "", - "Shona": "", - "Somali": "", - "Albanian": "", - "Serbian": "", - "Siswati": "", - "Sesotho": "", - "Sundanese": "", - "Swedish": "", - "Swahili": "", - "Tamil": "", - "Tegulu": "", - "Tajik": "", - "Thai": "", - "Tigrinya": "", - "Turkmen": "", - "Tagalog": "", - "Setswana": "", - "Tonga": "", - "Turkish": "", - "Tsonga": "", - "Tatar": "", - "Twi": "", - "Ukrainian": "", - "Urdu": "", - "Uzbek": "", - "Vietnamese": "", - "Volapuk": "", - "Wolof": "", - "Xhosa": "", - "Yoruba": "", - "Chinese": "", - "Zulu": "", - "Use station default": "", - "Upload some tracks below to add them to your library!": "", - "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", - "Click the 'New Show' button and fill out the required fields.": "", - "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", - "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", - "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", - "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", - "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", - "Click on the show starting next and select 'Schedule Tracks'": "", - "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", - "LibreTime media analyzer service": "", - "Check that the libretime-analyzer service is installed correctly in ": "", - " and ensure that it's running with ": "", - "If not, try ": "", - "LibreTime playout service": "", - "Check that the libretime-playout service is installed correctly in ": "", - "LibreTime liquidsoap service": "", - "Check that the libretime-liquidsoap service is installed correctly in ": "", - "LibreTime Celery Task service": "", - "Check that the libretime-worker service is installed correctly in ": "", - "LibreTime API service": "", - "Check that the libretime-api service is installed correctly in ": "", - "Radio Page": "", - "Calendar": "节目日程", - "Widgets": "", - "Player": "", - "Weekly Schedule": "", - "Settings": "", - "General": "", - "My Profile": "", - "Users": "用户管理", - "Track Types": "", - "Streams": "媒体流设置", - "Status": "系统状态", - "Analytics": "", - "Playout History": "播出历史", - "History Templates": "历史记录模板", - "Listener Stats": "收听状态", - "Show Listener Stats": "", - "Help": "帮助", - "Getting Started": "基本用法", - "User Manual": "用户手册", - "Get Help Online": "", - "Contribute to LibreTime": "", - "What's New?": "", - "You are not allowed to access this resource.": "你没有访问该资源的权限", - "You are not allowed to access this resource. ": "你没有访问该资源的权限", - "File does not exist in %s": "", - "Bad request. no 'mode' parameter passed.": "请求错误。没有提供‘模式’参数。", - "Bad request. 'mode' parameter is invalid": "请求错误。提供的‘模式’参数无效。", - "You don't have permission to disconnect source.": "你没有断开输入源的权限。", - "There is no source connected to this input.": "没有连接上的输入源。", - "You don't have permission to switch source.": "你没有切换的权限。", - "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", - "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", - "Page not found.": "", - "The requested action is not supported.": "", - "You do not have permission to access this resource.": "", - "An internal application error has occurred.": "", - "%s Podcast": "", - "No tracks have been published yet.": "", - "%s not found": "%s不存在", - "Something went wrong.": "未知错误。", - "Preview": "预览", - "Add to Playlist": "添加到播放列表", - "Add to Smart Block": "添加到智能模块", - "Delete": "删除", - "Edit...": "", - "Download": "下载", - "Duplicate Playlist": "复制播放列表", - "Duplicate Smartblock": "", - "No action available": "没有操作选择", - "You don't have permission to delete selected items.": "你没有删除选定项目的权限。", - "Could not delete file because it is scheduled in the future.": "", - "Could not delete file(s).": "", - "Copy of %s": "%s的副本", - "Please make sure admin user/password is correct on Settings->Streams page.": "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。", - "Audio Player": "音频播放器", - "Something went wrong!": "", - "Recording:": "录制:", - "Master Stream": "主输入源", - "Live Stream": "节目定制输入源", - "Nothing Scheduled": "没有安排节目内容", - "Current Show:": "当前节目:", - "Current": "当前的", - "You are running the latest version": "你已经在使用最新版", - "New version available: ": "版本有更新:", - "You have a pre-release version of LibreTime intalled.": "", - "A patch update for your LibreTime installation is available.": "", - "A feature update for your LibreTime installation is available.": "", - "A major update for your LibreTime installation is available.": "", - "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", - "Add to current playlist": "添加到播放列表", - "Add to current smart block": "添加到只能模块", - "Adding 1 Item": "添加1项", - "Adding %s Items": "添加%s项", - "You can only add tracks to smart blocks.": "智能模块只能添加声音文件。", - "You can only add tracks, smart blocks, and webstreams to playlists.": "播放列表只能添加声音文件,只能模块和网络流媒体。", - "Please select a cursor position on timeline.": "请在右部的时间表视图中选择一个游标位置。", - "You haven't added any tracks": "", - "You haven't added any playlists": "", - "You haven't added any podcasts": "", - "You haven't added any smart blocks": "", - "You haven't added any webstreams": "", - "Learn about tracks": "", - "Learn about playlists": "", - "Learn about podcasts": "", - "Learn about smart blocks": "", - "Learn about webstreams": "", - "Click 'New' to create one.": "", - "Add": "添加", - "New": "", - "Edit": "编辑", - "Add to Schedule": "", - "Add to next show": "", - "Add to current show": "", - "Add after selected items": "", - "Publish": "", - "Remove": "移除", - "Edit Metadata": "编辑元数据", - "Add to selected show": "添加到所选的节目", - "Select": "选择", - "Select this page": "选择此页", - "Deselect this page": "取消整页", - "Deselect all": "全部取消", - "Are you sure you want to delete the selected item(s)?": "确定删除选择的项?", - "Scheduled": "已安排进日程", - "Tracks": "", - "Playlist": "", - "Title": "标题", - "Creator": "作者", - "Album": "专辑", - "Bit Rate": "比特率", - "BPM": "每分钟拍子数", - "Composer": "作曲", - "Conductor": "指挥", - "Copyright": "版权", - "Encoded By": "编曲", - "Genre": "风格", - "ISRC": "ISRC码", - "Label": "标签", - "Language": "语种", - "Last Modified": "最近更新于", - "Last Played": "上次播放于", - "Length": "时长", - "Mime": "MIME信息", - "Mood": "风格", - "Owner": "所有者", - "Replay Gain": "回放增益", - "Sample Rate": "样本率", - "Track Number": "曲目", - "Uploaded": "上传于", - "Website": "网址", - "Year": "年代", - "Loading...": "加载中...", - "All": "全部", - "Files": "文件", - "Playlists": "播放列表", - "Smart Blocks": "智能模块", - "Web Streams": "网络流媒体", - "Unknown type: ": "位置类型:", - "Are you sure you want to delete the selected item?": "确定删除所选项?", - "Uploading in progress...": "正在上传...", - "Retrieving data from the server...": "数据正在从服务器下载中...", - "Import": "", - "Imported?": "", - "View": "", - "Error code: ": "错误代码:", - "Error msg: ": "错误信息:", - "Input must be a positive number": "输入只能为正数", - "Input must be a number": "只允许数字输入", - "Input must be in the format: yyyy-mm-dd": "输入格式应为:年-月-日(yyyy-mm-dd)", - "Input must be in the format: hh:mm:ss.t": "输入格式应为:时:分:秒 (hh:mm:ss.t)", - "My Podcast": "", - "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?", - "Open Media Builder": "打开媒体编辑器", - "please put in a time '00:00:00 (.0)'": "请输入时间‘00:00:00(.0)’", - "Please enter a valid time in seconds. Eg. 0.5": "", - "Your browser does not support playing this file type: ": "你的浏览器不支持这种文件类型:", - "Dynamic block is not previewable": "动态智能模块无法预览", - "Limit to: ": "限制在:", - "Playlist saved": "播放列表已存储", - "Playlist shuffled": "播放列表已经随机化", - "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。", - "Listener Count on %s: %s": "听众统计%s:%s", - "Remind me in 1 week": "一周以后再提醒我", - "Remind me never": "不再提醒", - "Yes, help Airtime": "是的,帮助Airtime", - "Image must be one of jpg, jpeg, png, or gif": "图像文件格式只能是jpg,jpeg,png或者gif", - "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。", - "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。", - "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", - "Smart block shuffled": "智能模块已经随机排列", - "Smart block generated and criteria saved": "智能模块已经生成,条件设置已经保存", - "Smart block saved": "智能模块已经保存", - "Processing...": "加载中...", - "Select modifier": "选择操作符", - "contains": "包含", - "does not contain": "不包含", - "is": "是", - "is not": "不是", - "starts with": "起始于", - "ends with": "结束于", - "is greater than": "大于", - "is less than": "小于", - "is in the range": "处于", - "Generate": "开始生成", - "Choose Storage Folder": "选择存储文件夹", - "Choose Folder to Watch": "选择监控的文件夹", - "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "确定更改存储路径?\n这项操作将从媒体库中删除所有文件!", - "Manage Media Folders": "管理媒体文件夹", - "Are you sure you want to remove the watched folder?": "确定取消该文件夹的监控?", - "This path is currently not accessible.": "指定的路径无法访问。", - "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。", - "Connected to the streaming server": "流服务器已连接", - "The stream is disabled": "输出流已禁用", - "Getting information from the server...": "从服务器加载中...", - "Can not connect to the streaming server": "无法连接流服务器", - "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", - "For more details, please read the %s%s Manual%s": "", - "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。", - "Check this box to automatically switch off Master/Show source upon source disconnection.": "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。", - "Check this box to automatically switch on Master/Show source upon source connection.": "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。", - "If your Icecast server expects a username of 'source', this field can be left blank.": "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。", - "If your live streaming client does not ask for a username, this field should be 'source'.": "如果你的流客户端不需要用户名,那么当前项可以留空", - "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", - "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。", - "Warning: You cannot change this field while the show is currently playing": "", - "No result found": "搜索无结果", - "This follows the same security pattern for the shows: only users assigned to the show can connect.": "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。", - "Specify custom authentication which will work only for this show.": "所设置的自定义认证设置只对当前的节目有效。", - "The show instance doesn't exist anymore!": "此节目已不存在", - "Warning: Shows cannot be re-linked": "注意:节目取消绑定后无法再次绑定", - "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。", - "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。", - "Show": "节目", - "Show is empty": "节目内容为空", - "1m": "1分钟", - "5m": "5分钟", - "10m": "10分钟", - "15m": "15分钟", - "30m": "30分钟", - "60m": "60分钟", - "Retreiving data from the server...": "从服务器下载数据中...", - "This show has no scheduled content.": "此节目没有安排内容。", - "This show is not completely filled with content.": "节目内容只填充了一部分。", - "January": "一月", - "February": "二月", - "March": "三月", - "April": "四月", - "May": "五月", - "June": "六月", - "July": "七月", - "August": "八月", - "September": "九月", - "October": "十月", - "November": "十一月", - "December": "十二月", - "Jan": "一月", - "Feb": "二月", - "Mar": "三月", - "Apr": "四月", - "Jun": "六月", - "Jul": "七月", - "Aug": "八月", - "Sep": "九月", - "Oct": "十月", - "Nov": "十一月", - "Dec": "十二月", - "Today": "", - "Day": "", - "Week": "", - "Month": "", - "Sunday": "周日", - "Monday": "周一", - "Tuesday": "周二", - "Wednesday": "周三", - "Thursday": "周四", - "Friday": "周五", - "Saturday": "周六", - "Sun": "周日", - "Mon": "周一", - "Tue": "周二", - "Wed": "周三", - "Thu": "周四", - "Fri": "周五", - "Sat": "周六", - "Shows longer than their scheduled time will be cut off by a following show.": "超出的节目内容将被随后的节目所取代。", - "Cancel Current Show?": "取消当前的节目?", - "Stop recording current show?": "停止录制当前的节目?", - "Ok": "确定", - "Contents of Show": "浏览节目内容", - "Remove all content?": "清空全部内容?", - "Delete selected item(s)?": "删除选定的项目?", - "Start": "开始", - "End": "结束", - "Duration": "时长", - "Filtering out ": "", - " of ": "", - " records": "", - "There are no shows scheduled during the specified time period.": "", - "Cue In": "切入", - "Cue Out": "切出", - "Fade In": "淡入", - "Fade Out": "淡出", - "Show Empty": "节目无内容", - "Recording From Line In": "从线路输入录制", - "Track preview": "试听媒体", - "Cannot schedule outside a show.": "没有指定节目,无法凭空安排内容。", - "Moving 1 Item": "移动1个项目", - "Moving %s Items": "移动%s个项目", - "Save": "保存", - "Cancel": "取消", - "Fade Editor": "淡入淡出编辑器", - "Cue Editor": "切入切出编辑器", - "Waveform features are available in a browser supporting the Web Audio API": "想要启用波形图功能,需要支持Web Audio API的浏览器。", - "Select all": "全选", - "Select none": "全不选", - "Trim overbooked shows": "", - "Remove selected scheduled items": "移除所选的项目", - "Jump to the current playing track": "跳转到当前播放的项目", - "Jump to Current": "", - "Cancel current show": "取消当前的节目", - "Open library to add or remove content": "打开媒体库,添加或者删除节目内容", - "Add / Remove Content": "添加 / 删除内容", - "in use": "使用中", - "Disk": "磁盘", - "Look in": "查询", - "Open": "打开", - "Admin": "系统管理员", - "DJ": "节目编辑", - "Program Manager": "节目主管", - "Guest": "游客", - "Guests can do the following:": "游客的权限包括:", - "View schedule": "显示节目日程", - "View show content": "显示节目内容", - "DJs can do the following:": "节目编辑的权限包括:", - "Manage assigned show content": "为指派的节目管理节目内容", - "Import media files": "导入媒体文件", - "Create playlists, smart blocks, and webstreams": "创建播放列表,智能模块和网络流媒体", - "Manage their own library content": "管理媒体库中属于自己的内容", - "Program Managers can do the following:": "", - "View and manage show content": "查看和管理节目内容", - "Schedule shows": "安排节目日程", - "Manage all library content": "管理媒体库的所有内容", - "Admins can do the following:": "管理员的权限包括:", - "Manage preferences": "属性管理", - "Manage users": "管理用户", - "Manage watched folders": "管理监控文件夹", - "Send support feedback": "提交反馈意见", - "View system status": "显示系统状态", - "Access playout history": "查看播放历史", - "View listener stats": "显示收听统计数据", - "Show / hide columns": "显示/隐藏栏", - "Columns": "", - "From {from} to {to}": "从{from}到{to}", - "kbps": "千比特每秒", - "yyyy-mm-dd": "年-月-日", - "hh:mm:ss.t": "时:分:秒", - "kHz": "千赫兹", - "Su": "周天", - "Mo": "周一", - "Tu": "周二", - "We": "周三", - "Th": "周四", - "Fr": "周五", - "Sa": "周六", - "Close": "关闭", - "Hour": "小时", - "Minute": "分钟", - "Done": "设定", - "Select files": "选择文件", - "Add files to the upload queue and click the start button.": "添加需要上传的文件到传输队列中,然后点击开始上传。", - "Filename": "", - "Size": "", - "Add Files": "添加文件", - "Stop Upload": "停止上传", - "Start upload": "开始上传", - "Start Upload": "", - "Add files": "添加文件", - "Stop current upload": "", - "Start uploading queue": "", - "Uploaded %d/%d files": "已经上传%d/%d个文件", - "N/A": "未知", - "Drag files here.": "拖拽文件到此处。", - "File extension error.": "文件后缀名出错。", - "File size error.": "文件大小出错。", - "File count error.": "发生文件统计错误。", - "Init error.": "发生初始化错误。", - "HTTP Error.": "发生HTTP类型的错误", - "Security error.": "发生安全性错误。", - "Generic error.": "发生通用类型的错误。", - "IO error.": "输入输出错误。", - "File: %s": "文件:%s", - "%d files queued": "队列中有%d个文件", - "File: %f, size: %s, max file size: %m": "文件:%f,大小:%s,最大的文件大小:%m", - "Upload URL might be wrong or doesn't exist": "用于上传的地址有误或者不存在", - "Error: File too large: ": "错误:文件过大:", - "Error: Invalid file extension: ": "错误:无效的文件后缀名:", - "Set Default": "设为默认", - "Create Entry": "创建项目", - "Edit History Record": "编辑历史记录", - "No Show": "无节目", - "Copied %s row%s to the clipboard": "复制%s行%s到剪贴板", - "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。", - "New Show": "", - "New Log Entry": "", - "No data available in table": "", - "(filtered from _MAX_ total entries)": "", - "First": "", - "Last": "", - "Next": "", - "Previous": "", - "Search:": "", - "No matching records found": "", - "Drag tracks here from the library": "", - "No tracks were played during the selected time period.": "", - "Unpublish": "", - "No matching results found.": "", - "Author": "", - "Description": "描述", - "Link": "", - "Publication Date": "", - "Import Status": "", - "Actions": "", - "Delete from Library": "", - "Successfully imported": "", - "Show _MENU_": "", - "Show _MENU_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ entries": "", - "Showing _START_ to _END_ of _TOTAL_ tracks": "", - "Showing _START_ to _END_ of _TOTAL_ track types": "", - "Showing _START_ to _END_ of _TOTAL_ users": "", - "Showing 0 to 0 of 0 entries": "", - "Showing 0 to 0 of 0 tracks": "", - "Showing 0 to 0 of 0 track types": "", - "(filtered from _MAX_ total track types)": "", - "Are you sure you want to delete this tracktype?": "", - "No track types were found.": "", - "No track types found": "", - "No matching track types found": "", - "Enabled": "启用", - "Disabled": "禁用", - "Cancel upload": "", - "Type": "", - "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", - "Podcast settings saved": "", - "Are you sure you want to delete this user?": "", - "Can't delete yourself!": "", - "You haven't published any episodes!": "", - "You can publish your uploaded content from the 'Tracks' view.": "", - "Try it now": "", - "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", - "Playlist preview": "", - "Smart Block": "", - "Webstream preview": "", - "You don't have permission to view the library.": "", - "Now": "", - "Click 'New' to create one now.": "", - "Click 'Upload' to add some now.": "", - "Feed URL": "", - "Import Date": "", - "Add New Podcast": "", - "Cannot schedule outside a show.\nTry creating a show first.": "", - "No files have been uploaded yet.": "", - "On Air": "", - "Off Air": "", - "Offline": "", - "Nothing scheduled": "", - "Click 'Add' to create one now.": "", - "Please enter your username and password.": "", - "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "邮件发送失败。请检查邮件服务器设置,并确定设置无误。", - "That username or email address could not be found.": "", - "There was a problem with the username or email address you entered.": "", - "Wrong username or password provided. Please try again.": "用户名或密码错误,请重试。", - "You are viewing an older version of %s": "你所查看的%s已更改", - "You cannot add tracks to dynamic blocks.": "动态智能模块不能添加声音文件。", - "You don't have permission to delete selected %s(s).": "你没有删除所选%s的权限。", - "You can only add tracks to smart block.": "智能模块只能添加媒体文件。", - "Untitled Playlist": "未命名的播放列表", - "Untitled Smart Block": "未命名的智能模块", - "Unknown Playlist": "位置播放列表", - "Preferences updated.": "属性已更新。", - "Stream Setting Updated.": "流设置已更新。", - "path should be specified": "请指定路径", - "Problem with Liquidsoap...": "Liquidsoap出错...", - "Request method not accepted": "", - "Rebroadcast of show %s from %s at %s": "节目%s是节目%s的重播,时间是%s", - "Select cursor": "选择游标", - "Remove cursor": "删除游标", - "show does not exist": "节目不存在", - "Track Type added successfully!": "", - "Track Type updated successfully!": "", - "User added successfully!": "用户已添加成功!", - "User updated successfully!": "用于已成功更新!", - "Settings updated successfully!": "设置更新成功!", - "Untitled Webstream": "未命名的网络流媒体", - "Webstream saved.": "网络流媒体已保存。", - "Invalid form values.": "无效的表格内容。", - "Invalid character entered": "输入的字符不合要求", - "Day must be specified": "请指定天", - "Time must be specified": "请指定时间", - "Must wait at least 1 hour to rebroadcast": "至少间隔一个小时", - "Add Autoloading Playlist ?": "", - "Select Playlist": "", - "Repeat Playlist Until Show is Full ?": "", - "Use %s Authentication:": "", - "Use Custom Authentication:": "使用自定义的用户认证:", - "Custom Username": "自定义用户名", - "Custom Password": "自定义密码", - "Host:": "", - "Port:": "", - "Mount:": "", - "Username field cannot be empty.": "请填写用户名", - "Password field cannot be empty.": "请填写密码", - "Record from Line In?": "从线路输入录制?", - "Rebroadcast?": "重播?", - "days": "天", - "Link:": "绑定:", - "Repeat Type:": "类型:", - "weekly": "每周", - "every 2 weeks": "每隔2周", - "every 3 weeks": "每隔3周", - "every 4 weeks": "每隔4周", - "monthly": "每月", - "Select Days:": "选择天数:", - "Repeat By:": "重复类型:", - "day of the month": "按月的同一日期", - "day of the week": "一个星期的同一日子", - "Date End:": "结束日期:", - "No End?": "无休止?", - "End date must be after start date": "结束日期应晚于开始日期", - "Please select a repeat day": "请选择在哪一天重复", - "Background Colour:": "背景色:", - "Text Colour:": "文字颜色:", - "Current Logo:": "", - "Show Logo:": "", - "Logo Preview:": "", - "Name:": "名字:", - "Untitled Show": "未命名节目", - "URL:": "链接地址:", - "Genre:": "风格:", - "Description:": "描述:", - "Instance Description:": "", - "{msg} does not fit the time format 'HH:mm'": "{msg} 不符合形如 '小时:分'的格式要求,例如,‘01:59’", - "Start Time:": "", - "In the Future:": "", - "End Time:": "", - "Duration:": "时长:", - "Timezone:": "时区", - "Repeats?": "是否设置为系列节目?", - "Cannot create show in the past": "节目不能设置为过去的时间", - "Cannot modify start date/time of the show that is already started": "节目已经启动,无法修改开始时间/日期", - "End date/time cannot be in the past": "节目结束的时间或日期不能设置为过去的时间", - "Cannot have duration < 0m": "节目时长不能小于0", - "Cannot have duration 00h 00m": "节目时长不能为0", - "Cannot have duration greater than 24h": "节目时长不能超过24小时", - "Cannot schedule overlapping shows": "节目时间设置与其他节目有冲突", - "Search Users:": "查找用户:", - "DJs:": "选择节目编辑:", - "Type Name:": "", - "Code:": "", - "Visibility:": "", - "Analyze cue points:": "", - "Code is not unique.": "", - "Username:": "用户名:", - "Password:": "密码:", - "Verify Password:": "再次输入密码:", - "Firstname:": "名:", - "Lastname:": "姓:", - "Email:": "电邮:", - "Mobile Phone:": "手机:", - "Skype:": "Skype帐号:", - "Jabber:": "Jabber帐号:", - "User Type:": "用户类型:", - "Login name is not unique.": "帐号重名。", - "Delete All Tracks in Library": "", - "Date Start:": "开始日期:", - "Title:": "歌曲名:", - "Creator:": "作者:", - "Album:": "专辑名:", - "Owner:": "", - "Select a Type": "", - "Track Type:": "", - "Year:": "年份:", - "Label:": "标签:", - "Composer:": "编曲:", - "Conductor:": "制作:", - "Mood:": "情怀:", - "BPM:": "拍子(BPM):", - "Copyright:": "版权:", - "ISRC Number:": "ISRC编号:", - "Website:": "网站:", - "Language:": "语言:", - "Publish...": "", - "Start Time": "开始时间", - "End Time": "结束时间", - "Interface Timezone:": "用户界面使用的时区:", - "Station Name": "电台名称", - "Station Description": "", - "Station Logo:": "电台标志:", - "Note: Anything larger than 600x600 will be resized.": "注意:大于600x600的图片将会被缩放", - "Default Crossfade Duration (s):": "默认混合淡入淡出效果(秒):", - "Please enter a time in seconds (eg. 0.5)": "", - "Default Fade In (s):": "默认淡入效果(秒):", - "Default Fade Out (s):": "默认淡出效果(秒):", - "Track Type Upload Default": "", - "Intro Autoloading Playlist": "", - "Outro Autoloading Playlist": "", - "Overwrite Podcast Episode Metatags": "", - "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", - "Generate a smartblock and a playlist upon creation of a new podcast": "", - "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", - "Public LibreTime API": "", - "Required for embeddable schedule widget.": "", - "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", - "Default Language": "", - "Station Timezone": "系统使用的时区", - "Week Starts On": "一周开始于", - "Display login button on your Radio Page?": "", - "Feature Previews": "", - "Enable this to opt-in to test new features.": "", - "Auto Switch Off:": "", - "Auto Switch On:": "", - "Switch Transition Fade (s):": "", - "Master Source Host:": "", - "Master Source Port:": "", - "Master Source Mount:": "", - "Show Source Host:": "", - "Show Source Port:": "", - "Show Source Mount:": "", - "Login": "登录", - "Password": "密码", - "Confirm new password": "确认新密码", - "Password confirmation does not match your password.": "新密码不匹配", - "Email": "", - "Username": "用户名", - "Reset password": "重置密码", - "Back": "", - "Now Playing": "直播室", - "Select Stream:": "", - "Auto detect the most appropriate stream to use.": "", - "Select a stream:": "", - " - Mobile friendly": "", - " - The player does not support Opus streams.": "", - "Embeddable code:": "", - "Copy this code and paste it into your website's HTML to embed the player in your site.": "", - "Preview:": "", - "Feed Privacy": "", - "Public": "", - "Private": "", - "Station Language": "", - "Filter by Show": "", - "All My Shows:": "我的全部节目:", - "My Shows": "", - "Select criteria": "选择属性", - "Bit Rate (Kbps)": "比特率(Kbps)", - "Track Type": "", - "Sample Rate (kHz)": "样本率(KHz)", - "before": "", - "after": "", - "between": "", - "Select unit of time": "", - "minute(s)": "", - "hour(s)": "", - "day(s)": "", - "week(s)": "", - "month(s)": "", - "year(s)": "", - "hours": "小时", - "minutes": "分钟", - "items": "个数", - "time remaining in show": "", - "Randomly": "", - "Newest": "", - "Oldest": "", - "Most recently played": "", - "Least recently played": "", - "Select Track Type": "", - "Type:": "", - "Dynamic": "动态", - "Static": "静态", - "Select track type": "", - "Allow Repeated Tracks:": "", - "Allow last track to exceed time limit:": "", - "Sort Tracks:": "", - "Limit to:": "", - "Generate playlist content and save criteria": "保存条件设置并生成播放列表内容", - "Shuffle playlist content": "随机打乱歌曲次序", - "Shuffle": "随机", - "Limit cannot be empty or smaller than 0": "限制的设置不能比0小", - "Limit cannot be more than 24 hrs": "限制的设置不能大于24小时", - "The value should be an integer": "值只能为整数", - "500 is the max item limit value you can set": "最多只能允许500条内容", - "You must select Criteria and Modifier": "条件和操作符不能为空", - "'Length' should be in '00:00:00' format": "‘长度’格式应该为‘00:00:00’", - "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", - "You must select a time unit for a relative datetime.": "", - "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式", - "Only non-negative integer numbers are allowed for a relative date time": "", - "The value has to be numeric": "应该为数字", - "The value should be less then 2147483648": "不能大于2147483648", - "The value cannot be empty": "", - "The value should be less than %s characters": "不能小于%s个字符", - "Value cannot be empty": "不能为空", - "Stream Label:": "流标签:", - "Artist - Title": "歌手 - 歌名", - "Show - Artist - Title": "节目 - 歌手 - 歌名", - "Station name - Show name": "电台名 - 节目名", - "Off Air Metadata": "非直播状态下的输出流元数据", - "Enable Replay Gain": "启用回放增益", - "Replay Gain Modifier": "回放增益调整", - "Hardware Audio Output:": "", - "Output Type": "", - "Enabled:": "启用:", - "Mobile:": "", - "Stream Type:": "流格式:", - "Bit Rate:": "比特率:", - "Service Type:": "服务类型:", - "Channels:": "声道:", - "Server": "服务器", - "Port": "端口号", - "Mount Point": "加载点", - "Name": "名字", - "URL": "链接地址", - "Stream URL": "", - "Push metadata to your station on TuneIn?": "", - "Station ID:": "", - "Partner Key:": "", - "Partner Id:": "", - "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", - "Import Folder:": "导入文件夹:", - "Watched Folders:": "监控文件夹:", - "Not a valid Directory": "无效的路径", - "Value is required and can't be empty": "不能为空", - "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} 不是合法的电邮地址,应该类似于 local-part{'@'}hostname", - "{msg} does not fit the date format '%format%'": "{msg} 不符合格式要求: '%format%'", - "{msg} is less than %min% characters long": "{msg} 小于最小长度要求 %min% ", - "{msg} is more than %max% characters long": "{msg} 大于最大长度要求 %max%", - "{msg} is not between '%min%' and '%max%', inclusively": "{msg} 应该介于 '%min%' 和 '%max%'之间", - "Passwords do not match": "两次密码输入不匹配", - "Hi %s, \n\nPlease click this link to reset your password: ": "", - "\n\nIf you have any problems, please contact our support team: %s": "", - "\n\nThank you,\nThe %s Team": "", - "%s Password Reset": "", - "Cue in and cue out are null.": "切入点和切出点均为空", - "Can't set cue out to be greater than file length.": "切出点不能超出文件原长度", - "Can't set cue in to be larger than cue out.": "切入点不能晚于切出点", - "Can't set cue out to be smaller than cue in.": "切出点不能早于切入点", - "Upload Time": "", - "None": "", - "Powered by %s": "", - "Select Country": "选择国家", - "livestream": "", - "Cannot move items out of linked shows": "不能从绑定的节目系列里移出项目", - "The schedule you're viewing is out of date! (sched mismatch)": "当前节目内容表(内容部分)需要刷新", - "The schedule you're viewing is out of date! (instance mismatch)": "当前节目内容表(节目已更改)需要刷新", - "The schedule you're viewing is out of date!": "当前节目内容需要刷新!", - "You are not allowed to schedule show %s.": "没有赋予修改节目 %s 的权限。", - "You cannot add files to recording shows.": "录音节目不能添加别的内容。", - "The show %s is over and cannot be scheduled.": "节目%s已结束,不能在添加任何内容。", - "The show %s has been previously updated!": "节目%s已经更改,需要刷新后再尝试。", - "Content in linked shows cannot be changed while on air!": "", - "Cannot schedule a playlist that contains missing files.": "", - "A selected File does not exist!": "某个选中的文件不存在。", - "Shows can have a max length of 24 hours.": "节目时长只能设置在24小时以内", - "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "节目时间设置于其他的节目有冲突。\n提示:修改系列节目中的一个,将影响整个节目系列", - "Rebroadcast of %s from %s": "%s是%s的重播", - "Length needs to be greater than 0 minutes": "节目时长必须大于0分钟", - "Length should be of form \"00h 00m\"": "时间的格式应该是 \"00h 00m\"", - "URL should be of form \"https://example.org\"": "地址的格式应该是 \"https://example.org\"", - "URL should be 512 characters or less": "地址的最大长度不能超过512字节", - "No MIME type found for webstream.": "这个媒体流不存在MIME属性,无法添加", - "Webstream name cannot be empty": "媒体流的名字不能为空", - "Could not parse XSPF playlist": "发现XSPF格式的播放列表,但是格式错误", - "Could not parse PLS playlist": "发现PLS格式的播放列表,但是格式错误", - "Could not parse M3U playlist": "发现M3U格式的播放列表,但是格式错误", - "Invalid webstream - This appears to be a file download.": "媒体流格式错误,当前“媒体流”只是一个可下载的文件", - "Unrecognized stream type: %s": "未知的媒体流格式: %s", - "Record file doesn't exist": "录制文件不存在", - "View Recorded File Metadata": "查看录制文件的元数据", - "Schedule Tracks": "", - "Clear Show": "", - "Cancel Show": "", - "Edit Instance": "", - "Edit Show": "编辑节目", - "Delete Instance": "", - "Delete Instance and All Following": "", - "Permission denied": "没有编辑权限", - "Can't drag and drop repeating shows": "系列中的节目无法拖拽", - "Can't move a past show": "已经结束的节目无法更改时间", - "Can't move show into past": "节目不能设置到已过去的时间点", - "Can't move a recorded show less than 1 hour before its rebroadcasts.": "录音和重播节目之间的间隔必须大于等于1小时。", - "Show was deleted because recorded show does not exist!": "录音节目不存在,节目已删除!", - "Must wait 1 hour to rebroadcast.": "重播节目必须设置于1小时之后。", - "Track": "曲目", - "Played": "已播放", - "Auto-generated smartblock for podcast": "", - "Webstreams": "" + "The year %s must be within the range of 1753 - 9999": "1753 - 9999 是可以接受的年代值,而不是“%s”", + "%s-%s-%s is not a valid date": "%s-%s-%s采用了错误的日期格式", + "%s:%s:%s is not a valid time": "%s:%s:%s 采用了错误的时间格式", + "English": "", + "Afar": "", + "Abkhazian": "", + "Afrikaans": "", + "Amharic": "", + "Arabic": "", + "Assamese": "", + "Aymara": "", + "Azerbaijani": "", + "Bashkir": "", + "Belarusian": "", + "Bulgarian": "", + "Bihari": "", + "Bislama": "", + "Bengali/Bangla": "", + "Tibetan": "", + "Breton": "", + "Catalan": "", + "Corsican": "", + "Czech": "", + "Welsh": "", + "Danish": "", + "German": "", + "Bhutani": "", + "Greek": "", + "Esperanto": "", + "Spanish": "", + "Estonian": "", + "Basque": "", + "Persian": "", + "Finnish": "", + "Fiji": "", + "Faeroese": "", + "French": "", + "Frisian": "", + "Irish": "", + "Scots/Gaelic": "", + "Galician": "", + "Guarani": "", + "Gujarati": "", + "Hausa": "", + "Hindi": "", + "Croatian": "", + "Hungarian": "", + "Armenian": "", + "Interlingua": "", + "Interlingue": "", + "Inupiak": "", + "Indonesian": "", + "Icelandic": "", + "Italian": "", + "Hebrew": "", + "Japanese": "", + "Yiddish": "", + "Javanese": "", + "Georgian": "", + "Kazakh": "", + "Greenlandic": "", + "Cambodian": "", + "Kannada": "", + "Korean": "", + "Kashmiri": "", + "Kurdish": "", + "Kirghiz": "", + "Latin": "", + "Lingala": "", + "Laothian": "", + "Lithuanian": "", + "Latvian/Lettish": "", + "Malagasy": "", + "Maori": "", + "Macedonian": "", + "Malayalam": "", + "Mongolian": "", + "Moldavian": "", + "Marathi": "", + "Malay": "", + "Maltese": "", + "Burmese": "", + "Nauru": "", + "Nepali": "", + "Dutch": "", + "Norwegian": "", + "Occitan": "", + "(Afan)/Oromoor/Oriya": "", + "Punjabi": "", + "Polish": "", + "Pashto/Pushto": "", + "Portuguese": "", + "Quechua": "", + "Rhaeto-Romance": "", + "Kirundi": "", + "Romanian": "", + "Russian": "", + "Kinyarwanda": "", + "Sanskrit": "", + "Sindhi": "", + "Sangro": "", + "Serbo-Croatian": "", + "Singhalese": "", + "Slovak": "", + "Slovenian": "", + "Samoan": "", + "Shona": "", + "Somali": "", + "Albanian": "", + "Serbian": "", + "Siswati": "", + "Sesotho": "", + "Sundanese": "", + "Swedish": "", + "Swahili": "", + "Tamil": "", + "Tegulu": "", + "Tajik": "", + "Thai": "", + "Tigrinya": "", + "Turkmen": "", + "Tagalog": "", + "Setswana": "", + "Tonga": "", + "Turkish": "", + "Tsonga": "", + "Tatar": "", + "Twi": "", + "Ukrainian": "", + "Urdu": "", + "Uzbek": "", + "Vietnamese": "", + "Volapuk": "", + "Wolof": "", + "Xhosa": "", + "Yoruba": "", + "Chinese": "", + "Zulu": "", + "Use station default": "", + "Upload some tracks below to add them to your library!": "", + "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s.": "", + "Click the 'New Show' button and fill out the required fields.": "", + "It looks like you don't have any shows scheduled. %sCreate a show now%s.": "", + "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.": "", + "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n %sCreate an unlinked show now%s.": "", + "To start broadcasting, click on the current show and select 'Schedule Tracks'": "", + "It looks like the current show needs more tracks. %sAdd tracks to your show now%s.": "", + "Click on the show starting next and select 'Schedule Tracks'": "", + "It looks like the next show is empty. %sAdd tracks to your show now%s.": "", + "LibreTime media analyzer service": "", + "Check that the libretime-analyzer service is installed correctly in ": "", + " and ensure that it's running with ": "", + "If not, try ": "", + "LibreTime playout service": "", + "Check that the libretime-playout service is installed correctly in ": "", + "LibreTime liquidsoap service": "", + "Check that the libretime-liquidsoap service is installed correctly in ": "", + "LibreTime Celery Task service": "", + "Check that the libretime-worker service is installed correctly in ": "", + "LibreTime API service": "", + "Check that the libretime-api service is installed correctly in ": "", + "Radio Page": "", + "Calendar": "节目日程", + "Widgets": "", + "Player": "", + "Weekly Schedule": "", + "Settings": "", + "General": "", + "My Profile": "", + "Users": "用户管理", + "Track Types": "", + "Streams": "媒体流设置", + "Status": "系统状态", + "Analytics": "", + "Playout History": "播出历史", + "History Templates": "历史记录模板", + "Listener Stats": "收听状态", + "Show Listener Stats": "", + "Help": "帮助", + "Getting Started": "基本用法", + "User Manual": "用户手册", + "Get Help Online": "", + "Contribute to LibreTime": "", + "What's New?": "", + "You are not allowed to access this resource.": "你没有访问该资源的权限", + "You are not allowed to access this resource. ": "你没有访问该资源的权限", + "File does not exist in %s": "", + "Bad request. no 'mode' parameter passed.": "请求错误。没有提供‘模式’参数。", + "Bad request. 'mode' parameter is invalid": "请求错误。提供的‘模式’参数无效。", + "You don't have permission to disconnect source.": "你没有断开输入源的权限。", + "There is no source connected to this input.": "没有连接上的输入源。", + "You don't have permission to switch source.": "你没有切换的权限。", + "To configure and use the embeddable player you must:\n 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams 2. Enable the Public LibreTime API under Settings -> Preferences": "", + "To use the embeddable weekly schedule widget you must:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "To add the Radio Tab to your Facebook Page, you must first:\n Enable the Public LibreTime API under Settings -> Preferences": "", + "Page not found.": "", + "The requested action is not supported.": "", + "You do not have permission to access this resource.": "", + "An internal application error has occurred.": "", + "%s Podcast": "", + "No tracks have been published yet.": "", + "%s not found": "%s不存在", + "Something went wrong.": "未知错误。", + "Preview": "预览", + "Add to Playlist": "添加到播放列表", + "Add to Smart Block": "添加到智能模块", + "Delete": "删除", + "Edit...": "", + "Download": "下载", + "Duplicate Playlist": "复制播放列表", + "Duplicate Smartblock": "", + "No action available": "没有操作选择", + "You don't have permission to delete selected items.": "你没有删除选定项目的权限。", + "Could not delete file because it is scheduled in the future.": "", + "Could not delete file(s).": "", + "Copy of %s": "%s的副本", + "Please make sure admin user/password is correct on Settings->Streams page.": "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。", + "Audio Player": "音频播放器", + "Something went wrong!": "", + "Recording:": "录制:", + "Master Stream": "主输入源", + "Live Stream": "节目定制输入源", + "Nothing Scheduled": "没有安排节目内容", + "Current Show:": "当前节目:", + "Current": "当前的", + "You are running the latest version": "你已经在使用最新版", + "New version available: ": "版本有更新:", + "You have a pre-release version of LibreTime intalled.": "", + "A patch update for your LibreTime installation is available.": "", + "A feature update for your LibreTime installation is available.": "", + "A major update for your LibreTime installation is available.": "", + "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible.": "", + "Add to current playlist": "添加到播放列表", + "Add to current smart block": "添加到只能模块", + "Adding 1 Item": "添加1项", + "Adding %s Items": "添加%s项", + "You can only add tracks to smart blocks.": "智能模块只能添加声音文件。", + "You can only add tracks, smart blocks, and webstreams to playlists.": "播放列表只能添加声音文件,只能模块和网络流媒体。", + "Please select a cursor position on timeline.": "请在右部的时间表视图中选择一个游标位置。", + "You haven't added any tracks": "", + "You haven't added any playlists": "", + "You haven't added any podcasts": "", + "You haven't added any smart blocks": "", + "You haven't added any webstreams": "", + "Learn about tracks": "", + "Learn about playlists": "", + "Learn about podcasts": "", + "Learn about smart blocks": "", + "Learn about webstreams": "", + "Click 'New' to create one.": "", + "Add": "添加", + "New": "", + "Edit": "编辑", + "Add to Schedule": "", + "Add to next show": "", + "Add to current show": "", + "Add after selected items": "", + "Publish": "", + "Remove": "移除", + "Edit Metadata": "编辑元数据", + "Add to selected show": "添加到所选的节目", + "Select": "选择", + "Select this page": "选择此页", + "Deselect this page": "取消整页", + "Deselect all": "全部取消", + "Are you sure you want to delete the selected item(s)?": "确定删除选择的项?", + "Scheduled": "已安排进日程", + "Tracks": "", + "Playlist": "", + "Title": "标题", + "Creator": "作者", + "Album": "专辑", + "Bit Rate": "比特率", + "BPM": "每分钟拍子数", + "Composer": "作曲", + "Conductor": "指挥", + "Copyright": "版权", + "Encoded By": "编曲", + "Genre": "风格", + "ISRC": "ISRC码", + "Label": "标签", + "Language": "语种", + "Last Modified": "最近更新于", + "Last Played": "上次播放于", + "Length": "时长", + "Mime": "MIME信息", + "Mood": "风格", + "Owner": "所有者", + "Replay Gain": "回放增益", + "Sample Rate": "样本率", + "Track Number": "曲目", + "Uploaded": "上传于", + "Website": "网址", + "Year": "年代", + "Loading...": "加载中...", + "All": "全部", + "Files": "文件", + "Playlists": "播放列表", + "Smart Blocks": "智能模块", + "Web Streams": "网络流媒体", + "Unknown type: ": "位置类型:", + "Are you sure you want to delete the selected item?": "确定删除所选项?", + "Uploading in progress...": "正在上传...", + "Retrieving data from the server...": "数据正在从服务器下载中...", + "Import": "", + "Imported?": "", + "View": "", + "Error code: ": "错误代码:", + "Error msg: ": "错误信息:", + "Input must be a positive number": "输入只能为正数", + "Input must be a number": "只允许数字输入", + "Input must be in the format: yyyy-mm-dd": "输入格式应为:年-月-日(yyyy-mm-dd)", + "Input must be in the format: hh:mm:ss.t": "输入格式应为:时:分:秒 (hh:mm:ss.t)", + "My Podcast": "", + "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?": "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?", + "Open Media Builder": "打开媒体编辑器", + "please put in a time '00:00:00 (.0)'": "请输入时间‘00:00:00(.0)’", + "Please enter a valid time in seconds. Eg. 0.5": "", + "Your browser does not support playing this file type: ": "你的浏览器不支持这种文件类型:", + "Dynamic block is not previewable": "动态智能模块无法预览", + "Limit to: ": "限制在:", + "Playlist saved": "播放列表已存储", + "Playlist shuffled": "播放列表已经随机化", + "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore.": "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。", + "Listener Count on %s: %s": "听众统计%s:%s", + "Remind me in 1 week": "一周以后再提醒我", + "Remind me never": "不再提醒", + "Yes, help Airtime": "是的,帮助Airtime", + "Image must be one of jpg, jpeg, png, or gif": "图像文件格式只能是jpg,jpeg,png或者gif", + "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show.": "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。", + "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library.": "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。", + "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block.": "", + "Smart block shuffled": "智能模块已经随机排列", + "Smart block generated and criteria saved": "智能模块已经生成,条件设置已经保存", + "Smart block saved": "智能模块已经保存", + "Processing...": "加载中...", + "Select modifier": "选择操作符", + "contains": "包含", + "does not contain": "不包含", + "is": "是", + "is not": "不是", + "starts with": "起始于", + "ends with": "结束于", + "is greater than": "大于", + "is less than": "小于", + "is in the range": "处于", + "Generate": "开始生成", + "Choose Storage Folder": "选择存储文件夹", + "Choose Folder to Watch": "选择监控的文件夹", + "Are you sure you want to change the storage folder?\nThis will remove the files from your Airtime library!": "确定更改存储路径?\n这项操作将从媒体库中删除所有文件!", + "Manage Media Folders": "管理媒体文件夹", + "Are you sure you want to remove the watched folder?": "确定取消该文件夹的监控?", + "This path is currently not accessible.": "指定的路径无法访问。", + "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided.": "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。", + "Connected to the streaming server": "流服务器已连接", + "The stream is disabled": "输出流已禁用", + "Getting information from the server...": "从服务器加载中...", + "Can not connect to the streaming server": "无法连接流服务器", + "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151.": "", + "For more details, please read the %s%s Manual%s": "", + "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option.": "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。", + "Check this box to automatically switch off Master/Show source upon source disconnection.": "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。", + "Check this box to automatically switch on Master/Show source upon source connection.": "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。", + "If your Icecast server expects a username of 'source', this field can be left blank.": "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。", + "If your live streaming client does not ask for a username, this field should be 'source'.": "如果你的流客户端不需要用户名,那么当前项可以留空", + "WARNING: This will restart your stream and may cause a short dropout for your listeners!": "", + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics.": "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。", + "Warning: You cannot change this field while the show is currently playing": "", + "No result found": "搜索无结果", + "This follows the same security pattern for the shows: only users assigned to the show can connect.": "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。", + "Specify custom authentication which will work only for this show.": "所设置的自定义认证设置只对当前的节目有效。", + "The show instance doesn't exist anymore!": "此节目已不存在", + "Warning: Shows cannot be re-linked": "注意:节目取消绑定后无法再次绑定", + "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows": "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。", + "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings.": "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。", + "Show": "节目", + "Show is empty": "节目内容为空", + "1m": "1分钟", + "5m": "5分钟", + "10m": "10分钟", + "15m": "15分钟", + "30m": "30分钟", + "60m": "60分钟", + "Retreiving data from the server...": "从服务器下载数据中...", + "This show has no scheduled content.": "此节目没有安排内容。", + "This show is not completely filled with content.": "节目内容只填充了一部分。", + "January": "一月", + "February": "二月", + "March": "三月", + "April": "四月", + "May": "五月", + "June": "六月", + "July": "七月", + "August": "八月", + "September": "九月", + "October": "十月", + "November": "十一月", + "December": "十二月", + "Jan": "一月", + "Feb": "二月", + "Mar": "三月", + "Apr": "四月", + "Jun": "六月", + "Jul": "七月", + "Aug": "八月", + "Sep": "九月", + "Oct": "十月", + "Nov": "十一月", + "Dec": "十二月", + "Today": "", + "Day": "", + "Week": "", + "Month": "", + "Sunday": "周日", + "Monday": "周一", + "Tuesday": "周二", + "Wednesday": "周三", + "Thursday": "周四", + "Friday": "周五", + "Saturday": "周六", + "Sun": "周日", + "Mon": "周一", + "Tue": "周二", + "Wed": "周三", + "Thu": "周四", + "Fri": "周五", + "Sat": "周六", + "Shows longer than their scheduled time will be cut off by a following show.": "超出的节目内容将被随后的节目所取代。", + "Cancel Current Show?": "取消当前的节目?", + "Stop recording current show?": "停止录制当前的节目?", + "Ok": "确定", + "Contents of Show": "浏览节目内容", + "Remove all content?": "清空全部内容?", + "Delete selected item(s)?": "删除选定的项目?", + "Start": "开始", + "End": "结束", + "Duration": "时长", + "Filtering out ": "", + " of ": "", + " records": "", + "There are no shows scheduled during the specified time period.": "", + "Cue In": "切入", + "Cue Out": "切出", + "Fade In": "淡入", + "Fade Out": "淡出", + "Show Empty": "节目无内容", + "Recording From Line In": "从线路输入录制", + "Track preview": "试听媒体", + "Cannot schedule outside a show.": "没有指定节目,无法凭空安排内容。", + "Moving 1 Item": "移动1个项目", + "Moving %s Items": "移动%s个项目", + "Save": "保存", + "Cancel": "取消", + "Fade Editor": "淡入淡出编辑器", + "Cue Editor": "切入切出编辑器", + "Waveform features are available in a browser supporting the Web Audio API": "想要启用波形图功能,需要支持Web Audio API的浏览器。", + "Select all": "全选", + "Select none": "全不选", + "Trim overbooked shows": "", + "Remove selected scheduled items": "移除所选的项目", + "Jump to the current playing track": "跳转到当前播放的项目", + "Jump to Current": "", + "Cancel current show": "取消当前的节目", + "Open library to add or remove content": "打开媒体库,添加或者删除节目内容", + "Add / Remove Content": "添加 / 删除内容", + "in use": "使用中", + "Disk": "磁盘", + "Look in": "查询", + "Open": "打开", + "Admin": "系统管理员", + "DJ": "节目编辑", + "Program Manager": "节目主管", + "Guest": "游客", + "Guests can do the following:": "游客的权限包括:", + "View schedule": "显示节目日程", + "View show content": "显示节目内容", + "DJs can do the following:": "节目编辑的权限包括:", + "Manage assigned show content": "为指派的节目管理节目内容", + "Import media files": "导入媒体文件", + "Create playlists, smart blocks, and webstreams": "创建播放列表,智能模块和网络流媒体", + "Manage their own library content": "管理媒体库中属于自己的内容", + "Program Managers can do the following:": "", + "View and manage show content": "查看和管理节目内容", + "Schedule shows": "安排节目日程", + "Manage all library content": "管理媒体库的所有内容", + "Admins can do the following:": "管理员的权限包括:", + "Manage preferences": "属性管理", + "Manage users": "管理用户", + "Manage watched folders": "管理监控文件夹", + "Send support feedback": "提交反馈意见", + "View system status": "显示系统状态", + "Access playout history": "查看播放历史", + "View listener stats": "显示收听统计数据", + "Show / hide columns": "显示/隐藏栏", + "Columns": "", + "From {from} to {to}": "从{from}到{to}", + "kbps": "千比特每秒", + "yyyy-mm-dd": "年-月-日", + "hh:mm:ss.t": "时:分:秒", + "kHz": "千赫兹", + "Su": "周天", + "Mo": "周一", + "Tu": "周二", + "We": "周三", + "Th": "周四", + "Fr": "周五", + "Sa": "周六", + "Close": "关闭", + "Hour": "小时", + "Minute": "分钟", + "Done": "设定", + "Select files": "选择文件", + "Add files to the upload queue and click the start button.": "添加需要上传的文件到传输队列中,然后点击开始上传。", + "Filename": "", + "Size": "", + "Add Files": "添加文件", + "Stop Upload": "停止上传", + "Start upload": "开始上传", + "Start Upload": "", + "Add files": "添加文件", + "Stop current upload": "", + "Start uploading queue": "", + "Uploaded %d/%d files": "已经上传%d/%d个文件", + "N/A": "未知", + "Drag files here.": "拖拽文件到此处。", + "File extension error.": "文件后缀名出错。", + "File size error.": "文件大小出错。", + "File count error.": "发生文件统计错误。", + "Init error.": "发生初始化错误。", + "HTTP Error.": "发生HTTP类型的错误", + "Security error.": "发生安全性错误。", + "Generic error.": "发生通用类型的错误。", + "IO error.": "输入输出错误。", + "File: %s": "文件:%s", + "%d files queued": "队列中有%d个文件", + "File: %f, size: %s, max file size: %m": "文件:%f,大小:%s,最大的文件大小:%m", + "Upload URL might be wrong or doesn't exist": "用于上传的地址有误或者不存在", + "Error: File too large: ": "错误:文件过大:", + "Error: Invalid file extension: ": "错误:无效的文件后缀名:", + "Set Default": "设为默认", + "Create Entry": "创建项目", + "Edit History Record": "编辑历史记录", + "No Show": "无节目", + "Copied %s row%s to the clipboard": "复制%s行%s到剪贴板", + "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished.": "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。", + "New Show": "", + "New Log Entry": "", + "No data available in table": "", + "(filtered from _MAX_ total entries)": "", + "First": "", + "Last": "", + "Next": "", + "Previous": "", + "Search:": "", + "No matching records found": "", + "Drag tracks here from the library": "", + "No tracks were played during the selected time period.": "", + "Unpublish": "", + "No matching results found.": "", + "Author": "", + "Description": "描述", + "Link": "", + "Publication Date": "", + "Import Status": "", + "Actions": "", + "Delete from Library": "", + "Successfully imported": "", + "Show _MENU_": "", + "Show _MENU_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ entries": "", + "Showing _START_ to _END_ of _TOTAL_ tracks": "", + "Showing _START_ to _END_ of _TOTAL_ track types": "", + "Showing _START_ to _END_ of _TOTAL_ users": "", + "Showing 0 to 0 of 0 entries": "", + "Showing 0 to 0 of 0 tracks": "", + "Showing 0 to 0 of 0 track types": "", + "(filtered from _MAX_ total track types)": "", + "Are you sure you want to delete this tracktype?": "", + "No track types were found.": "", + "No track types found": "", + "No matching track types found": "", + "Enabled": "启用", + "Disabled": "禁用", + "Cancel upload": "", + "Type": "", + "Autoloading playlists' contents are added to shows one hour before the show airs. More information": "", + "Podcast settings saved": "", + "Are you sure you want to delete this user?": "", + "Can't delete yourself!": "", + "You haven't published any episodes!": "", + "You can publish your uploaded content from the 'Tracks' view.": "", + "Try it now": "", + "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.": "", + "Playlist preview": "", + "Smart Block": "", + "Webstream preview": "", + "You don't have permission to view the library.": "", + "Now": "", + "Click 'New' to create one now.": "", + "Click 'Upload' to add some now.": "", + "Feed URL": "", + "Import Date": "", + "Add New Podcast": "", + "Cannot schedule outside a show.\nTry creating a show first.": "", + "No files have been uploaded yet.": "", + "On Air": "", + "Off Air": "", + "Offline": "", + "Nothing scheduled": "", + "Click 'Add' to create one now.": "", + "Please enter your username and password.": "", + "Email could not be sent. Check your mail server settings and ensure it has been configured properly.": "邮件发送失败。请检查邮件服务器设置,并确定设置无误。", + "That username or email address could not be found.": "", + "There was a problem with the username or email address you entered.": "", + "Wrong username or password provided. Please try again.": "用户名或密码错误,请重试。", + "You are viewing an older version of %s": "你所查看的%s已更改", + "You cannot add tracks to dynamic blocks.": "动态智能模块不能添加声音文件。", + "You don't have permission to delete selected %s(s).": "你没有删除所选%s的权限。", + "You can only add tracks to smart block.": "智能模块只能添加媒体文件。", + "Untitled Playlist": "未命名的播放列表", + "Untitled Smart Block": "未命名的智能模块", + "Unknown Playlist": "位置播放列表", + "Preferences updated.": "属性已更新。", + "Stream Setting Updated.": "流设置已更新。", + "path should be specified": "请指定路径", + "Problem with Liquidsoap...": "Liquidsoap出错...", + "Request method not accepted": "", + "Rebroadcast of show %s from %s at %s": "节目%s是节目%s的重播,时间是%s", + "Select cursor": "选择游标", + "Remove cursor": "删除游标", + "show does not exist": "节目不存在", + "Track Type added successfully!": "", + "Track Type updated successfully!": "", + "User added successfully!": "用户已添加成功!", + "User updated successfully!": "用于已成功更新!", + "Settings updated successfully!": "设置更新成功!", + "Untitled Webstream": "未命名的网络流媒体", + "Webstream saved.": "网络流媒体已保存。", + "Invalid form values.": "无效的表格内容。", + "Invalid character entered": "输入的字符不合要求", + "Day must be specified": "请指定天", + "Time must be specified": "请指定时间", + "Must wait at least 1 hour to rebroadcast": "至少间隔一个小时", + "Add Autoloading Playlist ?": "", + "Select Playlist": "", + "Repeat Playlist Until Show is Full ?": "", + "Use %s Authentication:": "", + "Use Custom Authentication:": "使用自定义的用户认证:", + "Custom Username": "自定义用户名", + "Custom Password": "自定义密码", + "Host:": "", + "Port:": "", + "Mount:": "", + "Username field cannot be empty.": "请填写用户名", + "Password field cannot be empty.": "请填写密码", + "Record from Line In?": "从线路输入录制?", + "Rebroadcast?": "重播?", + "days": "天", + "Link:": "绑定:", + "Repeat Type:": "类型:", + "weekly": "每周", + "every 2 weeks": "每隔2周", + "every 3 weeks": "每隔3周", + "every 4 weeks": "每隔4周", + "monthly": "每月", + "Select Days:": "选择天数:", + "Repeat By:": "重复类型:", + "day of the month": "按月的同一日期", + "day of the week": "一个星期的同一日子", + "Date End:": "结束日期:", + "No End?": "无休止?", + "End date must be after start date": "结束日期应晚于开始日期", + "Please select a repeat day": "请选择在哪一天重复", + "Background Colour:": "背景色:", + "Text Colour:": "文字颜色:", + "Current Logo:": "", + "Show Logo:": "", + "Logo Preview:": "", + "Name:": "名字:", + "Untitled Show": "未命名节目", + "URL:": "链接地址:", + "Genre:": "风格:", + "Description:": "描述:", + "Instance Description:": "", + "{msg} does not fit the time format 'HH:mm'": "{msg} 不符合形如 '小时:分'的格式要求,例如,‘01:59’", + "Start Time:": "", + "In the Future:": "", + "End Time:": "", + "Duration:": "时长:", + "Timezone:": "时区", + "Repeats?": "是否设置为系列节目?", + "Cannot create show in the past": "节目不能设置为过去的时间", + "Cannot modify start date/time of the show that is already started": "节目已经启动,无法修改开始时间/日期", + "End date/time cannot be in the past": "节目结束的时间或日期不能设置为过去的时间", + "Cannot have duration < 0m": "节目时长不能小于0", + "Cannot have duration 00h 00m": "节目时长不能为0", + "Cannot have duration greater than 24h": "节目时长不能超过24小时", + "Cannot schedule overlapping shows": "节目时间设置与其他节目有冲突", + "Search Users:": "查找用户:", + "DJs:": "选择节目编辑:", + "Type Name:": "", + "Code:": "", + "Visibility:": "", + "Analyze cue points:": "", + "Code is not unique.": "", + "Username:": "用户名:", + "Password:": "密码:", + "Verify Password:": "再次输入密码:", + "Firstname:": "名:", + "Lastname:": "姓:", + "Email:": "电邮:", + "Mobile Phone:": "手机:", + "Skype:": "Skype帐号:", + "Jabber:": "Jabber帐号:", + "User Type:": "用户类型:", + "Login name is not unique.": "帐号重名。", + "Delete All Tracks in Library": "", + "Date Start:": "开始日期:", + "Title:": "歌曲名:", + "Creator:": "作者:", + "Album:": "专辑名:", + "Owner:": "", + "Select a Type": "", + "Track Type:": "", + "Year:": "年份:", + "Label:": "标签:", + "Composer:": "编曲:", + "Conductor:": "制作:", + "Mood:": "情怀:", + "BPM:": "拍子(BPM):", + "Copyright:": "版权:", + "ISRC Number:": "ISRC编号:", + "Website:": "网站:", + "Language:": "语言:", + "Publish...": "", + "Start Time": "开始时间", + "End Time": "结束时间", + "Interface Timezone:": "用户界面使用的时区:", + "Station Name": "电台名称", + "Station Description": "", + "Station Logo:": "电台标志:", + "Note: Anything larger than 600x600 will be resized.": "注意:大于600x600的图片将会被缩放", + "Default Crossfade Duration (s):": "默认混合淡入淡出效果(秒):", + "Please enter a time in seconds (eg. 0.5)": "", + "Default Fade In (s):": "默认淡入效果(秒):", + "Default Fade Out (s):": "默认淡出效果(秒):", + "Track Type Upload Default": "", + "Intro Autoloading Playlist": "", + "Outro Autoloading Playlist": "", + "Overwrite Podcast Episode Metatags": "", + "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.": "", + "Generate a smartblock and a playlist upon creation of a new podcast": "", + "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes.": "", + "Public LibreTime API": "", + "Required for embeddable schedule widget.": "", + "Enabling this feature will allow LibreTime to provide schedule data\n to external widgets that can be embedded in your website.": "", + "Default Language": "", + "Station Timezone": "系统使用的时区", + "Week Starts On": "一周开始于", + "Display login button on your Radio Page?": "", + "Feature Previews": "", + "Enable this to opt-in to test new features.": "", + "Auto Switch Off:": "", + "Auto Switch On:": "", + "Switch Transition Fade (s):": "", + "Master Source Host:": "", + "Master Source Port:": "", + "Master Source Mount:": "", + "Show Source Host:": "", + "Show Source Port:": "", + "Show Source Mount:": "", + "Login": "登录", + "Password": "密码", + "Confirm new password": "确认新密码", + "Password confirmation does not match your password.": "新密码不匹配", + "Email": "", + "Username": "用户名", + "Reset password": "重置密码", + "Back": "", + "Now Playing": "直播室", + "Select Stream:": "", + "Auto detect the most appropriate stream to use.": "", + "Select a stream:": "", + " - Mobile friendly": "", + " - The player does not support Opus streams.": "", + "Embeddable code:": "", + "Copy this code and paste it into your website's HTML to embed the player in your site.": "", + "Preview:": "", + "Feed Privacy": "", + "Public": "", + "Private": "", + "Station Language": "", + "Filter by Show": "", + "All My Shows:": "我的全部节目:", + "My Shows": "", + "Select criteria": "选择属性", + "Bit Rate (Kbps)": "比特率(Kbps)", + "Track Type": "", + "Sample Rate (kHz)": "样本率(KHz)", + "before": "", + "after": "", + "between": "", + "Select unit of time": "", + "minute(s)": "", + "hour(s)": "", + "day(s)": "", + "week(s)": "", + "month(s)": "", + "year(s)": "", + "hours": "小时", + "minutes": "分钟", + "items": "个数", + "time remaining in show": "", + "Randomly": "", + "Newest": "", + "Oldest": "", + "Most recently played": "", + "Least recently played": "", + "Select Track Type": "", + "Type:": "", + "Dynamic": "动态", + "Static": "静态", + "Select track type": "", + "Allow Repeated Tracks:": "", + "Allow last track to exceed time limit:": "", + "Sort Tracks:": "", + "Limit to:": "", + "Generate playlist content and save criteria": "保存条件设置并生成播放列表内容", + "Shuffle playlist content": "随机打乱歌曲次序", + "Shuffle": "随机", + "Limit cannot be empty or smaller than 0": "限制的设置不能比0小", + "Limit cannot be more than 24 hrs": "限制的设置不能大于24小时", + "The value should be an integer": "值只能为整数", + "500 is the max item limit value you can set": "最多只能允许500条内容", + "You must select Criteria and Modifier": "条件和操作符不能为空", + "'Length' should be in '00:00:00' format": "‘长度’格式应该为‘00:00:00’", + "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value": "", + "You must select a time unit for a relative datetime.": "", + "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)": "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式", + "Only non-negative integer numbers are allowed for a relative date time": "", + "The value has to be numeric": "应该为数字", + "The value should be less then 2147483648": "不能大于2147483648", + "The value cannot be empty": "", + "The value should be less than %s characters": "不能小于%s个字符", + "Value cannot be empty": "不能为空", + "Stream Label:": "流标签:", + "Artist - Title": "歌手 - 歌名", + "Show - Artist - Title": "节目 - 歌手 - 歌名", + "Station name - Show name": "电台名 - 节目名", + "Off Air Metadata": "非直播状态下的输出流元数据", + "Enable Replay Gain": "启用回放增益", + "Replay Gain Modifier": "回放增益调整", + "Hardware Audio Output:": "", + "Output Type": "", + "Enabled:": "启用:", + "Mobile:": "", + "Stream Type:": "流格式:", + "Bit Rate:": "比特率:", + "Service Type:": "服务类型:", + "Channels:": "声道:", + "Server": "服务器", + "Port": "端口号", + "Mount Point": "加载点", + "Name": "名字", + "URL": "链接地址", + "Stream URL": "", + "Push metadata to your station on TuneIn?": "", + "Station ID:": "", + "Partner Key:": "", + "Partner Id:": "", + "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again.": "", + "Import Folder:": "导入文件夹:", + "Watched Folders:": "监控文件夹:", + "Not a valid Directory": "无效的路径", + "Value is required and can't be empty": "不能为空", + "{msg} is no valid email address in the basic format local-part{'@'}hostname": "{msg} 不是合法的电邮地址,应该类似于 local-part{'@'}hostname", + "{msg} does not fit the date format '%format%'": "{msg} 不符合格式要求: '%format%'", + "{msg} is less than %min% characters long": "{msg} 小于最小长度要求 %min% ", + "{msg} is more than %max% characters long": "{msg} 大于最大长度要求 %max%", + "{msg} is not between '%min%' and '%max%', inclusively": "{msg} 应该介于 '%min%' 和 '%max%'之间", + "Passwords do not match": "两次密码输入不匹配", + "Hi %s, \n\nPlease click this link to reset your password: ": "", + "\n\nIf you have any problems, please contact our support team: %s": "", + "\n\nThank you,\nThe %s Team": "", + "%s Password Reset": "", + "Cue in and cue out are null.": "切入点和切出点均为空", + "Can't set cue out to be greater than file length.": "切出点不能超出文件原长度", + "Can't set cue in to be larger than cue out.": "切入点不能晚于切出点", + "Can't set cue out to be smaller than cue in.": "切出点不能早于切入点", + "Upload Time": "", + "None": "", + "Powered by %s": "", + "Select Country": "选择国家", + "livestream": "", + "Cannot move items out of linked shows": "不能从绑定的节目系列里移出项目", + "The schedule you're viewing is out of date! (sched mismatch)": "当前节目内容表(内容部分)需要刷新", + "The schedule you're viewing is out of date! (instance mismatch)": "当前节目内容表(节目已更改)需要刷新", + "The schedule you're viewing is out of date!": "当前节目内容需要刷新!", + "You are not allowed to schedule show %s.": "没有赋予修改节目 %s 的权限。", + "You cannot add files to recording shows.": "录音节目不能添加别的内容。", + "The show %s is over and cannot be scheduled.": "节目%s已结束,不能在添加任何内容。", + "The show %s has been previously updated!": "节目%s已经更改,需要刷新后再尝试。", + "Content in linked shows cannot be changed while on air!": "", + "Cannot schedule a playlist that contains missing files.": "", + "A selected File does not exist!": "某个选中的文件不存在。", + "Shows can have a max length of 24 hours.": "节目时长只能设置在24小时以内", + "Cannot schedule overlapping shows.\nNote: Resizing a repeating show affects all of its repeats.": "节目时间设置于其他的节目有冲突。\n提示:修改系列节目中的一个,将影响整个节目系列", + "Rebroadcast of %s from %s": "%s是%s的重播", + "Length needs to be greater than 0 minutes": "节目时长必须大于0分钟", + "Length should be of form \"00h 00m\"": "时间的格式应该是 \"00h 00m\"", + "URL should be of form \"https://example.org\"": "地址的格式应该是 \"https://example.org\"", + "URL should be 512 characters or less": "地址的最大长度不能超过512字节", + "No MIME type found for webstream.": "这个媒体流不存在MIME属性,无法添加", + "Webstream name cannot be empty": "媒体流的名字不能为空", + "Could not parse XSPF playlist": "发现XSPF格式的播放列表,但是格式错误", + "Could not parse PLS playlist": "发现PLS格式的播放列表,但是格式错误", + "Could not parse M3U playlist": "发现M3U格式的播放列表,但是格式错误", + "Invalid webstream - This appears to be a file download.": "媒体流格式错误,当前“媒体流”只是一个可下载的文件", + "Unrecognized stream type: %s": "未知的媒体流格式: %s", + "Record file doesn't exist": "录制文件不存在", + "View Recorded File Metadata": "查看录制文件的元数据", + "Schedule Tracks": "", + "Clear Show": "", + "Cancel Show": "", + "Edit Instance": "", + "Edit Show": "编辑节目", + "Delete Instance": "", + "Delete Instance and All Following": "", + "Permission denied": "没有编辑权限", + "Can't drag and drop repeating shows": "系列中的节目无法拖拽", + "Can't move a past show": "已经结束的节目无法更改时间", + "Can't move show into past": "节目不能设置到已过去的时间点", + "Can't move a recorded show less than 1 hour before its rebroadcasts.": "录音和重播节目之间的间隔必须大于等于1小时。", + "Show was deleted because recorded show does not exist!": "录音节目不存在,节目已删除!", + "Must wait 1 hour to rebroadcast.": "重播节目必须设置于1小时之后。", + "Track": "曲目", + "Played": "已播放", + "Auto-generated smartblock for podcast": "", + "Webstreams": "" } From 2c8f5386dbcb8e5e91f5f0231b622c9c8d4b8b68 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:13:06 -0400 Subject: [PATCH 53/70] chore: exclude locale folder from codespell check --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2f990e52bf..1ffb84b7bf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -63,7 +63,7 @@ repos: hooks: - id: codespell args: [--ignore-words=.codespellignore] - exclude: (^api/schema.yml|^legacy.*|yarn\.lock)$ + exclude: (^api/schema.yml|^legacy.*|yarn\.lock|^webapp/src/locale/*)$ - repo: local hooks: From 891fbf52ffb94505bd667ee2a1eae15f31743e87 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:19:28 -0400 Subject: [PATCH 54/70] chore: cleaning formatting --- .github/workflows/webapp.yml | 2 +- .pre-commit-config.yaml | 2 +- webapp/.eslintignore | 2 +- webapp/.prettierignore | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index 29c574fd8d..f1663099a9 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -74,4 +74,4 @@ jobs: working-directory: webapp - name: Build run: yarn build - working-directory: webapp \ No newline at end of file + working-directory: webapp diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1ffb84b7bf..8e1edee581 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,7 +33,7 @@ repos: hooks: - id: prettier files: \.(md|mdx|yml|yaml|js|jsx|ts|tsx|json|css)$ - exclude: ^legacy/public(?!/js/airtime) + exclude: (^legacy/public(?!/js/airtime)|*/package.json) - repo: https://github.com/asottile/pyupgrade rev: v3.4.0 diff --git a/webapp/.eslintignore b/webapp/.eslintignore index 3e71f86772..f733d47b70 100644 --- a/webapp/.eslintignore +++ b/webapp/.eslintignore @@ -23,4 +23,4 @@ pnpm-debug.log* *.sw? .eslintrc.js -src/vite-env.d.ts \ No newline at end of file +src/vite-env.d.ts diff --git a/webapp/.prettierignore b/webapp/.prettierignore index 0f15ad2baa..f2f39a0264 100644 --- a/webapp/.prettierignore +++ b/webapp/.prettierignore @@ -2,4 +2,4 @@ dist node_modules public // src/locale -package.json \ No newline at end of file +package.json From aea372096941e4c3efdb6b21e24c7831ee3fa53e Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:21:50 -0400 Subject: [PATCH 55/70] !fix chore: fixing incorrect python regex --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8e1edee581..133b583b81 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,7 +33,7 @@ repos: hooks: - id: prettier files: \.(md|mdx|yml|yaml|js|jsx|ts|tsx|json|css)$ - exclude: (^legacy/public(?!/js/airtime)|*/package.json) + exclude: (^legacy/public(?!/js/airtime)|^/package.json) - repo: https://github.com/asottile/pyupgrade rev: v3.4.0 From cf15fc7433efb01ef4187e3dcf3b5bb523faa256 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:26:31 -0400 Subject: [PATCH 56/70] ci: codespell ignore locale.json files --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 133b583b81..137a9af93e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,7 +33,7 @@ repos: hooks: - id: prettier files: \.(md|mdx|yml|yaml|js|jsx|ts|tsx|json|css)$ - exclude: (^legacy/public(?!/js/airtime)|^/package.json) + exclude: (^legacy/public(?!/js/airtime)|^webapp/package.json) - repo: https://github.com/asottile/pyupgrade rev: v3.4.0 @@ -63,7 +63,7 @@ repos: hooks: - id: codespell args: [--ignore-words=.codespellignore] - exclude: (^api/schema.yml|^legacy.*|yarn\.lock|^webapp/src/locale/*)$ + exclude: (^api/schema.yml|^legacy.*|yarn\.lock|^webapp/src/locale/*.json)$ - repo: local hooks: From ebba480830670b0e329fb07e71a4a33c9bc9f2ca Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 13:35:13 -0400 Subject: [PATCH 57/70] !fix ci: fixing python regex in pre-commit codespell --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 137a9af93e..0dbcb312cb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -63,7 +63,7 @@ repos: hooks: - id: codespell args: [--ignore-words=.codespellignore] - exclude: (^api/schema.yml|^legacy.*|yarn\.lock|^webapp/src/locale/*.json)$ + exclude: (^api/schema.yml|^legacy.*|yarn\.lock|.json$)$ - repo: local hooks: From b1374e425abfb72774e4935d9e8f78844d8048d5 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 14:09:03 -0400 Subject: [PATCH 58/70] chore: fix spelling, whitespace --- .github/workflows/webapp.yml | 2 +- webapp/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index f1663099a9..1478a60e0c 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -37,7 +37,7 @@ jobs: - name: Lint run: yarn lint working-directory: webapp - + cypress-test: runs-on: ubuntu-latest strategy: diff --git a/webapp/README.md b/webapp/README.md index 1cd5d3c67f..7d84f35c9f 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -14,7 +14,7 @@ npm i -g yarn # install all packages yarn -# start dev enviornment +# start dev environment yarn dev # build From 87795f8f88b0bf017889ab7f7a74eb3f13981cfc Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 14:21:36 -0400 Subject: [PATCH 59/70] chore: remove .editorconfig --- webapp/.editorconfig | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 webapp/.editorconfig diff --git a/webapp/.editorconfig b/webapp/.editorconfig deleted file mode 100644 index a1879fcd56..0000000000 --- a/webapp/.editorconfig +++ /dev/null @@ -1,5 +0,0 @@ -[*.{js,jsx,ts,tsx,vue}] -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true -insert_final_newline = true From 7485316f87272ca9e4415d664bd61f1865040eae Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 19:37:44 -0400 Subject: [PATCH 60/70] !fix chore: restoring needed process.env line in vite.config.ts --- webapp/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 911f51e3b5..c84038e8bc 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -20,6 +20,7 @@ export default defineConfig({ autoImport: true, }), ], + define: { 'process.env': {} }, resolve: { alias: { "@": fileURLToPath(new URL("./src", import.meta.url)), From 450d8ad1071fe8ac5bf7bd5baeba1dfa27a48515 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 20:34:06 -0400 Subject: [PATCH 61/70] feat: starting work on about page --- webapp/src/App.vue | 2 +- webapp/src/assets/icon.svg | 7 +++ webapp/src/assets/logo.png | Bin 11955 -> 0 bytes webapp/src/assets/logo.svg | 6 --- webapp/src/components/HelloWorld.vue | 3 -- webapp/src/components/Welcome.vue | 66 +++++++++++++++++++++++++ webapp/src/layouts/default/Default.vue | 9 ---- webapp/src/layouts/default/View.vue | 9 ---- webapp/src/router/index.ts | 10 +++- webapp/src/views/About.vue | 24 +++++++++ 10 files changed, 107 insertions(+), 29 deletions(-) create mode 100644 webapp/src/assets/icon.svg delete mode 100644 webapp/src/assets/logo.png delete mode 100644 webapp/src/assets/logo.svg create mode 100644 webapp/src/components/Welcome.vue delete mode 100644 webapp/src/layouts/default/Default.vue delete mode 100644 webapp/src/layouts/default/View.vue create mode 100644 webapp/src/views/About.vue diff --git a/webapp/src/App.vue b/webapp/src/App.vue index 4a88c8b05c..b6f8eda17f 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -1,7 +1,7 @@ diff --git a/webapp/src/assets/icon.svg b/webapp/src/assets/icon.svg new file mode 100644 index 0000000000..3c881c9666 --- /dev/null +++ b/webapp/src/assets/icon.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/webapp/src/assets/logo.png b/webapp/src/assets/logo.png deleted file mode 100644 index a5f23ae7bff64954cf3537377a9f99306baf083d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11955 zcmd6Ni9eKI^#7gJGKPulg;G%xiD=PGd&*jhP(($RY!y;H&uF0{l@?o>HdMBj2_-WU zNeh(_F{45yOO~6)1Q=?HBxq?7z}sB>)eS zX_8$O02XYpTeH$Nn$X+k6gjP_RPeX^z|cl2Yy0C`%k3^z#7&pBl;8Ed>bUL7pLv7R z6W014JxNhW@JjXCeXZg}#GXB2moGgZ_(`#Ou?&nUCg$zmsv3Xoj7bwQKX%vaiyIO? z86DLj?XyWG9Ns%o7xRAn*ge^bgdgipfcE@<^A+f`+mR>sKJ-efbO9(E zUaqO#{4M!gQ>Emm+h|>u3SJs1DO?hNToWIvqpIOS`jT%Uk7n0;wKs3);uG&)iMaiW z42@3$1li}%73SD=>Gs3DkumeZ(hj})J_6P`bPG8mIUj{f#s@0AbH4E`#H@}=-la`W z*u-6V5+J4|1lMME>4E(_7k=r-a@s6UONw$AHLHXEdyf4jQ(1c*F zHX0VCGG13c_-7ZhVu;e1xZ~-O*zV`wu73WG?8he3+^K-fpOZbBGjhjX!#qkpY$}^2 z4DKV~SN+$Aj>^@wcz4v@ZyvOj2#vbRjlahsRjv5BL?s}SnD`cA&Y<(5bo6RrO`Jvx znD!<=I9mzuY3JM~`gZl}NmlSWoZubDU0tboo)y#DPzA~P3Y5;^TRwUm8zx+<*<Lup&B5dj3P;M2pm*yn?)%cf z*jta-^OmWv_5}lD61#!eu~1K9rlYlQ_q%3GH}RsGO}p3iEeCx6>e|ZecI;X;6&>VB zykbrS%t6FrbVSFgrVUEtVt>TR8qf{Wd+$-?>Wp`X>I{2#LbG~P}J-H+N z;0nz?@he1Q{Kuw>g(h-=q2ku)A9~n*3%N=Fl1p2%Eb~4P_~C3;&>lBbxzzgTs1Qex zq`Z%A?^Y*;;_JE0)|41Jb$vXMP`>b?bobG_f0sLcC$Yvg?K;_DdRPzkyYjke4!FGRLEZC_p=-#}d@k>7aa6%OS8+zy zn>xzCrbsR?JYNZPdK;S}_0F_4-_Hpq+9F+aEHx0D$onB;5~uwypWanbFKNY&1vgk7*t?{kcTWNt+PUAcde2^Cz<5|&5#cei;2B5J8-OEgrc*Y@tsfPlItbJ5t(>);7UJuPnU*TcLc zQhNR*4kP1F_8ooa9{)1c+iuHODte#&A!)wd#qtBU9}zft6b~Xhw{J|eqI|S&eQykY zuo27dSOk{VAL^X#KWItbVl4{@?n3A``TNL9G`s**Qn-Gsj6<$?0O znVV=8JT+>=ruvd#ynUn7@{V^v7|342<^TLUP?+4(BB(YT9q_*Vwc^l##+^;FSJ8nomv2*=A+c%V>FpWlpU!Ky zoELOoWUZhJERCmp-=X*F8Nnyo(}2xSD0w7(0>;~pBYp=(obXy#QCE5-?M`NonC^pUh@_-k%~bVtg9 z3j~&0g!o2sD1Pp$Y>)B>b@$GZZ`5ag-^TOM{uQKzU4EJ?b$G!*565g3>vs17;nbiG ztCi=y+WP%0+_-b=#5tm3n+TA5Ayl>&6;R0%78n@!J!2l^9airdia!&C*#0Fi0S(nP zPyV~a@!~^@{OjOyChGa0#>@zRF6YnN{< z9_xlao2Coq&l$2Ev)%}|Im`)lJTh9CMZ@TuU9=^S8YN!KkBH4K5co6mwjR8de-DN# zXN4=4-Vuj*2(YA@qkpv>z}u?HNIg6A9u@ez(`GSpU+R~36du~s>$Gp6?it*`BUJvh z$7FonU0ndvRiA=0e>SGloZI+b>A>|Q7bmncss8+!y^v4)jxz7+wCgVLf{^bGDqxSnc@K`}*9>L_Z-Snf z>$T_#mub?pR@Va9oc-7$uo)qtt4-@w8ZaH7+l33q+%|6(FJlux&KpsG{_rfYQVHy* znb#cDJEyAHj_LYzvU)=h-Q=&8$X3gn)PyZ1Em`E52?Tz}b#(t9}&AH4cz-A=^iO!jXZV4tFUS(QjRWMrDio84Hv^_8gY5XJ4xIX^` zls`flCbfjPOLM=d?h!D5F*T#J9%dCG6?8XdobvFYeNDr?Mm-nZ z;qqvsQ44bOrG%U}E6VQ=J>flqA!XA*%y^ZCk3by57zwp?82&19qi6%AldfW2%|C!; zTC|-MJ1o^7371{LeDK7GuuusYrybh>qoYC@I9|LWOPX|>=#68Aj`!-sbq5z~ppQ;y zNp#hR|4SMiZT-ma-uY9TumZW5R{d_UrmkgqjZl!wkpuqGPQVk@IqD(_mJFJ#+>tn} z-h?%@iQE*jfbZ2ibLbXh*7L?-WcWyPvCo@eR+#Y_L#Hel)0}AKsY!sa!~>Gr1OvOD zEM9YG@!0xam0h)~l(D2Uz91~(jRr@#VAN@>P;bGQ^@g>b=^s4Qw!tmaMgux660%q6 zO|oy5(^uo{r*pywoQ_&HVTlRtt=K&S5@YTsd`MjQXXC7!+F)9xErAx^hC6M*o8nsZ zg<16wb2oKBE@eUWLEI(9YyX*5dj`y2w&d0vBn~sjPJdBL zlE-G)f9Z%wh538VQv&}pG15eZyePZ}p`wQa@})aGkg10TR6ay-dB?5P+PXV_!d>)t zd$*X&|KcpYfBLe+^9rW!p@Gn;rfBM#EpUT6fzX+j2^r|@B-oyB|6@E>Jnw?gf)hQ< zcmIalH>ZPB#S~TfyaYP`+tjR4-o^oyT^7=2nSs+m<_Qm<*?k>#P#Cm+@(@32JTi;r zlgE{N@ENOKYYQ%olAUSG)q3zMTWcs_*ZoKb?1fcSo33KS=(mjUwv9V1R*^?YL%XQ>Z;h?QjUu0TU#g%59b^#Z z7Dj}*b!t$x%I9{Ge~1%Wul3~|S7d#T;A3p}g=qg`6d$KJi%D@Q?v*RURx5$kowkGq zqSIJhKOPB#vPKadD!OG>_wG$I+lWP2)`bh0nP742O=sV?g=BfBE9nO|nX8ldb89^~ zNsAa8K-l6ySuTxdxrmqPlK9&DcUVcaNbF#+*Jn=(1g&}?qHYdc&$pJWnnecpBP)1y zSJ!r@|CM3J=ClSHxcFVD;`^7tnJv>sziy??QIU%~*YiB$BA{k+lH7g<70OEB+)m-x{Yq5g|Cy@gBROfAc27MDdtKPx4EWt{XHs7oj_ zVFg4yvm202Ybyn@)5v|=0=zDJxC~dV;61uPs5frq6@OH7tp?_#Vv5#}P6hVL?+nf& z_a)Ar|5XA+@~I)r{}nL5Ro|~*0Nh`%uIiTZj9Ag4T zpL@oM31x@A0^@pOi$EfqYb25+N$V+LPrFaQ2S1BMQ4Y>K(iNxH^v0J->yimRgyMF~ ziqAy3ZRQGGUdiola{Db&u>lpOoZLqHp~kmc0Jq)DA{dmd?+p!C0yM>ZjScbxvu-^T zHL1NlM@I#T!CS(yMeeG>USmB881jn*(t9$sMm^>ba|Kh!4*y`O7=z$>25J;8fm^X>l%dd+rB)Aufz zcnt-Gl^@7WyHC-%5aJSWp7z6dEN7&bH}*WryGUyus%IgUJ~Nqz6ig%%I0|+#o}8yF z;S3VrMW$YoTf7~bL3F&(dyy8QVXn&)BiRLu(D=kdcmQAZxeX#bHX44+u!OPwCnwpKpAVD~j4Dol?OhpKkGf1fM$m z=>A^MEvDwbBSBv9Z#uRe8vHPmB%}o*bUzS~+U4Oh-)o?MXwNk+Z`VNRR+JBkQ(mVE z)E9Mxu-oN`ek(})&)Ab=yBoNRYgZ%k*ym&=RL-WKM^^%-8$J%2zUz^*&+`XR44)p) z=NwZ4*KUcLl&Pr3B!3QnJh$CF=cyCeru=`zIdY3oKi5sH_V^TmvsNaP`LZ(k z(Go6`ybpTw8NBhz?WM`-bUSTH?D}6B>lWDh{fOgCx#9$_*}eQa_3;@3XAdM$#X$Cq zNLTp!`XUbU9Bqb65+@Hl}(+GBcNFmO#v>)Pld z*lLMG-hEeN_1Hg{(%H+?RRYsx>Q~h;Hcn&=(^v^FlHKCHtVE7;@XM>Hs|WQervoag zOs9U;Xx7k_K-LyFemc>LwXC9Yw!&9KXU_;^_x`WK2$0i8HPTjadHWZF1Hm%Q+idW; zTiU%;mlk+|5J0cs^}&g}JW7NU>(&_p%YPu$uX`z%r}1|nG>N;Uf~jH-q79a~wXdzy z;3&Yh*^$=Zv+J(3VjgQjk?Hop&2fmH4;Wx=r#&VUGdQ9$BoL9mM8p1y`sJv=>Fd+L z2{JKg@189oGKlurP)pRcE0_p;=&a%szP~q5R+Ot6bpnwc5PDtXL03n8%ojk224^3 z8wM7P4W?lWOLNP%Jyyb8#68M6V6jng1{s&l-k8)9?>FGbv$U>7&1Xn@G_pYY#pw$o z+j+@aVEK&f`j>V^EIFqxRBTw3kIf+lHaZj@2yLi zJ=S#R&YqQqxzd5Q?aCCY@rxL<0LAzc#Mea4jKRAMBY9}9`6F+G{w28rP^SA@1? z;m|_2Mxy70?yo&}JnOsHh4vP@KlM^OkWAog%Wn1>6!kNyfU^JjzFdl<-=sLdDe9&x z6Ygz&f`r~N8qg!5sv$77Zx%hfvAo~A=YNE`P;M2V&$%T7SlDhHH&M@ zW?tDwK5KGna7Q3=*c=#Ny!~!J!E!nkwgcK1FLl!VUWV`nMBW*$O2yK-F94_JoynX> zF_9*r4&6W|#mb&XCbeYw+mLhTG+>W+0q4EZPAo$%%gUOl^D8J{dPjlF6u2)22VsEx zsstSS6fVm&3qW@L8iL67Y!pA~BK~xmz?$Jk3xYOqOMY(^zKl>`m znLV1sd*09ty7LjAIIX3Z5&yacDQt@R?}9 zhJ8W({JEjDJS)b}9)@!xc8Ln7W6mk@zsh63ssX3DNW;A+gk8Rk@QyQ{!pInSzHC|l zX7P}gI=^&#hMHu{IRdK`f+{7w?9capc{j26?iclws(#024`}w_F?;UXDPVJ70Zt|) z)+dsw&Sx7c9|35<+$(gx7Zf?gh*S#@2OzsXEAZe%X#y8R zJi3$y&0gWH@vd767q(X$?A`lGl5HTb1lU^b8YN){^*MC(zBEKyV;S)$Jf*f6i9?o# zQTd7X`0Hy!v2h0GfIQ3YP4WAada32X0IKu6*<(3Wb$*(&m_{S9ShcZ4jXcW4LxPr8 z=?ukEVb+uwHzBhTfAqR{P6e+B-rm*d+4&$dZ9Zpc2J2T0K06LM45ifCNnFV*l2|Bp z+&8}Kz+tWPmq}bMFKK;W2XCG;ThZrW=BWN0DhlW%_A`r|&i&RvMLla2zs^!wL2%{5 zTy76nvGL=0G1zgGX#B6%B%Kx#53A2eVTPWOGECYE(2~R`<*2A#N?i`B^D@VaEqX$LaA6 zoU1gD?SNC=U?$$J1!it;B!+NV92#Nq7qYXiAFl&MgURP2`xqpBfL3!x@dSd4~g32$(Rn8nWi{OZfGML2O%CZrK}0lv?fDxR+GfK zeGk&hUGc-mUamV$JY>Oil1=5Gl_^#;*vXrs+em!04=Hb4Mwl$-(tbG-Lm3j9Tqu6) z;Vip}xPXOV&0DDc#(xzLJm0)UnHALA|8WB96hem>x6YM9???EzsX1>_udmH+7iP^K z(^S;~uVfP-r-`U(JEceodwy$p?}J-H!94@5U~mq$*VA6DgbFOIjFPG)?`0{UJ5q)Z z*6YV19lHR-O&lB1UG{#ta$preH(T7%C=p)Z$HLU@d(1?hMn_e-%xQjrb+^pOr&i@u z43o6n8YaQCQJgja}^tp6|16%3>go-B6^0%zf^(BR}KN?@Lff)Y_8P=2FLA zGvx=@KtPD&fXZcaz`6L{LrC)khEnhHkSA*m--I9!io&OZOLykX9*f_o1)S}mJQ?({ zl>4Vo!cYHH0-BQVz4}`h0?tEEHwV1)K(rHj*@0WZ3`D|DcPpWZLjAoJ08J|!w0;=# zeuHTI;ZLtcda`65o{)=Yz438CwY3O)hrO{61?9MG%ZA(;^w_@_o0|mZ2huQ1yh#b9 z!j|z{`|p*!HN9plE)3&$rMvW$K*B0*7_pkyjOU>;O&%X(4h)pZ__wLYDCWz&y2_BZ z@dQu-n}i8NnBUZjR-UX!m_{PNnhWK~XgSuKaZSDv>iQxE6`V+F@h&6k1DU*V2P6=; zwGorY)|&jGqfks#-qZq&`SAEDE}EhP9yjVicAE}|W=)zkcUoJ0g5&06ZpOpf8V(daD~aR4M|GO#>=P zyGY>kxppkX2^i(}<1$`~@kCD*5zze&nEA}x{Wuw~x1@sHk$=g$GS|luyzQOCWm+Z? zK;Z0Z$wt&=*AZgP#aX{-_2w49`E-lEW0(r=iYHqJA^|iKXn?V07pye`ArU~&0-QQ{ zHnWP74U1cf{cR3g$`e zbiN*!c>snI2A}Y$Yp-1Ss5o{$U;9sI(;McnxfC8zHH;P zAP^aVzAGF2>~>L|x0{$*^<0|My+#2JE6c8|=Y<F3!=}Mg7=)=r1Njk24>ky0L-MncEPBLp5x7(R(tWFQbOg6n@nAv*Z#E1Iuci!)_qz~o@> zuPx#J+5W`DL7d9}6P5;1Z4Ivtfko1qlc6P{_;m!2npFJVCeaWy?ItAlx%+p;kRA5fPzPh|o3n|E4@}J7%DFLnJrS3=BXpVO4kQIOHD&5e8UyAbZ=}cnR1ZU_{P{h8JCbCOZsU@Z{4c97&3+<>Wm?A&yy1ogY(^#av>Hu``bT`_M z>wtMM1%sVTn}xt&qf=I`h9|%e3`n6fZbD}m(?e;ydwVjjSc3&)uUeVDYv~M^XJrqb z8A5gQ)NQ$B=sxq325js#Kwm^mQ~q(bF&XCuqYM}-Yx3bS^CsyVQZE%aAb4Nx6EMXO z0M$N)pI&cX;i?i6{M1z-TQ6XwcQWb#6>xsQ^C`15j+$vB{;;yM)0Dsmzy@x)nqrUR zrXIviyv%*kkv;-cE@LfNVQ6rq6HD&OmDZ)0HLNm)usy=321O3NNAT`4#Ag}__MX2i3S{T+yMg)V+j1aRLDERnZdc=La3~>p_#_LGjKVd6 zc~$2~+p8+G`*GDj1iYDpEo=8Nx}~HoMFfz&@Q_1&UUn0H`j-NFS_`0aVSSWKS)9`` zk){6Sj!4e_6#$vAPT!J_VOeK7@MXfO(3rVjZ3$I5K=lVb;0XqEm<=SuFlvM3o)rOZtZPiKR@Fhji!i1rkcD&FeEh@I?V{poWE8nDELmbv3tr|E^mi$DX0E_pxz zUF%H4_F9F4;B>)M5V;FXwr=z99NKm{b}Xm+_KN?Kp1CF!_z;{_I#;myfrCxuCI@ed ziio!4?E(#-EqHu+e*zQ)iI#KCu_L2YXtmB_qn&U2gw{& zX*f;*xr9-2WeNE`s54Js ziP6cN47vLGfhddi-|nj_{HGz8xQIy}@Dx5^t(PZwRx^scxu(d{h5M;d;=xh>az(4; zGyd_++gGv^?U#RfYV`|Ybj_}AmRm?BYL-gkh5Ge+vXKIffQtj6w9Hs(R;xoC!itqW zqSV9Z@1{97B6{%g-^iDa!NDsafDR442@gXDI#@#m_>SIwpLbzN7WFfsadNBjDP3;u z>D?3F5Ug^|09=y~qn*zlS}r-OzpCpL2$&9UW)D7L1s#9dxxf5AvZP=Cry?A?0FyEE zwudl}gidC>`svUn!vzd2SJSX+zE5%_2Rtk~|YI1eZUzyOc-F?T*fx-J$mD<_!h zw~l=$oPcH706#_WwfWJ_MU2$C10q5W^vD=!R&)ho&wJ|vA51nv*;W`(CqHhzBN`?AV zz+V&?$iCb(nFR+_NI*FISy!w~ylxlh5yPzq_I9@fat{0tA__MXW^ zOgi8Lz@;!Q|Jzmjr3b1fnExVj9>n{`5)YsK%gT*}mquXnBRz#fXa3+5)rZ_h$<1zN znNKhQK$deIX5-Hg=C8W2b|yzl z7qAxjHQnCz=>^h&fi}3fD#*(^1(X)Mcw7s%VB~&Q1CZM!)ZmX`M$@nq_fNg-H9!Ln z8h7_81l-dIX#0X2!BfyxF!PW(cRhqBMj$K<7!X>(%hdT}x|4in(Ld+2&7DbP;=hzE zXlS}k6@8oippdt4!VCr{5tg^|2@6NsG@^Z_f)R%k05%T*`SueJ;m3%-uWD;}J`>_7 zwqISe^rGj}bC9rFOwUpt^857EKUa-(^TT}M9*c<;A{4uWk6KpY;v8~pA$C9Dl; z0yYsi$Nz%X_E{!ik#^umnao2C}_hPwKFnOI=a2FQ6@Dnt0P_(ng zpppEo`IKWvhoHbPfK6Z)88+d^W-sd%_$4djuO~|t)&RUr9s=W7%XVzPl=m1m@X4&H zaBzbR8luOs#KAZC#=M%ol#x5N?3LgtWILC%&9vosh+S2l0vZ5uFeRMJGVx>c2Y(7e zp(AI)LTXLdmq(gG5JOE+AF<&1AzGu - - - - - diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue index 1ee9499f21..5391adc145 100644 --- a/webapp/src/components/HelloWorld.vue +++ b/webapp/src/components/HelloWorld.vue @@ -53,9 +53,6 @@ Community - - - diff --git a/webapp/src/components/Welcome.vue b/webapp/src/components/Welcome.vue new file mode 100644 index 0000000000..0a5b14e792 --- /dev/null +++ b/webapp/src/components/Welcome.vue @@ -0,0 +1,66 @@ + + + diff --git a/webapp/src/layouts/default/Default.vue b/webapp/src/layouts/default/Default.vue deleted file mode 100644 index f8c81a2f9b..0000000000 --- a/webapp/src/layouts/default/Default.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/webapp/src/layouts/default/View.vue b/webapp/src/layouts/default/View.vue deleted file mode 100644 index 68eb54f682..0000000000 --- a/webapp/src/layouts/default/View.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index fee519855d..d7c39fb89f 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -4,7 +4,6 @@ import { createRouter, createWebHistory } from "vue-router" const routes = [ { path: "/", - component: () => import("@/layouts/default/Default.vue"), children: [ { path: "", @@ -15,6 +14,15 @@ const routes = [ component: () => import(/* webpackChunkName: "home" */ "@/views/Home.vue"), }, + { + path: "/about", + name: "About", + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => + import(/* webpackChunkName: "about" */ "@/views/About.vue"), + }, ], }, ] diff --git a/webapp/src/views/About.vue b/webapp/src/views/About.vue new file mode 100644 index 0000000000..1e4d93c5b2 --- /dev/null +++ b/webapp/src/views/About.vue @@ -0,0 +1,24 @@ + + + From 8c1d819cafe31a16e444f59d281932291156eae5 Mon Sep 17 00:00:00 2001 From: ZACHARY KLOSKO Date: Fri, 9 Jun 2023 21:57:48 -0400 Subject: [PATCH 62/70] feat: about page with i18n demo, lazy loading --- webapp/src/components/HelloWorld.vue | 63 -------------- webapp/src/components/LocaleSelect.vue | 1 + webapp/src/components/Welcome.vue | 115 ++++++++++++++----------- webapp/src/views/About.vue | 22 +++-- webapp/src/views/Home.vue | 8 +- webapp/vite.config.ts | 2 +- 6 files changed, 84 insertions(+), 127 deletions(-) delete mode 100644 webapp/src/components/HelloWorld.vue diff --git a/webapp/src/components/HelloWorld.vue b/webapp/src/components/HelloWorld.vue deleted file mode 100644 index 5391adc145..0000000000 --- a/webapp/src/components/HelloWorld.vue +++ /dev/null @@ -1,63 +0,0 @@ - - - diff --git a/webapp/src/components/LocaleSelect.vue b/webapp/src/components/LocaleSelect.vue index def05c085d..f4bc61cecc 100644 --- a/webapp/src/components/LocaleSelect.vue +++ b/webapp/src/components/LocaleSelect.vue @@ -3,6 +3,7 @@ v-bind:label="$t('Language')" :items="allLocales" v-model="selectedLocale" + variant="underlined" > diff --git a/webapp/src/components/Welcome.vue b/webapp/src/components/Welcome.vue index 0a5b14e792..5ef65eaa19 100644 --- a/webapp/src/components/Welcome.vue +++ b/webapp/src/components/Welcome.vue @@ -1,66 +1,85 @@ - + diff --git a/webapp/src/views/About.vue b/webapp/src/views/About.vue index 1e4d93c5b2..2c44eee898 100644 --- a/webapp/src/views/About.vue +++ b/webapp/src/views/About.vue @@ -1,13 +1,17 @@ - + diff --git a/webapp/src/views/About.vue b/webapp/src/views/About.vue index 2c44eee898..d432849c22 100644 --- a/webapp/src/views/About.vue +++ b/webapp/src/views/About.vue @@ -1,28 +1,11 @@ From 546ed71ff56c97d5bb3c3c82dc846241045957dc Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 30 Jun 2023 11:46:39 -0400 Subject: [PATCH 64/70] chore: remove unused component --- webapp/src/App.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/src/App.vue b/webapp/src/App.vue index b6f8eda17f..adabe536a6 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -7,5 +7,4 @@ From 7d78e7550ff6045ab631fdb7bdde06c8ad27f2f8 Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 30 Jun 2023 13:02:19 -0400 Subject: [PATCH 65/70] feat: started MPA setup, static demo page --- webapp/README.md | 12 ++++++++++++ webapp/src/App.vue | 3 +-- webapp/src/about/App.vue | 11 +++++++++++ webapp/src/about/index.html | 14 ++++++++++++++ webapp/src/about/main.ts | 20 ++++++++++++++++++++ webapp/src/router/index.ts | 11 +---------- webapp/vite.config.ts | 9 +++++++++ 7 files changed, 68 insertions(+), 12 deletions(-) create mode 100644 webapp/src/about/App.vue create mode 100644 webapp/src/about/index.html create mode 100644 webapp/src/about/main.ts diff --git a/webapp/README.md b/webapp/README.md index c4350e70bc..d622ac9610 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -29,3 +29,15 @@ npx prettier -w src # run tests with Cypress yarn cypress:run ``` +## Translation files + +Ultimately, Weblate will be set up to translate strings in the new UI; for now, generated `.json` files are available in `src/locale`. The `.json` translations are decoupled from Weblate, and so Weblate updates will not update this part of the repo. These are just provided for development purposes. + +## MPA file structure + +This folder is split up into multiple apps. + +- Main: `index.html` endpoint, `/` in the browser +- About: `src/about/index.html` endpoint, `/src/about` in the browser + +Once built into static pages, the URL paths will be the same as the folder structure mentioned above. Both apps can use the same plugins, components, translations, etc., they just have different endpoints so we can statically build them seperately. \ No newline at end of file diff --git a/webapp/src/App.vue b/webapp/src/App.vue index adabe536a6..e2a17f4aad 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -6,5 +6,4 @@ - + diff --git a/webapp/src/about/App.vue b/webapp/src/about/App.vue new file mode 100644 index 0000000000..4dde0f2397 --- /dev/null +++ b/webapp/src/about/App.vue @@ -0,0 +1,11 @@ + + + diff --git a/webapp/src/about/index.html b/webapp/src/about/index.html new file mode 100644 index 0000000000..3dc5c62011 --- /dev/null +++ b/webapp/src/about/index.html @@ -0,0 +1,14 @@ + + + + + + + Vuetify 3 + + + +
+ + + diff --git a/webapp/src/about/main.ts b/webapp/src/about/main.ts new file mode 100644 index 0000000000..a3c50731bd --- /dev/null +++ b/webapp/src/about/main.ts @@ -0,0 +1,20 @@ +/** + * main.ts + * + * Bootstraps Vuetify and other plugins then mounts the App` + */ + +// Components +import App from "./App.vue" + +// Composables +import { createApp } from "vue" + +// Plugins +import { registerPlugins } from "@/plugins/index" + +const app = createApp(App) + +registerPlugins(app) + +app.mount("#app") diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index d7c39fb89f..77a697ff04 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -12,16 +12,7 @@ const routes = [ // this generates a separate chunk (about.[hash].js) for this route // which is lazy-loaded when the route is visited. component: () => - import(/* webpackChunkName: "home" */ "@/views/Home.vue"), - }, - { - path: "/about", - name: "About", - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => - import(/* webpackChunkName: "about" */ "@/views/About.vue"), + import(/* webpackChunkName: "home" */ "@/views/About.vue"), }, ], }, diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index cd81a82449..c864d356ff 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -7,6 +7,7 @@ import vuetify, { transformAssetUrls } from "vite-plugin-vuetify" // Utilities import { defineConfig } from "vite" import { fileURLToPath, URL } from "node:url" +import { resolve } from "node:path" // import path from "path" // https://vitejs.dev/config/ @@ -30,4 +31,12 @@ export default defineConfig({ server: { port: 8080, }, + build: { + rollupOptions: { + input: { + main: resolve(__dirname, 'index.html'), + about: resolve(__dirname, 'src/about/index.html') + }, + } + } }) From e5a75f9f09be9b66ac4d6c7d184bade2e0cb045b Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 30 Jun 2023 13:04:57 -0400 Subject: [PATCH 66/70] chore: Fixing readme for codespell --- webapp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/README.md b/webapp/README.md index d622ac9610..81f142a941 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -40,4 +40,4 @@ This folder is split up into multiple apps. - Main: `index.html` endpoint, `/` in the browser - About: `src/about/index.html` endpoint, `/src/about` in the browser -Once built into static pages, the URL paths will be the same as the folder structure mentioned above. Both apps can use the same plugins, components, translations, etc., they just have different endpoints so we can statically build them seperately. \ No newline at end of file +Once built into static pages, the URL paths will be the same as the folder structure mentioned above. Both apps can use the same plugins, components, translations, etc., they just have different endpoints so we can statically build them separately. From 8168fe711d5f65b118b8c30099162f27cb2720ea Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 30 Jun 2023 21:00:59 -0400 Subject: [PATCH 67/70] feat: resposition about page to /about path --- webapp/{src => }/about/App.vue | 2 +- webapp/{src => }/about/index.html | 2 +- webapp/{src => }/about/main.ts | 2 +- webapp/vite.config.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename webapp/{src => }/about/App.vue (76%) rename webapp/{src => }/about/index.html (82%) rename webapp/{src => }/about/main.ts (82%) diff --git a/webapp/src/about/App.vue b/webapp/about/App.vue similarity index 76% rename from webapp/src/about/App.vue rename to webapp/about/App.vue index 4dde0f2397..3bb595b0f2 100644 --- a/webapp/src/about/App.vue +++ b/webapp/about/App.vue @@ -7,5 +7,5 @@ diff --git a/webapp/src/about/index.html b/webapp/about/index.html similarity index 82% rename from webapp/src/about/index.html rename to webapp/about/index.html index 3dc5c62011..1ac0c4265a 100644 --- a/webapp/src/about/index.html +++ b/webapp/about/index.html @@ -9,6 +9,6 @@
- + diff --git a/webapp/src/about/main.ts b/webapp/about/main.ts similarity index 82% rename from webapp/src/about/main.ts rename to webapp/about/main.ts index a3c50731bd..6b56e1ba45 100644 --- a/webapp/src/about/main.ts +++ b/webapp/about/main.ts @@ -11,7 +11,7 @@ import App from "./App.vue" import { createApp } from "vue" // Plugins -import { registerPlugins } from "@/plugins/index" +import { registerPlugins } from "../src/plugins/index" const app = createApp(App) diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index c864d356ff..7dbf57b692 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -35,7 +35,7 @@ export default defineConfig({ rollupOptions: { input: { main: resolve(__dirname, 'index.html'), - about: resolve(__dirname, 'src/about/index.html') + about: resolve(__dirname, 'about/index.html') }, } } From 7b7f3b8cb14112e42f56a7f44ca8ac9e0419535b Mon Sep 17 00:00:00 2001 From: zklosko Date: Fri, 30 Jun 2023 21:01:36 -0400 Subject: [PATCH 68/70] chore: run Prettier --- webapp/README.md | 5 +++-- webapp/vite.config.ts | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/webapp/README.md b/webapp/README.md index 81f142a941..aea7daf5b0 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -29,6 +29,7 @@ npx prettier -w src # run tests with Cypress yarn cypress:run ``` + ## Translation files Ultimately, Weblate will be set up to translate strings in the new UI; for now, generated `.json` files are available in `src/locale`. The `.json` translations are decoupled from Weblate, and so Weblate updates will not update this part of the repo. These are just provided for development purposes. @@ -37,7 +38,7 @@ Ultimately, Weblate will be set up to translate strings in the new UI; for now, This folder is split up into multiple apps. -- Main: `index.html` endpoint, `/` in the browser -- About: `src/about/index.html` endpoint, `/src/about` in the browser +- Main: `index.html` endpoint, `/` in the browser +- About: `src/about/index.html` endpoint, `/src/about` in the browser Once built into static pages, the URL paths will be the same as the folder structure mentioned above. Both apps can use the same plugins, components, translations, etc., they just have different endpoints so we can statically build them separately. diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 7dbf57b692..e72f227dd0 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -34,9 +34,9 @@ export default defineConfig({ build: { rollupOptions: { input: { - main: resolve(__dirname, 'index.html'), - about: resolve(__dirname, 'about/index.html') + main: resolve(__dirname, "index.html"), + about: resolve(__dirname, "about/index.html"), }, - } - } + }, + }, }) From 02a1ddebf30f8d325bbc225e1a59ec3daabab8ed Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 30 Aug 2023 16:36:53 -0400 Subject: [PATCH 69/70] feat: main script hardcoded to dev server --- webapp/about/App.vue | 2 +- webapp/index.html | 2 +- webapp/package.json | 1 + webapp/vite.config.ts | 2 +- webapp/yarn.lock | 55 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 59 insertions(+), 3 deletions(-) diff --git a/webapp/about/App.vue b/webapp/about/App.vue index 3bb595b0f2..4dde0f2397 100644 --- a/webapp/about/App.vue +++ b/webapp/about/App.vue @@ -7,5 +7,5 @@ diff --git a/webapp/index.html b/webapp/index.html index 428659963d..18289de2c2 100644 --- a/webapp/index.html +++ b/webapp/index.html @@ -9,6 +9,6 @@
- + diff --git a/webapp/package.json b/webapp/package.json index 1701158136..b88b9da010 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -22,6 +22,7 @@ "devDependencies": { "@babel/types": "^7.21.4", "@intlify/unplugin-vue-i18n": "^0.10.0", + "@types/cypress": "^1.1.3", "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^5.59.6", "@typescript-eslint/parser": "^5.59.6", diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index e72f227dd0..27ffc38542 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -29,7 +29,7 @@ export default defineConfig({ extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"], }, server: { - port: 8080, + port: 5173, }, build: { rollupOptions: { diff --git a/webapp/yarn.lock b/webapp/yarn.lock index e8d93b36df..7ca990bea7 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -353,6 +353,13 @@ estree-walker "^2.0.2" picomatch "^2.3.1" +"@types/cypress@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@types/cypress/-/cypress-1.1.3.tgz#0a700c040d53e9e12b5af98e41d4a88c39f39b6a" + integrity sha512-OXe0Gw8LeCflkG1oPgFpyrYWJmEKqYncBsD/J0r17r0ETx/TnIGDNLwXt/pFYSYuYTpzcq1q3g62M9DrfsBL4g== + dependencies: + cypress "*" + "@types/estree@^1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" @@ -1134,6 +1141,54 @@ csstype@^3.1.1: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== +cypress@*: + version "12.16.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.16.0.tgz#d0dcd0725a96497f4c60cf54742242259847924c" + integrity sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg== + dependencies: + "@cypress/request" "^2.88.10" + "@cypress/xvfb" "^1.2.4" + "@types/node" "^14.14.31" + "@types/sinonjs__fake-timers" "8.1.1" + "@types/sizzle" "^2.3.2" + arch "^2.2.0" + blob-util "^2.0.2" + bluebird "^3.7.2" + buffer "^5.6.0" + cachedir "^2.3.0" + chalk "^4.1.0" + check-more-types "^2.24.0" + cli-cursor "^3.1.0" + cli-table3 "~0.6.1" + commander "^6.2.1" + common-tags "^1.8.0" + dayjs "^1.10.4" + debug "^4.3.4" + enquirer "^2.3.6" + eventemitter2 "6.4.7" + execa "4.1.0" + executable "^4.1.1" + extract-zip "2.0.1" + figures "^3.2.0" + fs-extra "^9.1.0" + getos "^3.2.1" + is-ci "^3.0.0" + is-installed-globally "~0.4.0" + lazy-ass "^1.6.0" + listr2 "^3.8.3" + lodash "^4.17.21" + log-symbols "^4.0.0" + minimist "^1.2.8" + ospath "^1.2.2" + pretty-bytes "^5.6.0" + proxy-from-env "1.0.0" + request-progress "^3.0.0" + semver "^7.3.2" + supports-color "^8.1.1" + tmp "~0.2.1" + untildify "^4.0.0" + yauzl "^2.10.0" + cypress@^12.12.0: version "12.12.0" resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.12.0.tgz#0da622a34c970d8699ca6562d8e905ed7ce33c77" From 80b90832036c788a2cee99b53953ece123afa225 Mon Sep 17 00:00:00 2001 From: zklosko Date: Wed, 30 Aug 2023 16:40:50 -0400 Subject: [PATCH 70/70] chore: ran yarn upgrade --- webapp/yarn.lock | 1255 +++++++++++++++++++++------------------------- 1 file changed, 567 insertions(+), 688 deletions(-) diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 7ca990bea7..7006652b54 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -2,28 +2,33 @@ # yarn lockfile v1 -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== -"@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== "@babel/parser@^7.20.15", "@babel/parser@^7.21.3": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== + version "7.22.14" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.14.tgz#c7de58e8de106e88efca42ce17f0033209dfd245" + integrity sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ== "@babel/types@^7.21.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.11.tgz#0e65a6a1d4d9cbaa892b2213f6159485fe632ea2" + integrity sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg== dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" to-fast-properties "^2.0.0" "@colors/colors@1.5.0": @@ -31,10 +36,34 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== -"@cypress/request@^2.88.10": - version "2.88.11" - resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047" - integrity sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w== +"@cypress/request@2.88.12": + version "2.88.12" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" + integrity sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + http-signature "~1.3.6" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + performance-now "^2.1.0" + qs "~6.10.3" + safe-buffer "^5.1.2" + tough-cookie "^4.1.3" + tunnel-agent "^0.6.0" + uuid "^8.3.2" + +"@cypress/request@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-3.0.0.tgz#7f58dfda087615ed4e6aab1b25fffe7630d6dd85" + integrity sha512-GKFCqwZwMYmL3IBoNeR2MM1SnxRIGERsQOTWeQKoYBt2JLqcqiy7JXqO894FLrpjZYqGxW92MNwRH2BN56obdQ== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -51,7 +80,7 @@ performance-now "^2.1.0" qs "~6.10.3" safe-buffer "^5.1.2" - tough-cookie "~2.5.0" + tough-cookie "^4.1.3" tunnel-agent "^0.6.0" uuid "^8.3.2" @@ -63,136 +92,136 @@ debug "^3.1.0" lodash.once "^4.1.1" -"@esbuild/android-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz#4aa8d8afcffb4458736ca9b32baa97d7cb5861ea" - integrity sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw== - -"@esbuild/android-arm@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.18.tgz#74a7e95af4ee212ebc9db9baa87c06a594f2a427" - integrity sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw== - -"@esbuild/android-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.18.tgz#1dcd13f201997c9fe0b204189d3a0da4eb4eb9b6" - integrity sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg== - -"@esbuild/darwin-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz#444f3b961d4da7a89eb9bd35cfa4415141537c2a" - integrity sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ== - -"@esbuild/darwin-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz#a6da308d0ac8a498c54d62e0b2bfb7119b22d315" - integrity sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A== - -"@esbuild/freebsd-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz#b83122bb468889399d0d63475d5aea8d6829c2c2" - integrity sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA== - -"@esbuild/freebsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz#af59e0e03fcf7f221b34d4c5ab14094862c9c864" - integrity sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew== - -"@esbuild/linux-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz#8551d72ba540c5bce4bab274a81c14ed01eafdcf" - integrity sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ== - -"@esbuild/linux-arm@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz#e09e76e526df4f665d4d2720d28ff87d15cdf639" - integrity sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg== - -"@esbuild/linux-ia32@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz#47878860ce4fe73a36fd8627f5647bcbbef38ba4" - integrity sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ== - -"@esbuild/linux-loong64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz#3f8fbf5267556fc387d20b2e708ce115de5c967a" - integrity sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ== - -"@esbuild/linux-mips64el@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz#9d896d8f3c75f6c226cbeb840127462e37738226" - integrity sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA== - -"@esbuild/linux-ppc64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz#3d9deb60b2d32c9985bdc3e3be090d30b7472783" - integrity sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ== - -"@esbuild/linux-riscv64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz#8a943cf13fd24ff7ed58aefb940ef178f93386bc" - integrity sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA== - -"@esbuild/linux-s390x@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz#66cb01f4a06423e5496facabdce4f7cae7cb80e5" - integrity sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw== - -"@esbuild/linux-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz#23c26050c6c5d1359c7b774823adc32b3883b6c9" - integrity sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA== - -"@esbuild/netbsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz#789a203d3115a52633ff6504f8cbf757f15e703b" - integrity sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg== - -"@esbuild/openbsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz#d7b998a30878f8da40617a10af423f56f12a5e90" - integrity sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA== - -"@esbuild/sunos-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz#ecad0736aa7dae07901ba273db9ef3d3e93df31f" - integrity sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg== - -"@esbuild/win32-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz#58dfc177da30acf956252d7c8ae9e54e424887c4" - integrity sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg== - -"@esbuild/win32-ia32@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz#340f6163172b5272b5ae60ec12c312485f69232b" - integrity sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw== - -"@esbuild/win32-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz#3a8e57153905308db357fd02f57c180ee3a0a1fa" - integrity sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg== - -"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0": +"@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + +"@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + +"@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + +"@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + +"@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + +"@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + +"@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + +"@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + +"@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + +"@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + +"@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + +"@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + +"@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + +"@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + +"@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + +"@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + +"@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + +"@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + +"@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + +"@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + +"@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + +"@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== + +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" - integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.0.tgz#11195513186f68d42fbf449f9a7136b2c0c92005" + integrity sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg== -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== +"@eslint/eslintrc@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" + integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.2" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -200,20 +229,20 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.40.0": - version "8.40.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" - integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== +"@eslint/js@8.48.0": + version "8.48.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.48.0.tgz#642633964e217905436033a2bd08bf322849b7fb" + integrity sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw== "@fontsource/roboto@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-5.0.2.tgz#06f10be117be622e6c720a1c6579b00475420bcd" - integrity sha512-SLw0o3kWwJ53/Ogyk8GGwSaULNX6Hogs+GsVempDdqpX8wm5hKBLYgUkdUPk+NogiViPp1x++OnkuLA+fAd9Kg== + version "5.0.8" + resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-5.0.8.tgz#613b477a56f21b5705db1a67e995c033ef317f76" + integrity sha512-XxPltXs5R31D6UZeLIV1td3wTXU3jzd3f2DLsXI8tytMGBkIsGcc9sIyiupRtA8y73HAhuSCeweOoBqf6DbWCA== -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@humanwhocodes/config-array@^0.11.10": + version "0.11.11" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844" + integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" @@ -288,9 +317,9 @@ integrity sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ== "@intlify/unplugin-vue-i18n@^0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.10.0.tgz#28a05a7b9e0a7cc35e91e6762e5e6e57f954a45c" - integrity sha512-Sf8fe26/d8rBNcg+zBSb7RA1uyhrG9zhIM+CRX6lqcznMDjLRr/1tuVaJ9E6xqJkzjfPgRzNcCqwMt6rpNkL7Q== + version "0.10.1" + resolved "https://registry.yarnpkg.com/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.10.1.tgz#6e1d3c873976af5ed93a06eb98f36e4c1b8021be" + integrity sha512-9ZzE0ddlDO06Xzg25JPiNbx6PJPDho5k/Np+uL9fJRZEKq2TxT3c+ZK+Pec6j0ybhhVXeda8/yE3tPUf4SOXZQ== dependencies: "@intlify/bundle-utils" "^5.4.0" "@intlify/shared" "9.3.0-beta.17" @@ -313,7 +342,7 @@ "@intlify/core-base" "9.2.2" "@intlify/shared" "9.2.2" -"@jridgewell/sourcemap-codec@^1.4.13": +"@jridgewell/sourcemap-codec@^1.4.15": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== @@ -345,9 +374,9 @@ fastq "^1.6.0" "@rollup/pluginutils@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz#012b8f53c71e4f6f9cb317e311df1404f56e7a33" - integrity sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA== + version "5.0.4" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.4.tgz#74f808f9053d33bafec0cc98e7b835c9667d32ba" + integrity sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g== dependencies: "@types/estree" "^1.0.0" estree-walker "^2.0.2" @@ -366,29 +395,29 @@ integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/node@*": - version "20.1.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.1.3.tgz#bc8e7cd8065a5fc355a3a191a68db8019c58bc00" - integrity sha512-NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA== + version "20.5.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.7.tgz#4b8ecac87fbefbc92f431d09c30e176fc0a7c377" + integrity sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA== -"@types/node@^14.14.31": - version "14.18.46" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.46.tgz#ffc5a96cbe4fb5af9d16ac08e50229de30969487" - integrity sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng== +"@types/node@^16.18.39": + version "16.18.46" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.46.tgz#9f2102d0ba74a318fcbe170cbff5463f119eab59" + integrity sha512-Mnq3O9Xz52exs3mlxMcQuA7/9VFe/dXcrgAyfjLkABIqxXKOgBRjyazTxUbjsxDa4BP7hhPliyjVTP9RDP14xg== "@types/node@^18.15.0": - version "18.16.8" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.8.tgz#fcd9bd0a793aba2701caff4aeae7c988d4da6ce5" - integrity sha512-p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA== + version "18.17.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.17.12.tgz#c6bd7413a13e6ad9cfb7e97dd5c4e904c1821e50" + integrity sha512-d6xjC9fJ/nSnfDeU0AMDsaJyb1iHsqCSOdi84w4u+SlN/UgQdY5tRhpMzaFYsI4mnpvgTivEaQd0yOUhAtOnEQ== "@types/semver@^7.3.12": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" - integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== + version "7.5.1" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.1.tgz#0480eeb7221eb9bc398ad7432c9d7e14b1a5a367" + integrity sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg== "@types/sinonjs__fake-timers@8.1.1": version "8.1.1" @@ -407,172 +436,88 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@^5.59.1": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" - integrity sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== - dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/type-utils" "5.59.5" - "@typescript-eslint/utils" "5.59.5" - debug "^4.3.4" - grapheme-splitter "^1.0.4" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/eslint-plugin@^5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz#a350faef1baa1e961698240f922d8de1761a9e2b" - integrity sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw== +"@typescript-eslint/eslint-plugin@^5.59.1", "@typescript-eslint/eslint-plugin@^5.59.6": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== dependencies: "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.6" - "@typescript-eslint/type-utils" "5.59.6" - "@typescript-eslint/utils" "5.59.6" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" natural-compare-lite "^1.4.0" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.59.1": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" - integrity sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== +"@typescript-eslint/parser@^5.59.1", "@typescript-eslint/parser@^5.59.6": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/typescript-estree" "5.59.5" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" -"@typescript-eslint/parser@^5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.6.tgz#bd36f71f5a529f828e20b627078d3ed6738dbb40" - integrity sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== dependencies: - "@typescript-eslint/scope-manager" "5.59.6" - "@typescript-eslint/types" "5.59.6" - "@typescript-eslint/typescript-estree" "5.59.6" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" - integrity sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== - dependencies: - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/visitor-keys" "5.59.5" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" -"@typescript-eslint/scope-manager@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz#d43a3687aa4433868527cfe797eb267c6be35f19" - integrity sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ== +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== dependencies: - "@typescript-eslint/types" "5.59.6" - "@typescript-eslint/visitor-keys" "5.59.6" - -"@typescript-eslint/type-utils@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" - integrity sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== - dependencies: - "@typescript-eslint/typescript-estree" "5.59.5" - "@typescript-eslint/utils" "5.59.5" + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/type-utils@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz#37c51d2ae36127d8b81f32a0a4d2efae19277c48" - integrity sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ== - dependencies: - "@typescript-eslint/typescript-estree" "5.59.6" - "@typescript-eslint/utils" "5.59.6" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" - integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== -"@typescript-eslint/types@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.6.tgz#5a6557a772af044afe890d77c6a07e8c23c2460b" - integrity sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA== - -"@typescript-eslint/typescript-estree@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" - integrity sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/visitor-keys" "5.59.5" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz#2fb80522687bd3825504925ea7e1b8de7bb6251b" - integrity sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA== - dependencies: - "@typescript-eslint/types" "5.59.6" - "@typescript-eslint/visitor-keys" "5.59.6" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" - integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/typescript-estree" "5.59.5" - eslint-scope "^5.1.1" - semver "^7.3.7" - -"@typescript-eslint/utils@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.6.tgz#82960fe23788113fc3b1f9d4663d6773b7907839" - integrity sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg== +"@typescript-eslint/utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.6" - "@typescript-eslint/types" "5.59.6" - "@typescript-eslint/typescript-estree" "5.59.6" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" eslint-scope "^5.1.1" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" - integrity sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== - dependencies: - "@typescript-eslint/types" "5.59.5" - eslint-visitor-keys "^3.3.0" - -"@typescript-eslint/visitor-keys@5.59.6": - version "5.59.6" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz#673fccabf28943847d0c8e9e8d008e3ada7be6bb" - integrity sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q== +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== dependencies: - "@typescript-eslint/types" "5.59.6" + "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" "@vitejs/plugin-vue@^3.2.0": @@ -580,59 +525,26 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" integrity sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw== -"@volar/language-core@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" - integrity sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ== +"@volar/language-core@1.10.1", "@volar/language-core@~1.10.0": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.10.1.tgz#76789c5b0c214eeff8add29cbff0333d89b6fc4a" + integrity sha512-JnsM1mIPdfGPxmoOcK1c7HYAsL6YOv0TCJ4aW3AXPZN/Jb4R77epDyMZIVudSGjWMbvv/JfUa+rQ+dGKTmgwBA== dependencies: - "@volar/source-map" "1.4.1" + "@volar/source-map" "1.10.1" -"@volar/source-map@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.4.1.tgz#e3b561775c742508e5e1f28609a4787c98056715" - integrity sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA== +"@volar/source-map@1.10.1", "@volar/source-map@~1.10.0": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.1.tgz#b806845782cc615f2beba94624ff34a700f302f5" + integrity sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA== dependencies: - muggle-string "^0.2.2" - -"@volar/typescript@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.4.1.tgz#a013419e6f029155e5467443f3ab72815da608b5" - integrity sha512-phTy6p9yG6bgMIKQWEeDOi/aeT0njZsb1a/G1mrEuDsLmAn24Le4gDwSsGNhea6Uhu+3gdpUZn2PmZXa+WG2iQ== - dependencies: - "@volar/language-core" "1.4.1" - -"@volar/vue-language-core@1.6.4": - version "1.6.4" - resolved "https://registry.yarnpkg.com/@volar/vue-language-core/-/vue-language-core-1.6.4.tgz#b1d695861945e63c65ff4e74609b07cb06772b7c" - integrity sha512-1o+cAtN2DIDNAX/HS8rkjZc8wTMTK+zCab/qtYbvEVlmokhZiDrQeoD9/l0Ug7YCNg+mVuMNHKNBY7pX8U2/Jw== - dependencies: - "@volar/language-core" "1.4.1" - "@volar/source-map" "1.4.1" - "@vue/compiler-dom" "^3.3.0-beta.3" - "@vue/compiler-sfc" "^3.3.0-beta.3" - "@vue/reactivity" "^3.3.0-beta.3" - "@vue/shared" "^3.3.0-beta.3" - minimatch "^9.0.0" - muggle-string "^0.2.2" - vue-template-compiler "^2.7.14" + muggle-string "^0.3.1" -"@volar/vue-typescript@1.6.4": - version "1.6.4" - resolved "https://registry.yarnpkg.com/@volar/vue-typescript/-/vue-typescript-1.6.4.tgz#9358e2c7cdb5bdc3ef05926084be4bb6cd3673f7" - integrity sha512-qKwgP0KVQR/aaH/SN3AP7RB8NnXPWDn3tjyXP6IT6etxkDeZLBLsXWUD9KMak/RvV1DgbXDuz4F9yuZlbt29rA== +"@volar/typescript@~1.10.0": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.10.1.tgz#b20341c1cc5785b4de0669ea645e1619c97a4764" + integrity sha512-+iiO9yUSRHIYjlteT+QcdRq8b44qH19/eiUZtjNtuh6D9ailYM7DVR0zO2sEgJlvCaunw/CF9Ov2KooQBpR4VQ== dependencies: - "@volar/typescript" "1.4.1" - "@volar/vue-language-core" "1.6.4" - -"@vue/compiler-core@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.2.tgz#39567bd15c7f97add97bfc4d44e814df36eb797b" - integrity sha512-CKZWo1dzsQYTNTft7whzjL0HsrEpMfiK7pjZ2WFE3bC1NA7caUjWioHSK+49y/LK7Bsm4poJZzAMnvZMQ7OTeg== - dependencies: - "@babel/parser" "^7.21.3" - "@vue/shared" "3.3.2" - estree-walker "^2.0.2" - source-map-js "^1.0.2" + "@volar/language-core" "1.10.1" "@vue/compiler-core@3.3.4": version "3.3.4" @@ -644,15 +556,7 @@ estree-walker "^2.0.2" source-map-js "^1.0.2" -"@vue/compiler-dom@3.3.2", "@vue/compiler-dom@^3.3.0-beta.3": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz#2012ef4879375a4ca4ee68012a9256398b848af2" - integrity sha512-6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw== - dependencies: - "@vue/compiler-core" "3.3.2" - "@vue/shared" "3.3.2" - -"@vue/compiler-dom@3.3.4": +"@vue/compiler-dom@3.3.4", "@vue/compiler-dom@^3.3.0": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== @@ -660,23 +564,7 @@ "@vue/compiler-core" "3.3.4" "@vue/shared" "3.3.4" -"@vue/compiler-sfc@3.3.2", "@vue/compiler-sfc@^3.3.0-beta.3": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz#d6467acba8446655bcee7e751441232e5ddebcbf" - integrity sha512-jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ== - dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.2" - "@vue/compiler-dom" "3.3.2" - "@vue/compiler-ssr" "3.3.2" - "@vue/reactivity-transform" "3.3.2" - "@vue/shared" "3.3.2" - estree-walker "^2.0.2" - magic-string "^0.30.0" - postcss "^8.1.10" - source-map-js "^1.0.2" - -"@vue/compiler-sfc@^3.2.47": +"@vue/compiler-sfc@3.3.4", "@vue/compiler-sfc@^3.2.47": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== @@ -692,14 +580,6 @@ postcss "^8.1.10" source-map-js "^1.0.2" -"@vue/compiler-ssr@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.2.tgz#75ac4ccafa2d78c91d2e257ad243c86409493cc4" - integrity sha512-K8OfY5FQtZaSOJHHe8xhEfIfLrefL/Y9frv4k4NsyQL3+0lRKxr9QuJhfdBDjkl7Fhz8CzKh63mULvmOfx3l2w== - dependencies: - "@vue/compiler-dom" "3.3.2" - "@vue/shared" "3.3.2" - "@vue/compiler-ssr@3.3.4": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz#9d1379abffa4f2b0cd844174ceec4a9721138777" @@ -722,16 +602,19 @@ "@typescript-eslint/parser" "^5.59.1" vue-eslint-parser "^9.1.1" -"@vue/reactivity-transform@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.2.tgz#e1991d52d7ecefb65b214d8a3385a9dbe2cca74c" - integrity sha512-iu2WaQvlJHdnONrsyv4ibIEnSsuKF+aHFngGj/y1lwpHQtalpVhKg9wsKMoiKXS9zPNjG9mNKzJS9vudvjzvyg== +"@vue/language-core@1.8.8": + version "1.8.8" + resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.8.tgz#5a8aa8363f4dfacdfcd7808a9926744d7c310ae6" + integrity sha512-i4KMTuPazf48yMdYoebTkgSOJdFraE4pQf0B+FTOFkbB+6hAfjrSou/UmYWRsWyZV6r4Rc6DDZdI39CJwL0rWw== dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.2" - "@vue/shared" "3.3.2" - estree-walker "^2.0.2" - magic-string "^0.30.0" + "@volar/language-core" "~1.10.0" + "@volar/source-map" "~1.10.0" + "@vue/compiler-dom" "^3.3.0" + "@vue/reactivity" "^3.3.0" + "@vue/shared" "^3.3.0" + minimatch "^9.0.0" + muggle-string "^0.3.1" + vue-template-compiler "^2.7.14" "@vue/reactivity-transform@3.3.4": version "3.3.4" @@ -744,48 +627,51 @@ estree-walker "^2.0.2" magic-string "^0.30.0" -"@vue/reactivity@3.3.2", "@vue/reactivity@^3.3.0-beta.3": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.2.tgz#c4ddc5087039070c0c11810f6bc1aa59c99f0cb5" - integrity sha512-yX8C4uTgg2Tdj+512EEMnMKbLveoITl7YdQX35AYgx8vBvQGszKiiCN46g4RY6/deeo/5DLbeUUGxCq1qWMf5g== +"@vue/reactivity@3.3.4", "@vue/reactivity@^3.3.0": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.4.tgz#a27a29c6cd17faba5a0e99fbb86ee951653e2253" + integrity sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ== dependencies: - "@vue/shared" "3.3.2" + "@vue/shared" "3.3.4" -"@vue/runtime-core@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.2.tgz#7c89b30c44ad42a3256806a1e37c3cd18500d6d5" - integrity sha512-qSl95qj0BvKfcsO+hICqFEoLhJn6++HtsPxmTkkadFbuhe3uQfJ8HmQwvEr7xbxBd2rcJB6XOJg7nWAn/ymC5A== +"@vue/runtime-core@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz#4bb33872bbb583721b340f3088888394195967d1" + integrity sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA== dependencies: - "@vue/reactivity" "3.3.2" - "@vue/shared" "3.3.2" + "@vue/reactivity" "3.3.4" + "@vue/shared" "3.3.4" -"@vue/runtime-dom@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.2.tgz#b0bf7ce3fa9c181049ce783a0e13480a4f350c4b" - integrity sha512-+drStsJT+0mtgHdarT7cXZReCcTFfm6ptxMrz0kAW5hms6UNBd8Q1pi4JKlncAhu+Ld/TevsSp7pqAZxBBoGng== +"@vue/runtime-dom@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz#992f2579d0ed6ce961f47bbe9bfe4b6791251566" + integrity sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ== dependencies: - "@vue/runtime-core" "3.3.2" - "@vue/shared" "3.3.2" + "@vue/runtime-core" "3.3.4" + "@vue/shared" "3.3.4" csstype "^3.1.1" -"@vue/server-renderer@3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.2.tgz#31dce9f76380762fc42df77f6f974c4098f179e6" - integrity sha512-QCwh6OGwJg6GDLE0fbQhRTR6tnU+XDJ1iCsTYHXBiezCXAhqMygFRij7BiLF4ytvvHcg5kX9joX5R5vP85++wg== +"@vue/server-renderer@3.3.4": + version "3.3.4" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz#ea46594b795d1536f29bc592dd0f6655f7ea4c4c" + integrity sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ== dependencies: - "@vue/compiler-ssr" "3.3.2" - "@vue/shared" "3.3.2" - -"@vue/shared@3.3.2", "@vue/shared@^3.3.0-beta.3": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.2.tgz#774cd9b4635ce801b70a3fc3713779a5ef5d77c3" - integrity sha512-0rFu3h8JbclbnvvKrs7Fe5FNGV9/5X2rPD7KmOzhLSUAiQH5//Hq437Gv0fR5Mev3u/nbtvmLl8XgwCU20/ZfQ== + "@vue/compiler-ssr" "3.3.4" + "@vue/shared" "3.3.4" -"@vue/shared@3.3.4": +"@vue/shared@3.3.4", "@vue/shared@^3.3.0": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== +"@vue/typescript@1.8.8": + version "1.8.8" + resolved "https://registry.yarnpkg.com/@vue/typescript/-/typescript-1.8.8.tgz#8efb375d448862134492a044f4e96afada547500" + integrity sha512-jUnmMB6egu5wl342eaUH236v8tdcEPXXkPgj+eI/F6JwW/lb+yAU6U07ZbQ3MVabZRlupIlPESB7ajgAGixhow== + dependencies: + "@volar/typescript" "~1.10.0" + "@vue/language-core" "1.8.8" + "@vuetify/loader-shared@^1.7.1": version "1.7.1" resolved "https://registry.yarnpkg.com/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz#0f63a3d41b6df29a2db1ff438aa1819b237c37a3" @@ -804,10 +690,10 @@ acorn@^7.1.1, acorn@^7.4.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.8.0, acorn@^8.8.2: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.8.2, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== aggregate-error@^3.0.0: version "3.1.0" @@ -817,7 +703,7 @@ aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" -ajv@^6.10.0, ajv@^6.12.4: +ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -989,9 +875,9 @@ buffer@^5.6.0: ieee754 "^1.1.13" cachedir@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" - integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== + version "2.4.0" + resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.4.0.tgz#7fef9cf7367233d7c88068fe6e34ed0d355a610d" + integrity sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ== call-bind@^1.0.0: version "1.0.2" @@ -1142,13 +1028,13 @@ csstype@^3.1.1: integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== cypress@*: - version "12.16.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.16.0.tgz#d0dcd0725a96497f4c60cf54742242259847924c" - integrity sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg== + version "13.0.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.0.0.tgz#8fe8f13dbb46f76ad30fa2d47be1c3489de625d2" + integrity sha512-nWHU5dUxP2Wm/zrMd8SWTTl706aJex/l+H4vi/tbu2SWUr17BUcd/sIYeqyxeoSPW1JFV2pT1pf4JEImH/POMg== dependencies: - "@cypress/request" "^2.88.10" + "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" - "@types/node" "^14.14.31" + "@types/node" "^16.18.39" "@types/sinonjs__fake-timers" "8.1.1" "@types/sizzle" "^2.3.2" arch "^2.2.0" @@ -1181,22 +1067,23 @@ cypress@*: minimist "^1.2.8" ospath "^1.2.2" pretty-bytes "^5.6.0" + process "^0.11.10" proxy-from-env "1.0.0" request-progress "^3.0.0" - semver "^7.3.2" + semver "^7.5.3" supports-color "^8.1.1" tmp "~0.2.1" untildify "^4.0.0" yauzl "^2.10.0" cypress@^12.12.0: - version "12.12.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.12.0.tgz#0da622a34c970d8699ca6562d8e905ed7ce33c77" - integrity sha512-UU5wFQ7SMVCR/hyKok/KmzG6fpZgBHHfrXcHzDmPHWrT+UUetxFzQgt7cxCszlwfozckzwkd22dxMwl/vNkWRw== + version "12.17.4" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c" + integrity sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ== dependencies: - "@cypress/request" "^2.88.10" + "@cypress/request" "2.88.12" "@cypress/xvfb" "^1.2.4" - "@types/node" "^14.14.31" + "@types/node" "^16.18.39" "@types/sinonjs__fake-timers" "8.1.1" "@types/sizzle" "^2.3.2" arch "^2.2.0" @@ -1229,9 +1116,10 @@ cypress@^12.12.0: minimist "^1.2.8" ospath "^1.2.2" pretty-bytes "^5.6.0" + process "^0.11.10" proxy-from-env "1.0.0" request-progress "^3.0.0" - semver "^7.3.2" + semver "^7.5.3" supports-color "^8.1.1" tmp "~0.2.1" untildify "^4.0.0" @@ -1245,9 +1133,9 @@ dashdash@^1.12.0: assert-plus "^1.0.0" dayjs@^1.10.4: - version "1.11.7" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2" - integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ== + version "1.11.9" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a" + integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA== de-indent@^1.0.2: version "1.0.2" @@ -1268,7 +1156,7 @@ debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: dependencies: ms "2.1.2" -deep-is@^0.1.3, deep-is@~0.1.3: +deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== @@ -1313,39 +1201,40 @@ end-of-stream@^1.1.0: once "^1.4.0" enquirer@^2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + version "2.4.1" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.4.1.tgz#93334b3fbd74fc7097b224ab4a8fb7e40bf4ae56" + integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== dependencies: ansi-colors "^4.1.1" + strip-ansi "^6.0.1" -esbuild@^0.17.5: - version "0.17.18" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.18.tgz#f4f8eb6d77384d68cd71c53eb6601c7efe05e746" - integrity sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== +esbuild@^0.18.10: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== optionalDependencies: - "@esbuild/android-arm" "0.17.18" - "@esbuild/android-arm64" "0.17.18" - "@esbuild/android-x64" "0.17.18" - "@esbuild/darwin-arm64" "0.17.18" - "@esbuild/darwin-x64" "0.17.18" - "@esbuild/freebsd-arm64" "0.17.18" - "@esbuild/freebsd-x64" "0.17.18" - "@esbuild/linux-arm" "0.17.18" - "@esbuild/linux-arm64" "0.17.18" - "@esbuild/linux-ia32" "0.17.18" - "@esbuild/linux-loong64" "0.17.18" - "@esbuild/linux-mips64el" "0.17.18" - "@esbuild/linux-ppc64" "0.17.18" - "@esbuild/linux-riscv64" "0.17.18" - "@esbuild/linux-s390x" "0.17.18" - "@esbuild/linux-x64" "0.17.18" - "@esbuild/netbsd-x64" "0.17.18" - "@esbuild/openbsd-x64" "0.17.18" - "@esbuild/sunos-x64" "0.17.18" - "@esbuild/win32-arm64" "0.17.18" - "@esbuild/win32-ia32" "0.17.18" - "@esbuild/win32-x64" "0.17.18" + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" escape-string-regexp@^1.0.5: version "1.0.5" @@ -1358,34 +1247,33 @@ escape-string-regexp@^4.0.0: integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" estraverse "^5.2.0" esutils "^2.0.2" - optionator "^0.8.1" optionalDependencies: source-map "~0.6.1" eslint-plugin-vue@^9.13.0, eslint-plugin-vue@^9.6.0: - version "9.13.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.13.0.tgz#adb21448e65a7c1502af66103ff5f215632c5319" - integrity sha512-aBz9A8WB4wmpnVv0pYUt86cmH9EkcwWzgEwecBxMoRNhQjTL5i4sqadnwShv/hOdr8Hbl8XANGV7dtX9UQIAyA== + version "9.17.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.17.0.tgz#4501547373f246547083482838b4c8f4b28e5932" + integrity sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ== dependencies: - "@eslint-community/eslint-utils" "^4.3.0" + "@eslint-community/eslint-utils" "^4.4.0" natural-compare "^1.4.0" - nth-check "^2.0.1" - postcss-selector-parser "^6.0.9" - semver "^7.3.5" - vue-eslint-parser "^9.3.0" + nth-check "^2.1.1" + postcss-selector-parser "^6.0.13" + semver "^7.5.4" + vue-eslint-parser "^9.3.1" xml-name-validator "^4.0.0" eslint-plugin-vuetify@^2.0.0-beta.4: - version "2.0.0-beta.4" - resolved "https://registry.yarnpkg.com/eslint-plugin-vuetify/-/eslint-plugin-vuetify-2.0.0-beta.4.tgz#4858159a3d589b6062fa8a3478c19ffe4574a1f5" - integrity sha512-rebRbCrlPmDirqvggt9xFa7qQCGADKMFN40Hft5HCbCu5rF29UWC5Nk30sFRw6+j1ZS/PAmaVxY3fAxHRfjiAg== + version "2.0.5" + resolved "https://registry.yarnpkg.com/eslint-plugin-vuetify/-/eslint-plugin-vuetify-2.0.5.tgz#66c5f24ea5a373907d8a4a11ff084572989ccae5" + integrity sha512-pDWOLCO6FndzuzJDdoHPLOeGaVnFslWkAkLJ1R0GW9UXEUrW1yu73+EuChg5FRxTDUFWRe9Z7dnVw00p04gvxQ== dependencies: eslint-plugin-vue "^9.6.0" requireindex "^1.2.0" @@ -1398,10 +1286,10 @@ eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.1, eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== +eslint-scope@^7.1.1, eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" @@ -1418,32 +1306,32 @@ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.0.0: - version "8.40.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.40.0.tgz#a564cd0099f38542c4e9a2f630fa45bf33bc42a4" - integrity sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== + version "8.48.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.48.0.tgz#bf9998ba520063907ba7bfe4c480dc8be03c2155" + integrity sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.40.0" - "@humanwhocodes/config-array" "^0.11.8" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.2" + "@eslint/js" "8.48.0" + "@humanwhocodes/config-array" "^0.11.10" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.5.2" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -1451,22 +1339,19 @@ eslint@^8.0.0: find-up "^5.0.0" glob-parent "^6.0.2" globals "^13.19.0" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" - js-sdsl "^4.1.4" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" espree@^6.0.0: @@ -1478,12 +1363,12 @@ espree@^6.0.0: acorn-jsx "^5.2.0" eslint-visitor-keys "^1.1.0" -espree@^9.3.1, espree@^9.5.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== +espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" @@ -1585,9 +1470,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -1600,7 +1485,7 @@ fast-json-stable-stringify@^2.0.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: +fast-levenshtein@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== @@ -1666,14 +1551,15 @@ find-up@^5.0.0: path-exists "^4.0.0" flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + version "3.1.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.0.tgz#0e54ab4a1a60fe87e2946b6b00657f1c99e1af3f" + integrity sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew== dependencies: - flatted "^3.1.0" + flatted "^3.2.7" + keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.1.0: +flatted@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== @@ -1708,9 +1594,9 @@ fs.realpath@^1.0.0: integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.1: version "1.1.1" @@ -1718,12 +1604,13 @@ function-bind@^1.1.1: integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== get-intrinsic@^1.0.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" + has-proto "^1.0.1" has-symbols "^1.0.3" get-stream@^5.0.0, get-stream@^5.1.0: @@ -1781,9 +1668,9 @@ global-dirs@^3.0.0: ini "2.0.0" globals@^13.19.0: - version "13.20.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + version "13.21.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.21.0.tgz#163aae12f34ef502f5153cfbdd3600f36c63c571" + integrity sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg== dependencies: type-fest "^0.20.2" @@ -1804,16 +1691,21 @@ graceful-fs@^4.1.6, graceful-fs@^4.2.0: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" @@ -1855,7 +1747,7 @@ ignore@^5.2.0: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== -import-fresh@^3.0.0, import-fresh@^3.2.1: +import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -1965,11 +1857,6 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== -js-sdsl@^4.1.4: - version "4.4.0" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" - integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== - js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -1982,6 +1869,11 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -2037,6 +1929,13 @@ jsprim@^2.0.2: json-schema "0.4.0" verror "1.10.0" +keyv@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" + integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== + dependencies: + json-buffer "3.0.1" + lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" @@ -2050,14 +1949,6 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - listr2@^3.8.3: version "3.14.0" resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" @@ -2127,11 +2018,11 @@ lru-cache@^6.0.0: yallist "^4.0.0" magic-string@^0.30.0: - version "0.30.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" - integrity sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== + version "0.30.3" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.3.tgz#403755dfd9d6b398dfa40635d52e96c5ac095b85" + integrity sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw== dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" + "@jridgewell/sourcemap-codec" "^1.4.15" make-dir@^3.0.2: version "3.1.0" @@ -2183,9 +2074,9 @@ minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: brace-expansion "^1.1.7" minimatch@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" - integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" @@ -2204,10 +2095,10 @@ ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -muggle-string@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.2.2.tgz#786aa53fea1652c61c6a59e1f839292b262bc72a" - integrity sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg== +muggle-string@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.3.1.tgz#e524312eb1728c63dd0b2ac49e3282e6ed85963a" + integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg== nanoid@^3.3.6: version "3.3.6" @@ -2236,7 +2127,7 @@ npm-run-path@^4.0.0: dependencies: path-key "^3.0.0" -nth-check@^2.0.1: +nth-check@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== @@ -2262,29 +2153,17 @@ onetime@^5.1.0: dependencies: mimic-fn "^2.1.0" -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" ospath@^1.2.2: version "1.2.2" @@ -2359,9 +2238,9 @@ path-type@^4.0.0: integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pathe@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" - integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a" + integrity sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== pend@~1.2.0: version "1.2.0" @@ -2395,18 +2274,18 @@ pkg-dir@^4.1.0: dependencies: find-up "^4.0.0" -postcss-selector-parser@^6.0.9: - version "6.0.12" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" - integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== +postcss-selector-parser@^6.0.13: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss@^8.1.10, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== +postcss@^8.1.10, postcss@^8.4.27: + version "8.4.29" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.29.tgz#33bc121cf3b3688d4ddef50be869b2a54185a1dd" + integrity sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -2417,11 +2296,6 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - prettier@2.8.8: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" @@ -2432,12 +2306,17 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + proxy-from-env@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== -psl@^1.1.28: +psl@^1.1.33: version "1.9.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== @@ -2462,6 +2341,11 @@ qs@~6.10.3: dependencies: side-channel "^1.0.4" +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -2486,6 +2370,11 @@ requireindex@^1.2.0: resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" @@ -2516,10 +2405,10 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^3.21.0: - version "3.21.6" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" - integrity sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== +rollup@^3.27.1: + version "3.28.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.28.1.tgz#fb44aa6d5e65c7e13fd5bcfff266d0c4ea9ba433" + integrity sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw== optionalDependencies: fsevents "~2.3.2" @@ -2548,14 +2437,14 @@ safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: - version "7.5.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" - integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== +semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" @@ -2654,7 +2543,7 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -2707,13 +2596,15 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== +tough-cookie@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: - psl "^1.1.28" + psl "^1.1.33" punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" tslib@^1.8.1: version "1.14.1" @@ -2721,9 +2612,9 @@ tslib@^1.8.1: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.1.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== tsutils@^3.21.0: version "3.21.0" @@ -2751,13 +2642,6 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -2769,9 +2653,14 @@ type-fest@^0.21.3: integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== typescript@^5.0.0: - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== + version "5.2.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" + integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== + +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== universalify@^2.0.0: version "2.0.0" @@ -2779,11 +2668,11 @@ universalify@^2.0.0: integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== unplugin@^1.1.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.3.1.tgz#7af993ba8695d17d61b0845718380caf6af5109f" - integrity sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw== + version "1.4.0" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.4.0.tgz#b771373aa1bc664f50a044ee8009bd3a7aa04d85" + integrity sha512-5x4eIEL6WgbzqGtF9UV8VEC/ehKptPXDS6L2b0mv4FRMkJxRtjaJfOWDd6a8+kYbqsjklix7yWP0N3SUepjXcg== dependencies: - acorn "^8.8.2" + acorn "^8.9.0" chokidar "^3.5.3" webpack-sources "^3.2.3" webpack-virtual-modules "^0.5.0" @@ -2805,6 +2694,14 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + util-deprecate@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -2834,33 +2731,20 @@ vite-plugin-vuetify@^1.0.0: upath "^2.0.1" vite@^4.2.0: - version "4.3.5" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.5.tgz#3871fe0f4b582ea7f49a85386ac80e84826367d9" - integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== + version "4.4.9" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.4.9.tgz#1402423f1a2f8d66fd8d15e351127c7236d29d3d" + integrity sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA== dependencies: - esbuild "^0.17.5" - postcss "^8.4.23" - rollup "^3.21.0" + esbuild "^0.18.10" + postcss "^8.4.27" + rollup "^3.27.1" optionalDependencies: fsevents "~2.3.2" -vue-eslint-parser@^9.1.1: - version "9.2.1" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz#b011a5520ea7c24cadc832c8552122faaccfd2e6" - integrity sha512-tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ== - dependencies: - debug "^4.3.4" - eslint-scope "^7.1.1" - eslint-visitor-keys "^3.3.0" - espree "^9.3.1" - esquery "^1.4.0" - lodash "^4.17.21" - semver "^7.3.6" - -vue-eslint-parser@^9.3.0: - version "9.3.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz#775a974a0603c9a73d85fed8958ed9e814a4a816" - integrity sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ== +vue-eslint-parser@^9.1.1, vue-eslint-parser@^9.3.1: + version "9.3.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz#429955e041ae5371df5f9e37ebc29ba046496182" + integrity sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g== dependencies: debug "^4.3.4" eslint-scope "^7.1.1" @@ -2881,9 +2765,9 @@ vue-i18n@9: "@vue/devtools-api" "^6.2.1" vue-router@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.0.tgz#558f31978a21ce3accf5122ffdf2cec34a5d2517" - integrity sha512-c+usESa6ZoWsm4PPdzRSyenp5A4dsUtnDJnrI03fY1IpIihA9TK3x5ffgkFDpjhLJZewsXoKURapNLFdZjuqTg== + version "4.2.4" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.4.tgz#382467a7e2923e6a85f015d081e1508052c191b9" + integrity sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ== dependencies: "@vue/devtools-api" "^6.5.0" @@ -2896,29 +2780,29 @@ vue-template-compiler@^2.7.14: he "^1.2.0" vue-tsc@^1.2.0: - version "1.6.4" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.6.4.tgz#ca4e931e9d3b9c55cd7a0f551bc0c9536edb6386" - integrity sha512-8rg8S1AhRJ6/WriENQEhyqH5wsxSxuD5iaD+QnkZn2ArZ6evlhqfBAIcVN8mfSyCV9DeLkQXkOSv/MaeJiJPAQ== + version "1.8.8" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.8.tgz#67317693eb2ef6747e89e6d834eeb6d2deb8871d" + integrity sha512-bSydNFQsF7AMvwWsRXD7cBIXaNs/KSjvzWLymq/UtKE36697sboX4EccSHFVxvgdBlI1frYPc/VMKJNB7DFeDQ== dependencies: - "@volar/vue-language-core" "1.6.4" - "@volar/vue-typescript" "1.6.4" + "@vue/language-core" "1.8.8" + "@vue/typescript" "1.8.8" semver "^7.3.8" vue@^3.2.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.2.tgz#407f0057a7a154d836b66f94ce81779d0c2cafbc" - integrity sha512-98hJcAhyDwZoOo2flAQBSPVYG/o0HA9ivIy2ktHshjE+6/q8IMQ+kvDKQzOZTFPxvnNMcGM+zS2A00xeZMA7tA== + version "3.3.4" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.4.tgz#8ed945d3873667df1d0fcf3b2463ada028f88bd6" + integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw== dependencies: - "@vue/compiler-dom" "3.3.2" - "@vue/compiler-sfc" "3.3.2" - "@vue/runtime-dom" "3.3.2" - "@vue/server-renderer" "3.3.2" - "@vue/shared" "3.3.2" + "@vue/compiler-dom" "3.3.4" + "@vue/compiler-sfc" "3.3.4" + "@vue/runtime-dom" "3.3.4" + "@vue/server-renderer" "3.3.4" + "@vue/shared" "3.3.4" vuetify@^3.0.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.2.4.tgz#e31e23305b23d2a08ccbb845e295ff07d4c1a71f" - integrity sha512-Lj3fXSTY/lLXpuzAM0n2B/9o7WKpHsqv2USanXyFVXbePsl9kx7XY4HPrMqTDEYRlY9AyMjF9ilTbkQ8IovPmQ== + version "3.3.15" + resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.3.15.tgz#54d3aa076082c62e0b3ef103636b85270a9aef39" + integrity sha512-n7GYBO31k8vA9UfvRwLNyBlkq1WoN3IJ9wNnIBFeV4axleSjFAzzR4WUw7rgj6Ba3q6N2hxXoyxJM21tseQTfQ== webpack-sources@^3.2.3: version "3.2.3" @@ -2937,11 +2821,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"